Update contrib.
1 // Copyright (c) 2006-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
27 static TRedirectorInfo TheInfo;
29 class CTwoWindow: public CBase
32 static CTwoWindow* NewL();
38 CWsScreenDevice* iScr;
45 CTwoWindow* CTwoWindow::NewL()
47 CTwoWindow* tw = new(ELeave) CTwoWindow;
48 CleanupStack::PushL(tw);
50 CleanupStack::Pop(tw);
54 CTwoWindow::~CTwoWindow()
64 void CTwoWindow::ConstructL()
66 User::LeaveIfError(iWs.Connect());
67 iScr = new(ELeave) CWsScreenDevice(iWs);
68 User::LeaveIfError(iScr->Construct());
69 User::LeaveIfError(iScr->CreateContext(iGc));
70 iGroup = RWindowGroup(iWs);
71 User::LeaveIfError(iGroup.Construct(0xc0de,ETrue));
74 User::LeaveIfError(iBg.Construct(iGroup,0xc0debabe));
75 iBg.SetRequiredDisplayMode(EColor64K);
81 iGc->SetBrushColor(KRgbGreen);
82 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
83 TRect rect(iScr->SizeInPixels());
85 iGc->SetBrushColor(KRgbBlue);
86 iGc->DrawEllipse(rect);
92 User::LeaveIfError(iFg.Construct(iGroup,0xc0decafe));
93 iFg.SetRequiredDisplayMode(EColor64K);
94 iFg.SetTransparencyAlphaChannel();
95 iFg.SetBackgroundColor(TRgb(0xff,0x55,0x55,0x80));
100 CClient* CClient::NewL()
102 CClient* self = new(ELeave) CClient;
103 CleanupStack::PushL(self);
105 CleanupStack::Pop(self);
110 CClient::CClient(): CActive(CActive::EPriorityStandard)
114 void CClient::ConstructL()
116 CActiveScheduler::Add(this);
117 User::LeaveIfError(iWs.Connect());
118 iScreen = new(ELeave) CWsScreenDevice(iWs);
119 User::LeaveIfError(iScreen->Construct(0));
120 iGroup = RWindowGroup(iWs);
121 User::LeaveIfError(iGroup.Construct(0xCAFE, ETrue));
122 iGc = new(ELeave) CWindowGc(iScreen);
123 User::LeaveIfError(iGc->Construct());
124 iWin = new(ELeave) CWindow(this);
125 iWin->ConstructL(NULL, EFalse);
126 iRedraw = CRedrawHandler::NewL(this);
128 iRedir = CWsRedir::NewL();
129 iListen = CWsListen::NewL();
134 void CClient::HandleCommand(TInt aCmd)
139 iRedir->Redirect(CWsRedir::EFrontBuffer, ETrue);
143 iRedir->Redirect(CWsRedir::EBackBuffer, ETrue);
147 iRedir->Redirect(CWsRedir::EFrontBuffer, EFalse);
151 iRedir->Redirect(CWsRedir::EBackBuffer, EFalse);
155 iListen->Enable(ETrue);
159 iListen->Enable(EFalse);
163 iRedir->QueryPlugin(TheInfo);
168 iBlank = RBlankWindow(iWs);
169 iBlank.Construct(iGroup, 0xbeef);
170 iBlank.SetRequiredDisplayMode(EColor64K);
171 iBlank.SetColor(KRgbRed);
172 iBlank.SetExtent(TPoint(20,20),TSize(100,100));
182 CActiveScheduler::Stop();
204 void CClient::DrawTwoWindow()
206 TRAP_IGNORE(iTwo = CTwoWindow::NewL());
209 void CClient::ClearTwoWindow()
217 iWs.GetEvent(iEvent);
218 if (iEvent.Type()==EEventKey)
219 HandleCommand(iEvent.Key()->iCode-'0');
223 void CClient::DoCancel()
225 iWs.EventReadyCancel();
228 void CClient::MakeRequest()
230 iWs.EventReady(&iStatus);
234 CRedrawHandler* CRedrawHandler::NewL(CClient* aClient)
236 CRedrawHandler* self=new(ELeave) CRedrawHandler(aClient);
237 CleanupStack::PushL(self);
239 CleanupStack::Pop(self);
244 CRedrawHandler::CRedrawHandler(CClient* aClient) : CActive(CActive::EPriorityStandard), iClient(aClient)
248 void CRedrawHandler::ConstructL()
250 CActiveScheduler::Add(this);
254 CRedrawHandler::~CRedrawHandler()
259 void CRedrawHandler::RunL()
261 TWsRedrawEvent event;
262 iClient->Ws().GetRedraw(event);
263 CWindow* win = (CWindow*)event.Handle();
266 TRect rect=event.Rect();
267 iClient->Gc().Activate(win->Window());
268 win->Window().BeginRedraw(rect);
270 win->Window().EndRedraw();
271 iClient->Gc().Deactivate();
277 void CRedrawHandler::MakeRequest()
279 iClient->Ws().RedrawReady(&iStatus);
283 void CRedrawHandler::DoCancel()
285 iClient->Ws().RedrawReadyCancel();
288 CWindow::CWindow(CClient* aClient) : iClient(aClient)
297 void CWindow::ConstructL(CWindow* aParent, TBool aTransparentFlag)
300 iWin = RWindow(iClient->Ws());
301 RWindowTreeNode* node=iParent? &iParent->Window() : (RWindowTreeNode*)&iClient->Group();
302 User::LeaveIfError(iWin.Construct(*node, (TUint32)this));
303 iWin.SetRequiredDisplayMode(EColor64K);
304 if (aTransparentFlag)
306 iWin.SetBackgroundColor(TRgb(0,0,0,0x80));
307 iWin.SetTransparencyAlphaChannel();
309 iWin.SetExtent(TPoint(0,0),TSize(240,240));
313 void CWindow::Draw(const TRect& aRect) const
315 CWindowGc& gc = iClient->Gc();
316 gc.SetBrushStyle(CGraphicsContext::ESolidBrush);
317 gc.SetBrushColor(TRgb(0,0,0xff,0xff));
318 gc.DrawRect(TRect(aRect.iTl.iX,aRect.iTl.iY,aRect.iBr.iX,aRect.iBr.iY/2));
319 gc.SetBrushColor(TRgb(0,0,0xff,0x80));
320 gc.DrawRect(TRect(aRect.iTl.iX,aRect.iBr.iY/2,aRect.iBr.iX,aRect.iBr.iY));
323 gc.DrawWsGraphic(iClient->WsRedir()->Id(),TRect(aRect.iTl.iX,aRect.iBr.iY/2,aRect.iBr.iX,aRect.iBr.iY));
326 _LIT(KMenu1, "1. Redirect screen");
327 _LIT(KMenu2, "2. Redirect flickerfree");
328 _LIT(KMenu3, "3. Restore screen");
329 _LIT(KMenu4, "4. Restore flickerfree");
330 _LIT(KMenu5, "5. Register event listener");
331 _LIT(KMenu6, "6. Unregister listener");
332 _LIT(KMenu7, "7. Test send receive msg");
333 _LIT(KMenu8, "8. Test blank window");
334 _LIT(KMenu9, "9. Test two window");
335 _LIT(KMenuA, "A. Exit");
337 const TBufC<32> TheMenu[] =
339 (const TDesC&)KMenu1,
340 (const TDesC&)KMenu2,
341 (const TDesC&)KMenu3,
342 (const TDesC&)KMenu4,
343 (const TDesC&)KMenu5,
344 (const TDesC&)KMenu6,
345 (const TDesC&)KMenu7,
346 (const TDesC&)KMenu8,
347 (const TDesC&)KMenu9,
351 _LIT(KTypeFace, "DejaVu Sans Condensed");
353 void CWindow::DrawMenu() const
355 CWsScreenDevice* scr = iClient->Screen();
357 TFontSpec fs(KTypeFace, 15);
358 scr->GetNearestFontInPixels(font, fs);
359 CWindowGc& gc = iClient->Gc();
361 TInt h = font->HeightInPixels();
362 gc.SetPenColor(KRgbYellow);
363 TInt nMenu = sizeof(TheMenu)/sizeof(TheMenu[0]);
364 for (TInt ii=0; ii<nMenu; ++ii)
365 gc.DrawText(TheMenu[ii], TPoint(10,(ii+1)*h));
367 scr->ReleaseFont(font);
372 CClient* client=CClient::NewL();
373 CActiveScheduler::Start();
378 GLDEF_C TInt E32Main()
380 CTrapCleanup* trap=CTrapCleanup::New();
383 CActiveScheduler* scheduler = new(ELeave) CActiveScheduler;
384 CActiveScheduler::Install(scheduler);