First public contribution.
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
34 class CClient: public CActive
37 static CClient* NewL();
41 inline RWsSession& Ws();
42 inline RWindowGroup& Group();
43 inline CWindowGc& Gc();
44 inline CWindow* Win();
45 inline CWsScreenDevice* Screen();
46 inline CWsRedir* WsRedir();
47 inline CWsListen* WsListen();
48 void HandleCommand(TInt aCmd);
54 void ClearTwoWindow();
58 CWsScreenDevice* iScreen;
62 CRedrawHandler* iRedraw;
69 class CRedrawHandler: public CActive
72 static CRedrawHandler* NewL(CClient* aClient);
77 CRedrawHandler(CClient* aClient);
84 class CWindow: public CBase
87 CWindow(CClient* aClient);
88 void ConstructL(CWindow* aParent, TBool aTransparentFlag);
90 void Draw(const TRect& aRect) const;
91 void DrawMenu() const;
92 inline RWindow& Window();
93 inline CWindow* Parent();
95 inline CClient* Client();
103 inline RWsSession& CClient::Ws()
105 inline RWindowGroup& CClient::Group()
107 inline CWindowGc& CClient::Gc()
109 inline CWindow* CClient::Win()
111 inline CWsScreenDevice* CClient::Screen()
113 inline CWsListen* CClient::WsListen()
115 inline CWsRedir* CClient::WsRedir()
118 inline RWindow& CWindow::Window()
120 inline CWindow* CWindow::Parent()
122 inline TSize CWindow::Size()
123 {return iWin.Size();}
124 inline CClient* CWindow::Client()