sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: #include "wsbufferdrawer.h" sl@0: #include sl@0: sl@0: CWsBufferGraphic::CWsBufferGraphic() sl@0: { sl@0: } sl@0: sl@0: EXPORT_C CWsBufferGraphic::~CWsBufferGraphic() sl@0: { sl@0: } sl@0: sl@0: EXPORT_C CWsBufferGraphic* CWsBufferGraphic::NewL() sl@0: { sl@0: CWsBufferGraphic* self = new(ELeave) CWsBufferGraphic; sl@0: CleanupStack::PushL(self); sl@0: self->BaseConstructL(KBufferDrawerImplId,KNullDesC8()); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C CWsBufferGraphic* CWsBufferGraphic::NewL(TUid aUid) sl@0: { sl@0: CWsBufferGraphic* self = new(ELeave) CWsBufferGraphic; sl@0: CleanupStack::PushL(self); sl@0: self->BaseConstructL(aUid,KBufferDrawerImplId,KNullDesC8()); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C CWsBufferGraphic* CWsBufferGraphic::NewL(const TWsGraphicId& aReplace) sl@0: { sl@0: CWsBufferGraphic* self = new(ELeave) CWsBufferGraphic; sl@0: CleanupStack::PushL(self); sl@0: self->BaseConstructL(aReplace,KBufferDrawerImplId,KNullDesC8()); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C TInt CWsBufferGraphic::UpdateWhiteLinePos(TInt aWhiteLinePos) sl@0: { sl@0: // Send the message to server side sl@0: TBuf8<1> cmd; sl@0: cmd.Append(aWhiteLinePos); sl@0: sl@0: SendMessage(cmd); sl@0: return Flush(); sl@0: } sl@0: sl@0: EXPORT_C void CWsBufferGraphic::HandleMessage(const TDesC8& /*aData*/) sl@0: { sl@0: } sl@0: sl@0: EXPORT_C void CWsBufferGraphic::OnReplace() sl@0: { sl@0: } sl@0: sl@0: EXPORT_C TInt CWsBufferGraphic::ShareGlobally() sl@0: { sl@0: return CWsGraphic::ShareGlobally(); sl@0: } sl@0: sl@0: EXPORT_C TInt CWsBufferGraphic::UnShareGlobally() sl@0: { sl@0: return CWsGraphic::UnShareGlobally(); sl@0: } sl@0: sl@0: EXPORT_C TInt CWsBufferGraphic::Share(TSecureId aClientId) sl@0: { sl@0: return CWsGraphic::Share(aClientId); sl@0: } sl@0: sl@0: EXPORT_C TInt CWsBufferGraphic::UnShare(TSecureId aClientId) sl@0: { sl@0: return CWsGraphic::UnShare(aClientId); sl@0: } sl@0: