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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32debug.h>
|
sl@0
|
23 |
#include <w32std.h>
|
sl@0
|
24 |
#include <iniparser.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
#include "t_pseudoapppopupwindow.h"
|
sl@0
|
27 |
#include "t_pseudoapputils.h"
|
sl@0
|
28 |
#include "t_winutils.h" //CTestBitmap
|
sl@0
|
29 |
|
sl@0
|
30 |
GLDEF_C TInt E32Main()
|
sl@0
|
31 |
{
|
sl@0
|
32 |
RDebug::Print(_L("T_PseudoAppPopupWindow::E32Main - entry"));
|
sl@0
|
33 |
|
sl@0
|
34 |
// __UHEAP_MARK; // mark heap state
|
sl@0
|
35 |
|
sl@0
|
36 |
CTrapCleanup* TheTrapCleanup = CTrapCleanup::New();
|
sl@0
|
37 |
|
sl@0
|
38 |
TRAPD(err, DisplayPopupWindowL());
|
sl@0
|
39 |
if (err)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
User::Panic(KTPopupWindowAppPanic,err);
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
delete TheTrapCleanup;
|
sl@0
|
45 |
|
sl@0
|
46 |
// __UHEAP_MARKEND; // check no memory leak
|
sl@0
|
47 |
|
sl@0
|
48 |
User::After(20000000);
|
sl@0
|
49 |
RDebug::Print(_L("T_PseudoAppPopupWindow::E32Main - exit"));
|
sl@0
|
50 |
return KErrNone;
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
LOCAL_C void DisplayPopupWindowL()
|
sl@0
|
54 |
{
|
sl@0
|
55 |
TPtrC multiBitmapPopupFile;
|
sl@0
|
56 |
TSize windowSize;
|
sl@0
|
57 |
TPoint windowPosition;
|
sl@0
|
58 |
TInt transparency;
|
sl@0
|
59 |
TInt screenNo;
|
sl@0
|
60 |
TDisplayMode aMode;
|
sl@0
|
61 |
|
sl@0
|
62 |
//Create CIniData class for reading in values form ini files
|
sl@0
|
63 |
CIniData* utils = CIniData::NewL(KWServPseudoAppConfigFile);
|
sl@0
|
64 |
CleanupStack::PushL(utils);
|
sl@0
|
65 |
|
sl@0
|
66 |
ReadPopupConfig(windowSize, windowPosition, multiBitmapPopupFile, transparency, screenNo, aMode, utils);
|
sl@0
|
67 |
|
sl@0
|
68 |
RDebug::Print(_L("Create Window server session"));
|
sl@0
|
69 |
RWsSession session;
|
sl@0
|
70 |
User::LeaveIfError(session.Connect());
|
sl@0
|
71 |
|
sl@0
|
72 |
RDebug::Print(_L("Create CWsScreenDevice\n"));
|
sl@0
|
73 |
CWsScreenDevice screenDevice(session);
|
sl@0
|
74 |
User::LeaveIfError(screenDevice.Construct(screenNo));
|
sl@0
|
75 |
|
sl@0
|
76 |
RDebug::Print(_L("Create RWindowGroup\n"));
|
sl@0
|
77 |
RWindowGroup group(session);
|
sl@0
|
78 |
User::LeaveIfError(group.Construct(8970+screenNo,ETrue));
|
sl@0
|
79 |
|
sl@0
|
80 |
RDebug::Print(_L("Create Window\n"));
|
sl@0
|
81 |
RWindow window(session);
|
sl@0
|
82 |
User::LeaveIfError(window.Construct((RWindowTreeNode)group,(TUint32)&window));
|
sl@0
|
83 |
|
sl@0
|
84 |
DeterminePixelValues(windowSize, windowPosition, screenDevice);
|
sl@0
|
85 |
|
sl@0
|
86 |
window.SetExtent(windowPosition, windowSize);
|
sl@0
|
87 |
|
sl@0
|
88 |
TInt ret = window.SetRequiredDisplayMode(aMode);
|
sl@0
|
89 |
|
sl@0
|
90 |
RDebug::Print(_L("Window display mode set to %d\n"), ret);
|
sl@0
|
91 |
|
sl@0
|
92 |
RDebug::Print(_L("Create CWindowGc\n"));
|
sl@0
|
93 |
CWindowGc windowGc(&screenDevice);
|
sl@0
|
94 |
User::LeaveIfError(windowGc.Construct());
|
sl@0
|
95 |
|
sl@0
|
96 |
//Make the window transparent
|
sl@0
|
97 |
CTestBitmap* bitmap = CTestBitmap::NewL(windowSize, EGray256);
|
sl@0
|
98 |
CleanupStack::PushL(bitmap);
|
sl@0
|
99 |
|
sl@0
|
100 |
bitmap->Gc().SetBrushColor(TRgb::Gray256(128));
|
sl@0
|
101 |
bitmap->Gc().SetBrushStyle(CGraphicsContext::ESolidBrush);
|
sl@0
|
102 |
bitmap->Gc().SetPenStyle(CGraphicsContext::ENullPen);
|
sl@0
|
103 |
bitmap->Gc().DrawRect(windowSize);
|
sl@0
|
104 |
|
sl@0
|
105 |
window.SetTransparencyBitmap(bitmap->Bitmap());
|
sl@0
|
106 |
window.SetVisible(ETrue);
|
sl@0
|
107 |
window.Activate();
|
sl@0
|
108 |
|
sl@0
|
109 |
windowGc.Activate(window);
|
sl@0
|
110 |
window.Invalidate();
|
sl@0
|
111 |
window.BeginRedraw();
|
sl@0
|
112 |
|
sl@0
|
113 |
//Load popup bitmap
|
sl@0
|
114 |
CTestBitmap* bitmapSource = CTestBitmap::NewL(windowSize, aMode);
|
sl@0
|
115 |
CleanupStack::PushL(bitmapSource);
|
sl@0
|
116 |
|
sl@0
|
117 |
User::LeaveIfError(bitmapSource->Bitmap().Load(multiBitmapPopupFile, 0));
|
sl@0
|
118 |
|
sl@0
|
119 |
if(transparency)
|
sl@0
|
120 |
{
|
sl@0
|
121 |
CTestBitmap* bitmapSourceAlpha;
|
sl@0
|
122 |
CTestBitmap* bitmapDest;
|
sl@0
|
123 |
CTestBitmap* bitmapDestAlpha;
|
sl@0
|
124 |
|
sl@0
|
125 |
bitmapSourceAlpha = CTestBitmap::NewL(windowSize, EGray256);
|
sl@0
|
126 |
CleanupStack::PushL(bitmapSourceAlpha);
|
sl@0
|
127 |
|
sl@0
|
128 |
User::LeaveIfError(bitmapSourceAlpha->Bitmap().Load(multiBitmapPopupFile, 1));
|
sl@0
|
129 |
|
sl@0
|
130 |
bitmapDest = CTestBitmap::NewL(windowSize, aMode);
|
sl@0
|
131 |
CleanupStack::PushL(bitmapDest);
|
sl@0
|
132 |
|
sl@0
|
133 |
bitmapDest->Bitmap().SetSizeInTwips(bitmapSource->Bitmap().SizeInTwips());
|
sl@0
|
134 |
bitmapDest->Gc().DrawBitmap(TRect(TPoint(0,0), windowSize), &(bitmapSource->Bitmap()));
|
sl@0
|
135 |
|
sl@0
|
136 |
bitmapDestAlpha = CTestBitmap::NewL(windowSize, EGray256);
|
sl@0
|
137 |
CleanupStack::PushL(bitmapDestAlpha);
|
sl@0
|
138 |
|
sl@0
|
139 |
bitmapDestAlpha->Bitmap().SetSizeInTwips(bitmapSourceAlpha->Bitmap().SizeInTwips());
|
sl@0
|
140 |
bitmapDestAlpha->Gc().DrawBitmap(TRect(TPoint(0,0), windowSize), &(bitmapSourceAlpha->Bitmap()));
|
sl@0
|
141 |
|
sl@0
|
142 |
TInt ret = windowGc.AlphaBlendBitmaps(TPoint(0,0), &(bitmapDest->Bitmap()), TRect(TPoint(0,0), windowSize), &(bitmapDestAlpha->Bitmap()), TPoint(0,0));
|
sl@0
|
143 |
|
sl@0
|
144 |
if(ret != KErrNone)
|
sl@0
|
145 |
{
|
sl@0
|
146 |
RDebug::Print(_L("Transparent popup window drawing error\n"));
|
sl@0
|
147 |
}
|
sl@0
|
148 |
else
|
sl@0
|
149 |
{
|
sl@0
|
150 |
RDebug::Print(_L("Transparent popup window drawn correctly\n"));
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
CleanupStack::PopAndDestroy(3); //bitmapSourceAlpha, bitmapDest, bitmapDestAlpha
|
sl@0
|
154 |
}
|
sl@0
|
155 |
else
|
sl@0
|
156 |
{
|
sl@0
|
157 |
//Make window opaque
|
sl@0
|
158 |
window.SetTransparencyFactor(TRgb(0xFFFFFFFF));
|
sl@0
|
159 |
windowGc.DrawBitmap(TRect(TPoint(0,0), windowSize), &(bitmapSource->Bitmap()));
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
window.EndRedraw();
|
sl@0
|
163 |
session.Flush();
|
sl@0
|
164 |
windowGc.Deactivate();
|
sl@0
|
165 |
User::After(100000);
|
sl@0
|
166 |
|
sl@0
|
167 |
CleanupStack::PopAndDestroy(3); //utils, bitmap, bitmapSource
|
sl@0
|
168 |
}
|
sl@0
|
169 |
|
sl@0
|
170 |
LOCAL_C void ReadPopupConfig(TSize& aWindowSize, TPoint& aWindowPosition, TPtrC& aBitmapFile, TInt& aTransparency,
|
sl@0
|
171 |
TInt& aScreenNo, TDisplayMode& aMode, CIniData* aUtils)
|
sl@0
|
172 |
{
|
sl@0
|
173 |
TInt maxNumberOfScreens;
|
sl@0
|
174 |
TPtrC windowSize;
|
sl@0
|
175 |
TPtrC windowPosition;
|
sl@0
|
176 |
TInt popupOccurances;
|
sl@0
|
177 |
|
sl@0
|
178 |
TBuf<KMaxUiBitmapNameLength> tempStore;
|
sl@0
|
179 |
TInt i;
|
sl@0
|
180 |
|
sl@0
|
181 |
READ_INI1(max_number_of_screens, maxNumberOfScreens, aUtils);
|
sl@0
|
182 |
|
sl@0
|
183 |
for(i=0; i<maxNumberOfScreens; i++)
|
sl@0
|
184 |
{
|
sl@0
|
185 |
TBuf<KMaxUiBitmapNameLength> tempStore;
|
sl@0
|
186 |
|
sl@0
|
187 |
tempStore.Format(KScreenWindowPopup, i);
|
sl@0
|
188 |
READ_INI1A(tempStore, occurances, popupOccurances, aUtils);
|
sl@0
|
189 |
|
sl@0
|
190 |
tempStore.Format(KScreenWindowPopup, i);
|
sl@0
|
191 |
|
sl@0
|
192 |
if(popupOccurances)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
RDebug::Print(_L("Popup window enabled for screen %d"), i);
|
sl@0
|
195 |
aScreenNo = i;
|
sl@0
|
196 |
TInt screenMode;
|
sl@0
|
197 |
|
sl@0
|
198 |
READ_INI1A(tempStore, multi_bitmap_popup_file, aBitmapFile, aUtils);
|
sl@0
|
199 |
|
sl@0
|
200 |
READ_INI1A(tempStore, window_size, windowSize, aUtils);
|
sl@0
|
201 |
TImportScreenConfig::ExtractSize(windowSize, aWindowSize);
|
sl@0
|
202 |
|
sl@0
|
203 |
READ_INI1A(tempStore, window_position, windowPosition, aUtils);
|
sl@0
|
204 |
TImportScreenConfig::ExtractPoint(windowPosition, aWindowPosition);
|
sl@0
|
205 |
|
sl@0
|
206 |
READ_INI2A(tempStore, transparency, True, False, aTransparency, ETrue, EFalse, aUtils);
|
sl@0
|
207 |
READ_INI2(screen_mode, EColor16MA, EColor64K, screenMode, EColor16MA, EColor64K, aUtils);
|
sl@0
|
208 |
|
sl@0
|
209 |
aMode = static_cast<TDisplayMode>(screenMode);
|
sl@0
|
210 |
|
sl@0
|
211 |
//The popup is enabled for one screen per instance of the exe
|
sl@0
|
212 |
return;
|
sl@0
|
213 |
}
|
sl@0
|
214 |
else
|
sl@0
|
215 |
{
|
sl@0
|
216 |
RDebug::Print(_L("No popup window enabled for screen %d"), i);
|
sl@0
|
217 |
}
|
sl@0
|
218 |
}
|
sl@0
|
219 |
}
|
sl@0
|
220 |
|
sl@0
|
221 |
|
sl@0
|
222 |
LOCAL_C void DeterminePixelValues(TSize& aWindowSize, TPoint& aWindowPosition, CWsScreenDevice& aScreenDevice)
|
sl@0
|
223 |
{
|
sl@0
|
224 |
TSize screenSize = aScreenDevice.SizeInPixels();
|
sl@0
|
225 |
|
sl@0
|
226 |
//Convert surface size percentages to pixel sizes
|
sl@0
|
227 |
if(aWindowSize.iWidth <= 0)
|
sl@0
|
228 |
{
|
sl@0
|
229 |
RDebug::Print(_L("popup_width is zero or less, quitting\n"));
|
sl@0
|
230 |
User::Exit(0);
|
sl@0
|
231 |
}
|
sl@0
|
232 |
else
|
sl@0
|
233 |
{
|
sl@0
|
234 |
aWindowSize.iWidth = (aWindowSize.iWidth * screenSize.iWidth)/100;
|
sl@0
|
235 |
}
|
sl@0
|
236 |
|
sl@0
|
237 |
if(aWindowSize.iHeight <= 0)
|
sl@0
|
238 |
{
|
sl@0
|
239 |
RDebug::Print(_L("popup_height is zero or less, quitting\n"));
|
sl@0
|
240 |
User::Exit(0);
|
sl@0
|
241 |
}
|
sl@0
|
242 |
else
|
sl@0
|
243 |
{
|
sl@0
|
244 |
aWindowSize.iHeight = (aWindowSize.iHeight * screenSize.iHeight)/100;
|
sl@0
|
245 |
}
|
sl@0
|
246 |
|
sl@0
|
247 |
//Convert surface position percentages to pixel sizes
|
sl@0
|
248 |
aWindowPosition.iX = (aWindowPosition.iX * screenSize.iWidth)/100;
|
sl@0
|
249 |
aWindowPosition.iY = (aWindowPosition.iY * screenSize.iHeight)/100;
|
sl@0
|
250 |
}
|