sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent - Internal Symbian test code
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#include "bufferdrawer.h"
|
sl@0
|
23 |
#include <s32mem.h>
|
sl@0
|
24 |
#include <s32strm.h>
|
sl@0
|
25 |
#include <fbs.h>
|
sl@0
|
26 |
#include <bitdev.h>
|
sl@0
|
27 |
#include <bitstd.h>
|
sl@0
|
28 |
#include <graphics/wsgraphicscontext.h>
|
sl@0
|
29 |
#include <graphics/wsuibuffer.h>
|
sl@0
|
30 |
|
sl@0
|
31 |
|
sl@0
|
32 |
// CWsGraphicDrawer
|
sl@0
|
33 |
CWsBufferGraphicDrawer* CWsBufferGraphicDrawer::NewL()
|
sl@0
|
34 |
{
|
sl@0
|
35 |
return new(ELeave) CWsBufferGraphicDrawer;
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
CWsBufferGraphicDrawer::~CWsBufferGraphicDrawer()
|
sl@0
|
39 |
{
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
void CWsBufferGraphicDrawer::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& /*aData*/)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
BaseConstructL(aEnv, aId, aOwner);
|
sl@0
|
45 |
// default white line number
|
sl@0
|
46 |
iWhiteLinePos = 0;
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
void CWsBufferGraphicDrawer::HandleMessage(const TDesC8& aData)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
TInt linePos = aData[0];
|
sl@0
|
52 |
DoUpdateWhiteLinePos(linePos);
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
void CWsBufferGraphicDrawer::DoUpdateWhiteLinePos(TInt aWhiteLinePos)
|
sl@0
|
56 |
{
|
sl@0
|
57 |
iWhiteLinePos = aWhiteLinePos;
|
sl@0
|
58 |
// Invalidate the redrawing
|
sl@0
|
59 |
Invalidate();
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
void CWsBufferGraphicDrawer::DoDraw(MWsGc& aGc, const TRect& aRect, const TDesC8& /*aData*/) const
|
sl@0
|
63 |
{
|
sl@0
|
64 |
MWsGraphicsContext* context = static_cast<MWsGraphicsContext*>(aGc.ResolveObjectInterface(KMWsGraphicsContext));
|
sl@0
|
65 |
|
sl@0
|
66 |
//Draw a filled rect with the chosen color
|
sl@0
|
67 |
context->Push();
|
sl@0
|
68 |
context->SetBrushStyle(MWsGraphicsContext::ESolidBrush);
|
sl@0
|
69 |
context->SetBrushColor(KRgbBlue);
|
sl@0
|
70 |
context->DrawRect(aRect);
|
sl@0
|
71 |
context->Pop();
|
sl@0
|
72 |
|
sl@0
|
73 |
//Obtain access to the screen/OSB buffer
|
sl@0
|
74 |
MWsUiBuffer* buffer = static_cast<MWsUiBuffer*>(aGc.ResolveObjectInterface(KMWsUiBufferInterfaceId));
|
sl@0
|
75 |
TAny* data;
|
sl@0
|
76 |
TInt stride;
|
sl@0
|
77 |
|
sl@0
|
78 |
TInt err = buffer->MapReadWrite(data, stride);
|
sl@0
|
79 |
|
sl@0
|
80 |
if (err == KErrNone)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
//Fill the chosen line with white
|
sl@0
|
83 |
TUint8* scanLine = static_cast<TUint8*>(data);
|
sl@0
|
84 |
scanLine += stride * iWhiteLinePos;
|
sl@0
|
85 |
Mem::Fill(scanLine, stride, 0xFF);
|
sl@0
|
86 |
|
sl@0
|
87 |
buffer->Unmap();
|
sl@0
|
88 |
}
|
sl@0
|
89 |
}
|