sl@0
|
1 |
// Copyright (c) 1995-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 |
// Base classes definitions used for building window server test code
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __TESTBASE_H__
|
sl@0
|
19 |
#define __TESTBASE_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
enum TTlibActivePriorities
|
sl@0
|
22 |
{
|
sl@0
|
23 |
ETlibRedrawActivePriority=-10,
|
sl@0
|
24 |
ETlibWsEventActivePriority=0,
|
sl@0
|
25 |
};
|
sl@0
|
26 |
|
sl@0
|
27 |
const TInt KDefaultScreen = 0;
|
sl@0
|
28 |
|
sl@0
|
29 |
//enum {ENullWsHandle=0xFFFFFFFF}; // Events delivered to this handle are thrown away
|
sl@0
|
30 |
const TUint32 ENullWsHandle=0xFFFFFFFF; // Events delivered to this handle are thrown away
|
sl@0
|
31 |
|
sl@0
|
32 |
typedef TBuf<KMaxFullName> TWindowTitle;
|
sl@0
|
33 |
typedef TBuf<0x100> TWinCommand;
|
sl@0
|
34 |
|
sl@0
|
35 |
const TUid KUidWServSecurityTesting={0x10205152};
|
sl@0
|
36 |
enum TWServSecTest
|
sl@0
|
37 |
{
|
sl@0
|
38 |
EWServSecTestBufferSecurity
|
sl@0
|
39 |
};
|
sl@0
|
40 |
|
sl@0
|
41 |
class CTClient; // Forward reference
|
sl@0
|
42 |
class CTWindowGroup;
|
sl@0
|
43 |
class CTBaseWin;
|
sl@0
|
44 |
class CTWin;
|
sl@0
|
45 |
|
sl@0
|
46 |
typedef CTClient *(*TCreateClientFunc)();
|
sl@0
|
47 |
|
sl@0
|
48 |
IMPORT_C TBool CheckBlankWindow(TRect aArea,TRgb aColor,const CWsScreenDevice* aScreen);
|
sl@0
|
49 |
|
sl@0
|
50 |
class CTWinBase : public CBase
|
sl@0
|
51 |
{
|
sl@0
|
52 |
protected:
|
sl@0
|
53 |
public:
|
sl@0
|
54 |
IMPORT_C CTWinBase(TInt aType);
|
sl@0
|
55 |
IMPORT_C virtual TPoint Position() const;
|
sl@0
|
56 |
IMPORT_C virtual void PointerEnter(const TTime &aTime);
|
sl@0
|
57 |
IMPORT_C virtual void PointerExit(const TTime &aTime);
|
sl@0
|
58 |
IMPORT_C virtual void PointerBufferReady(const TTime &aTime);
|
sl@0
|
59 |
IMPORT_C virtual void PointerL(const TPointerEvent &aPointer,const TTime &aTime);
|
sl@0
|
60 |
IMPORT_C virtual void SwitchOn(const TTime &aTime);
|
sl@0
|
61 |
IMPORT_C virtual void ModifiersChanged(const TModifiersChangedEvent &aModifiersChanged ,const TTime &aTime);
|
sl@0
|
62 |
IMPORT_C virtual void ErrorMessage(const TWsErrorMessage &aErrorMessage, const TTime &aTime);
|
sl@0
|
63 |
IMPORT_C virtual void SetVisible(TBool aState);
|
sl@0
|
64 |
IMPORT_C CTWinBase *Parent() const;
|
sl@0
|
65 |
IMPORT_C CTWinBase *NextSibling() const;
|
sl@0
|
66 |
IMPORT_C CTWinBase *PrevSibling() const;
|
sl@0
|
67 |
IMPORT_C CTBaseWin *Child() const;
|
sl@0
|
68 |
IMPORT_C virtual void AdjustOrdinal(TInt adjust);
|
sl@0
|
69 |
IMPORT_C virtual void AdjustShadow(TInt aAdjust);
|
sl@0
|
70 |
IMPORT_C virtual TInt SubType();
|
sl@0
|
71 |
// Pure virtual definitions
|
sl@0
|
72 |
virtual void WinKeyL(const TKeyEvent &aKey,const TTime &aTime)=0;
|
sl@0
|
73 |
virtual TSize Size() const=0;
|
sl@0
|
74 |
virtual RWindowTreeNode *WinTreeNode()=0;
|
sl@0
|
75 |
virtual const RWindowTreeNode *WinTreeNode() const=0;
|
sl@0
|
76 |
IMPORT_C virtual CTClient *Client() const;
|
sl@0
|
77 |
virtual CTWindowGroup *Group() const=0;
|
sl@0
|
78 |
CTWindowGroup *iOwnerWin;
|
sl@0
|
79 |
public:
|
sl@0
|
80 |
TInt iType;
|
sl@0
|
81 |
__DECLARE_TEST;
|
sl@0
|
82 |
};
|
sl@0
|
83 |
|
sl@0
|
84 |
class CTBaseWin : public CTWinBase
|
sl@0
|
85 |
{
|
sl@0
|
86 |
public:
|
sl@0
|
87 |
IMPORT_C CTBaseWin(TInt aType);
|
sl@0
|
88 |
IMPORT_C ~CTBaseWin();
|
sl@0
|
89 |
IMPORT_C virtual void ConstructL(CTWinBase &parent);
|
sl@0
|
90 |
IMPORT_C virtual void ConstructExtLD(CTWinBase &aParent, const TPoint &aPos, const TSize &aSize);
|
sl@0
|
91 |
virtual TInt ConstructWin(const CTWinBase &aWs)=0;
|
sl@0
|
92 |
IMPORT_C virtual void InitWin();
|
sl@0
|
93 |
IMPORT_C virtual void PointerL(const TPointerEvent &aPointer,const TTime &aTime);
|
sl@0
|
94 |
IMPORT_C virtual void DragDropL(const TPointerEvent &aPointer,const TTime &aTime);
|
sl@0
|
95 |
IMPORT_C virtual void RelinquishFocus();
|
sl@0
|
96 |
IMPORT_C void Activate();
|
sl@0
|
97 |
IMPORT_C virtual void AssignGC(CWindowGc &aGc);
|
sl@0
|
98 |
IMPORT_C CTBaseWin *Next();
|
sl@0
|
99 |
IMPORT_C CTBaseWin *Prev();
|
sl@0
|
100 |
IMPORT_C virtual void SetExtL(const TPoint &aPos, const TSize &aSize);
|
sl@0
|
101 |
IMPORT_C virtual void SetSizeL(const TSize &aSize);
|
sl@0
|
102 |
IMPORT_C virtual void SetPos(const TPoint &aPos);
|
sl@0
|
103 |
IMPORT_C void SetInitialPos(const TPoint &aPos);
|
sl@0
|
104 |
IMPORT_C virtual void SetDefaultExtL();
|
sl@0
|
105 |
IMPORT_C virtual void SetFullScreenExtL();
|
sl@0
|
106 |
IMPORT_C virtual void AdjustSizeL(TInt xMove,TInt yMove,TInt resize);
|
sl@0
|
107 |
IMPORT_C virtual TSize Size() const;
|
sl@0
|
108 |
IMPORT_C virtual void Draw();
|
sl@0
|
109 |
IMPORT_C void DrawBorder();
|
sl@0
|
110 |
// void FillWindow(TInt inset);
|
sl@0
|
111 |
IMPORT_C virtual TPoint Position() const;
|
sl@0
|
112 |
IMPORT_C static void Delete(CTBaseWin *aWin);
|
sl@0
|
113 |
IMPORT_C void AdjustOrdinal(TInt aAdjust);
|
sl@0
|
114 |
IMPORT_C virtual void AdjustShadow(TInt aAdjust);
|
sl@0
|
115 |
IMPORT_C void SetVisible(TBool aState);
|
sl@0
|
116 |
IMPORT_C RWindowTreeNode *WinTreeNode();
|
sl@0
|
117 |
IMPORT_C const RWindowTreeNode *WinTreeNode() const;
|
sl@0
|
118 |
IMPORT_C virtual void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
|
sl@0
|
119 |
IMPORT_C virtual void KeyUpL(const TKeyEvent &aKey,const TTime &aTime);
|
sl@0
|
120 |
IMPORT_C virtual void KeyDownL(const TKeyEvent &aKey,const TTime &aTime);
|
sl@0
|
121 |
IMPORT_C virtual void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
|
sl@0
|
122 |
IMPORT_C virtual void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc, TDisplayMode *aMode);
|
sl@0
|
123 |
IMPORT_C void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc,TBool aVisible);
|
sl@0
|
124 |
enum
|
sl@0
|
125 |
{
|
sl@0
|
126 |
ENoTransparency=0x100
|
sl@0
|
127 |
};
|
sl@0
|
128 |
IMPORT_C virtual void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc, TDisplayMode *aMode,TBool aVisible,TInt aTransparency=ENoTransparency);
|
sl@0
|
129 |
IMPORT_C void SetDragRect(const TRect &aRect);
|
sl@0
|
130 |
IMPORT_C virtual void Resized(const TSize &aSize);
|
sl@0
|
131 |
IMPORT_C virtual void FocusChanged(TBool aState);
|
sl@0
|
132 |
IMPORT_C virtual CTWindowGroup *Group() const;
|
sl@0
|
133 |
virtual RWindowBase *BaseWin()=0;
|
sl@0
|
134 |
virtual const RWindowBase *BaseWin() const=0;
|
sl@0
|
135 |
inline CWindowGc *Gc();
|
sl@0
|
136 |
protected:
|
sl@0
|
137 |
TSize iSize;
|
sl@0
|
138 |
CWindowGc *iGc; // Not owned by the window, just using it
|
sl@0
|
139 |
TPoint iPos;
|
sl@0
|
140 |
TInt iShadow;
|
sl@0
|
141 |
TRect iDragRect;
|
sl@0
|
142 |
TBool iDragging;
|
sl@0
|
143 |
TPoint iDragPos;
|
sl@0
|
144 |
CFbsFont *iFont;
|
sl@0
|
145 |
__DECLARE_TEST;
|
sl@0
|
146 |
};
|
sl@0
|
147 |
|
sl@0
|
148 |
class CTDrawableWin : public CTBaseWin
|
sl@0
|
149 |
{
|
sl@0
|
150 |
public:
|
sl@0
|
151 |
IMPORT_C CTDrawableWin(TInt aType);
|
sl@0
|
152 |
virtual RDrawableWindow *DrawableWin()=0;
|
sl@0
|
153 |
virtual const RDrawableWindow *DrawableWin() const=0;
|
sl@0
|
154 |
};
|
sl@0
|
155 |
|
sl@0
|
156 |
class CTWin : public CTDrawableWin
|
sl@0
|
157 |
{
|
sl@0
|
158 |
public:
|
sl@0
|
159 |
IMPORT_C CTWin();
|
sl@0
|
160 |
IMPORT_C ~CTWin();
|
sl@0
|
161 |
inline RWindow *Win() const;
|
sl@0
|
162 |
IMPORT_C virtual TInt ConstructWin(const CTWinBase &aWs);
|
sl@0
|
163 |
IMPORT_C void Invalidate();
|
sl@0
|
164 |
IMPORT_C void Invalidate(const TRect &rect);
|
sl@0
|
165 |
IMPORT_C virtual void Redraw();
|
sl@0
|
166 |
IMPORT_C virtual void Redraw(const TRect &aRect);
|
sl@0
|
167 |
IMPORT_C void DrawNow();
|
sl@0
|
168 |
IMPORT_C void SetExt(const TPoint &aPos, const TSize &aSize);
|
sl@0
|
169 |
IMPORT_C void SetSize(const TSize &aSize);
|
sl@0
|
170 |
IMPORT_C void SetDefaultExt();
|
sl@0
|
171 |
IMPORT_C void AdjustSize(TInt xMove,TInt yMove,TInt resize);
|
sl@0
|
172 |
IMPORT_C virtual RWindowBase *BaseWin();
|
sl@0
|
173 |
IMPORT_C virtual const RWindowBase *BaseWin() const;
|
sl@0
|
174 |
IMPORT_C virtual RDrawableWindow *DrawableWin();
|
sl@0
|
175 |
IMPORT_C virtual const RDrawableWindow *DrawableWin() const;
|
sl@0
|
176 |
protected:
|
sl@0
|
177 |
RWindow iWin;
|
sl@0
|
178 |
__DECLARE_TEST;
|
sl@0
|
179 |
};
|
sl@0
|
180 |
|
sl@0
|
181 |
class CTBackedUpWin : public CTDrawableWin
|
sl@0
|
182 |
{
|
sl@0
|
183 |
public:
|
sl@0
|
184 |
IMPORT_C CTBackedUpWin(TDisplayMode aDisplayMode);
|
sl@0
|
185 |
IMPORT_C ~CTBackedUpWin();
|
sl@0
|
186 |
IMPORT_C virtual TInt ConstructWin(const CTWinBase &aWs);
|
sl@0
|
187 |
IMPORT_C virtual RWindowBase *BaseWin();
|
sl@0
|
188 |
IMPORT_C virtual const RWindowBase *BaseWin() const;
|
sl@0
|
189 |
IMPORT_C virtual RDrawableWindow *DrawableWin();
|
sl@0
|
190 |
IMPORT_C virtual const RDrawableWindow *DrawableWin() const;
|
sl@0
|
191 |
IMPORT_C RBackedUpWindow *BackedUpWin();
|
sl@0
|
192 |
IMPORT_C const RBackedUpWindow *BackedUpWin() const;
|
sl@0
|
193 |
protected:
|
sl@0
|
194 |
RBackedUpWindow iWin;
|
sl@0
|
195 |
TDisplayMode iDisplayMode;
|
sl@0
|
196 |
__DECLARE_TEST;
|
sl@0
|
197 |
};
|
sl@0
|
198 |
|
sl@0
|
199 |
class CTTitledWindow : public CTWin
|
sl@0
|
200 |
{
|
sl@0
|
201 |
public:
|
sl@0
|
202 |
IMPORT_C CTTitledWindow();
|
sl@0
|
203 |
IMPORT_C ~CTTitledWindow();
|
sl@0
|
204 |
IMPORT_C void ConstructL(CTWinBase &parent);
|
sl@0
|
205 |
IMPORT_C void Draw();
|
sl@0
|
206 |
IMPORT_C void FocusChanged(TBool aState);
|
sl@0
|
207 |
IMPORT_C void SetTitle(const TWindowTitle &aTitle);
|
sl@0
|
208 |
IMPORT_C void SetColor(TRgb aRgb);
|
sl@0
|
209 |
inline TRgb Color();
|
sl@0
|
210 |
private:
|
sl@0
|
211 |
IMPORT_C void Resized(const TSize &aSize);
|
sl@0
|
212 |
protected:
|
sl@0
|
213 |
TWindowTitle iTitle;
|
sl@0
|
214 |
TInt iTitleHeight;
|
sl@0
|
215 |
TBool iFocus;
|
sl@0
|
216 |
TRgb iWinColor;
|
sl@0
|
217 |
TRgb iPenColor;
|
sl@0
|
218 |
};
|
sl@0
|
219 |
|
sl@0
|
220 |
class CTBlankWindow : public CTBaseWin
|
sl@0
|
221 |
{
|
sl@0
|
222 |
public:
|
sl@0
|
223 |
IMPORT_C CTBlankWindow();
|
sl@0
|
224 |
IMPORT_C ~CTBlankWindow();
|
sl@0
|
225 |
IMPORT_C void ConstructL(CTWinBase &aParent);
|
sl@0
|
226 |
IMPORT_C void SetColor(const TRgb &aRgb);
|
sl@0
|
227 |
IMPORT_C virtual TInt ConstructWin(const class CTWinBase&);
|
sl@0
|
228 |
IMPORT_C virtual const RWindowBase *BaseWin()const;
|
sl@0
|
229 |
IMPORT_C virtual RWindowBase *BaseWin();
|
sl@0
|
230 |
inline const RBlankWindow *BlankWin()const;
|
sl@0
|
231 |
inline RBlankWindow *BlankWin();
|
sl@0
|
232 |
IMPORT_C void SetExt(const TPoint &aPos, const TSize &aSize);
|
sl@0
|
233 |
IMPORT_C void SetSize(const TSize &aSize);
|
sl@0
|
234 |
protected:
|
sl@0
|
235 |
RBlankWindow iWin;
|
sl@0
|
236 |
};
|
sl@0
|
237 |
|
sl@0
|
238 |
class CTWindowGroup : public CTWinBase
|
sl@0
|
239 |
{
|
sl@0
|
240 |
public:
|
sl@0
|
241 |
IMPORT_C CTWindowGroup(CTClient *aClient);
|
sl@0
|
242 |
IMPORT_C ~CTWindowGroup();
|
sl@0
|
243 |
IMPORT_C virtual void ConstructL();
|
sl@0
|
244 |
IMPORT_C void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
|
sl@0
|
245 |
IMPORT_C virtual TSize Size() const;
|
sl@0
|
246 |
IMPORT_C RWindowTreeNode *WinTreeNode();
|
sl@0
|
247 |
IMPORT_C const RWindowTreeNode *WinTreeNode() const;
|
sl@0
|
248 |
inline RWindowGroup *GroupWin();
|
sl@0
|
249 |
IMPORT_C virtual void KeyL(const TKeyEvent &aKey,const TTime &aTime);
|
sl@0
|
250 |
IMPORT_C virtual void KeyUpL(const TKeyEvent &aKey,const TTime &aTime);
|
sl@0
|
251 |
IMPORT_C virtual void KeyDownL(const TKeyEvent &aKey,const TTime &aTime);
|
sl@0
|
252 |
IMPORT_C virtual void PasswordL(const TTime &aTime);
|
sl@0
|
253 |
IMPORT_C virtual void MessageReady(const TWsEvent &aTime);
|
sl@0
|
254 |
IMPORT_C virtual void ScreenDeviceChanged();
|
sl@0
|
255 |
IMPORT_C virtual void UserEvent(TInt aEventType);
|
sl@0
|
256 |
IMPORT_C void SetCurrentWindow(CTBaseWin *aWindow);
|
sl@0
|
257 |
IMPORT_C void SetCurrentWindow(CTBaseWin *aWindow,TBool aLocked);
|
sl@0
|
258 |
IMPORT_C CTBaseWin *CurWin(void) const;
|
sl@0
|
259 |
IMPORT_C void FocusLost();
|
sl@0
|
260 |
IMPORT_C void FocusGained();
|
sl@0
|
261 |
IMPORT_C TBool HasFocus(CTBaseWin *aWin) const;
|
sl@0
|
262 |
IMPORT_C virtual CTWindowGroup *Group() const;
|
sl@0
|
263 |
IMPORT_C virtual CTClient *Client() const;
|
sl@0
|
264 |
IMPORT_C void ClearCurrentWindow();
|
sl@0
|
265 |
protected:
|
sl@0
|
266 |
CTClient *iClient;
|
sl@0
|
267 |
CTBaseWin *iCurWin;
|
sl@0
|
268 |
RWindowGroup iGroupWin;
|
sl@0
|
269 |
TBool iLocked;
|
sl@0
|
270 |
TBool iFocus;
|
sl@0
|
271 |
};
|
sl@0
|
272 |
|
sl@0
|
273 |
inline RWindowGroup *CTWindowGroup::GroupWin()
|
sl@0
|
274 |
{return(&iGroupWin);}
|
sl@0
|
275 |
|
sl@0
|
276 |
class CTEventBase : public CActive
|
sl@0
|
277 |
{
|
sl@0
|
278 |
public:
|
sl@0
|
279 |
IMPORT_C CTEventBase(RWsSession *aWs, TInt aPriority);
|
sl@0
|
280 |
IMPORT_C ~CTEventBase();
|
sl@0
|
281 |
IMPORT_C void Construct();
|
sl@0
|
282 |
void SetCancelFunction(const TCallBack &aCallBack);
|
sl@0
|
283 |
virtual void Request()=0;
|
sl@0
|
284 |
inline TInt Count() {return iCount;}
|
sl@0
|
285 |
protected:
|
sl@0
|
286 |
virtual void doRunL()=0;
|
sl@0
|
287 |
IMPORT_C void RunL();
|
sl@0
|
288 |
IMPORT_C void CancelHandler();
|
sl@0
|
289 |
protected:
|
sl@0
|
290 |
TBool iCancelRequested;
|
sl@0
|
291 |
TCallBack iCancelCallBack;
|
sl@0
|
292 |
RWsSession *iWs;
|
sl@0
|
293 |
TInt iCount;
|
sl@0
|
294 |
};
|
sl@0
|
295 |
|
sl@0
|
296 |
class CTRedraw : public CTEventBase
|
sl@0
|
297 |
{
|
sl@0
|
298 |
public:
|
sl@0
|
299 |
IMPORT_C CTRedraw(RWsSession *aWs);
|
sl@0
|
300 |
IMPORT_C ~CTRedraw();
|
sl@0
|
301 |
IMPORT_C void Request();
|
sl@0
|
302 |
protected:
|
sl@0
|
303 |
IMPORT_C void DoCancel();
|
sl@0
|
304 |
IMPORT_C void doRunL();
|
sl@0
|
305 |
};
|
sl@0
|
306 |
|
sl@0
|
307 |
class TlibWsEvent : public TWsEvent
|
sl@0
|
308 |
{
|
sl@0
|
309 |
public:
|
sl@0
|
310 |
IMPORT_C CTWindowGroup *WindowGroup();
|
sl@0
|
311 |
IMPORT_C CTBaseWin *BaseWin();
|
sl@0
|
312 |
};
|
sl@0
|
313 |
|
sl@0
|
314 |
class CTEvent : public CTEventBase
|
sl@0
|
315 |
{
|
sl@0
|
316 |
public:
|
sl@0
|
317 |
IMPORT_C CTEvent(RWsSession *aWs);
|
sl@0
|
318 |
IMPORT_C ~CTEvent();
|
sl@0
|
319 |
IMPORT_C void Request();
|
sl@0
|
320 |
IMPORT_C virtual void LogEvent(const TWsEvent &aEvent);
|
sl@0
|
321 |
protected:
|
sl@0
|
322 |
IMPORT_C void DoCancel();
|
sl@0
|
323 |
IMPORT_C void doRunL();
|
sl@0
|
324 |
};
|
sl@0
|
325 |
|
sl@0
|
326 |
class CTClient : public CBase
|
sl@0
|
327 |
{
|
sl@0
|
328 |
public:
|
sl@0
|
329 |
IMPORT_C CTClient();
|
sl@0
|
330 |
IMPORT_C ~CTClient();
|
sl@0
|
331 |
IMPORT_C virtual void ConstructL();
|
sl@0
|
332 |
IMPORT_C virtual void ConstructEventHandlerL();
|
sl@0
|
333 |
IMPORT_C void DestroyWindows();
|
sl@0
|
334 |
IMPORT_C TWindowTitle *Title();
|
sl@0
|
335 |
IMPORT_C void ResetFocus();
|
sl@0
|
336 |
IMPORT_C TBool QueueRead();
|
sl@0
|
337 |
IMPORT_C void CancelRead();
|
sl@0
|
338 |
IMPORT_C void CancelRedrawRead();
|
sl@0
|
339 |
IMPORT_C void SetCancelFunction(const TCallBack &aCallBack);
|
sl@0
|
340 |
IMPORT_C void SetRedrawCancelFunction(const TCallBack &aCallBack);
|
sl@0
|
341 |
IMPORT_C void RequestRedraw();
|
sl@0
|
342 |
IMPORT_C void LogMessage(const TLogMessageText &aMessage);
|
sl@0
|
343 |
inline void Flush() {iWs.Flush();}
|
sl@0
|
344 |
inline void SetScreenNumber(TInt aScreenNumber);
|
sl@0
|
345 |
IMPORT_C TBool IsEventWaiting();
|
sl@0
|
346 |
IMPORT_C TBool WaitUntilEventPending();
|
sl@0
|
347 |
IMPORT_C TBool WaitUntilRedrawPending();
|
sl@0
|
348 |
inline CTEvent* EventHandler();
|
sl@0
|
349 |
inline CTRedraw* RedrawHandler();
|
sl@0
|
350 |
IMPORT_C TInt WaitForRedrawsToFinish();
|
sl@0
|
351 |
IMPORT_C TInt WaitForAllEventProcessingToFinish();
|
sl@0
|
352 |
private:
|
sl@0
|
353 |
TBool WaitUntilEventPending(const TRequestStatus& aStatus);
|
sl@0
|
354 |
TInt WaitForEventsToFinish(TBool aAll);
|
sl@0
|
355 |
protected:
|
sl@0
|
356 |
CTEvent *iEventHandler;
|
sl@0
|
357 |
CTRedraw *iRedrawEventHandler;
|
sl@0
|
358 |
public:
|
sl@0
|
359 |
CWindowGc *iGc;
|
sl@0
|
360 |
CTWindowGroup *iGroup;
|
sl@0
|
361 |
RWsSession iWs;
|
sl@0
|
362 |
CWsScreenDevice *iScreen;
|
sl@0
|
363 |
protected:
|
sl@0
|
364 |
TWindowTitle iTitle;
|
sl@0
|
365 |
TInt iScreenNumber;
|
sl@0
|
366 |
};
|
sl@0
|
367 |
|
sl@0
|
368 |
class CTAutoKey;
|
sl@0
|
369 |
class CTDialog : public CTTitledWindow
|
sl@0
|
370 |
{
|
sl@0
|
371 |
public:
|
sl@0
|
372 |
enum
|
sl@0
|
373 |
{
|
sl@0
|
374 |
EDialogWaitForButtonUp=0x0001,
|
sl@0
|
375 |
EDialogDisplayAtBottom=0x0002,
|
sl@0
|
376 |
EDialogDisplayAtLeft=0x0008,
|
sl@0
|
377 |
};
|
sl@0
|
378 |
public:
|
sl@0
|
379 |
IMPORT_C CTDialog();
|
sl@0
|
380 |
IMPORT_C ~CTDialog();
|
sl@0
|
381 |
IMPORT_C void ConstructLD(CTWinBase &aParent, CWindowGc &aGc);
|
sl@0
|
382 |
IMPORT_C void Draw();
|
sl@0
|
383 |
IMPORT_C void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
|
sl@0
|
384 |
IMPORT_C void PointerL(const TPointerEvent &aPointer,const TTime &aTime);
|
sl@0
|
385 |
IMPORT_C virtual void ButtonPressL(TInt aButton);
|
sl@0
|
386 |
IMPORT_C void SetLine1(const TDesC &aLine1);
|
sl@0
|
387 |
IMPORT_C void SetLine2(const TDesC &aLine2);
|
sl@0
|
388 |
IMPORT_C void SetNumButtons(TInt aNum);
|
sl@0
|
389 |
IMPORT_C void SetButtonText(TInt aNum,const TDesC &aButton);
|
sl@0
|
390 |
IMPORT_C void SetWindowSize();
|
sl@0
|
391 |
IMPORT_C void RelinquishFocus();
|
sl@0
|
392 |
IMPORT_C TInt Display();
|
sl@0
|
393 |
IMPORT_C void SetFlags(TUint aFlags);
|
sl@0
|
394 |
protected:
|
sl@0
|
395 |
void SetResult(TInt aButton);
|
sl@0
|
396 |
inline void SetTakeFocus() {iTakeFocus=ETrue;}
|
sl@0
|
397 |
private:
|
sl@0
|
398 |
void SetMaxWid(TInt &aMax, TInt aWid);
|
sl@0
|
399 |
TRect ButtonRect(TInt aIndex) const;
|
sl@0
|
400 |
private:
|
sl@0
|
401 |
TBool iIsActive;
|
sl@0
|
402 |
TBool iActivated;
|
sl@0
|
403 |
TBool iWinActive;
|
sl@0
|
404 |
TBool iTakeFocus;
|
sl@0
|
405 |
TInt iNumButtons;
|
sl@0
|
406 |
TInt iButWid;
|
sl@0
|
407 |
CTBaseWin *iOldFocus;
|
sl@0
|
408 |
TInt *iResultPtr;
|
sl@0
|
409 |
TBuf<0x40> iLine1;
|
sl@0
|
410 |
TBuf<0x40> iLine2;
|
sl@0
|
411 |
TBuf<0x20> iButton[3];
|
sl@0
|
412 |
TInt iButtonClickOn;
|
sl@0
|
413 |
TUint iFlags;
|
sl@0
|
414 |
CTAutoKey* iAutoKey;
|
sl@0
|
415 |
};
|
sl@0
|
416 |
|
sl@0
|
417 |
class CInfoDialog : public CTDialog
|
sl@0
|
418 |
{
|
sl@0
|
419 |
private:
|
sl@0
|
420 |
enum
|
sl@0
|
421 |
{
|
sl@0
|
422 |
eSeconds=1000000,
|
sl@0
|
423 |
eTimes=6,
|
sl@0
|
424 |
};
|
sl@0
|
425 |
public:
|
sl@0
|
426 |
IMPORT_C CInfoDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc);
|
sl@0
|
427 |
IMPORT_C void ConstructLD();
|
sl@0
|
428 |
IMPORT_C void TimerResults();
|
sl@0
|
429 |
//Virtual function from CTDialog
|
sl@0
|
430 |
IMPORT_C void ButtonPressL(TInt aButton);
|
sl@0
|
431 |
private:
|
sl@0
|
432 |
void AppendProfileTime(TDes &aDes, TInt aNum);
|
sl@0
|
433 |
void AppendProfileCount(TDes &aDes, TInt aNum);
|
sl@0
|
434 |
void AddComma(TDes &aDes);
|
sl@0
|
435 |
private:
|
sl@0
|
436 |
CTWindowGroup *iGroupWin;
|
sl@0
|
437 |
CWindowGc *iGc;
|
sl@0
|
438 |
};
|
sl@0
|
439 |
|
sl@0
|
440 |
class CEventWindow : public CTWin
|
sl@0
|
441 |
{
|
sl@0
|
442 |
public:
|
sl@0
|
443 |
IMPORT_C CEventWindow(TInt aLogSize);
|
sl@0
|
444 |
IMPORT_C ~CEventWindow();
|
sl@0
|
445 |
IMPORT_C void ConstructL(CTWinBase &parent);
|
sl@0
|
446 |
IMPORT_C void SetUpL(const TPoint &pos, CTWinBase *parent, CWindowGc &aGc);
|
sl@0
|
447 |
IMPORT_C void Draw();
|
sl@0
|
448 |
IMPORT_C void WinKeyL(const TKeyEvent &,const TTime &aTime);
|
sl@0
|
449 |
IMPORT_C void LogEvent(const TWsEvent &aEvent);
|
sl@0
|
450 |
private:
|
sl@0
|
451 |
void DrawLine(TInt aLine, const TDesC &aText);
|
sl@0
|
452 |
void LogEvent(TInt aLogNum, const TWsEvent &aEvent);
|
sl@0
|
453 |
private:
|
sl@0
|
454 |
TInt iLineHeight;
|
sl@0
|
455 |
TInt iCount;
|
sl@0
|
456 |
TInt iLogSize;
|
sl@0
|
457 |
TInt iNumLogged;
|
sl@0
|
458 |
TWsEvent *iLoggedEvents;
|
sl@0
|
459 |
};
|
sl@0
|
460 |
|
sl@0
|
461 |
class CBlankWindow : public CTWin
|
sl@0
|
462 |
{
|
sl@0
|
463 |
public:
|
sl@0
|
464 |
IMPORT_C CBlankWindow(TRgb aCol);
|
sl@0
|
465 |
IMPORT_C CBlankWindow();
|
sl@0
|
466 |
IMPORT_C void ConstructL(CTWinBase &parent);
|
sl@0
|
467 |
IMPORT_C void SetColor(TRgb aColor);
|
sl@0
|
468 |
IMPORT_C void RealDraw(TBool aRealDraw);
|
sl@0
|
469 |
IMPORT_C virtual void Draw();
|
sl@0
|
470 |
IMPORT_C void DrawNow();
|
sl@0
|
471 |
IMPORT_C void DrawNow(TRect& aRect);
|
sl@0
|
472 |
IMPORT_C TBool Check(const CTClient& aClient);
|
sl@0
|
473 |
protected:
|
sl@0
|
474 |
TRgb iCol;
|
sl@0
|
475 |
TBool iRealDraw;
|
sl@0
|
476 |
};
|
sl@0
|
477 |
|
sl@0
|
478 |
struct TSpriteCreateParams;
|
sl@0
|
479 |
|
sl@0
|
480 |
class CTSpriteBase : public CBase
|
sl@0
|
481 |
{
|
sl@0
|
482 |
public:
|
sl@0
|
483 |
typedef void (*TSpriteDrawFunction)(CBitmapContext *aGc,TInt aIndex, const TSize &aSize, TBool aDoMask, TAny *aParam);
|
sl@0
|
484 |
protected:
|
sl@0
|
485 |
virtual RWsSpriteBase &SpriteBase()=0;
|
sl@0
|
486 |
void CreateBitmapL(CFbsBitmap *&aBitmap, CFbsBitmapDevice *&aBitmapDevice, TSpriteCreateParams *aParams, TBool aDoMask);
|
sl@0
|
487 |
public:
|
sl@0
|
488 |
IMPORT_C void UpdateL(TInt aIndex, TSpriteCreateParams *aParams);
|
sl@0
|
489 |
IMPORT_C void RedrawL(CFbsBitmap *&aBitmap, CFbsBitmap *&aMaskBitmap, TSpriteCreateParams *aParams);
|
sl@0
|
490 |
};
|
sl@0
|
491 |
|
sl@0
|
492 |
class CTSprite : public CTSpriteBase
|
sl@0
|
493 |
{
|
sl@0
|
494 |
public:
|
sl@0
|
495 |
IMPORT_C CTSprite(RWsSession &aWs);
|
sl@0
|
496 |
IMPORT_C ~CTSprite();
|
sl@0
|
497 |
IMPORT_C void ConstructL(RWindowTreeNode &aWindow, const TPoint &aPos, TInt aCount, TSpriteCreateParams *aParams, TInt aFlags);
|
sl@0
|
498 |
IMPORT_C RWsSpriteBase &SpriteBase();
|
sl@0
|
499 |
IMPORT_C RWsSprite &Sprite();
|
sl@0
|
500 |
private:
|
sl@0
|
501 |
RWsSprite iSprite;
|
sl@0
|
502 |
};
|
sl@0
|
503 |
|
sl@0
|
504 |
class CTPointerCursor : public CTSpriteBase
|
sl@0
|
505 |
{
|
sl@0
|
506 |
public:
|
sl@0
|
507 |
IMPORT_C CTPointerCursor(RWsSession &aWs);
|
sl@0
|
508 |
IMPORT_C ~CTPointerCursor();
|
sl@0
|
509 |
IMPORT_C void ConstructL(TInt aFlags);
|
sl@0
|
510 |
IMPORT_C void ConstructL(TInt aCount, TSpriteCreateParams *aParams, TInt aFlags, CFbsBitmap *&aBitmap, CFbsBitmap *&aMaskBitmap);
|
sl@0
|
511 |
IMPORT_C void ConstructL(TInt aCount, TSpriteCreateParams *aParams, TInt aFlags);
|
sl@0
|
512 |
IMPORT_C RWsSpriteBase &SpriteBase();
|
sl@0
|
513 |
IMPORT_C RWsPointerCursor &PointerCursor();
|
sl@0
|
514 |
private:
|
sl@0
|
515 |
RWsPointerCursor iCursor;
|
sl@0
|
516 |
};
|
sl@0
|
517 |
|
sl@0
|
518 |
struct TSpriteCreateParams
|
sl@0
|
519 |
{
|
sl@0
|
520 |
public:
|
sl@0
|
521 |
IMPORT_C TSpriteCreateParams(TSize aSize,TPoint aOffset,CTSpriteBase::TSpriteDrawFunction aDrawFunc,TAny *aDrawFuncParam=NULL, TBool aMask=ETrue,CGraphicsContext::TDrawMode aDrawMode=CGraphicsContext::EDrawModePEN);
|
sl@0
|
522 |
IMPORT_C TSpriteCreateParams();
|
sl@0
|
523 |
public:
|
sl@0
|
524 |
TSize iSize;
|
sl@0
|
525 |
TPoint iOffset;
|
sl@0
|
526 |
CTSpriteBase::TSpriteDrawFunction iDrawFunc;
|
sl@0
|
527 |
TAny *iDrawFuncParam;
|
sl@0
|
528 |
TBool iMask;
|
sl@0
|
529 |
CGraphicsContext::TDrawMode iDrawMode;
|
sl@0
|
530 |
TTimeIntervalMicroSeconds32 iInterval;
|
sl@0
|
531 |
};
|
sl@0
|
532 |
|
sl@0
|
533 |
class CTUser
|
sl@0
|
534 |
{
|
sl@0
|
535 |
public:
|
sl@0
|
536 |
IMPORT_C static void Splat(CTClient *aClient, const TRect &aRect, const TRgb &aRgb);
|
sl@0
|
537 |
};
|
sl@0
|
538 |
|
sl@0
|
539 |
IMPORT_C void DisplayDialog(const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2, const RWindowGroup *aGroup=NULL);
|
sl@0
|
540 |
IMPORT_C void DisplayDialog(TInt aScreenNumber,const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2, const RWindowGroup *aGroup=NULL);
|
sl@0
|
541 |
IMPORT_C void DisplayDialog(CTClient *aClient, const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2);
|
sl@0
|
542 |
IMPORT_C TInt TestLibStartUp(TCreateClientFunc aFunc);
|
sl@0
|
543 |
IMPORT_C TInt TestLibStartUp(TCreateClientFunc aFunc,TInt aScreenNumber);
|
sl@0
|
544 |
|
sl@0
|
545 |
|
sl@0
|
546 |
inline TRgb CTTitledWindow::Color()
|
sl@0
|
547 |
{return(iWinColor);}
|
sl@0
|
548 |
inline CWindowGc *CTBaseWin::Gc()
|
sl@0
|
549 |
{return(iGc);}
|
sl@0
|
550 |
inline RWindow *CTWin::Win() const
|
sl@0
|
551 |
{return((RWindow *)BaseWin());}
|
sl@0
|
552 |
inline const RBlankWindow *CTBlankWindow::BlankWin()const
|
sl@0
|
553 |
{return(&iWin);}
|
sl@0
|
554 |
inline RBlankWindow *CTBlankWindow::BlankWin()
|
sl@0
|
555 |
{return(&iWin);}
|
sl@0
|
556 |
inline void CTClient::SetScreenNumber(TInt aScreenNumber)
|
sl@0
|
557 |
{iScreenNumber=aScreenNumber;}
|
sl@0
|
558 |
inline CTEvent* CTClient::EventHandler()
|
sl@0
|
559 |
{return iEventHandler;}
|
sl@0
|
560 |
inline CTRedraw* CTClient::RedrawHandler()
|
sl@0
|
561 |
{return iRedrawEventHandler;}
|
sl@0
|
562 |
#endif
|