First public contribution.
1 // Copyright (c) 1994-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 used for building window server test code
21 #include <e32property.h>
23 #include <graphics/wsgraphicdrawerinterface.h>
37 _LIT(KTestFontTypefaceName,"DejaVu Sans Condensed");
39 class CStopTheScheduler : public CAsyncOneShot
42 inline CStopTheScheduler(CTClient* aClient,TInt aPriority,TBool aAll) :CAsyncOneShot(aPriority), iClient(aClient), iAll(aAll) {}
43 inline CStopTheScheduler(CTClient* aClient,TInt aPriority) :CAsyncOneShot(aPriority), iClient(aClient) {}
44 inline CStopTheScheduler(TInt aPriority) :CAsyncOneShot(aPriority) {}
50 TInt iCStopTheSchedulerRunCount;
55 void TbPanic(TInt aPanic)
57 User::Panic(_L("TestBase"),aPanic);
60 EXPORT_C CTWinBase::CTWinBase(TInt aType) : iType(aType)
62 __DECLARE_NAME(_S("CTWinBase"));
65 EXPORT_C CTWinBase *CTWinBase::Parent() const
67 return((CTWinBase *)WinTreeNode()->Parent());
70 EXPORT_C CTWinBase *CTWinBase::NextSibling() const
72 return((CTWinBase *)WinTreeNode()->NextSibling());
75 EXPORT_C CTWinBase *CTWinBase::PrevSibling() const
77 return((CTWinBase *)WinTreeNode()->PrevSibling());
80 EXPORT_C CTClient *CTWinBase::Client() const
82 return(iOwnerWin->Client());
85 EXPORT_C CTBaseWin *CTWinBase::Child() const
87 return((CTBaseWin *)WinTreeNode()->Child());
90 EXPORT_C TPoint CTWinBase::Position() const
95 EXPORT_C void CTWinBase::PointerEnter(const TTime&)
99 EXPORT_C void CTWinBase::PointerExit(const TTime&)
103 EXPORT_C void CTWinBase::PointerBufferReady(const TTime&)
107 EXPORT_C void CTWinBase::PointerL(const TPointerEvent&,const TTime&)
111 EXPORT_C void CTWinBase::SwitchOn(const TTime &)
115 EXPORT_C void CTWinBase::ModifiersChanged(const TModifiersChangedEvent &,const TTime &)
119 EXPORT_C void CTWinBase::AdjustOrdinal(TInt)
123 EXPORT_C void CTWinBase::AdjustShadow(TInt)
127 EXPORT_C void CTWinBase::SetVisible(TBool)
131 EXPORT_C TInt CTWinBase::SubType()
136 EXPORT_C void CTWinBase::ErrorMessage(const TWsErrorMessage&, const TTime &)
140 EXPORT_C void CTWinBase::__DbgTestInvariant() const
142 WinTreeNode()->__DbgTestInvariant();
147 EXPORT_C CTBaseWin::CTBaseWin(TInt aType) : CTWinBase(aType)
149 __DECLARE_NAME(_S("CTBaseWin"));
152 EXPORT_C CTBaseWin::~CTBaseWin()
156 EXPORT_C void CTBaseWin::RelinquishFocus()
158 CTWinBase *parent=Parent();
159 CTWindowGroup *group=Group();
160 CTWinBase *child=group->Child();
162 child=child->NextSibling();
163 group->SetCurrentWindow((parent->iType==EWinTypeClient) ? (CTBaseWin *)parent : (CTBaseWin *)child);
166 EXPORT_C void CTBaseWin::SetVisible(TBool aState)
168 BaseWin()->SetVisible(aState);
171 EXPORT_C const RWindowTreeNode *CTBaseWin::WinTreeNode() const
173 return((const RWindowTreeNode *)BaseWin());
176 EXPORT_C RWindowTreeNode *CTBaseWin::WinTreeNode()
178 return((RWindowTreeNode *)BaseWin());
181 EXPORT_C void CTBaseWin::InitWin()
185 EXPORT_C void CTBaseWin::ConstructExtLD(CTWinBase &aParent, const TPoint &aPos, const TSize &aSize)
187 // Call ConstructL, SetExt and either of these fail destroy this and leave
190 TRAPD(err,ConstructL(aParent));
193 TRAP(err,SetExtL(aPos,aSize));
202 EXPORT_C void CTBaseWin::ConstructL(CTWinBase &aParent)
205 __ASSERT_DEBUG(aParent.iOwnerWin!=NULL,TbPanic(ETestBasePanicNullOwnerWin));
206 iOwnerWin=aParent.iOwnerWin;
207 if ((ret=ConstructWin(aParent))==KErrNone)
209 //TFontSpec fspec(KTestFontTypefaceName,200);
210 //User::LeaveIfError(Client()->iScreen->GetNearestFontToDesignHeightInTwips((CFont *&)iFont, fspec));
211 TFontSpec fspec(KTestFontTypefaceName,17);
212 User::LeaveIfError(Client()->iScreen->GetNearestFontToDesignHeightInPixels((CFont *&)iFont, fspec));
215 iSize=BaseWin()->Size();
217 User::LeaveIfError(ret);
220 EXPORT_C void CTBaseWin::Activate()
222 BaseWin()->Activate();
225 EXPORT_C void CTBaseWin::SetFullScreenExtL()
227 SetExtL(TPoint(0,0), Parent()->Size());
230 EXPORT_C void CTBaseWin::SetDefaultExtL()
232 TSize size=Parent()->Size();
235 SetExtL(TPoint(size.iWidth>>1,size.iHeight>>1), size);
238 EXPORT_C void CTBaseWin::AssignGC(CWindowGc &aGc)
243 EXPORT_C void CTBaseWin::SetPos(const TPoint &aPos)
245 BaseWin()->SetPosition(aPos);
249 EXPORT_C void CTBaseWin::SetInitialPos(const TPoint &aPos)
251 TSize screen=Client()->iScreen->SizeInPixels();
253 TPoint botLeft=pos+iSize;
254 if (botLeft.iX>screen.iWidth)
255 pos.iX=Max(0,pos.iX-botLeft.iX+screen.iWidth);
256 if (botLeft.iY>screen.iHeight)
257 pos.iY=Max(0,pos.iY-botLeft.iY+screen.iHeight);
261 EXPORT_C void CTBaseWin::SetExtL(const TPoint &aPos, const TSize &aSize)
263 User::LeaveIfError(BaseWin()->SetExtentErr(aPos,aSize));
269 EXPORT_C void CTBaseWin::AdjustSizeL(TInt xMove,TInt yMove,TInt modifiers)
271 if (modifiers&EModifierCtrl) // 4 times the movement
276 if (modifiers&EModifierShift)
278 TSize size(iSize.iWidth+xMove,iSize.iHeight+yMove);
284 if (modifiers&EModifierCtrl)
295 SetPos(TPoint(iPos+TPoint(xMove,yMove)));
298 EXPORT_C void CTBaseWin::SetSizeL(const TSize &aSize)
300 User::LeaveIfError(BaseWin()->SetSizeErr(aSize));
305 EXPORT_C TSize CTBaseWin::Size() const
310 EXPORT_C void CTBaseWin::Resized(const TSize &aSize)
313 SetDragRect(TRect(aSize));
316 EXPORT_C TPoint CTBaseWin::Position() const
318 return(BaseWin()->Position());
321 EXPORT_C void CTBaseWin::Delete(CTBaseWin *aWin)
323 RHeap& heap = User::Heap();
324 TUint8* base=heap.Base();
325 TInt size=heap.Size();
326 TUint8* cell=REINTERPRET_CAST(TUint8*,aWin);
327 __ASSERT_ALWAYS(base<=cell && cell<base+size, TbPanic(ETestBasePanicInvalidHeapAddress));
330 CTBaseWin *curwin=NULL;
332 curwin=tmp->Group()->CurWin();
336 while((tmp=win2->Child())!=NULL)
338 if ((tmp=win2->NextSibling())==NULL)
341 ((CTBaseWin *)win2)->RelinquishFocus();
346 EXPORT_C void CTBaseWin::KeyUpL(const TKeyEvent &,const TTime&)
350 EXPORT_C void CTBaseWin::KeyDownL(const TKeyEvent &,const TTime&)
354 EXPORT_C void CTBaseWin::WinKeyL(const TKeyEvent &,const TTime&)
358 EXPORT_C void CTBaseWin::PointerL(const TPointerEvent &aPointer,const TTime&)
362 if (aPointer.iType==TPointerEvent::EDrag)
363 SetPos(aPointer.iParentPosition-iDragPos);
368 if (aPointer.iType==TPointerEvent::EButton1Down)
370 if (aPointer.iModifiers&EModifierCtrl)
372 if (aPointer.iModifiers&EModifierShift)
373 BaseWin()->SetOrdinalPosition(-1);
375 BaseWin()->SetOrdinalPosition(0);
378 #if defined(__WINS__)
379 else if (aPointer.iModifiers&EModifierShift)
380 __DbgTestInvariant();
384 Group()->SetCurrentWindow(this);
385 if (iDragRect.Contains(aPointer.iPosition))
388 iDragPos=aPointer.iPosition;
395 EXPORT_C void CTBaseWin::DragDropL(const TPointerEvent &,const TTime &)
399 EXPORT_C void CTBaseWin::AdjustOrdinal(TInt aAdjust)
401 TInt pos=BaseWin()->OrdinalPosition()+aAdjust;
403 BaseWin()->SetOrdinalPosition(pos);
406 EXPORT_C void CTBaseWin::AdjustShadow(TInt aAdjust)
411 BaseWin()->SetShadowHeight(iShadow);
414 EXPORT_C void CTBaseWin::DrawBorder()
416 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
417 iGc->DrawRect(TRect(iSize));
418 iGc->SetBrushStyle(CGraphicsContext::ENullBrush);
421 EXPORT_C void CTBaseWin::SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc, TDisplayMode *aMode,TBool aVisible,TInt aTransparency)
425 BaseWin()->SetRequiredDisplayMode(*aMode);
428 BaseWin()->SetVisible(aVisible);
429 if (aTransparency!=ENoTransparency)
431 TInt err=((RWindow*)(BaseWin()))->SetTransparencyFactor(TRgb::_Gray256(aTransparency));
432 User::LeaveIfError(err); //asked for transparency when not got none!
438 EXPORT_C void CTBaseWin::SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc, TDisplayMode *aMode)
440 SetUpL(pos,size,parent,aGc,aMode,ETrue);
443 EXPORT_C void CTBaseWin::SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc,TBool aVisible)
445 SetUpL(pos,size,parent,aGc,NULL,aVisible);
448 EXPORT_C void CTBaseWin::SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc)
450 SetUpL(pos,size,parent,aGc,NULL,ETrue);
453 EXPORT_C void CTBaseWin::SetDragRect(const TRect &aRect)
455 BaseWin()->PointerFilter(EPointerFilterDrag,0); // Clear the drag filter
456 BaseWin()->SetPointerGrab(ETrue);
460 EXPORT_C CTWindowGroup *CTBaseWin::Group() const
465 EXPORT_C void CTBaseWin::FocusChanged(TBool )
469 EXPORT_C CTBaseWin *CTBaseWin::Next()
472 CTWinBase *ret=Child();
476 while((ret=win->NextSibling())==NULL)
480 if (win==NULL) // Group window
487 return((CTBaseWin *)ret);
490 EXPORT_C CTBaseWin *CTBaseWin::Prev()
492 CTWinBase *par=Parent();
495 if ((win=PrevSibling())==NULL)
497 if (par->iType==EWinTypeGroup)
499 CTWinBase *win2=par->Child();
503 while((win2=win->NextSibling())!=NULL)
517 child=child->NextSibling();
520 return((CTBaseWin *)win);
523 //EXPORT_C void CTBaseWin::SetDefaultExt()
525 // TbPanic(ETestBasePanicUnimplementedBaseFunction);
528 EXPORT_C void CTBaseWin::Draw()
530 TbPanic(ETestBasePanicUnimplementedBaseFunction);
533 EXPORT_C void CTBaseWin::__DbgTestInvariant() const
535 CTWinBase::__DbgTestInvariant();
536 #if defined(__WINS__)
537 if (BaseWin()->Size()!=iSize)
540 const CTWinBase *win=this;
541 const CTWinBase *win2;
542 while((win2=win->Parent())!=NULL)
544 offset+=((CTBaseWin *)win)->BaseWin()->Position();
545 if (BaseWin()->InquireOffset(*(win2->WinTreeNode()))!=offset)
553 // Drawable window //
556 EXPORT_C CTDrawableWin::CTDrawableWin(TInt aType) : CTBaseWin(aType)
558 __DECLARE_NAME(_S("CTDrawableWin"));
562 // Standard client window //
565 EXPORT_C CTWin::CTWin() : CTDrawableWin(EWinTypeClient)
567 __DECLARE_NAME(_S("CTWin"));
570 EXPORT_C CTWin::~CTWin()
573 Client()->iScreen->ReleaseFont(iFont);
577 EXPORT_C TInt CTWin::ConstructWin(const CTWinBase &aParent)
579 iWin=RWindow(aParent.Client()->iWs);
580 return(iWin.Construct(*(aParent.WinTreeNode()),(TUint32)this));
583 EXPORT_C void CTWin::SetDefaultExt()
585 TSize size=Parent()->Size();
588 SetExt(TPoint(size.iWidth>>1,size.iHeight>>1), size);
592 EXPORT_C void CTWin::SetExt(const TPoint &aPos, const TSize &aSize)
594 iWin.SetExtent(aPos,aSize);
600 EXPORT_C void CTWin::SetSize(const TSize &aSize)
607 EXPORT_C void CTWin::AdjustSize(TInt xMove,TInt yMove,TInt modifiers)
609 if (modifiers&EModifierCtrl) // 4 times the movement
614 if (modifiers&EModifierShift)
616 TSize size(iSize.iWidth+xMove,iSize.iHeight+yMove);
622 if (modifiers&EModifierCtrl)
634 SetPos(TPoint(iPos+TPoint(xMove,yMove)));
637 EXPORT_C RWindowBase *CTWin::BaseWin()
639 return((RWindowBase *)&iWin);
642 EXPORT_C const RWindowBase *CTWin::BaseWin() const
644 return((const RWindowBase *)&iWin);
647 EXPORT_C RDrawableWindow *CTWin::DrawableWin()
649 return((RDrawableWindow *)&iWin);
652 EXPORT_C const RDrawableWindow *CTWin::DrawableWin() const
654 return((const RDrawableWindow *)&iWin);
658 EXPORT_C void CTWin::Invalidate()
663 EXPORT_C void CTWin::Invalidate(const TRect &rect)
665 iWin.Invalidate(rect);
668 EXPORT_C void CTWin::DrawNow()
673 iGc->UseFont((CFont *)iFont);
679 EXPORT_C void CTWin::Redraw()
683 iGc->UseFont((CFont *)iFont);
689 EXPORT_C void CTWin::Redraw(const TRect &aRect)
691 iWin.BeginRedraw(aRect);
693 iGc->UseFont((CFont *)iFont);
700 // Backed up window //
703 EXPORT_C CTBackedUpWin::CTBackedUpWin(TDisplayMode aDisplayMode) : CTDrawableWin(EWinTypeClient), iDisplayMode(aDisplayMode)
705 __DECLARE_NAME(_S("CTBackedUpWin"));
708 EXPORT_C CTBackedUpWin::~CTBackedUpWin()
711 Client()->iScreen->ReleaseFont(iFont);
715 EXPORT_C TInt CTBackedUpWin::ConstructWin(const CTWinBase &aParent)
717 iWin=RBackedUpWindow(aParent.Client()->iWs);
718 return(iWin.Construct(*(aParent.WinTreeNode()), iDisplayMode, (TUint32)this));
721 EXPORT_C RWindowBase *CTBackedUpWin::BaseWin()
723 return((RWindowBase *)&iWin);
726 EXPORT_C const RWindowBase *CTBackedUpWin::BaseWin() const
728 return((const RWindowBase *)&iWin);
731 EXPORT_C RDrawableWindow *CTBackedUpWin::DrawableWin()
733 return((RDrawableWindow *)&iWin);
736 EXPORT_C const RDrawableWindow *CTBackedUpWin::DrawableWin() const
738 return((const RDrawableWindow *)&iWin);
741 EXPORT_C RBackedUpWindow *CTBackedUpWin::BackedUpWin()
746 EXPORT_C const RBackedUpWindow *CTBackedUpWin::BackedUpWin() const
753 EXPORT_C CTTitledWindow::CTTitledWindow() : CTWin(), iWinColor(TRgb(255,255,255)), iPenColor(TRgb(0,0,0))
755 __DECLARE_NAME(_S("CTTitledWin"));
758 EXPORT_C CTTitledWindow::~CTTitledWindow()
762 EXPORT_C void CTTitledWindow::ConstructL(CTWinBase &parent)
764 CTBaseWin::ConstructL(parent);
765 iTitleHeight=iFont->HeightInPixels()+4;
766 if (iTitle.Length()==0)
767 SetTitle(*Client()->Title());
770 EXPORT_C void CTTitledWindow::SetColor(TRgb aRgb)
773 iWin.SetBackgroundColor(aRgb);
776 EXPORT_C void CTTitledWindow::Resized(const TSize &aSize)
778 SetDragRect(TRect(0,0,aSize.iWidth,iTitleHeight));
781 EXPORT_C void CTTitledWindow::SetTitle(const TWindowTitle &aTitle)
786 EXPORT_C void CTTitledWindow::Draw()
788 iGc->SetPenColor(iPenColor);
789 iGc->SetBrushColor(iWinColor);
791 iGc->DrawLine(TPoint(0,iTitleHeight),TPoint(iSize.iWidth,iTitleHeight));
792 if (Group()->HasFocus(this))
794 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
795 iGc->SetPenColor(~iPenColor);
796 iGc->SetBrushColor(~iWinColor);
798 iGc->DrawText(iTitle, TRect(1,1,iSize.iWidth-1,iTitleHeight),iFont->AscentInPixels()+1,CGraphicsContext::ECenter);
799 iGc->SetPenColor(iPenColor);
800 iGc->SetBrushColor(iWinColor);
803 EXPORT_C void CTTitledWindow::FocusChanged(TBool )
805 iWin.Invalidate(TRect(0,0,iSize.iWidth,iTitleHeight));
810 EXPORT_C CTBlankWindow::CTBlankWindow() : CTBaseWin(EWinTypeClient)
812 __DECLARE_NAME(_S("CTBlankWin"));
815 EXPORT_C void CTBlankWindow::ConstructL(CTWinBase &aParent)
817 CTBaseWin::ConstructL(aParent);
820 EXPORT_C CTBlankWindow::~CTBlankWindow()
823 Client()->iScreen->ReleaseFont(iFont);
827 EXPORT_C void CTBlankWindow::SetExt(const TPoint &aPos, const TSize &aSize)
829 iWin.SetExtent(aPos,aSize);
835 EXPORT_C void CTBlankWindow::SetSize(const TSize &aSize)
842 EXPORT_C void CTBlankWindow::SetColor(const TRgb &aRgb)
847 EXPORT_C TInt CTBlankWindow::ConstructWin(const CTWinBase &aParent)
849 iWin=RBlankWindow(aParent.Client()->iWs);
850 return(iWin.Construct(*(aParent.WinTreeNode()),(TUint32)this));
853 EXPORT_C const RWindowBase *CTBlankWindow::BaseWin() const
855 return((const RWindowBase *)&iWin);
858 EXPORT_C RWindowBase *CTBlankWindow::BaseWin()
860 return((RWindowBase *)&iWin);
865 EXPORT_C CTWindowGroup::CTWindowGroup(CTClient *aClient) : CTWinBase(EWinTypeGroup), iGroupWin(aClient->iWs)
867 __DECLARE_NAME(_S("CTWindowGroup"));
872 EXPORT_C CTWindowGroup::~CTWindowGroup()
877 EXPORT_C const RWindowTreeNode *CTWindowGroup::WinTreeNode() const
879 return((const RWindowTreeNode *)&iGroupWin);
882 EXPORT_C RWindowTreeNode *CTWindowGroup::WinTreeNode()
884 return((RWindowTreeNode *)&iGroupWin);
887 EXPORT_C void CTWindowGroup::ConstructL()
889 User::LeaveIfError(iGroupWin.Construct((TUint32)this));
892 EXPORT_C TSize CTWindowGroup::Size() const
894 return(iClient->iScreen->SizeInPixels());
897 EXPORT_C void CTWindowGroup::WinKeyL(const TKeyEvent &,const TTime&)
901 EXPORT_C void CTWindowGroup::KeyL(const TKeyEvent &aKey,const TTime&aTime)
904 iCurWin->WinKeyL(aKey,aTime);
907 EXPORT_C void CTWindowGroup::KeyUpL(const TKeyEvent &,const TTime&)
911 EXPORT_C void CTWindowGroup::KeyDownL(const TKeyEvent &,const TTime&)
915 EXPORT_C void CTWindowGroup::ClearCurrentWindow()
920 EXPORT_C void CTWindowGroup::SetCurrentWindow(CTBaseWin *aWindow)
922 SetCurrentWindow(aWindow, EFalse);
925 EXPORT_C void CTWindowGroup::SetCurrentWindow(CTBaseWin *aWindow, TBool aLocked)
927 if (iCurWin!=aWindow)
929 if (iFocus && iCurWin)
930 iCurWin->FocusChanged(EFalse);
932 if (iFocus && iCurWin)
933 iCurWin->FocusChanged(ETrue);
938 EXPORT_C CTBaseWin *CTWindowGroup::CurWin(void) const
943 EXPORT_C void CTWindowGroup::FocusLost()
947 iCurWin->FocusChanged(EFalse);
950 EXPORT_C void CTWindowGroup::FocusGained()
954 iCurWin->FocusChanged(ETrue);
957 EXPORT_C TBool CTWindowGroup::HasFocus(CTBaseWin *aWin) const
959 return(iFocus && iCurWin==aWin);
962 EXPORT_C CTClient *CTWindowGroup::Client() const
967 EXPORT_C CTWindowGroup *CTWindowGroup::Group() const
969 return((CTWindowGroup *)this);
972 EXPORT_C void CTWindowGroup::PasswordL(const TTime &)
974 TbPanic(ETestBasePanicPassword);
977 EXPORT_C void CTWindowGroup::MessageReady(const TWsEvent &)
979 // Dummy handler for un-exepected messages (could panic, but better not as the app sending the messages fault really not ours)
984 EXPORT_C void CTWindowGroup::ScreenDeviceChanged()
986 TPixelsAndRotation sizeAndRotation;
987 Client()->iScreen->GetDefaultScreenSizeAndRotation(sizeAndRotation);
988 Client()->iScreen->SetScreenSizeAndRotation(sizeAndRotation);
991 EXPORT_C void CTWindowGroup::UserEvent(TInt /*aEventType*/)
998 EXPORT_C CTClient::CTClient()
1000 __DECLARE_NAME(_S("CTClient"));
1003 EXPORT_C void CTClient::DestroyWindows()
1008 if (iGroup->GroupWin()->WsHandle()!=0) // Check it was created okay
1009 while((win=iGroup->Child())!=NULL && ((TUint)win)!=ENullWsHandle)
1010 CTBaseWin::Delete(win);
1016 EXPORT_C CTClient::~CTClient()
1020 delete iEventHandler;
1021 delete iRedrawEventHandler;
1023 TInt count=iWs.ResourceCount();
1024 __ASSERT_ALWAYS(count==0,TbPanic(ETestBasePanicResourceCount));
1028 EXPORT_C void CTClient::ConstructEventHandlerL()
1030 iEventHandler=new(ELeave) CTEvent(&iWs);
1031 iEventHandler->Construct();
1034 EXPORT_C void CTClient::ConstructL()
1036 User::LeaveIfError(iWs.Connect());
1037 iScreen=new(ELeave) CWsScreenDevice(iWs);
1038 User::LeaveIfError(iScreen->Construct(iScreenNumber));
1039 iRedrawEventHandler=new(ELeave) CTRedraw(&iWs);
1040 iRedrawEventHandler->Construct();
1041 ConstructEventHandlerL();
1042 iGc=new(ELeave) CWindowGc(iScreen);
1043 User::LeaveIfError(iGc->Construct());
1044 iTitle.Copy(RThread().FullName());
1047 EXPORT_C void CTClient::ResetFocus()
1049 iGroup->ClearCurrentWindow();
1050 iGroup->SetCurrentWindow(iGroup->Child());
1053 EXPORT_C TWindowTitle *CTClient::Title()
1058 EXPORT_C TBool CTClient::QueueRead()
1060 TBool ret=iEventHandler->IsActive();
1062 iEventHandler->Request();
1066 EXPORT_C void CTClient::CancelRead()
1068 iEventHandler->Cancel();
1071 EXPORT_C void CTClient::SetCancelFunction(const TCallBack &aCallBack)
1073 iEventHandler->SetCancelFunction(aCallBack);
1076 EXPORT_C void CTClient::CancelRedrawRead()
1078 iRedrawEventHandler->Cancel();
1081 EXPORT_C void CTClient::SetRedrawCancelFunction(const TCallBack &aCallBack)
1083 iRedrawEventHandler->SetCancelFunction(aCallBack);
1086 EXPORT_C void CTClient::RequestRedraw()
1088 iRedrawEventHandler->Request();
1091 EXPORT_C void CTClient::LogMessage(const TLogMessageText &aMessage)
1093 iWs.LogMessage(aMessage);
1097 EXPORT_C TBool CTClient::IsEventWaiting()
1099 iWs.NumWindowGroups(); //Make sure all asyncronus calls have finished
1100 return (iEventHandler->iStatus!=KRequestPending);
1103 TBool CTClient::WaitUntilEventPending(const TRequestStatus& aStatus)
1105 if (aStatus!=KRequestPending)
1107 User::After(2000000); //Need something smarter than this
1108 return (aStatus!=KRequestPending);
1111 EXPORT_C TBool CTClient::WaitUntilRedrawPending()
1113 return WaitUntilEventPending(iRedrawEventHandler->iStatus);
1116 EXPORT_C TBool CTClient::WaitUntilEventPending()
1118 return WaitUntilEventPending(iEventHandler->iStatus);
1121 EXPORT_C TInt CTClient::WaitForRedrawsToFinish()
1123 return WaitForEventsToFinish(EFalse);
1126 EXPORT_C TInt CTClient::WaitForAllEventProcessingToFinish()
1128 return WaitForEventsToFinish(ETrue);
1131 TInt CTClient::WaitForEventsToFinish(TBool aAll)
1133 CStopTheScheduler* stop=new CStopTheScheduler(this,ETlibRedrawActivePriority-1,aAll);
1135 return KErrNoMemory;
1137 CActiveScheduler::Start();
1143 // CStopTheScheduler //
1145 void CStopTheScheduler::RunL()
1148 RDebug::Print(_L("CStopTheScheduler::RunL - enter - %d"), iCStopTheSchedulerRunCount);
1152 iClient->iWs.NumWindowGroups(); //Make sure all asyncronus calls have finished
1155 if (!iClient || (iClient->RedrawHandler()->iStatus==KRequestPending && (!iAll || iClient->EventHandler()->iStatus==KRequestPending)))
1158 RDebug::Print(_L("CStopTheScheduler::RunL - Stop - %d"), iCStopTheSchedulerRunCount);
1160 CActiveScheduler::Stop();
1165 RDebug::Print(_L("CStopTheScheduler::RunL - Call - %d"), iCStopTheSchedulerRunCount);
1170 RDebug::Print(_L("CStopTheScheduler::RunL - exit - %d"), iCStopTheSchedulerRunCount);
1171 iCStopTheSchedulerRunCount++;
1175 void WaitForRedrawsToFinish()
1177 CStopTheScheduler* ps=new CStopTheScheduler(ETlibRedrawActivePriority-1);
1181 CActiveScheduler::Start();
1189 EXPORT_C CTEventBase::CTEventBase(RWsSession *aWs, TInt aPriority) : CActive(aPriority), iWs(aWs)
1193 EXPORT_C CTEventBase::~CTEventBase()
1197 EXPORT_C void CTEventBase::Construct()
1199 CActiveScheduler::Add(this);
1203 EXPORT_C void CTEventBase::RunL()
1205 if (iStatus==KErrNone)
1208 TRAPD(err,doRunL());
1209 if (err<=0) // Positive value means this has been destroyed
1211 if (iCancelRequested)
1214 // if (err!=KErrNone)
1215 // User::LeaveIfError(err); Should have a guaranteed to work error dialog here I guess
1218 else if (iStatus==KErrCancel && iCancelRequested)
1224 TbPanic(ETestBasePanicEventStat);
1227 void CTEventBase::SetCancelFunction(const TCallBack &aCallBack)
1229 if (!IsActive() && iCancelRequested)
1230 TbPanic(ETestBasePanicCancelFunction);
1231 iCancelCallBack=aCallBack;
1232 iCancelRequested=ETrue;
1236 EXPORT_C void CTEventBase::CancelHandler()
1238 iCancelCallBack.CallBack();
1239 iCancelRequested=EFalse;
1244 EXPORT_C CTWindowGroup *TlibWsEvent::WindowGroup()
1246 CTWindowGroup *group=(CTWindowGroup *)Handle();
1247 __ASSERT_DEBUG(group->iType==EWinTypeGroup,TbPanic(ETestBasePanicWinType));
1251 EXPORT_C CTBaseWin *TlibWsEvent::BaseWin()
1253 CTBaseWin *win=(CTBaseWin *)Handle();
1254 __ASSERT_DEBUG(win->iType==EWinTypeClient || win->iType==EWinTypeGroup,TbPanic(ETestBasePanicWinType));
1260 EXPORT_C CTEvent::CTEvent(RWsSession *aWs) : CTEventBase(aWs, ETlibWsEventActivePriority)
1262 __DECLARE_NAME(_S("CTEvent"));
1265 EXPORT_C CTEvent::~CTEvent()
1270 EXPORT_C void CTEvent::DoCancel()
1272 iWs->EventReadyCancel();
1275 EXPORT_C void CTEvent::Request()
1277 iWs->EventReady(&iStatus);
1281 EXPORT_C void CTEvent::LogEvent(const TWsEvent &)
1285 EXPORT_C void CTEvent::doRunL()
1289 iWs->GetEvent(event);
1291 if (event.Handle()!=0 && event.Handle()!=ENullWsHandle)
1293 switch(event.Type())
1296 event.WindowGroup()->KeyL(*event.Key(),event.Time());
1299 __ASSERT_ALWAYS(event.Key()->iCode==0 && event.Key()->iRepeats==0, TbPanic(ETestBasePanicKeyParams));
1300 event.WindowGroup()->KeyDownL(*event.Key(),event.Time());
1303 __ASSERT_ALWAYS(event.Key()->iCode==0 && event.Key()->iRepeats==0, TbPanic(ETestBasePanicKeyParams));
1304 event.WindowGroup()->KeyUpL(*event.Key(),event.Time());
1306 case EEventModifiersChanged:
1307 event.BaseWin()->ModifiersChanged(*event.ModifiersChanged(),event.Time());
1310 event.BaseWin()->PointerL(*event.Pointer(),event.Time());
1312 case EEventDragDrop:
1313 event.BaseWin()->DragDropL(*event.Pointer(),event.Time());
1315 case EEventPointerEnter:
1316 event.BaseWin()->PointerEnter(event.Time());
1318 case EEventPointerExit:
1319 event.BaseWin()->PointerExit(event.Time());
1321 case EEventPointerBufferReady:
1322 event.BaseWin()->PointerBufferReady(event.Time());
1324 case EEventSwitchOn:
1325 event.BaseWin()->SwitchOn(event.Time());
1327 case EEventFocusLost:
1328 event.WindowGroup()->FocusLost();
1330 case EEventFocusGained:
1331 event.WindowGroup()->FocusGained();
1333 case EEventPassword:
1334 event.WindowGroup()->PasswordL(event.Time());
1336 case EEventMessageReady:
1337 event.WindowGroup()->MessageReady(event);
1339 case EEventErrorMessage:
1340 event.WindowGroup()->ErrorMessage(*event.ErrorMessage(), event.Time());
1342 case EEventSwitchOff:
1343 case EEventKeySwitchOff:
1345 TTimeIntervalMicroSeconds32 ii=1000000;
1346 User::After(ii); //WINS does not always work without this!
1347 UserHal::SwitchOff();
1350 case EEventScreenDeviceChanged:
1351 event.WindowGroup()->ScreenDeviceChanged();
1356 if (event.Type()>=EEventUser)
1358 event.WindowGroup()->UserEvent(event.Type());
1363 //if not in BufferSecurity test - panic
1364 TInt value = EFalse;
1365 TInt err = RProperty::Get(KUidWServSecurityTesting,EWServSecTestBufferSecurity,value);
1366 if ((err != KErrNone) || (value != (TInt)ETrue))
1367 TbPanic(ETestBasePanicInvalidEvent);
1374 EXPORT_C CTRedraw::CTRedraw(RWsSession *aWs) : CTEventBase(aWs, ETlibRedrawActivePriority)
1376 __DECLARE_NAME(_S("CTRedraw"));
1379 EXPORT_C CTRedraw::~CTRedraw()
1384 EXPORT_C void CTRedraw::Request()
1386 iWs->RedrawReady(&iStatus);
1390 EXPORT_C void CTRedraw::DoCancel()
1392 iWs->RedrawReadyCancel();
1395 EXPORT_C void CTRedraw::doRunL()
1397 TWsRedrawEvent redraw;
1398 iWs->GetRedraw(redraw);
1399 if (redraw.Handle()!=0 && redraw.Handle()!=ENullWsHandle)
1401 __ASSERT_ALWAYS(!redraw.Rect().IsEmpty(),TbPanic(ETestBasePanicNullRedraw));
1402 ((CTWin *)redraw.Handle())->Redraw(redraw.Rect());
1406 EXPORT_C void CTUser::Splat(CTClient *aClient, const TRect &aRect, const TRgb &aRgb)
1408 RBlankWindow win(aClient->iWs);
1409 win.Construct(*(aClient->iGroup->WinTreeNode()),1);
1411 win.SetExtent(aRect.iTl,aRect.Size());
1413 aClient->iWs.Flush();
1417 void doTestLibStartUpL(TInt aScreenNumber, CTClient *&aClient, CActiveScheduler *&aActiveScheduler,CTrapCleanup *&aCleanUpStack,TCreateClientFunc aFunc)
1419 User::LeaveIfNull(aCleanUpStack=CTrapCleanup::New());
1420 aActiveScheduler=new(ELeave) CActiveScheduler;
1421 CActiveScheduler::Install(aActiveScheduler);
1423 aClient->SetScreenNumber(aScreenNumber);
1424 aClient->ConstructL();
1425 CActiveScheduler::Start();
1428 EXPORT_C TInt TestLibStartUp(TCreateClientFunc aFunc,TInt aScreenNumber)
1431 CTrapCleanup* cleanUpStack=NULL;
1432 CActiveScheduler *activeScheduler=NULL;
1433 CTClient *client=NULL;
1434 TRAPD(err,doTestLibStartUpL(aScreenNumber, client,activeScheduler,cleanUpStack,aFunc));
1436 delete activeScheduler;
1437 delete cleanUpStack;
1442 EXPORT_C TInt TestLibStartUp(TCreateClientFunc aFunc)
1444 return TestLibStartUp(aFunc, KDefaultScreen);