author | sl@SLION-WIN7.fritz.box |
Fri, 15 Jun 2012 03:10:57 +0200 | |
changeset 0 | bde4ae8d615e |
permissions | -rw-r--r-- |
sl@0 | 1 |
// Copyright (c) 2006-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 - Internal Symbian test code |
sl@0 | 20 |
*/ |
sl@0 | 21 |
|
sl@0 | 22 |
#ifndef __TCRX_H__ |
sl@0 | 23 |
#define __TCRX_H__ |
sl@0 | 24 |
|
sl@0 | 25 |
#include <e32base.h> |
sl@0 | 26 |
#include <w32std.h> |
sl@0 | 27 |
|
sl@0 | 28 |
class CRedrawHandler; |
sl@0 | 29 |
class CWindow; |
sl@0 | 30 |
class CWsListen; |
sl@0 | 31 |
class CWsRedir; |
sl@0 | 32 |
class CTwoWindow; |
sl@0 | 33 |
|
sl@0 | 34 |
class CClient: public CActive |
sl@0 | 35 |
{ |
sl@0 | 36 |
public: |
sl@0 | 37 |
static CClient* NewL(); |
sl@0 | 38 |
~CClient(); |
sl@0 | 39 |
void RunL(); |
sl@0 | 40 |
void DoCancel(); |
sl@0 | 41 |
inline RWsSession& Ws(); |
sl@0 | 42 |
inline RWindowGroup& Group(); |
sl@0 | 43 |
inline CWindowGc& Gc(); |
sl@0 | 44 |
inline CWindow* Win(); |
sl@0 | 45 |
inline CWsScreenDevice* Screen(); |
sl@0 | 46 |
inline CWsRedir* WsRedir(); |
sl@0 | 47 |
inline CWsListen* WsListen(); |
sl@0 | 48 |
void HandleCommand(TInt aCmd); |
sl@0 | 49 |
private: |
sl@0 | 50 |
CClient(); |
sl@0 | 51 |
void ConstructL(); |
sl@0 | 52 |
void MakeRequest(); |
sl@0 | 53 |
void DrawTwoWindow(); |
sl@0 | 54 |
void ClearTwoWindow(); |
sl@0 | 55 |
|
sl@0 | 56 |
RWsSession iWs; |
sl@0 | 57 |
RWindowGroup iGroup; |
sl@0 | 58 |
CWsScreenDevice* iScreen; |
sl@0 | 59 |
CWindowGc* iGc; |
sl@0 | 60 |
TWsEvent iEvent; |
sl@0 | 61 |
CWindow* iWin; |
sl@0 | 62 |
CRedrawHandler* iRedraw; |
sl@0 | 63 |
CWsListen* iListen; |
sl@0 | 64 |
CWsRedir* iRedir; |
sl@0 | 65 |
RBlankWindow iBlank; |
sl@0 | 66 |
CTwoWindow* iTwo; |
sl@0 | 67 |
}; |
sl@0 | 68 |
|
sl@0 | 69 |
class CRedrawHandler: public CActive |
sl@0 | 70 |
{ |
sl@0 | 71 |
public: |
sl@0 | 72 |
static CRedrawHandler* NewL(CClient* aClient); |
sl@0 | 73 |
~CRedrawHandler(); |
sl@0 | 74 |
void RunL(); |
sl@0 | 75 |
void DoCancel(); |
sl@0 | 76 |
private: |
sl@0 | 77 |
CRedrawHandler(CClient* aClient); |
sl@0 | 78 |
void ConstructL(); |
sl@0 | 79 |
void MakeRequest(); |
sl@0 | 80 |
|
sl@0 | 81 |
CClient* iClient; |
sl@0 | 82 |
}; |
sl@0 | 83 |
|
sl@0 | 84 |
class CWindow: public CBase |
sl@0 | 85 |
{ |
sl@0 | 86 |
public: |
sl@0 | 87 |
CWindow(CClient* aClient); |
sl@0 | 88 |
void ConstructL(CWindow* aParent, TBool aTransparentFlag); |
sl@0 | 89 |
~CWindow(); |
sl@0 | 90 |
void Draw(const TRect& aRect) const; |
sl@0 | 91 |
void DrawMenu() const; |
sl@0 | 92 |
inline RWindow& Window(); |
sl@0 | 93 |
inline CWindow* Parent(); |
sl@0 | 94 |
inline TSize Size(); |
sl@0 | 95 |
inline CClient* Client(); |
sl@0 | 96 |
private: |
sl@0 | 97 |
CClient* iClient; |
sl@0 | 98 |
RWindow iWin; |
sl@0 | 99 |
CWindow* iParent; |
sl@0 | 100 |
}; |
sl@0 | 101 |
|
sl@0 | 102 |
// CClient |
sl@0 | 103 |
inline RWsSession& CClient::Ws() |
sl@0 | 104 |
{return iWs;} |
sl@0 | 105 |
inline RWindowGroup& CClient::Group() |
sl@0 | 106 |
{return iGroup;} |
sl@0 | 107 |
inline CWindowGc& CClient::Gc() |
sl@0 | 108 |
{return *iGc;} |
sl@0 | 109 |
inline CWindow* CClient::Win() |
sl@0 | 110 |
{return iWin;} |
sl@0 | 111 |
inline CWsScreenDevice* CClient::Screen() |
sl@0 | 112 |
{return iScreen;} |
sl@0 | 113 |
inline CWsListen* CClient::WsListen() |
sl@0 | 114 |
{return iListen;} |
sl@0 | 115 |
inline CWsRedir* CClient::WsRedir() |
sl@0 | 116 |
{return iRedir;} |
sl@0 | 117 |
// CWindow |
sl@0 | 118 |
inline RWindow& CWindow::Window() |
sl@0 | 119 |
{return iWin;} |
sl@0 | 120 |
inline CWindow* CWindow::Parent() |
sl@0 | 121 |
{return iParent;} |
sl@0 | 122 |
inline TSize CWindow::Size() |
sl@0 | 123 |
{return iWin.Size();} |
sl@0 | 124 |
inline CClient* CWindow::Client() |
sl@0 | 125 |
{return iClient;} |
sl@0 | 126 |
|
sl@0 | 127 |
#endif |
sl@0 | 128 |