First public contribution.
1 // Copyright (c) 1995-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.
14 // Base classes definitions used for building window server test code
18 #ifndef __TESTBASE_H__
19 #define __TESTBASE_H__
21 enum TTlibActivePriorities
23 ETlibRedrawActivePriority=-10,
24 ETlibWsEventActivePriority=0,
27 const TInt KDefaultScreen = 0;
29 //enum {ENullWsHandle=0xFFFFFFFF}; // Events delivered to this handle are thrown away
30 const TUint32 ENullWsHandle=0xFFFFFFFF; // Events delivered to this handle are thrown away
32 typedef TBuf<KMaxFullName> TWindowTitle;
33 typedef TBuf<0x100> TWinCommand;
35 const TUid KUidWServSecurityTesting={0x10205152};
38 EWServSecTestBufferSecurity
41 class CTClient; // Forward reference
46 typedef CTClient *(*TCreateClientFunc)();
48 IMPORT_C TBool CheckBlankWindow(TRect aArea,TRgb aColor,const CWsScreenDevice* aScreen);
50 class CTWinBase : public CBase
54 IMPORT_C CTWinBase(TInt aType);
55 IMPORT_C virtual TPoint Position() const;
56 IMPORT_C virtual void PointerEnter(const TTime &aTime);
57 IMPORT_C virtual void PointerExit(const TTime &aTime);
58 IMPORT_C virtual void PointerBufferReady(const TTime &aTime);
59 IMPORT_C virtual void PointerL(const TPointerEvent &aPointer,const TTime &aTime);
60 IMPORT_C virtual void SwitchOn(const TTime &aTime);
61 IMPORT_C virtual void ModifiersChanged(const TModifiersChangedEvent &aModifiersChanged ,const TTime &aTime);
62 IMPORT_C virtual void ErrorMessage(const TWsErrorMessage &aErrorMessage, const TTime &aTime);
63 IMPORT_C virtual void SetVisible(TBool aState);
64 IMPORT_C CTWinBase *Parent() const;
65 IMPORT_C CTWinBase *NextSibling() const;
66 IMPORT_C CTWinBase *PrevSibling() const;
67 IMPORT_C CTBaseWin *Child() const;
68 IMPORT_C virtual void AdjustOrdinal(TInt adjust);
69 IMPORT_C virtual void AdjustShadow(TInt aAdjust);
70 IMPORT_C virtual TInt SubType();
71 // Pure virtual definitions
72 virtual void WinKeyL(const TKeyEvent &aKey,const TTime &aTime)=0;
73 virtual TSize Size() const=0;
74 virtual RWindowTreeNode *WinTreeNode()=0;
75 virtual const RWindowTreeNode *WinTreeNode() const=0;
76 IMPORT_C virtual CTClient *Client() const;
77 virtual CTWindowGroup *Group() const=0;
78 CTWindowGroup *iOwnerWin;
84 class CTBaseWin : public CTWinBase
87 IMPORT_C CTBaseWin(TInt aType);
88 IMPORT_C ~CTBaseWin();
89 IMPORT_C virtual void ConstructL(CTWinBase &parent);
90 IMPORT_C virtual void ConstructExtLD(CTWinBase &aParent, const TPoint &aPos, const TSize &aSize);
91 virtual TInt ConstructWin(const CTWinBase &aWs)=0;
92 IMPORT_C virtual void InitWin();
93 IMPORT_C virtual void PointerL(const TPointerEvent &aPointer,const TTime &aTime);
94 IMPORT_C virtual void DragDropL(const TPointerEvent &aPointer,const TTime &aTime);
95 IMPORT_C virtual void RelinquishFocus();
96 IMPORT_C void Activate();
97 IMPORT_C virtual void AssignGC(CWindowGc &aGc);
98 IMPORT_C CTBaseWin *Next();
99 IMPORT_C CTBaseWin *Prev();
100 IMPORT_C virtual void SetExtL(const TPoint &aPos, const TSize &aSize);
101 IMPORT_C virtual void SetSizeL(const TSize &aSize);
102 IMPORT_C virtual void SetPos(const TPoint &aPos);
103 IMPORT_C void SetInitialPos(const TPoint &aPos);
104 IMPORT_C virtual void SetDefaultExtL();
105 IMPORT_C virtual void SetFullScreenExtL();
106 IMPORT_C virtual void AdjustSizeL(TInt xMove,TInt yMove,TInt resize);
107 IMPORT_C virtual TSize Size() const;
108 IMPORT_C virtual void Draw();
109 IMPORT_C void DrawBorder();
110 // void FillWindow(TInt inset);
111 IMPORT_C virtual TPoint Position() const;
112 IMPORT_C static void Delete(CTBaseWin *aWin);
113 IMPORT_C void AdjustOrdinal(TInt aAdjust);
114 IMPORT_C virtual void AdjustShadow(TInt aAdjust);
115 IMPORT_C void SetVisible(TBool aState);
116 IMPORT_C RWindowTreeNode *WinTreeNode();
117 IMPORT_C const RWindowTreeNode *WinTreeNode() const;
118 IMPORT_C virtual void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
119 IMPORT_C virtual void KeyUpL(const TKeyEvent &aKey,const TTime &aTime);
120 IMPORT_C virtual void KeyDownL(const TKeyEvent &aKey,const TTime &aTime);
121 IMPORT_C virtual void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
122 IMPORT_C virtual void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc, TDisplayMode *aMode);
123 IMPORT_C void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc,TBool aVisible);
126 ENoTransparency=0x100
128 IMPORT_C virtual void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc, TDisplayMode *aMode,TBool aVisible,TInt aTransparency=ENoTransparency);
129 IMPORT_C void SetDragRect(const TRect &aRect);
130 IMPORT_C virtual void Resized(const TSize &aSize);
131 IMPORT_C virtual void FocusChanged(TBool aState);
132 IMPORT_C virtual CTWindowGroup *Group() const;
133 virtual RWindowBase *BaseWin()=0;
134 virtual const RWindowBase *BaseWin() const=0;
135 inline CWindowGc *Gc();
138 CWindowGc *iGc; // Not owned by the window, just using it
148 class CTDrawableWin : public CTBaseWin
151 IMPORT_C CTDrawableWin(TInt aType);
152 virtual RDrawableWindow *DrawableWin()=0;
153 virtual const RDrawableWindow *DrawableWin() const=0;
156 class CTWin : public CTDrawableWin
161 inline RWindow *Win() const;
162 IMPORT_C virtual TInt ConstructWin(const CTWinBase &aWs);
163 IMPORT_C void Invalidate();
164 IMPORT_C void Invalidate(const TRect &rect);
165 IMPORT_C virtual void Redraw();
166 IMPORT_C virtual void Redraw(const TRect &aRect);
167 IMPORT_C void DrawNow();
168 IMPORT_C void SetExt(const TPoint &aPos, const TSize &aSize);
169 IMPORT_C void SetSize(const TSize &aSize);
170 IMPORT_C void SetDefaultExt();
171 IMPORT_C void AdjustSize(TInt xMove,TInt yMove,TInt resize);
172 IMPORT_C virtual RWindowBase *BaseWin();
173 IMPORT_C virtual const RWindowBase *BaseWin() const;
174 IMPORT_C virtual RDrawableWindow *DrawableWin();
175 IMPORT_C virtual const RDrawableWindow *DrawableWin() const;
181 class CTBackedUpWin : public CTDrawableWin
184 IMPORT_C CTBackedUpWin(TDisplayMode aDisplayMode);
185 IMPORT_C ~CTBackedUpWin();
186 IMPORT_C virtual TInt ConstructWin(const CTWinBase &aWs);
187 IMPORT_C virtual RWindowBase *BaseWin();
188 IMPORT_C virtual const RWindowBase *BaseWin() const;
189 IMPORT_C virtual RDrawableWindow *DrawableWin();
190 IMPORT_C virtual const RDrawableWindow *DrawableWin() const;
191 IMPORT_C RBackedUpWindow *BackedUpWin();
192 IMPORT_C const RBackedUpWindow *BackedUpWin() const;
194 RBackedUpWindow iWin;
195 TDisplayMode iDisplayMode;
199 class CTTitledWindow : public CTWin
202 IMPORT_C CTTitledWindow();
203 IMPORT_C ~CTTitledWindow();
204 IMPORT_C void ConstructL(CTWinBase &parent);
205 IMPORT_C void Draw();
206 IMPORT_C void FocusChanged(TBool aState);
207 IMPORT_C void SetTitle(const TWindowTitle &aTitle);
208 IMPORT_C void SetColor(TRgb aRgb);
211 IMPORT_C void Resized(const TSize &aSize);
220 class CTBlankWindow : public CTBaseWin
223 IMPORT_C CTBlankWindow();
224 IMPORT_C ~CTBlankWindow();
225 IMPORT_C void ConstructL(CTWinBase &aParent);
226 IMPORT_C void SetColor(const TRgb &aRgb);
227 IMPORT_C virtual TInt ConstructWin(const class CTWinBase&);
228 IMPORT_C virtual const RWindowBase *BaseWin()const;
229 IMPORT_C virtual RWindowBase *BaseWin();
230 inline const RBlankWindow *BlankWin()const;
231 inline RBlankWindow *BlankWin();
232 IMPORT_C void SetExt(const TPoint &aPos, const TSize &aSize);
233 IMPORT_C void SetSize(const TSize &aSize);
238 class CTWindowGroup : public CTWinBase
241 IMPORT_C CTWindowGroup(CTClient *aClient);
242 IMPORT_C ~CTWindowGroup();
243 IMPORT_C virtual void ConstructL();
244 IMPORT_C void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
245 IMPORT_C virtual TSize Size() const;
246 IMPORT_C RWindowTreeNode *WinTreeNode();
247 IMPORT_C const RWindowTreeNode *WinTreeNode() const;
248 inline RWindowGroup *GroupWin();
249 IMPORT_C virtual void KeyL(const TKeyEvent &aKey,const TTime &aTime);
250 IMPORT_C virtual void KeyUpL(const TKeyEvent &aKey,const TTime &aTime);
251 IMPORT_C virtual void KeyDownL(const TKeyEvent &aKey,const TTime &aTime);
252 IMPORT_C virtual void PasswordL(const TTime &aTime);
253 IMPORT_C virtual void MessageReady(const TWsEvent &aTime);
254 IMPORT_C virtual void ScreenDeviceChanged();
255 IMPORT_C virtual void UserEvent(TInt aEventType);
256 IMPORT_C void SetCurrentWindow(CTBaseWin *aWindow);
257 IMPORT_C void SetCurrentWindow(CTBaseWin *aWindow,TBool aLocked);
258 IMPORT_C CTBaseWin *CurWin(void) const;
259 IMPORT_C void FocusLost();
260 IMPORT_C void FocusGained();
261 IMPORT_C TBool HasFocus(CTBaseWin *aWin) const;
262 IMPORT_C virtual CTWindowGroup *Group() const;
263 IMPORT_C virtual CTClient *Client() const;
264 IMPORT_C void ClearCurrentWindow();
268 RWindowGroup iGroupWin;
273 inline RWindowGroup *CTWindowGroup::GroupWin()
274 {return(&iGroupWin);}
276 class CTEventBase : public CActive
279 IMPORT_C CTEventBase(RWsSession *aWs, TInt aPriority);
280 IMPORT_C ~CTEventBase();
281 IMPORT_C void Construct();
282 void SetCancelFunction(const TCallBack &aCallBack);
283 virtual void Request()=0;
284 inline TInt Count() {return iCount;}
286 virtual void doRunL()=0;
287 IMPORT_C void RunL();
288 IMPORT_C void CancelHandler();
290 TBool iCancelRequested;
291 TCallBack iCancelCallBack;
296 class CTRedraw : public CTEventBase
299 IMPORT_C CTRedraw(RWsSession *aWs);
300 IMPORT_C ~CTRedraw();
301 IMPORT_C void Request();
303 IMPORT_C void DoCancel();
304 IMPORT_C void doRunL();
307 class TlibWsEvent : public TWsEvent
310 IMPORT_C CTWindowGroup *WindowGroup();
311 IMPORT_C CTBaseWin *BaseWin();
314 class CTEvent : public CTEventBase
317 IMPORT_C CTEvent(RWsSession *aWs);
319 IMPORT_C void Request();
320 IMPORT_C virtual void LogEvent(const TWsEvent &aEvent);
322 IMPORT_C void DoCancel();
323 IMPORT_C void doRunL();
326 class CTClient : public CBase
330 IMPORT_C ~CTClient();
331 IMPORT_C virtual void ConstructL();
332 IMPORT_C virtual void ConstructEventHandlerL();
333 IMPORT_C void DestroyWindows();
334 IMPORT_C TWindowTitle *Title();
335 IMPORT_C void ResetFocus();
336 IMPORT_C TBool QueueRead();
337 IMPORT_C void CancelRead();
338 IMPORT_C void CancelRedrawRead();
339 IMPORT_C void SetCancelFunction(const TCallBack &aCallBack);
340 IMPORT_C void SetRedrawCancelFunction(const TCallBack &aCallBack);
341 IMPORT_C void RequestRedraw();
342 IMPORT_C void LogMessage(const TLogMessageText &aMessage);
343 inline void Flush() {iWs.Flush();}
344 inline void SetScreenNumber(TInt aScreenNumber);
345 IMPORT_C TBool IsEventWaiting();
346 IMPORT_C TBool WaitUntilEventPending();
347 IMPORT_C TBool WaitUntilRedrawPending();
348 inline CTEvent* EventHandler();
349 inline CTRedraw* RedrawHandler();
350 IMPORT_C TInt WaitForRedrawsToFinish();
351 IMPORT_C TInt WaitForAllEventProcessingToFinish();
353 TBool WaitUntilEventPending(const TRequestStatus& aStatus);
354 TInt WaitForEventsToFinish(TBool aAll);
356 CTEvent *iEventHandler;
357 CTRedraw *iRedrawEventHandler;
360 CTWindowGroup *iGroup;
362 CWsScreenDevice *iScreen;
369 class CTDialog : public CTTitledWindow
374 EDialogWaitForButtonUp=0x0001,
375 EDialogDisplayAtBottom=0x0002,
376 EDialogDisplayAtLeft=0x0008,
380 IMPORT_C ~CTDialog();
381 IMPORT_C void ConstructLD(CTWinBase &aParent, CWindowGc &aGc);
382 IMPORT_C void Draw();
383 IMPORT_C void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
384 IMPORT_C void PointerL(const TPointerEvent &aPointer,const TTime &aTime);
385 IMPORT_C virtual void ButtonPressL(TInt aButton);
386 IMPORT_C void SetLine1(const TDesC &aLine1);
387 IMPORT_C void SetLine2(const TDesC &aLine2);
388 IMPORT_C void SetNumButtons(TInt aNum);
389 IMPORT_C void SetButtonText(TInt aNum,const TDesC &aButton);
390 IMPORT_C void SetWindowSize();
391 IMPORT_C void RelinquishFocus();
392 IMPORT_C TInt Display();
393 IMPORT_C void SetFlags(TUint aFlags);
395 void SetResult(TInt aButton);
396 inline void SetTakeFocus() {iTakeFocus=ETrue;}
398 void SetMaxWid(TInt &aMax, TInt aWid);
399 TRect ButtonRect(TInt aIndex) const;
407 CTBaseWin *iOldFocus;
411 TBuf<0x20> iButton[3];
417 class CInfoDialog : public CTDialog
426 IMPORT_C CInfoDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc);
427 IMPORT_C void ConstructLD();
428 IMPORT_C void TimerResults();
429 //Virtual function from CTDialog
430 IMPORT_C void ButtonPressL(TInt aButton);
432 void AppendProfileTime(TDes &aDes, TInt aNum);
433 void AppendProfileCount(TDes &aDes, TInt aNum);
434 void AddComma(TDes &aDes);
436 CTWindowGroup *iGroupWin;
440 class CEventWindow : public CTWin
443 IMPORT_C CEventWindow(TInt aLogSize);
444 IMPORT_C ~CEventWindow();
445 IMPORT_C void ConstructL(CTWinBase &parent);
446 IMPORT_C void SetUpL(const TPoint &pos, CTWinBase *parent, CWindowGc &aGc);
447 IMPORT_C void Draw();
448 IMPORT_C void WinKeyL(const TKeyEvent &,const TTime &aTime);
449 IMPORT_C void LogEvent(const TWsEvent &aEvent);
451 void DrawLine(TInt aLine, const TDesC &aText);
452 void LogEvent(TInt aLogNum, const TWsEvent &aEvent);
458 TWsEvent *iLoggedEvents;
461 class CBlankWindow : public CTWin
464 IMPORT_C CBlankWindow(TRgb aCol);
465 IMPORT_C CBlankWindow();
466 IMPORT_C void ConstructL(CTWinBase &parent);
467 IMPORT_C void SetColor(TRgb aColor);
468 IMPORT_C void RealDraw(TBool aRealDraw);
469 IMPORT_C virtual void Draw();
470 IMPORT_C void DrawNow();
471 IMPORT_C void DrawNow(TRect& aRect);
472 IMPORT_C TBool Check(const CTClient& aClient);
478 struct TSpriteCreateParams;
480 class CTSpriteBase : public CBase
483 typedef void (*TSpriteDrawFunction)(CBitmapContext *aGc,TInt aIndex, const TSize &aSize, TBool aDoMask, TAny *aParam);
485 virtual RWsSpriteBase &SpriteBase()=0;
486 void CreateBitmapL(CFbsBitmap *&aBitmap, CFbsBitmapDevice *&aBitmapDevice, TSpriteCreateParams *aParams, TBool aDoMask);
488 IMPORT_C void UpdateL(TInt aIndex, TSpriteCreateParams *aParams);
489 IMPORT_C void RedrawL(CFbsBitmap *&aBitmap, CFbsBitmap *&aMaskBitmap, TSpriteCreateParams *aParams);
492 class CTSprite : public CTSpriteBase
495 IMPORT_C CTSprite(RWsSession &aWs);
496 IMPORT_C ~CTSprite();
497 IMPORT_C void ConstructL(RWindowTreeNode &aWindow, const TPoint &aPos, TInt aCount, TSpriteCreateParams *aParams, TInt aFlags);
498 IMPORT_C RWsSpriteBase &SpriteBase();
499 IMPORT_C RWsSprite &Sprite();
504 class CTPointerCursor : public CTSpriteBase
507 IMPORT_C CTPointerCursor(RWsSession &aWs);
508 IMPORT_C ~CTPointerCursor();
509 IMPORT_C void ConstructL(TInt aFlags);
510 IMPORT_C void ConstructL(TInt aCount, TSpriteCreateParams *aParams, TInt aFlags, CFbsBitmap *&aBitmap, CFbsBitmap *&aMaskBitmap);
511 IMPORT_C void ConstructL(TInt aCount, TSpriteCreateParams *aParams, TInt aFlags);
512 IMPORT_C RWsSpriteBase &SpriteBase();
513 IMPORT_C RWsPointerCursor &PointerCursor();
515 RWsPointerCursor iCursor;
518 struct TSpriteCreateParams
521 IMPORT_C TSpriteCreateParams(TSize aSize,TPoint aOffset,CTSpriteBase::TSpriteDrawFunction aDrawFunc,TAny *aDrawFuncParam=NULL, TBool aMask=ETrue,CGraphicsContext::TDrawMode aDrawMode=CGraphicsContext::EDrawModePEN);
522 IMPORT_C TSpriteCreateParams();
526 CTSpriteBase::TSpriteDrawFunction iDrawFunc;
527 TAny *iDrawFuncParam;
529 CGraphicsContext::TDrawMode iDrawMode;
530 TTimeIntervalMicroSeconds32 iInterval;
536 IMPORT_C static void Splat(CTClient *aClient, const TRect &aRect, const TRgb &aRgb);
539 IMPORT_C void DisplayDialog(const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2, const RWindowGroup *aGroup=NULL);
540 IMPORT_C void DisplayDialog(TInt aScreenNumber,const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2, const RWindowGroup *aGroup=NULL);
541 IMPORT_C void DisplayDialog(CTClient *aClient, const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2);
542 IMPORT_C TInt TestLibStartUp(TCreateClientFunc aFunc);
543 IMPORT_C TInt TestLibStartUp(TCreateClientFunc aFunc,TInt aScreenNumber);
546 inline TRgb CTTitledWindow::Color()
548 inline CWindowGc *CTBaseWin::Gc()
550 inline RWindow *CTWin::Win() const
551 {return((RWindow *)BaseWin());}
552 inline const RBlankWindow *CTBlankWindow::BlankWin()const
554 inline RBlankWindow *CTBlankWindow::BlankWin()
556 inline void CTClient::SetScreenNumber(TInt aScreenNumber)
557 {iScreenNumber=aScreenNumber;}
558 inline CTEvent* CTClient::EventHandler()
559 {return iEventHandler;}
560 inline CTRedraw* CTClient::RedrawHandler()
561 {return iRedrawEventHandler;}