os/graphics/windowing/windowserver/test/tcrx/tcrx.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/tcrx/tcrx.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,393 @@
     1.4 +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +/**
    1.20 + @file
    1.21 + @test
    1.22 + @internalComponent - Internal Symbian test code
    1.23 +*/
    1.24 +
    1.25 +#include <gdi.h>
    1.26 +#include "tcrx.h"
    1.27 +#include "wsredir.h"
    1.28 +#include "wslisten.h"
    1.29 +
    1.30 +static TRedirectorInfo TheInfo;
    1.31 +
    1.32 +class CTwoWindow: public CBase
    1.33 +	{
    1.34 +public:
    1.35 +	static CTwoWindow* NewL();
    1.36 +	~CTwoWindow();
    1.37 +private:
    1.38 +	void ConstructL();
    1.39 +private:
    1.40 +	RWsSession iWs;
    1.41 +	CWsScreenDevice* iScr;
    1.42 +	CWindowGc* iGc;
    1.43 +	RWindowGroup iGroup;
    1.44 +	RWindow iBg;
    1.45 +	RWindow iFg;
    1.46 +	};
    1.47 +
    1.48 +CTwoWindow* CTwoWindow::NewL()
    1.49 +	{
    1.50 +	CTwoWindow* tw = new(ELeave) CTwoWindow;
    1.51 +	CleanupStack::PushL(tw);
    1.52 +	tw->ConstructL();
    1.53 +	CleanupStack::Pop(tw);
    1.54 +	return tw;
    1.55 +	}
    1.56 +
    1.57 +CTwoWindow::~CTwoWindow()
    1.58 +	{
    1.59 +	iFg.Close();
    1.60 +	iBg.Close();
    1.61 +	iGroup.Close();
    1.62 +	delete iGc;
    1.63 +	delete iScr;
    1.64 +	iWs.Close();	
    1.65 +	}
    1.66 +
    1.67 +void CTwoWindow::ConstructL()
    1.68 +	{
    1.69 +	User::LeaveIfError(iWs.Connect());
    1.70 +	iScr = new(ELeave) CWsScreenDevice(iWs);
    1.71 +	User::LeaveIfError(iScr->Construct());
    1.72 +	User::LeaveIfError(iScr->CreateContext(iGc));
    1.73 +	iGroup = RWindowGroup(iWs);
    1.74 +	User::LeaveIfError(iGroup.Construct(0xc0de,ETrue));
    1.75 +	
    1.76 +	iBg = RWindow(iWs);
    1.77 +	User::LeaveIfError(iBg.Construct(iGroup,0xc0debabe));
    1.78 +	iBg.SetRequiredDisplayMode(EColor64K);
    1.79 +	iBg.Activate();
    1.80 +	iWs.Flush();
    1.81 +
    1.82 +	iBg.BeginRedraw();
    1.83 +	iGc->Activate(iBg);
    1.84 +	iGc->SetBrushColor(KRgbGreen);
    1.85 +	iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
    1.86 +	TRect rect(iScr->SizeInPixels());
    1.87 +	iGc->DrawRect(rect);
    1.88 +	iGc->SetBrushColor(KRgbBlue);
    1.89 +	iGc->DrawEllipse(rect);
    1.90 +	iGc->Deactivate();
    1.91 +	iBg.EndRedraw();
    1.92 +	iWs.Flush();
    1.93 +	
    1.94 +	iFg = RWindow(iWs);
    1.95 +	User::LeaveIfError(iFg.Construct(iGroup,0xc0decafe));
    1.96 +	iFg.SetRequiredDisplayMode(EColor64K);
    1.97 +	iFg.SetTransparencyAlphaChannel();
    1.98 +	iFg.SetBackgroundColor(TRgb(0xff,0x55,0x55,0x80));
    1.99 +	iFg.Activate();
   1.100 +	iWs.Flush();
   1.101 +	}
   1.102 +
   1.103 +CClient* CClient::NewL()
   1.104 +	{
   1.105 +	CClient* self = new(ELeave) CClient;
   1.106 +	CleanupStack::PushL(self);
   1.107 +	self->ConstructL();
   1.108 +	CleanupStack::Pop(self);
   1.109 +	
   1.110 +	return self;
   1.111 +	}
   1.112 +
   1.113 +CClient::CClient(): CActive(CActive::EPriorityStandard)
   1.114 +	{
   1.115 +	}
   1.116 +
   1.117 +void CClient::ConstructL()
   1.118 +	{
   1.119 +	CActiveScheduler::Add(this);
   1.120 +	User::LeaveIfError(iWs.Connect());
   1.121 +	iScreen = new(ELeave) CWsScreenDevice(iWs);
   1.122 +	User::LeaveIfError(iScreen->Construct(0));
   1.123 +	iGroup = RWindowGroup(iWs);
   1.124 +	User::LeaveIfError(iGroup.Construct(0xCAFE, ETrue));
   1.125 +	iGc = new(ELeave) CWindowGc(iScreen);
   1.126 +	User::LeaveIfError(iGc->Construct());
   1.127 +	iWin = new(ELeave) CWindow(this);
   1.128 +	iWin->ConstructL(NULL, EFalse);
   1.129 +	iRedraw = CRedrawHandler::NewL(this);
   1.130 +
   1.131 +	iRedir = CWsRedir::NewL();
   1.132 +	iListen = CWsListen::NewL();
   1.133 +		
   1.134 +	MakeRequest();
   1.135 +	}
   1.136 +
   1.137 +void CClient::HandleCommand(TInt aCmd)
   1.138 +	{
   1.139 +	switch (aCmd)
   1.140 +		{
   1.141 +		case 1:
   1.142 +		iRedir->Redirect(CWsRedir::EFrontBuffer, ETrue);
   1.143 +		break;
   1.144 +
   1.145 +		case 2:
   1.146 +		iRedir->Redirect(CWsRedir::EBackBuffer, ETrue);
   1.147 +		break;
   1.148 +
   1.149 +		case 3:
   1.150 +		iRedir->Redirect(CWsRedir::EFrontBuffer, EFalse);
   1.151 +		break;
   1.152 +
   1.153 +		case 4:
   1.154 +		iRedir->Redirect(CWsRedir::EBackBuffer, EFalse);
   1.155 +		break;
   1.156 +
   1.157 +		case 5:
   1.158 +		iListen->Enable(ETrue);
   1.159 +		break;
   1.160 +
   1.161 +		case 6:
   1.162 +		iListen->Enable(EFalse);
   1.163 +		break;
   1.164 +
   1.165 +		case 7:
   1.166 +		iRedir->QueryPlugin(TheInfo);
   1.167 +		break;
   1.168 +		
   1.169 +		case 8:
   1.170 +		iBlank.Close();
   1.171 +		iBlank = RBlankWindow(iWs);
   1.172 +		iBlank.Construct(iGroup, 0xbeef);
   1.173 +		iBlank.SetRequiredDisplayMode(EColor64K);
   1.174 +		iBlank.SetColor(KRgbRed);
   1.175 +		iBlank.SetExtent(TPoint(20,20),TSize(100,100));
   1.176 +		iBlank.Activate();
   1.177 +		break;
   1.178 +		
   1.179 +		case 9:
   1.180 +		ClearTwoWindow();
   1.181 +		DrawTwoWindow();
   1.182 +		break;
   1.183 +		
   1.184 +		case 10:
   1.185 +		CActiveScheduler::Stop();
   1.186 +		break;
   1.187 +		}
   1.188 +	}
   1.189 +	
   1.190 +CClient::~CClient()
   1.191 +	{	
   1.192 +	Deque();
   1.193 +	ClearTwoWindow();
   1.194 +	iBlank.Close();
   1.195 +	
   1.196 +	delete iListen;
   1.197 +	delete iRedir;
   1.198 +	delete iWin;
   1.199 +	delete iRedraw;
   1.200 +	delete iGc;
   1.201 +	delete iScreen;
   1.202 +	
   1.203 +	iGroup.Close();
   1.204 +	iWs.Close();
   1.205 +	}
   1.206 +
   1.207 +void CClient::DrawTwoWindow()
   1.208 +	{
   1.209 +	TRAP_IGNORE(iTwo = CTwoWindow::NewL());
   1.210 +	}
   1.211 +
   1.212 +void CClient::ClearTwoWindow()
   1.213 +	{
   1.214 +	delete iTwo;
   1.215 +	iTwo = NULL;	
   1.216 +	}
   1.217 +
   1.218 +void CClient::RunL()
   1.219 +	{
   1.220 +	iWs.GetEvent(iEvent);
   1.221 +	if (iEvent.Type()==EEventKey)
   1.222 +		HandleCommand(iEvent.Key()->iCode-'0');
   1.223 +	MakeRequest();
   1.224 +	}
   1.225 +
   1.226 +void CClient::DoCancel()
   1.227 +	{
   1.228 +	iWs.EventReadyCancel();
   1.229 +	}
   1.230 +
   1.231 +void CClient::MakeRequest()
   1.232 +	{
   1.233 +	iWs.EventReady(&iStatus);
   1.234 +	SetActive();
   1.235 +	}
   1.236 +
   1.237 +CRedrawHandler* CRedrawHandler::NewL(CClient* aClient)
   1.238 +	{
   1.239 +	CRedrawHandler* self=new(ELeave) CRedrawHandler(aClient);
   1.240 +	CleanupStack::PushL(self);
   1.241 +	self->ConstructL();
   1.242 +	CleanupStack::Pop(self);
   1.243 +	
   1.244 +	return self;
   1.245 +	}
   1.246 +
   1.247 +CRedrawHandler::CRedrawHandler(CClient* aClient) : CActive(CActive::EPriorityStandard), iClient(aClient)
   1.248 +	{
   1.249 +	}
   1.250 +
   1.251 +void CRedrawHandler::ConstructL()
   1.252 +	{
   1.253 +	CActiveScheduler::Add(this);
   1.254 +	MakeRequest();
   1.255 +	}
   1.256 +
   1.257 +CRedrawHandler::~CRedrawHandler()
   1.258 +	{
   1.259 +	Cancel();
   1.260 +	}
   1.261 +
   1.262 +void CRedrawHandler::RunL()
   1.263 +	{
   1.264 +	TWsRedrawEvent event;
   1.265 +	iClient->Ws().GetRedraw(event);
   1.266 +	CWindow* win = (CWindow*)event.Handle();
   1.267 +	if (win) 
   1.268 +		{
   1.269 +		TRect rect=event.Rect();
   1.270 +		iClient->Gc().Activate(win->Window());
   1.271 +		win->Window().BeginRedraw(rect);
   1.272 +		win->Draw(rect);
   1.273 +		win->Window().EndRedraw();
   1.274 +		iClient->Gc().Deactivate();
   1.275 +		}
   1.276 +		
   1.277 +	MakeRequest();
   1.278 +	}
   1.279 +
   1.280 +void CRedrawHandler::MakeRequest()
   1.281 +	{
   1.282 +	iClient->Ws().RedrawReady(&iStatus);
   1.283 +	SetActive();
   1.284 +	}
   1.285 +
   1.286 +void CRedrawHandler::DoCancel()
   1.287 +	{
   1.288 +	iClient->Ws().RedrawReadyCancel();
   1.289 +	}
   1.290 +
   1.291 +CWindow::CWindow(CClient* aClient) : iClient(aClient)
   1.292 +	{
   1.293 +	}
   1.294 +
   1.295 +CWindow::~CWindow()
   1.296 +	{
   1.297 +	iWin.Close();
   1.298 +	}
   1.299 +
   1.300 +void CWindow::ConstructL(CWindow* aParent, TBool aTransparentFlag)
   1.301 +	{
   1.302 +	iParent = aParent;
   1.303 +	iWin = RWindow(iClient->Ws());
   1.304 +	RWindowTreeNode* node=iParent? &iParent->Window() : (RWindowTreeNode*)&iClient->Group();
   1.305 +	User::LeaveIfError(iWin.Construct(*node, (TUint32)this));
   1.306 +	iWin.SetRequiredDisplayMode(EColor64K);
   1.307 +	if (aTransparentFlag)
   1.308 +		{
   1.309 +		iWin.SetBackgroundColor(TRgb(0,0,0,0x80));
   1.310 +		iWin.SetTransparencyAlphaChannel();
   1.311 +		}
   1.312 +	iWin.SetExtent(TPoint(0,0),TSize(240,240));
   1.313 +	iWin.Activate();
   1.314 +	}
   1.315 +
   1.316 +void CWindow::Draw(const TRect& aRect) const
   1.317 +	{
   1.318 +	CWindowGc& gc = iClient->Gc();
   1.319 +	gc.SetBrushStyle(CGraphicsContext::ESolidBrush);
   1.320 +	gc.SetBrushColor(TRgb(0,0,0xff,0xff));	
   1.321 +	gc.DrawRect(TRect(aRect.iTl.iX,aRect.iTl.iY,aRect.iBr.iX,aRect.iBr.iY/2));
   1.322 +	gc.SetBrushColor(TRgb(0,0,0xff,0x80));	
   1.323 +	gc.DrawRect(TRect(aRect.iTl.iX,aRect.iBr.iY/2,aRect.iBr.iX,aRect.iBr.iY));	
   1.324 +	DrawMenu();
   1.325 +	
   1.326 +	gc.DrawWsGraphic(iClient->WsRedir()->Id(),TRect(aRect.iTl.iX,aRect.iBr.iY/2,aRect.iBr.iX,aRect.iBr.iY));
   1.327 +	}
   1.328 +
   1.329 +_LIT(KMenu1, "1. Redirect screen");
   1.330 +_LIT(KMenu2, "2. Redirect flickerfree");
   1.331 +_LIT(KMenu3, "3. Restore screen");
   1.332 +_LIT(KMenu4, "4. Restore flickerfree");
   1.333 +_LIT(KMenu5, "5. Register event listener");
   1.334 +_LIT(KMenu6, "6. Unregister listener");
   1.335 +_LIT(KMenu7, "7. Test send receive msg");
   1.336 +_LIT(KMenu8, "8. Test blank window");
   1.337 +_LIT(KMenu9, "9. Test two window");
   1.338 +_LIT(KMenuA, "A. Exit");
   1.339 +
   1.340 +const TBufC<32> TheMenu[] = 
   1.341 +	{
   1.342 +	(const TDesC&)KMenu1,
   1.343 +	(const TDesC&)KMenu2,
   1.344 +	(const TDesC&)KMenu3,
   1.345 +	(const TDesC&)KMenu4,
   1.346 +	(const TDesC&)KMenu5,
   1.347 +	(const TDesC&)KMenu6,
   1.348 +	(const TDesC&)KMenu7,
   1.349 +	(const TDesC&)KMenu8,
   1.350 +	(const TDesC&)KMenu9,
   1.351 +	(const TDesC&)KMenuA
   1.352 +	};
   1.353 +	
   1.354 +_LIT(KTypeFace, "DejaVu Sans Condensed");
   1.355 +
   1.356 +void CWindow::DrawMenu() const
   1.357 +	{
   1.358 +	CWsScreenDevice* scr = iClient->Screen();
   1.359 +	CFont* font = NULL;
   1.360 +	TFontSpec fs(KTypeFace, 15);
   1.361 +	scr->GetNearestFontInPixels(font, fs);
   1.362 +	CWindowGc& gc = iClient->Gc();
   1.363 +	gc.UseFont(font);
   1.364 +	TInt h = font->HeightInPixels();
   1.365 +	gc.SetPenColor(KRgbYellow);
   1.366 +	TInt nMenu = sizeof(TheMenu)/sizeof(TheMenu[0]);
   1.367 +	for (TInt ii=0; ii<nMenu; ++ii)
   1.368 +		gc.DrawText(TheMenu[ii], TPoint(10,(ii+1)*h));
   1.369 +	gc.DiscardFont();
   1.370 +	scr->ReleaseFont(font);
   1.371 +	}
   1.372 +
   1.373 +void MainL()
   1.374 +	{
   1.375 +	CClient* client=CClient::NewL();
   1.376 +	CActiveScheduler::Start();
   1.377 +	
   1.378 +	delete client;
   1.379 +	}
   1.380 +
   1.381 +GLDEF_C TInt E32Main()
   1.382 +	{
   1.383 +	CTrapCleanup* trap=CTrapCleanup::New();
   1.384 +	if (!trap)
   1.385 +		return KErrNoMemory;
   1.386 +	CActiveScheduler* scheduler = new(ELeave) CActiveScheduler;
   1.387 +	CActiveScheduler::Install(scheduler);
   1.388 +	
   1.389 +	__UHEAP_MARK;	
   1.390 +	TRAPD(err, MainL());
   1.391 +	__UHEAP_MARKEND;	
   1.392 +	
   1.393 +	delete scheduler;
   1.394 +	delete trap;
   1.395 +	return err;
   1.396 +	}