sl@0
|
1 |
// Copyright (c) 2007-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 |
// The plug-in provides the client side CWsGraphic instance CWsListen, which is used in
|
sl@0
|
15 |
// GRAPHICS-WSERV-0438.
|
sl@0
|
16 |
// This also provides Test Case INC103472: CRedrawRegion::ContainsDrawers does not look for all drawers.
|
sl@0
|
17 |
// The customer incident "INC103472" reports CWsRedrawMsgWindow::CRedrawRegion::ContainsDrawers in wnredraw.cpp
|
sl@0
|
18 |
// is suppose to return whether some drawers are contained within a specific region.
|
sl@0
|
19 |
// But right now it doesn't check for drawers in drawers.
|
sl@0
|
20 |
// So if one drawer from the iDrawerArray contains one of the drawers passed along
|
sl@0
|
21 |
// in aDrawers it will still return EFalse when it should return ETrue.
|
sl@0
|
22 |
// The fix is added in CWsRedrawMsgWindow::CRedrawRegion::ContainsDrawers(const TArray& aDrawers,const RRegion& aRegion).
|
sl@0
|
23 |
// The drawer->Contains() call will end up in HasAsChild(const TArray& aIds),
|
sl@0
|
24 |
// where the CWsGraphicDrawer has to look for its own nested drawers and return ETrue or EFalse.
|
sl@0
|
25 |
//
|
sl@0
|
26 |
//
|
sl@0
|
27 |
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
@file
|
sl@0
|
30 |
@test
|
sl@0
|
31 |
@internalComponent - Internal Symbian test code
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
//CWsGraphic
|
sl@0
|
34 |
#include "wscontaindrawer.h"
|
sl@0
|
35 |
|
sl@0
|
36 |
CWsContainGraphicBitmap::CWsContainGraphicBitmap()
|
sl@0
|
37 |
{
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
EXPORT_C CWsContainGraphicBitmap::~CWsContainGraphicBitmap()
|
sl@0
|
41 |
{
|
sl@0
|
42 |
iIsReady = EFalse;
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
EXPORT_C CWsContainGraphicBitmap* CWsContainGraphicBitmap::NewL()
|
sl@0
|
46 |
{
|
sl@0
|
47 |
CWsContainGraphicBitmap* self = new(ELeave) CWsContainGraphicBitmap;
|
sl@0
|
48 |
CleanupStack::PushL(self);
|
sl@0
|
49 |
self->BaseConstructL(KContainDrawerImplId,KNullDesC8());
|
sl@0
|
50 |
self->iIsReady = ETrue;
|
sl@0
|
51 |
CleanupStack::Pop(self);
|
sl@0
|
52 |
return self;
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
EXPORT_C CWsContainGraphicBitmap* CWsContainGraphicBitmap::NewL(TUid aUid)
|
sl@0
|
56 |
{
|
sl@0
|
57 |
CWsContainGraphicBitmap* self = new(ELeave) CWsContainGraphicBitmap;
|
sl@0
|
58 |
CleanupStack::PushL(self);
|
sl@0
|
59 |
self->BaseConstructL(aUid,KContainDrawerImplId,KNullDesC8());
|
sl@0
|
60 |
self->iIsReady = ETrue;
|
sl@0
|
61 |
CleanupStack::Pop(self);
|
sl@0
|
62 |
return self;
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
EXPORT_C CWsContainGraphicBitmap* CWsContainGraphicBitmap::NewL(const TWsGraphicId& aReplace)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
CWsContainGraphicBitmap* self = new(ELeave) CWsContainGraphicBitmap;
|
sl@0
|
68 |
CleanupStack::PushL(self);
|
sl@0
|
69 |
self->BaseConstructL(aReplace,KContainDrawerImplId,KNullDesC8());
|
sl@0
|
70 |
self->iIsReady = ETrue;
|
sl@0
|
71 |
CleanupStack::Pop(self);
|
sl@0
|
72 |
return self;
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
EXPORT_C TInt CWsContainGraphicBitmap::UpdateColor(TRgb aColor)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
if (!iIsReady)
|
sl@0
|
78 |
return KErrNotReady;
|
sl@0
|
79 |
// Send the color the server side
|
sl@0
|
80 |
TBuf8<3> cmd;
|
sl@0
|
81 |
TInt red = aColor.Red();
|
sl@0
|
82 |
TInt green = aColor.Green();
|
sl@0
|
83 |
TInt blue = aColor.Blue();
|
sl@0
|
84 |
//Append the color
|
sl@0
|
85 |
cmd.Append(red);
|
sl@0
|
86 |
cmd.Append(green);
|
sl@0
|
87 |
cmd.Append(blue);
|
sl@0
|
88 |
|
sl@0
|
89 |
SendMessage(cmd);
|
sl@0
|
90 |
return Flush();
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
|
sl@0
|
94 |
EXPORT_C void CWsContainGraphicBitmap::HandleMessage(const TDesC8& /*aData*/)
|
sl@0
|
95 |
{
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
EXPORT_C void CWsContainGraphicBitmap::OnReplace()
|
sl@0
|
99 |
{
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
EXPORT_C TInt CWsContainGraphicBitmap::ShareGlobally()
|
sl@0
|
103 |
{
|
sl@0
|
104 |
return CWsGraphic::ShareGlobally();
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
EXPORT_C TInt CWsContainGraphicBitmap::UnShareGlobally()
|
sl@0
|
108 |
{
|
sl@0
|
109 |
return CWsGraphic::UnShareGlobally();
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
EXPORT_C TInt CWsContainGraphicBitmap::Share(TSecureId aClientId)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
return CWsGraphic::Share(aClientId);
|
sl@0
|
115 |
}
|
sl@0
|
116 |
|
sl@0
|
117 |
EXPORT_C TInt CWsContainGraphicBitmap::UnShare(TSecureId aClientId)
|
sl@0
|
118 |
{
|
sl@0
|
119 |
return CWsGraphic::UnShare(aClientId);
|
sl@0
|
120 |
}
|
sl@0
|
121 |
|