Update contrib.
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 // Very simple test program to connect to the window server
21 #include "../SERVER/w32cmd.h"
22 #include "../test/tlib/testbase.h"
26 #define TEST_BITMAP_NAME _L("Z:\\WSTEST\\TEST.MBM")
27 _LIT(KTestFontTypefaceName,"DejaVu Sans Condensed");
33 class TestClient; // Forward reference
35 class TestWindow1 : public CTWin
39 void Resized(const TSize &aNewSize);
41 void WinKeyL(const TKeyEvent &aKey,const TTime &);
46 class TestWindow2 : public CTWin
59 void PointerL(const TPointerEvent &aPointer,const TTime &aTime);
60 void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
61 void NewText(TPoint &pos,TInt &width,TDes &des);
62 void PointerState(EPointerState aState);
63 void PointerEnter(const TTime &aTime);
64 void PointerExit(const TTime &aTime);
66 void RequestPointerRepeat();
68 void SwitchOn(const TTime &aTime);
80 EPointerState iPointerState;
89 class TestWindow3 : public CTWin
96 void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
97 void Resized(const TSize &aNewSize);
98 void SetShape(TInt aShapeNum);
99 void ScreenDeviceChangedL();
104 TCornerType iCornerType;
107 class TestWindow4 : public CTWin
112 void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
113 void Resized(const TSize &aSize);
115 void Draw(TBool aSetCursor);
117 void SetSwappedSize();
118 void SetCursor(const TPoint &aPos);
127 class TestWindow5 : public CTBackedUpWin
130 TestWindow5(TBool aGrey2);
133 void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
134 void Resized(const TSize &aNewSize);
136 CFbsBitmap iBrushBit;
140 class TestWindow6 : public CTBackedUpWin
143 enum {KPointerMoveBufferSize=32};
145 TestWindow6(TBool aGrey2);
149 void PointerL(const TPointerEvent &aPointer,const TTime &aTime);
150 void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
151 virtual void AssignGC(CWindowGc &aGc);
152 void Resized(const TSize &aNewSize);
153 void PointerBufferReady(const TTime &aTime);
155 TSize iOldSize; // Needed as part of resizing after old size has been lost
162 class TestWindow7 : public CTBackedUpWin
165 enum {EPointerModes=3};
167 TestWindow7(TBool aGrey2);
171 void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
172 void Resized(const TSize &aNewSize);
174 void createBitmapL(CFbsBitmap *aBitmap, CFbsBitmapDevice *&aBitmapDevice, const TSize &aSize, TBool aDoMask);
175 void createBitmap2L(CFbsBitmap *aBitmap, CFbsBitmapDevice *&aBitmapDevice, const TSize &aSize, TBool aDoMask);
176 void InitPointerCursorL(RWsPointerCursor &aSprite, const TSize &aSize, TInt aFlags);
177 void InitSpriteL(RWsSprite &aSprite, const TPoint &aPos, const TSize &aSize, TTimeIntervalMicroSeconds32 aOnTime, TTimeIntervalMicroSeconds32 aOffTime, TInt aFlags);*/
184 CTPointerCursor *iPointerCursor;
185 CFbsBitmap *iSpriteBitmap;
186 CFbsBitmap *iSpriteMaskBitmap;
194 CTSprite *iCurSprite;
197 class TestWindow8 : public CTBlankWindow
205 class TestWindow9 : public CTWin
210 void WinKeyL(const TKeyEvent &aKey,const TTime &);
218 class TestWindow10 : public CTWin
224 void WinKeyL(const TKeyEvent &aKey,const TTime &);
227 class TestWindow12 : public CTWin
233 void WinKeyL(const TKeyEvent &aKey,const TTime &);
236 class TestWindowGroup : public CTWindowGroup
239 TestWindowGroup(CTClient *aClient);
240 virtual void ConstructL();
241 virtual void KeyL(const TKeyEvent &aKey,const TTime &aTime);
242 void ScreenDeviceChanged();
243 void RunLaunchAndShootTestL();
244 void MillionsOfSessions();
245 inline void SetHandWriting(CHandWriting* aHand) {iHand=aHand;}
248 TBool iIncludeChildren;
251 class TestClient : public CTClient
259 void SetCurrentWindow(CTWinBase *aWindow);
260 CTBaseWin *CreateTestWindowL(TInt type,TPoint pos,TSize size,CTWinBase *parent,CWindowGc &gc,TBool aAlternate=EFalse);
261 void AdjustLightSource(TInt aX,TInt aY);
263 inline TestWindowGroup* TestWindow() {return STATIC_CAST(TestWindowGroup*,iGroup);}
265 CHandWriting *iHandWriting;
269 //const TInt Xmove=8;
270 //const TInt Ymove=6;
274 LOCAL_D const TUint KTestThreadHeapSize=0x10000;
278 EConnectPanicRedrawToBackedUpWindow,
279 EConnectPanicRequiredDisplayMode,
280 EConnectPanicDragEvent,
283 TInt RunLaunchAndShootTest(TAny *);
285 void Panic(TInt aPanic)
287 User::Panic(_L("CONNECT"),aPanic);
291 // Individual window sub-classes
294 TestWindow1::TestWindow1() : CTWin()
296 __DECLARE_NAME(_S("TestWindow1"));
299 void TestWindow1::Draw()
300 //This function is virtual and so cannot have an 'L' at the end of it's name
304 iGc->SetBrushColor(TRgb::Gray16(14));
306 iGc->SetPenColor(TRgb::Gray16(8));
307 iGc->SetBrushColor(TRgb::Gray16(0));
308 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
309 CArrayFixFlat<TPoint> *pnts;
310 pnts=new(ELeave) CArrayFixFlat<TPoint>(20);
311 TPoint mid(iSize.iWidth>>1,iSize.iHeight>>1);
312 for(i=0;i<mid.iX;i+=4)
314 pnts->AppendL(TPoint(mid.iX-i,mid.iY-i));
315 pnts->AppendL(TPoint(mid.iX+i+1,mid.iY-i-1));
316 pnts->AppendL(TPoint(mid.iX+i+2,mid.iY+i+2));
317 pnts->AppendL(TPoint(mid.iX-i-3,mid.iY+i+3));
320 iGc->DrawPolygon(pnts,CGraphicsContext::EAlternate);
322 iGc->DrawPolyLine(pnts);
326 polygon[0]=TPoint(mid.iX-8,mid.iY-16);
327 polygon[1]=TPoint(mid.iX+8,mid.iY-16);
328 polygon[2]=TPoint(mid.iX+16,mid.iY-8);
329 polygon[3]=TPoint(mid.iX+16,mid.iY+8);
330 polygon[4]=TPoint(mid.iX+8,mid.iY+16);
331 polygon[5]=TPoint(mid.iX-8,mid.iY+16);
332 polygon[6]=TPoint(mid.iX-16,mid.iY+8);
333 polygon[7]=TPoint(mid.iX-16,mid.iY-8);
334 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
335 iGc->DrawPolygon(&polygon[0],sizeof(polygon)/sizeof(polygon[0]));
338 void TestWindow1::Resized(const TSize &aNewSize)
341 CTBaseWin::Resized(aNewSize);
344 /*void AFunction(TDesC& des)
350 void AFunction2(TDes& des)
356 void TestWindow1::WinKeyL(const TKeyEvent &aKey,const TTime &)
360 RWindow win1(Client()->iWs);
361 win1.Construct(iWin,1);
362 RWindow win2(Client()->iWs);
363 win2.Construct(win1,1);
365 win2.SetExtent(TPoint(1,2),TSize(3,4));
366 Client()->iWs.Flush();
368 else if (aKey.iCode=='q' || aKey.iCode=='Q')
370 RWindowGroup group1(Client()->iWs);
371 RWindowGroup group2(Client()->iWs);
374 group1.DefaultOwningWindow();
375 group2.DefaultOwningWindow();
376 group1.DefaultOwningWindow();
379 Client()->iWs.Flush();
381 else if (aKey.iCode=='w' || aKey.iCode=='W')
383 RWindowGroup group1(Client()->iWs);
384 RWindowGroup group2(Client()->iWs);
387 group1.DefaultOwningWindow();
388 group2.DefaultOwningWindow();
389 group1.DefaultOwningWindow();
392 Client()->iWs.Flush();
394 else if (aKey.iCode=='A' || aKey.iCode=='a')
396 /*RWindowGroup group(Client()->iWs);
397 group.Construct(1);*/
398 RDrawableWindow* win=new(ELeave) RBackedUpWindow(Client()->iWs);
399 User::LeaveIfError(((RBackedUpWindow*)win)->Construct(*Client()->iGroup->GroupWin(),EGray2,(TUint32)this));
400 User::LeaveIfError(win->SetExtentErr(TPoint(20,20),TSize(600,200)));
403 else if (aKey.iCode=='B' || aKey.iCode=='b')
405 RWindowGroup group(Client()->iWs);
406 group.Construct(344);
407 //group.EnableReceiptOfFocus(EFalse);
408 RBlankWindow blank(Client()->iWs);
409 blank.Construct(group,345);
410 blank.SetOrdinalPosition(0,1000);
411 //blank.SetShadowHeight(0);
412 //blank.SetShadowDisabled(ETrue);
414 RWindow window(Client()->iWs);
415 window.Construct(group,346);
417 /*else if (aKey.iCode=='Z' || aKey.iCode=='z') //TDes8 TPtr8 TPtrC8 TBufCBase8 TBuf8
419 TBuf<4> buf2(_L("1234"));
420 TBuf<4> buf(_L("abcd"));
421 TBufC<4> bufC(_L("WXYZ"));
422 HBufC *hbuf=HBufC::NewL(4);
423 TPtr pHBuf=hbuf->Des();
425 TPtr ptr(hbuf->Des());
431 TPtrC ptrC3(hbuf->Des());
441 iDrawPolygon=!iDrawPolygon;
446 TestWindow2::TestWindow2() : CTWin(),
447 iWid(0), iFontHeight(16), iPointerState(EPointerOut), iFilter(0), iCapture(EFalse), iGrab(EFalse)
449 __DECLARE_NAME(_S("TestWindow2"));
452 TestWindow2::~TestWindow2()
456 void TestWindow2::InitWinL()
458 iPos.SetXY(40,iFont->AscentInPixels()+10);
459 TPoint next(0,iFont->HeightInPixels()+10);
461 iPosMem=iPosBits+next;
462 iWin.PointerFilter(0xFFFFFFFF,iFilter);
463 User::LeaveIfError(iWin.EnableOnEvents());
464 iWin.ClaimPointerGrab();
467 void TestWindow2::Draw()
470 switch(iPointerState)
478 case EPointerUndefined:
482 iGc->SetPenColor(TRgb::Gray16(pen));
483 iGc->SetBrushColor(iBackColor);
485 iGc->DrawText(iBuf,iPos);
486 iGc->DrawText(iBufBits,iPosBits);
487 iGc->DrawText(iBufMem,iPosMem);
490 void TestWindow2::NewText(TPoint &pos,TInt &width,TDes &des)
492 TInt newWid=iFont->TextWidthInPixels(des);
493 Invalidate(TRect(pos-TSize(0,iFont->AscentInPixels()),pos+TSize(Max(width,newWid),iFont->DescentInPixels())));
497 void TestWindow2::PointerState(EPointerState aState)
502 iBackColor=TRgb::Gray16(15);
505 iBackColor=TRgb::Gray16(12);
507 case EPointerUndefined:
508 iBackColor=TRgb::Gray16(4);
511 iWin.SetBackgroundColor(iBackColor);
513 iPointerState=aState;
516 void TestWindow2::SwitchOn(const TTime &)
518 iWin.SetBackgroundColor(TRgb(0,0,0));
519 Client()->iWs.Flush();
520 User::After(TTimeIntervalMicroSeconds32(500000));
521 PointerState(iPointerState);
524 void TestWindow2::PointerEnter(const TTime &)
526 PointerState(EPointerIn);
529 void TestWindow2::PointerExit(const TTime &)
531 PointerState(EPointerOut);
534 void TestWindow2::RequestPointerRepeat()
536 iWin.RequestPointerRepeatEvent(TTimeIntervalMicroSeconds32(200000),iRepeatRect);
539 void TestWindow2::PointerL(const TPointerEvent &pointer,const TTime &aTime)
541 if (pointer.iType==TPointerEvent::EButtonRepeat)
545 RequestPointerRepeat();
550 CTWin::PointerL(pointer,aTime);
551 iBuf.Format(TRefByValue<const TDesC>(_L("Pos(%d,%d)(%d,%d), 0x%x")),pointer.iPosition.iX,pointer.iPosition.iY,pointer.iParentPosition.iX,pointer.iParentPosition.iY,pointer.iModifiers);
552 NewText(iPos,iWid,iBuf);
553 if (pointer.iType==TPointerEvent::EButton1Down)
555 iRepeatRect=TRect(pointer.iPosition-TPoint(5,5),pointer.iPosition+TPoint(5,5));
556 RequestPointerRepeat();
562 void TestWindow2::SetBufBits()
564 iBufBits.Format(TRefByValue<const TDesC>(_L("Filter=0x%x, Capture[%s], Grab[%s], Repeat[%d]")),iFilter,
565 iCapture ? _S("On") : _S("Off"),
566 iGrab ? _S("On") : _S("Off"),
568 NewText(iPosBits,iWidBits,iBufBits);
572 void TestWindow2::WinKeyL(const TKeyEvent &aKey,const TTime &)
576 case ',': // Unshifted <
577 case '.': // Unshifted >
587 TFontSpec fspec(KTestFontTypefaceName,iFontHeight*KTwipsPerPoint);
588 User::LeaveIfError(Client()->iScreen->GetNearestFontToDesignHeightInTwips((CFont *&)newFont, fspec));
590 Client()->iScreen->ReleaseFont(iFont);
592 iWid=iFont->TextWidthInPixels(iBuf);
597 iBufMem.Format(TRefByValue<const TDesC>(_L("Count=%d")),Client()->iWs.HeapCount());
598 NewText(iPosMem,iWidMem,iBufMem);
601 iCapture=(TBool)!iCapture;
602 iWin.SetPointerCapture(iCapture);
607 iWin.SetPointerGrab(iGrab);
612 iFilter=(iFilter+1)%8;
613 iWin.PointerFilter(0xFFFFFFFF,iFilter);
615 if (iFilter&EPointerFilterEnterExit)
616 PointerState(EPointerUndefined);
618 PointerState(EPointerOut);
623 CWsBitmap* bitmap=new(ELeave) CWsBitmap(Client()->iWs);
624 CleanupStack::PushL(bitmap);
625 User::LeaveIfError(bitmap->Create(Client()->iScreen->SizeInPixels(),EGray4));
626 User::LeaveIfError(Client()->iScreen->CopyScreenToBitmap(bitmap));
631 iBufMem.Format(TRefByValue<const TDesC>(_L("Key=%d")),aKey.iCode);
632 NewText(iPosMem,iWidMem,iBufMem);
637 TestWindow3::TestWindow3() : CTWin()
639 __DECLARE_NAME(_S("TestWindow3"));
642 TestWindow3::~TestWindow3()
647 void TestWindow3::Resized(const TSize &aNewSize)
649 CTBaseWin::Resized(aNewSize);
654 void TestWindow3::InitWinL()
656 iCornerType=EWindowCorner3;
657 iWin.PointerFilter(EPointerFilterDrag,0); // Clear drag filter
658 iWin.SetPointerGrab(ETrue);
659 iWin.SetBackgroundColor(TRgb::Gray256(230));
660 iWin.SetCornerType(iCornerType);
661 iBitmap=new(ELeave) CWsBitmap(Client()->iWs);
662 User::LeaveIfError(iBitmap->Load(TEST_BITMAP_NAME,0));
663 iSize=iBitmap->SizeInPixels();
666 void TestWindow3::Draw()
668 iGc->BitBlt(TPoint(0,0),iBitmap);
669 TSize bitSize(iBitmap->SizeInPixels());
670 TSize winSize(Size());
671 iGc->Clear(TRect(bitSize.iWidth,0,winSize.iWidth,bitSize.iHeight));
672 iGc->Clear(TRect(0,bitSize.iHeight,winSize.iWidth,winSize.iHeight));
675 void TestWindow3::SetShape(TInt aShapeNum)
684 shape.AddRect(TRect(0,0,size.iWidth,size.iHeight>>2));
685 shape.AddRect(TRect(0,size.iHeight>>2,size.iWidth>>2,size.iHeight-(size.iHeight>>2)));
686 shape.AddRect(TRect(size.iWidth-(size.iWidth>>2),size.iHeight>>2,size.iWidth,size.iHeight-(size.iHeight>>2)));
687 shape.AddRect(TRect(0,size.iHeight-(size.iHeight>>2),size.iWidth,size.iHeight));
688 iWin.SetShape(shape);
694 shape.AddRect(TRect(size.iWidth>>2,0,size.iWidth-(size.iWidth>>2),size.iHeight>>2));
695 shape.AddRect(TRect(0,size.iHeight>>2,size.iWidth,size.iHeight-(size.iHeight>>2)));
696 shape.AddRect(TRect(size.iWidth>>2,size.iHeight-(size.iHeight>>2),size.iWidth-(size.iWidth>>2),size.iHeight));
697 iWin.SetShape(shape);
703 for(TInt index=0;index<(size.iHeight-1);index++)
705 TInt xFactor=(size.iWidth>>1)*index/size.iHeight;
706 shape.AddRect(TRect((size.iWidth>>1)-xFactor,index,(size.iWidth>>1)+xFactor,index+1));
708 iWin.SetShape(shape);
715 void TestWindow3::WinKeyL(const TKeyEvent &aKey,const TTime &)
719 TSize scrSize(Client()->iScreen->SizeInPixels());
720 if (scrSize==iWin.Size())
725 SetExtL(TPoint(),scrSize);
727 else if (aKey.iCode>='0' && aKey.iCode<='5')
732 iCornerType=EWindowCornerSquare;
735 iCornerType=EWindowCorner1;
738 iCornerType=EWindowCorner2;
741 iCornerType=EWindowCorner3;
744 iCornerType=EWindowCorner5;
747 iWin.SetCornerType(iCornerType,iCornerFlags);
749 else switch(User::LowerCase(aKey.iCode))
761 iCornerFlags^=EWindowCornerNotTL;
764 iCornerFlags^=EWindowCornerNotTR;
767 iCornerFlags^=EWindowCornerNotBL;
770 iCornerFlags^=EWindowCornerNotBR;
771 setcorner: iWin.SetCornerType(iCornerType,iCornerFlags);
776 void TestWindow3::ScreenDeviceChangedL()
778 TSize scrSize(Client()->iScreen->SizeInPixels());
779 if (scrSize==iWin.Size())
784 SetExtL(TPoint(),scrSize);
787 TestWindow4::TestWindow4() : CTWin()
789 __DECLARE_NAME(_S("TestWindow4"));
792 void TestWindow4::SetSwappedSize()
796 iSwappedSize.iHeight=iSize.iWidth;
797 iSwappedSize.iWidth=iSize.iHeight;
803 void TestWindow4::InitWin()
805 iBasePos.SetXY(10,20);
806 iWin.SetBackgroundColor();
811 void TestWindow4::Resized(const TSize &aSize)
813 CTBaseWin::Resized(aSize);
818 iGc->UseFont((CFont *)iFont);
824 void TestWindow4::Draw()
829 void TestWindow4::Draw(TBool aSetCursor)
831 TPoint tl(iBasePos.iX,iBasePos.iY-iFont->AscentInPixels());
832 TRect rect(1,1,iSize.iWidth-1,iSize.iHeight);
837 iGc->SetBrushColor(TRgb::Gray4(2));
840 iGc->SetBrushColor(TRgb::Gray16(13));
843 iGc->SetBrushColor(TRgb::Gray16(12));
846 iGc->SetBrushColor(TRgb::Gray16(11));
852 TPoint pos(iBasePos);
853 iGc->SetPenColor(TRgb::Gray16(0));
854 iGc->DrawRect(TRect(iSize));
856 TInt ToGo=TxtBuf.Length();
857 TInt lineHeight=iFont->HeightInPixels()+2;
858 rect.iTl.iY=rect.iBr.iY=tl.iY;
859 while((pos.iY+iFont->DescentInPixels())<(iSwappedSize.iHeight-1))
861 rect.iBr.iY+=lineHeight;
865 TInt len=iFont->TextCount(TxtBuf.Right(ToGo),iSwappedSize.iWidth-2*pos.iX);
869 iGc->DrawTextVertical(TxtBuf.Mid(index,len),TPoint(pos.iY,iSize.iHeight-pos.iX),ETrue);
871 iGc->DrawText(TxtBuf.Mid(index,len),pos);
873 if (ToGo==0 && aSetCursor)
877 cursorPos=TPoint(pos.iY-iFont->AscentInPixels(),iSize.iHeight-pos.iX)+TPoint(0,iFont->TextWidthInPixels(TxtBuf.Mid(index,len)));
879 cursorPos=pos+TPoint(iFont->TextWidthInPixels(TxtBuf.Mid(index,len)),0);
880 SetCursor(cursorPos);
885 rect.iTl.iY=rect.iBr.iY;
887 rect.iBr.iY=iSwappedSize.iHeight-1;
891 void TestWindow4::SetCursor(const TPoint &aPos)
894 cursor.iType=TTextCursor::ETypeRectangle;
899 cursor.iWidth=iFont->HeightInPixels();
903 cursor.iAscent=iFont->AscentInPixels();
904 cursor.iHeight=iFont->HeightInPixels();
908 // cursor.iColor=TRgb(255,255,255);
909 cursor.iColor=TRgb(128,128,128);
910 Client()->iGroup->GroupWin()->SetTextCursor(iWin, aPos, cursor);
913 void TestWindow4::WinKeyL(const TKeyEvent &aKey,const TTime &)
915 TChar chr=aKey.iCode;
917 if (aKey.iCode==32 && aKey.iModifiers&EModifierFunc)
920 iVertical=!iVertical;
923 else if (aKey.iCode>=32 && aKey.iCode<4000)
925 TBool invalidate=EFalse;
926 if (TxtBuf.Length()==TxtBuf.MaxLength())
928 TxtBuf=TxtBuf.Right(TxtBuf.Length()-1);
933 TPoint pos(iBasePos);
935 TInt ToGo=TxtBuf.Length();
938 TInt len=iFont->TextCount(TxtBuf.Right(ToGo),iSwappedSize.iWidth-2*pos.iX);
945 pos.iY+=iFont->HeightInPixels()+2;
947 pos.iX+=iFont->TextWidthInPixels(TxtBuf.Mid(index,ToGo-1));
949 iWin.Invalidate(TRect(iBasePos.iX,iBasePos.iY-iFont->AscentInPixels(),iSize.iWidth-iBasePos.iX,iSize.iHeight));
955 iGc->DrawTextVertical(TxtBuf.Mid(index+ToGo-1,1),TPoint(pos.iY,iSize.iHeight-pos.iX),ETrue);
957 iGc->DrawText(TxtBuf.Mid(index+ToGo-1,1),pos);
960 pos.iX+=iFont->TextWidthInPixels(TxtBuf.Mid(index+ToGo-1));
961 SetCursor(iVertical ? TPoint(pos.iY-iFont->AscentInPixels(),iSize.iHeight-pos.iX) : pos);
965 TestWindow5::TestWindow5(TBool aGrey2) : CTBackedUpWin(aGrey2?EGray2:EGray4)
967 __DECLARE_NAME(_S("TestWindow5"));
970 void TestWindow5::Resized(const TSize &aNewSize)
972 CTBaseWin::Resized(aNewSize);
973 iGc->Activate(*DrawableWin());
974 iGc->SetBrushColor(TRgb::Gray256(128));
975 iGc->Clear(TRect(aNewSize));
976 iGc->UseBrushPattern(&iBrushBit);
977 iGc->SetBrushStyle(CGraphicsContext::EPatternedBrush);
978 iGc->DrawEllipse(TRect(aNewSize));
982 void TestWindow5::InitWinL()
984 iWin.PointerFilter(EPointerFilterMove|EPointerFilterEnterExit,EPointerFilterMove|EPointerFilterEnterExit);
985 iWin.SetPointerGrab(ETrue);
987 iWin.SetOrdinalPosition(0,iOrdPri);
988 User::LeaveIfError(iBrushBit.Load(TEST_BITMAP_NAME,0));
991 void TestWindow5::Draw()
993 Panic(EConnectPanicRedrawToBackedUpWindow);
996 void TestWindow5::WinKeyL(const TKeyEvent &aKey,const TTime &)
1001 iOrdPri=(iOrdPri<0)?1:-1;
1002 iWin.SetOrdinalPosition(0,iOrdPri);
1005 SetPos(iPos-TPoint(2,1));
1006 SetPos(iPos-TPoint(-1,-1));
1007 SetPos(iPos-TPoint(2,3));
1008 SetPos(iPos-TPoint(-2,-1));
1009 SetPos(iPos-TPoint(-2,-3));
1010 SetPos(iPos-TPoint(1,1));
1015 TestWindow6::TestWindow6(TBool aGrey2) : CTBackedUpWin(aGrey2?EGray2:EGray16), iGray(0)
1017 __DECLARE_NAME(_S("TestWindow6"));
1020 TestWindow6::~TestWindow6()
1026 void TestWindow6::Resized(const TSize &aNewSize)
1028 CTBaseWin::Resized(aNewSize);
1029 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1030 iGc->SetPenStyle(CGraphicsContext::ENullPen);
1031 if (iOldSize.iWidth<aNewSize.iWidth)
1032 iGc->DrawRect(TRect(iOldSize.iWidth,0,aNewSize.iWidth,iOldSize.iHeight));
1033 if (iOldSize.iHeight<aNewSize.iHeight)
1034 iGc->DrawRect(TRect(0,iOldSize.iHeight,aNewSize.iWidth,aNewSize.iHeight));
1035 iGc->SetBrushStyle(CGraphicsContext::ENullBrush);
1036 iGc->SetPenStyle(CGraphicsContext::ESolidPen);
1039 for(TInt index=0;index<3;index++)
1041 pos.iY=index*aNewSize.iHeight/3;
1042 for(pos.iX=0;pos.iX<aNewSize.iWidth;pos.iX++)
1044 TInt val=pos.iX*255/aNewSize.iWidth;
1045 TRgb rgb(index==0?val:0,index==1?val:0,index==2?val:0);
1046 iGc->SetPenColor(rgb);
1047 iGc->DrawLine(pos,pos+TSize(0,aNewSize.iHeight/3));
1050 iGc->SetPenColor(TRgb(255,255,255));
1053 void TestWindow6::InitWinL()
1055 iWin.PointerFilter(EPointerFilterMove|EPointerFilterEnterExit,EPointerFilterMove|EPointerFilterEnterExit);
1056 User::LeaveIfError(iWin.AllocPointerMoveBuffer(KPointerMoveBufferSize,0));
1057 iWin.DisablePointerMoveBuffer();
1058 iWin.SetPointerGrab(ETrue);
1059 iGc=new(ELeave) CWindowGc(Client()->iScreen);
1060 User::LeaveIfError(iGc->Construct());
1061 iGc2=new(ELeave) CWindowGc(Client()->iScreen);
1062 User::LeaveIfError(iGc2->Construct());
1063 iWin.SetCornerType(EWindowCorner1);
1064 iGc->Activate(iWin);
1065 iGc->SetBrushColor(TRgb::Gray256(230));
1066 iGc2->Activate(iWin);
1067 iGc2->SetBrushColor(TRgb::Gray256(230));
1071 void TestWindow6::Draw()
1073 Panic(EConnectPanicRedrawToBackedUpWindow);
1076 void TestWindow6::PointerBufferReady(const TTime &)
1078 TPoint pnts[KPointerMoveBufferSize];
1079 TPtr8 ptr((TUint8 *)&pnts,sizeof(pnts));
1080 TInt numPnts=iWin.RetrievePointerMoveBuffer(ptr);
1081 for(TInt index=0;index<numPnts;index++)
1082 iCurGc->DrawLineTo(pnts[index]);
1085 void TestWindow6::PointerL(const TPointerEvent &pointer,const TTime &aTime)
1087 switch(pointer.iType)
1089 case TPointerEvent::EButton1Down:
1090 if (pointer.iModifiers&(EModifierCtrl|EModifierShift))
1093 iWin.EnablePointerMoveBuffer();
1094 if (pointer.iModifiers&EModifierCtrl)
1096 else if (pointer.iModifiers&EModifierShift)
1098 iCurGc->MoveTo(pointer.iPosition);
1102 case TPointerEvent::EButton1Up:
1106 iWin.DisablePointerMoveBuffer();
1111 CTBackedUpWin::PointerL(pointer,aTime);
1114 void TestWindow6::WinKeyL(const TKeyEvent &aKey,const TTime &)
1116 if (TChar(aKey.iCode).IsDigit())
1119 for(TUint i=0;i<(aKey.iCode-'0');i++)
1121 iCurGc->SetPenSize(TSize(wid,wid));
1123 else switch(aKey.iCode)
1125 case ',': // Unshifted <
1126 case '.': // Unshifted >
1128 if (aKey.iCode==',')
1135 iCurGc->SetPenColor(TRgb::Gray16(iGray));
1141 void TestWindow6::AssignGC(CWindowGc &)
1145 TestWindow7::TestWindow7(TBool aGrey2) : CTBackedUpWin(aGrey2?EGray2:EGray4)
1147 __DECLARE_NAME(_S("TestWindow1"));
1150 TestWindow7::~TestWindow7()
1152 delete iSpriteBitmap;
1153 delete iSpriteMaskBitmap;
1154 delete iPointerCursor;
1162 void DrawPointerCursor(CBitmapContext *aGc,TInt , const TSize &aSize, TBool aDoMask, TAny *aMode)
1164 TInt mode=*(TInt *)aMode;
1165 aGc->SetBrushColor(TRgb::Gray4(aDoMask ? 0 : 2));
1166 aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1167 aGc->SetPenStyle(CGraphicsContext::ENullPen);
1168 aGc->DrawRect(TRect(aSize));
1170 TRect rect1(0,aSize.iHeight/2-size,aSize.iWidth,aSize.iHeight/2+size);
1171 TRect rect2(aSize.iWidth/2-size,0,aSize.iWidth/2+size,aSize.iHeight);
1175 aGc->SetPenStyle(CGraphicsContext::ESolidPen);
1176 aGc->SetPenColor(TRgb::Gray4(0));
1177 aGc->SetBrushStyle(CGraphicsContext::ENullBrush);
1178 aGc->DrawRect(rect1);
1179 aGc->DrawRect(rect2);
1184 aGc->SetPenStyle(CGraphicsContext::ENullPen);
1185 aGc->SetBrushColor(TRgb::Gray4(aDoMask ? 3 : 1));
1186 aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1187 aGc->DrawRect(rect1);
1188 aGc->DrawRect(rect2);
1191 void DrawSprite(CBitmapContext *aGc,TInt , const TSize &aSize, TBool aDoMask, TAny *)
1193 aGc->SetBrushColor(TRgb::Gray4(aDoMask ? 0 : 2));
1194 aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1195 aGc->SetPenStyle(CGraphicsContext::ENullPen);
1196 aGc->DrawRect(TRect(aSize));
1197 aGc->SetPenStyle(CGraphicsContext::ESolidPen);
1198 aGc->SetPenColor(TRgb::Gray4(aDoMask ? 3 : 0));
1199 aGc->SetBrushColor(TRgb::Gray4(aDoMask ? 3 : 1));
1200 aGc->DrawEllipse(TRect(aSize));
1203 void TestWindow7::InitWinL()
1211 TSpriteCreateParams params(TSize(30,70),TPoint(0,0),DrawSprite);
1212 TSpriteCreateParams paramarray[10];
1213 params.iInterval=TTimeIntervalMicroSeconds32(200000);
1215 paramarray[0]=params;
1216 paramarray[1]=params;
1217 paramarray[2]=params;
1218 paramarray[1].iSize=TSize(20,30);
1219 paramarray[2].iSize=TSize(100,10);
1220 paramarray[2].iInterval=TTimeIntervalMicroSeconds32(200000);
1221 iSprite1=new(ELeave) CTSprite(Client()->iWs);
1222 iSprite1->ConstructL(iWin,iPos1,3,¶marray[0],ESpriteNoChildClip);
1224 params.iSize=TSize(20,30);
1225 for(TInt index=0;index<10;index++)
1227 paramarray[index]=params;
1228 paramarray[index].iOffset=TPoint(index*20,index*4);
1230 iSprite2=new(ELeave) CTSprite(Client()->iWs);
1231 iSprite2->ConstructL(iWin,iPos2,10,¶marray[0],0);
1233 params.iSize=TSize(100,10);
1234 iSprite3=new(ELeave) CTSprite(Client()->iWs);
1235 iSprite3->ConstructL(iWin,iPos3,1,¶ms,ESpriteFlash);
1237 params.iSize=TSize(32,32);
1238 iSprite4=new(ELeave) CTSprite(Client()->iWs);
1239 iSprite4->ConstructL(*Client()->iGroup->GroupWin(),iPos4,1,¶ms,0);
1241 params.iSize=TSize(16,64);
1242 iSprite5=new(ELeave) CTSprite(Client()->iWs);
1243 iSprite5->ConstructL(*Client()->iGroup->GroupWin(),iPos5,1,¶ms,ESpriteNoChildClip);
1246 iCurSprite= iSprite1;
1247 // iWin.SetBackgroundColor(TRgb::Gray256(170));
1248 TSpriteCreateParams pcursor(TSize(24,48),TPoint(-12,-24),DrawPointerCursor,&iPointerMode);
1249 iPointerCursor=new(ELeave) CTPointerCursor(Client()->iWs);
1250 iPointerCursor->ConstructL(1,&pcursor,0,iSpriteBitmap,iSpriteMaskBitmap);
1251 iWin.SetCustomPointerCursor(iPointerCursor->PointerCursor());
1252 Client()->iGroup->GroupWin()->SetCustomPointerCursor(iPointerCursor->PointerCursor());
1256 void TestWindow7::Resized(const TSize &aNewSize)
1258 CTBaseWin::Resized(aNewSize);
1259 iGc->Activate(*DrawableWin());
1264 void TestWindow7::Draw()
1266 iGc->SetBrushColor(TRgb::Gray256(170));
1268 for(TInt xPos=0;xPos<iSize.iWidth;xPos+=50)
1269 iGc->DrawLine(TPoint(xPos,0),TPoint(xPos,iSize.iHeight));
1270 for(TInt yPos=0;yPos<iSize.iHeight;yPos+=50)
1271 iGc->DrawLine(TPoint(0,yPos),TPoint(iSize.iWidth,yPos));
1274 void TestWindow7::WinKeyL(const TKeyEvent &aKey,const TTime &)
1281 iPointerMode=(iPointerMode+1)&EPointerModes;
1282 TSpriteCreateParams params(iSpriteBitmap->SizeInPixels(),TPoint(0,0),DrawPointerCursor,&iPointerMode);
1283 iPointerCursor->RedrawL(iSpriteBitmap,iSpriteMaskBitmap,¶ms);
1287 if (iCurSprite==iSprite1)
1290 iCurSprite= iSprite2;
1292 else if (iCurSprite==iSprite2)
1295 iCurSprite= iSprite3;
1297 else if (iCurSprite==iSprite3)
1300 iCurSprite= iSprite4;
1302 else if (iCurSprite==iSprite4)
1305 iCurSprite= iSprite5;
1307 else if (iCurSprite==iSprite5)
1310 iCurSprite= iSprite1;
1315 iCurSprite->Sprite().SetPosition(*iCurPos);
1319 iCurSprite->Sprite().SetPosition(*iCurPos);
1323 iCurSprite->Sprite().SetPosition(*iCurPos);
1327 iCurSprite->Sprite().SetPosition(*iCurPos);
1333 TestWindow8::TestWindow8() : CTBlankWindow()
1335 __DECLARE_NAME(_S("TestWindow8"));
1338 void TestWindow8::InitWin()
1340 iWin.PointerFilter(EPointerFilterMove|EPointerFilterEnterExit,EPointerFilterMove|EPointerFilterEnterExit);
1341 iWin.SetPointerGrab(ETrue);
1342 iWin.SetColor(TRgb::Gray256(170));
1345 void TestWindow8::Draw()
1347 Panic(EConnectPanicRedrawToBackedUpWindow);
1350 TestWindow9::TestWindow9() : CTWin()
1352 __DECLARE_NAME(_S("TestWindow9"));
1355 void TestWindow9::InitWinL()
1357 iWin.SetRequiredDisplayMode(EGray16);
1358 User::LeaveIfError(iBitmap.Load(VIDEO_MBM_NAME,0));
1359 iVideoSize=iBitmap.SizeInPixels();
1362 void TestWindow9::Draw()
1364 iGc->BitBlt(TPoint(),&iBitmap);
1367 void TestWindow9::Play()
1369 iWin.SetExtent(TPoint(320-(iVideoSize.iWidth>>1),0),iVideoSize);
1372 iGc->Activate(iWin);
1374 while(iBitmap.Load(VIDEO_MBM_NAME,index++)==KErrNone)
1376 iGc->BitBlt(TPoint(),&iBitmap);
1377 Client()->iWs.Flush();
1379 iBitmap.Load(VIDEO_MBM_NAME,0);
1380 iGc->BitBlt(TPoint(),&iBitmap);
1384 void TestWindow9::WinKeyL(const TKeyEvent &aKey,const TTime &)
1386 if (aKey.iCode=='p' || aKey.iCode=='P')
1390 TestWindow10::TestWindow10() : CTWin()
1392 __DECLARE_NAME(_S("TestWindow10"));
1395 void TestWindow10::InitWin()
1397 //iWin.PointerFilter(EPointerFilterMove|EPointerFilterEnterExit,EPointerFilterMove|EPointerFilterEnterExit);
1398 //iWin.SetPointerGrab(ETrue);
1399 iWin.SetRequiredDisplayMode(EColor256);
1402 void TestWindow10::Draw()
1408 iGc->SetPenStyle(CGraphicsContext::ENullPen);
1409 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1411 for(ii=0;ii<256;ii++)
1413 rect.iTl.iX=rect.iBr.iX;
1414 rect.iBr.iX=((ii+1)*size.iWidth)/256;
1415 iGc->SetBrushColor(TRgb::Color256(ii));
1416 iGc->DrawRect(rect);
1420 void TestWindow10::WinKeyL(const TKeyEvent &aKey,const TTime &)
1425 iWin.SetRequiredDisplayMode(EGray2);
1428 iWin.SetRequiredDisplayMode(EGray4);
1431 iWin.SetRequiredDisplayMode(EGray16);
1434 iWin.SetRequiredDisplayMode(EGray256);
1437 iWin.SetRequiredDisplayMode(EColor16);
1440 iWin.SetRequiredDisplayMode(EColor256);
1443 iWin.SetRequiredDisplayMode(EColor64K);
1448 TestWindow12::TestWindow12() : CTWin()
1451 void TestWindow12::InitWin()
1453 iWin.SetRequiredDisplayMode(EColor16);
1456 void TestWindow12::Draw()
1460 iGc->SetPenStyle(CGraphicsContext::ENullPen);
1461 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1462 iGc->SetBrushColor(TRgb(0,255,0));
1463 iGc->DrawRect(rect);
1464 rect.iTl.iX=rect.iBr.iX/2;
1465 iGc->SetBrushColor(TRgb(0,0,255));
1466 iGc->DrawRect(rect);
1469 void TestWindow12::WinKeyL(const TKeyEvent &aKey,const TTime &)
1471 TSize screen(Client()->iScreen->SizeInPixels());
1473 TPoint pos(Position());
1474 TPoint dest1(screen.iWidth-size.iWidth,screen.iHeight-size.iHeight);
1476 iGc->Activate(iWin);
1512 iGc->CopyRect(pos-dest,rect);
1518 TestWindowGroup::TestWindowGroup(CTClient *aClient) : CTWindowGroup(aClient), iIncludeChildren(EFalse)
1522 void TestWindowGroup::ConstructL()
1524 CTWindowGroup::ConstructL();
1525 iGroupWin.EnableScreenChangeEvents();
1528 void TestWindowGroup::ScreenDeviceChanged()
1530 TPixelsTwipsAndRotation sizeAndRotation;
1531 Client()->iScreen->GetDefaultScreenSizeAndRotation(sizeAndRotation);
1532 Client()->iScreen->SetScreenSizeAndRotation(sizeAndRotation);
1535 void TestWindowGroup::KeyL(const TKeyEvent &aKey,const TTime &aTime)
1537 if (aKey.iModifiers&EModifierCtrl && !(aKey.iModifiers&EModifierFunc))
1546 CTWinBase *win=this;
1547 if ((aKey.iModifiers&EModifierLeftShift) && iCurWin)
1549 pos.iX=win->Size().iWidth>>2;
1550 pos.iY=win->Size().iHeight>>2;
1551 size.iWidth=win->Size().iWidth>>1;
1552 size.iHeight=win->Size().iHeight>>1;
1553 iCurWin=((TestClient *)Client())->CreateTestWindowL(type,pos,size,win,*Client()->iGc,aKey.iModifiers&EModifierRightShift);
1557 if (aKey.iModifiers&EModifierFunc)
1563 for(TInt loop=0;loop<100;loop++)
1565 ((TestClient *)Client())->iWs.HeapSetFail(RHeap::EDeterministic,loop);
1566 CTBaseWin *win=NULL;
1567 TRAP_IGNORE(win=((TestClient *)Client())->CreateTestWindowL(1,TPoint(15,20),TSize(150,110),Client()->iGroup,*Client()->iGc));
1570 ((CTWin *)win)->Redraw(TRect());
1574 ((TestClient *)Client())->iWs.HeapSetFail(RHeap::ENone,0);
1579 TUint *aNullPtr=NULL;
1586 thread.Panic(_L("Connect"),123);
1590 ((TestClient *)Client())->Exit();
1593 if (Client()->iWs.SetAutoFlush(ETrue))
1594 Client()->iWs.SetAutoFlush(EFalse);
1597 RunLaunchAndShootTestL();
1600 MillionsOfSessions();
1603 GroupWin()->SetOrdinalPosition(KOrdinalPositionSwitchToOwningWindow);
1606 if (aKey.iModifiers&EModifierCtrl && aKey.iModifiers&EModifierShift)
1607 iHand->ToggleStatus();
1610 ((TestClient *)Client())->AdjustLightSource(-1,0);
1612 case EKeyRightArrow:
1613 ((TestClient *)Client())->AdjustLightSource(1,0);
1616 ((TestClient *)Client())->AdjustLightSource(0,-1);
1619 ((TestClient *)Client())->AdjustLightSource(0,1);
1629 if (aKey.iModifiers&EModifierFunc)
1631 //TBool shift=aKey.iModifiers&EModifierShift;
1635 GroupWin()->DisableKeyClick(ETrue);
1638 GroupWin()->DisableKeyClick(EFalse);
1641 iCurWin->BaseWin()->SetShadowDisabled(ETrue);
1644 iCurWin->BaseWin()->SetShadowDisabled(EFalse);
1647 iCurWin->SetVisible(ETrue);
1650 iCurWin->SetVisible(EFalse);
1653 iCurWin->BaseWin()->SetFaded(ETrue
1654 ,(iIncludeChildren? RWindowTreeNode::EFadeIncludeChildren:RWindowTreeNode::EFadeWindowOnly));
1657 iCurWin->BaseWin()->SetFaded(EFalse
1658 ,(iIncludeChildren? RWindowTreeNode::EFadeIncludeChildren:RWindowTreeNode::EFadeWindowOnly));
1662 iIncludeChildren=!iIncludeChildren;
1664 iCurWin->BaseWin()->SetNonFading(ETrue);
1667 iCurWin->BaseWin()->SetNonFading(EFalse);
1670 iCurWin->BaseWin()->FadeBehind(ETrue);
1673 iCurWin->BaseWin()->FadeBehind(EFalse);
1676 iCurWin->WinTreeNode()->SetOrdinalPosition(-1);
1679 iCurWin->WinTreeNode()->SetOrdinalPosition(0);
1683 RWindowTreeNode* win=iCurWin->WinTreeNode();
1684 win->SetOrdinalPosition(win->OrdinalPosition()+1);
1689 RWindowTreeNode* win=iCurWin->WinTreeNode();
1690 win->SetOrdinalPosition(win->OrdinalPosition()-1);
1702 CTWin::Delete(iCurWin);
1705 if (aKey.iModifiers&EModifierShift)
1706 iCurWin=iCurWin->Prev();
1708 iCurWin=iCurWin->Next();
1711 iCurWin->AdjustSizeL(-Xmove,0,aKey.iModifiers);
1713 case EKeyRightArrow:
1714 iCurWin->AdjustSizeL(Xmove,0,aKey.iModifiers);
1717 iCurWin->AdjustSizeL(0,-Ymove,aKey.iModifiers);
1720 iCurWin->AdjustSizeL(0,Ymove,aKey.iModifiers);
1722 case '[': // Move back 1 ordinal position
1723 iCurWin->AdjustOrdinal(-1);
1725 case ']': // Move forward 1 ordinal position
1726 iCurWin->AdjustOrdinal(1);
1728 case '<': // Decrease shadow size
1729 iCurWin->AdjustShadow(-1);
1731 case '>': // Increase shadow size
1732 iCurWin->AdjustShadow(1);
1735 // iCurWin->SetDefaultExtL();
1736 iCurWin->SetFullScreenExtL();
1739 iCurWin->WinKeyL(aKey,aTime);
1745 void TestWindowGroup::RunLaunchAndShootTestL()
1748 User::LeaveIfError(thread.Create(_L("Launcher"),RunLaunchAndShootTest,KDefaultStackSize,NULL,
1749 NULL,NULL,KTestThreadHeapSize,KTestThreadHeapSize,EOwnerThread));
1754 void TestWindowGroup::MillionsOfSessions()
1759 session=RWsSession();
1760 if (session.Connect()!=KErrNone)
1767 TestClient::TestClient()
1769 __DECLARE_NAME(_S("TestClient"));
1772 CTBaseWin *TestClient::CreateTestWindowL(TInt type,TPoint pos,TSize size,CTWinBase *parent,CWindowGc &aGc,TBool aAlternate/*=EFalse*/)
1774 CTBaseWin *win=NULL;
1778 win=new(ELeave) TestWindow1();
1781 win=new(ELeave) TestWindow2();
1784 win=new(ELeave) TestWindow3();
1787 win=new(ELeave) TestWindow4();
1790 win=new(ELeave) TestWindow5(aAlternate);
1793 win=new(ELeave) TestWindow6(aAlternate);
1796 win=new(ELeave) TestWindow7(aAlternate);
1799 win=new(ELeave) TestWindow8();
1802 win=new(ELeave) TestWindow9();
1805 win=new(ELeave) TestWindow10();
1808 win=new(ELeave) TestWindow11();
1811 win=new(ELeave) TestWindow12();
1814 User::Leave(KErrArgument);
1816 TRAPD(err,win->ConstructL(*parent));
1820 TRAP(err,win->SetExtL(pos,size));
1828 win->BaseWin()->EnableBackup();
1829 win->BaseWin()->SetPointerCursor(0);
1834 TestClient::~TestClient()
1836 delete iHandWriting;
1841 // Define to include hand writing tests
1843 void TestClient::ConstructL()
1845 CTClient::ConstructL();
1846 iGroup=new(ELeave) TestWindowGroup(this);
1847 iGroup->ConstructL();
1848 // CreateTestWindowL(1,TPoint(15,20),TSize(150,110),iGroup,*iGc);
1849 // CreateTestWindowL(2,TPoint(100,100),TSize(200,90),iGroup,*iGc);
1850 // CreateTestWindowL(3,TPoint(310,190),TSize(90,40),iGroup,*iGc);
1851 CreateTestWindowL(4,TPoint(10,10),TSize(160,120),iGroup,*iGc);
1852 // CreateTestWindowL(5,TPoint(300,14),TSize(260,140),iGroup,*iGc);
1853 // CreateTestWindowL(6,TPoint(20,200),TSize(160,60),iGroup,*iGc);
1854 iGroup->SetCurrentWindow(iGroup->Child());
1855 #if defined(TEST_HWR)
1856 iHandWriting=new(ELeave) CHandWriting(iWs);
1857 TRAPD(err,iHandWriting->ConstructL(iScreen->SizeInPixels(),*iGroup->GroupWin(),ETrue)); //EFalse don't use seperate Mask bitmap.
1859 delete iHandWriting;
1861 TestWindow()->SetHandWriting(iHandWriting);
1865 void TestClient::AdjustLightSource(TInt aX,TInt aY)
1867 TPoint vector=iWs.ShadowVector();
1870 iWs.SetShadowVector(vector);
1873 void TestClient::Exit()
1875 CActiveScheduler::Stop();
1879 // Special bit of test code to repeatedly launch and shoot a wserv //
1884 TInt LaunchAndShootTestLoop(TAny *)
1886 #if defined(NT_KILLER)
1887 User::WaitForAnyRequest();
1892 TTimeIntervalMicroSeconds32 initialTime;
1893 TTimeIntervalMicroSeconds32 time;
1895 ws.GetKeyboardRepeatRate(initialTime, time);
1900 #if defined(NT_KILLER)
1901 TInt RunLaunchAndShootTest(TAny *)
1903 RThread().SetPriority(EPriorityRealTime);
1905 thread.Create(_L("xx1"),LaunchAndShootTestLoop,KDefaultStackSize,NULL,
1906 NULL,NULL,KTestThreadHeapSize,KTestThreadHeapSize,EOwnerThread);
1908 thread.Kill(KErrNone);
1911 thread2.Create(_L("xx2"),LaunchAndShootTestLoop,KDefaultStackSize,NULL,
1912 NULL,NULL,KTestThreadHeapSize,KTestThreadHeapSize,EOwnerThread);
1914 thread2.Kill(KErrNone);
1919 TInt RunLaunchAndShootTest(TAny *)
1921 RThread().SetPriority(EPriorityRealTime);
1922 for(TInt count=0;count<100;count++)
1925 TBuf<KMaxFileName> threadName;
1930 threadName.Format(_L("%S%02d"),&_L("Looper"),num++);
1931 err=thread.Create(threadName,LaunchAndShootTestLoop,KDefaultStackSize,NULL,
1932 NULL,NULL,KTestThreadHeapSize,KTestThreadHeapSize,EOwnerThread);
1933 } while(err==KErrAlreadyExists);
1937 User::After(TTimeIntervalMicroSeconds32(50000));
1938 thread.Kill(KErrNone);
1946 #define leavescan_needs_to_see_some_brackets_here { }
1948 GLDEF_C CTClient* CreateClientL()
1950 return(new(ELeave) TestClient()); //Leavescan thinks this fn is user::After!
1953 GLDEF_C TInt E32Main()
1955 return(TestLibStartUp(CreateClientL));