First public contribution.
1 // Copyright (c) 2008-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 "bufferdrawer.h"
28 #include <graphics/wsgraphicscontext.h>
29 #include <graphics/wsuibuffer.h>
33 CWsBufferGraphicDrawer* CWsBufferGraphicDrawer::NewL()
35 return new(ELeave) CWsBufferGraphicDrawer;
38 CWsBufferGraphicDrawer::~CWsBufferGraphicDrawer()
42 void CWsBufferGraphicDrawer::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& /*aData*/)
44 BaseConstructL(aEnv, aId, aOwner);
45 // default white line number
49 void CWsBufferGraphicDrawer::HandleMessage(const TDesC8& aData)
51 TInt linePos = aData[0];
52 DoUpdateWhiteLinePos(linePos);
55 void CWsBufferGraphicDrawer::DoUpdateWhiteLinePos(TInt aWhiteLinePos)
57 iWhiteLinePos = aWhiteLinePos;
58 // Invalidate the redrawing
62 void CWsBufferGraphicDrawer::DoDraw(MWsGc& aGc, const TRect& aRect, const TDesC8& /*aData*/) const
64 MWsGraphicsContext* context = static_cast<MWsGraphicsContext*>(aGc.ResolveObjectInterface(KMWsGraphicsContext));
66 //Draw a filled rect with the chosen color
68 context->SetBrushStyle(MWsGraphicsContext::ESolidBrush);
69 context->SetBrushColor(KRgbBlue);
70 context->DrawRect(aRect);
73 //Obtain access to the screen/OSB buffer
74 MWsUiBuffer* buffer = static_cast<MWsUiBuffer*>(aGc.ResolveObjectInterface(KMWsUiBufferInterfaceId));
78 TInt err = buffer->MapReadWrite(data, stride);
82 //Fill the chosen line with white
83 TUint8* scanLine = static_cast<TUint8*>(data);
84 scanLine += stride * iWhiteLinePos;
85 Mem::Fill(scanLine, stride, 0xFF);