First public contribution.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 @internalComponent - Internal Symbian test code
22 #include "wsbufferdrawer.h"
25 CWsBufferGraphic::CWsBufferGraphic()
29 EXPORT_C CWsBufferGraphic::~CWsBufferGraphic()
33 EXPORT_C CWsBufferGraphic* CWsBufferGraphic::NewL()
35 CWsBufferGraphic* self = new(ELeave) CWsBufferGraphic;
36 CleanupStack::PushL(self);
37 self->BaseConstructL(KBufferDrawerImplId,KNullDesC8());
38 CleanupStack::Pop(self);
42 EXPORT_C CWsBufferGraphic* CWsBufferGraphic::NewL(TUid aUid)
44 CWsBufferGraphic* self = new(ELeave) CWsBufferGraphic;
45 CleanupStack::PushL(self);
46 self->BaseConstructL(aUid,KBufferDrawerImplId,KNullDesC8());
47 CleanupStack::Pop(self);
51 EXPORT_C CWsBufferGraphic* CWsBufferGraphic::NewL(const TWsGraphicId& aReplace)
53 CWsBufferGraphic* self = new(ELeave) CWsBufferGraphic;
54 CleanupStack::PushL(self);
55 self->BaseConstructL(aReplace,KBufferDrawerImplId,KNullDesC8());
56 CleanupStack::Pop(self);
60 EXPORT_C TInt CWsBufferGraphic::UpdateWhiteLinePos(TInt aWhiteLinePos)
62 // Send the message to server side
64 cmd.Append(aWhiteLinePos);
70 EXPORT_C void CWsBufferGraphic::HandleMessage(const TDesC8& /*aData*/)
74 EXPORT_C void CWsBufferGraphic::OnReplace()
78 EXPORT_C TInt CWsBufferGraphic::ShareGlobally()
80 return CWsGraphic::ShareGlobally();
83 EXPORT_C TInt CWsBufferGraphic::UnShareGlobally()
85 return CWsGraphic::UnShareGlobally();
88 EXPORT_C TInt CWsBufferGraphic::Share(TSecureId aClientId)
90 return CWsGraphic::Share(aClientId);
93 EXPORT_C TInt CWsBufferGraphic::UnShare(TSecureId aClientId)
95 return CWsGraphic::UnShare(aClientId);