1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/CONNECT.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,1956 @@
1.4 +// Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Very simple test program to connect to the window server
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32std.h>
1.22 +#include "W32STD.H"
1.23 +#include <e32svr.h>
1.24 +#include "../SERVER/w32cmd.h"
1.25 +#include "../test/tlib/testbase.h"
1.26 +#include "ANIMWIN.H"
1.27 +#include "HNDLODR.H"
1.28 +
1.29 +#define TEST_BITMAP_NAME _L("Z:\\WSTEST\\TEST.MBM")
1.30 +_LIT(KTestFontTypefaceName,"DejaVu Sans Condensed");
1.31 +
1.32 +//
1.33 +// TestWindow class
1.34 +//
1.35 +
1.36 +class TestClient; // Forward reference
1.37 +
1.38 +class TestWindow1 : public CTWin
1.39 + {
1.40 +public:
1.41 + TestWindow1();
1.42 + void Resized(const TSize &aNewSize);
1.43 + void Draw();
1.44 + void WinKeyL(const TKeyEvent &aKey,const TTime &);
1.45 +private:
1.46 + TBool iDrawPolygon;
1.47 + };
1.48 +
1.49 +class TestWindow2 : public CTWin
1.50 + {
1.51 + enum EPointerState
1.52 + {
1.53 + EPointerIn,
1.54 + EPointerOut,
1.55 + EPointerUndefined,
1.56 + };
1.57 +public:
1.58 + TestWindow2();
1.59 + ~TestWindow2();
1.60 + void InitWinL();
1.61 + void Draw();
1.62 + void PointerL(const TPointerEvent &aPointer,const TTime &aTime);
1.63 + void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
1.64 + void NewText(TPoint &pos,TInt &width,TDes &des);
1.65 + void PointerState(EPointerState aState);
1.66 + void PointerEnter(const TTime &aTime);
1.67 + void PointerExit(const TTime &aTime);
1.68 + void SetBufBits();
1.69 + void RequestPointerRepeat();
1.70 +private:
1.71 + void SwitchOn(const TTime &aTime);
1.72 +private:
1.73 + TBuf<0x40> iBuf;
1.74 + TBuf<0x40> iBufBits;
1.75 + TBuf<0x40> iBufMem;
1.76 + TPoint iPos;
1.77 + TPoint iPosBits;
1.78 + TPoint iPosMem;
1.79 + TInt iWid;
1.80 + TInt iWidBits;
1.81 + TInt iWidMem;
1.82 + TInt iFontHeight;
1.83 + EPointerState iPointerState;
1.84 + TUint32 iFilter;
1.85 + TBool iCapture;
1.86 + TBool iGrab;
1.87 + TRgb iBackColor;
1.88 + TInt iRepeatCount;
1.89 + TRect iRepeatRect;
1.90 + };
1.91 +
1.92 +class TestWindow3 : public CTWin
1.93 + {
1.94 +public:
1.95 + TestWindow3();
1.96 + ~TestWindow3();
1.97 + void Draw();
1.98 + void InitWinL();
1.99 + void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
1.100 + void Resized(const TSize &aNewSize);
1.101 + void SetShape(TInt aShapeNum);
1.102 + void ScreenDeviceChangedL();
1.103 +private:
1.104 + CWsBitmap *iBitmap;
1.105 + TInt iShapeNum;
1.106 + TInt iCornerFlags;
1.107 + TCornerType iCornerType;
1.108 + };
1.109 +
1.110 +class TestWindow4 : public CTWin
1.111 + {
1.112 +public:
1.113 + TestWindow4();
1.114 + void InitWin();
1.115 + void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
1.116 + void Resized(const TSize &aSize);
1.117 + void Draw();
1.118 + void Draw(TBool aSetCursor);
1.119 +private:
1.120 + void SetSwappedSize();
1.121 + void SetCursor(const TPoint &aPos);
1.122 +private:
1.123 + TBuf<300> TxtBuf;
1.124 + TPoint iBasePos;
1.125 + TBool iVertical;
1.126 + TSize iSwappedSize;
1.127 + //TInt iTemp;
1.128 + };
1.129 +
1.130 +class TestWindow5 : public CTBackedUpWin
1.131 + {
1.132 +public:
1.133 + TestWindow5(TBool aGrey2);
1.134 + void Draw();
1.135 + void InitWinL();
1.136 + void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
1.137 + void Resized(const TSize &aNewSize);
1.138 +private:
1.139 + CFbsBitmap iBrushBit;
1.140 + TInt iOrdPri;
1.141 + };
1.142 +
1.143 +class TestWindow6 : public CTBackedUpWin
1.144 + {
1.145 +public:
1.146 + enum {KPointerMoveBufferSize=32};
1.147 +public:
1.148 + TestWindow6(TBool aGrey2);
1.149 + ~TestWindow6();
1.150 + void Draw();
1.151 + void InitWinL();
1.152 + void PointerL(const TPointerEvent &aPointer,const TTime &aTime);
1.153 + void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
1.154 + virtual void AssignGC(CWindowGc &aGc);
1.155 + void Resized(const TSize &aNewSize);
1.156 + void PointerBufferReady(const TTime &aTime);
1.157 +private:
1.158 + TSize iOldSize; // Needed as part of resizing after old size has been lost
1.159 + TBool iDragging;
1.160 + TInt iGray;
1.161 + CWindowGc *iGc2;
1.162 + CWindowGc *iCurGc;
1.163 + };
1.164 +
1.165 +class TestWindow7 : public CTBackedUpWin
1.166 + {
1.167 +private:
1.168 + enum {EPointerModes=3};
1.169 +public:
1.170 + TestWindow7(TBool aGrey2);
1.171 + ~TestWindow7();
1.172 + void InitWinL();
1.173 + void Draw();
1.174 + void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
1.175 + void Resized(const TSize &aNewSize);
1.176 +/*private:
1.177 + void createBitmapL(CFbsBitmap *aBitmap, CFbsBitmapDevice *&aBitmapDevice, const TSize &aSize, TBool aDoMask);
1.178 + void createBitmap2L(CFbsBitmap *aBitmap, CFbsBitmapDevice *&aBitmapDevice, const TSize &aSize, TBool aDoMask);
1.179 + void InitPointerCursorL(RWsPointerCursor &aSprite, const TSize &aSize, TInt aFlags);
1.180 + void InitSpriteL(RWsSprite &aSprite, const TPoint &aPos, const TSize &aSize, TTimeIntervalMicroSeconds32 aOnTime, TTimeIntervalMicroSeconds32 aOffTime, TInt aFlags);*/
1.181 +private:
1.182 + CTSprite *iSprite1;
1.183 + CTSprite *iSprite2;
1.184 + CTSprite *iSprite3;
1.185 + CTSprite *iSprite4;
1.186 + CTSprite *iSprite5;
1.187 + CTPointerCursor *iPointerCursor;
1.188 + CFbsBitmap *iSpriteBitmap;
1.189 + CFbsBitmap *iSpriteMaskBitmap;
1.190 + TInt iPointerMode;
1.191 + TPoint iPos1;
1.192 + TPoint iPos2;
1.193 + TPoint iPos3;
1.194 + TPoint iPos4;
1.195 + TPoint iPos5;
1.196 + TPoint *iCurPos;
1.197 + CTSprite *iCurSprite;
1.198 + };
1.199 +
1.200 +class TestWindow8 : public CTBlankWindow
1.201 + {
1.202 +public:
1.203 + TestWindow8();
1.204 + void Draw();
1.205 + void InitWin();
1.206 + };
1.207 +
1.208 +class TestWindow9 : public CTWin
1.209 + {
1.210 +public:
1.211 + TestWindow9();
1.212 + void Draw();
1.213 + void WinKeyL(const TKeyEvent &aKey,const TTime &);
1.214 + void InitWinL();
1.215 + void Play();
1.216 +private:
1.217 + CFbsBitmap iBitmap;
1.218 + TSize iVideoSize;
1.219 + };
1.220 +
1.221 +class TestWindow10 : public CTWin
1.222 + {
1.223 +public:
1.224 + TestWindow10();
1.225 + void Draw();
1.226 + void InitWin();
1.227 + void WinKeyL(const TKeyEvent &aKey,const TTime &);
1.228 + };
1.229 +
1.230 +class TestWindow12 : public CTWin
1.231 + {
1.232 +public:
1.233 + TestWindow12();
1.234 + void Draw();
1.235 + void InitWin();
1.236 + void WinKeyL(const TKeyEvent &aKey,const TTime &);
1.237 + };
1.238 +
1.239 +class TestWindowGroup : public CTWindowGroup
1.240 + {
1.241 +public:
1.242 + TestWindowGroup(CTClient *aClient);
1.243 + virtual void ConstructL();
1.244 + virtual void KeyL(const TKeyEvent &aKey,const TTime &aTime);
1.245 + void ScreenDeviceChanged();
1.246 + void RunLaunchAndShootTestL();
1.247 + void MillionsOfSessions();
1.248 + inline void SetHandWriting(CHandWriting* aHand) {iHand=aHand;}
1.249 +private:
1.250 + CHandWriting* iHand;
1.251 + TBool iIncludeChildren;
1.252 + };
1.253 +
1.254 +class TestClient : public CTClient
1.255 + {
1.256 +public:
1.257 + TestClient();
1.258 + ~TestClient();
1.259 + void ConstructL();
1.260 + TInt EventLoop();
1.261 + void Exit();
1.262 + void SetCurrentWindow(CTWinBase *aWindow);
1.263 + CTBaseWin *CreateTestWindowL(TInt type,TPoint pos,TSize size,CTWinBase *parent,CWindowGc &gc,TBool aAlternate=EFalse);
1.264 + void AdjustLightSource(TInt aX,TInt aY);
1.265 +private:
1.266 + inline TestWindowGroup* TestWindow() {return STATIC_CAST(TestWindowGroup*,iGroup);}
1.267 +private:
1.268 + CHandWriting *iHandWriting;
1.269 + TPoint ShadowOffset;
1.270 + };
1.271 +
1.272 +//const TInt Xmove=8;
1.273 +//const TInt Ymove=6;
1.274 +const TInt Xmove=1;
1.275 +const TInt Ymove=1;
1.276 +
1.277 +LOCAL_D const TUint KTestThreadHeapSize=0x10000;
1.278 +
1.279 +enum TConnectPanic
1.280 + {
1.281 + EConnectPanicRedrawToBackedUpWindow,
1.282 + EConnectPanicRequiredDisplayMode,
1.283 + EConnectPanicDragEvent,
1.284 + };
1.285 +
1.286 +TInt RunLaunchAndShootTest(TAny *);
1.287 +
1.288 +void Panic(TInt aPanic)
1.289 + {
1.290 + User::Panic(_L("CONNECT"),aPanic);
1.291 + }
1.292 +
1.293 +//
1.294 +// Individual window sub-classes
1.295 +//
1.296 +
1.297 +TestWindow1::TestWindow1() : CTWin()
1.298 + {
1.299 + __DECLARE_NAME(_S("TestWindow1"));
1.300 + }
1.301 +
1.302 +void TestWindow1::Draw()
1.303 +//This function is virtual and so cannot have an 'L' at the end of it's name
1.304 + {
1.305 + TInt i;
1.306 +
1.307 + iGc->SetBrushColor(TRgb::Gray16(14));
1.308 + iGc->Clear();
1.309 + iGc->SetPenColor(TRgb::Gray16(8));
1.310 + iGc->SetBrushColor(TRgb::Gray16(0));
1.311 + iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.312 + CArrayFixFlat<TPoint> *pnts;
1.313 + pnts=new(ELeave) CArrayFixFlat<TPoint>(20);
1.314 + TPoint mid(iSize.iWidth>>1,iSize.iHeight>>1);
1.315 + for(i=0;i<mid.iX;i+=4)
1.316 + {
1.317 + pnts->AppendL(TPoint(mid.iX-i,mid.iY-i));
1.318 + pnts->AppendL(TPoint(mid.iX+i+1,mid.iY-i-1));
1.319 + pnts->AppendL(TPoint(mid.iX+i+2,mid.iY+i+2));
1.320 + pnts->AppendL(TPoint(mid.iX-i-3,mid.iY+i+3));
1.321 + }
1.322 + if (iDrawPolygon)
1.323 + iGc->DrawPolygon(pnts,CGraphicsContext::EAlternate);
1.324 + else
1.325 + iGc->DrawPolyLine(pnts);
1.326 + delete pnts;
1.327 +//
1.328 + TPoint polygon[8];
1.329 + polygon[0]=TPoint(mid.iX-8,mid.iY-16);
1.330 + polygon[1]=TPoint(mid.iX+8,mid.iY-16);
1.331 + polygon[2]=TPoint(mid.iX+16,mid.iY-8);
1.332 + polygon[3]=TPoint(mid.iX+16,mid.iY+8);
1.333 + polygon[4]=TPoint(mid.iX+8,mid.iY+16);
1.334 + polygon[5]=TPoint(mid.iX-8,mid.iY+16);
1.335 + polygon[6]=TPoint(mid.iX-16,mid.iY+8);
1.336 + polygon[7]=TPoint(mid.iX-16,mid.iY-8);
1.337 + iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.338 + iGc->DrawPolygon(&polygon[0],sizeof(polygon)/sizeof(polygon[0]));
1.339 + }
1.340 +
1.341 +void TestWindow1::Resized(const TSize &aNewSize)
1.342 + {
1.343 + iWin.Invalidate();
1.344 + CTBaseWin::Resized(aNewSize);
1.345 + }
1.346 +
1.347 +/*void AFunction(TDesC& des)
1.348 + {
1.349 + TDesC *abc=&des;
1.350 + TInt a=3+4;
1.351 + }
1.352 +
1.353 +void AFunction2(TDes& des)
1.354 + {
1.355 + TDes *abc=&des;
1.356 + TInt a=3+4;
1.357 + }*/
1.358 +
1.359 +void TestWindow1::WinKeyL(const TKeyEvent &aKey,const TTime &)
1.360 + {
1.361 + if (aKey.iCode=='p')
1.362 + {
1.363 + RWindow win1(Client()->iWs);
1.364 + win1.Construct(iWin,1);
1.365 + RWindow win2(Client()->iWs);
1.366 + win2.Construct(win1,1);
1.367 + win1.Close();
1.368 + win2.SetExtent(TPoint(1,2),TSize(3,4));
1.369 + Client()->iWs.Flush();
1.370 + }
1.371 + else if (aKey.iCode=='q' || aKey.iCode=='Q')
1.372 + {
1.373 + RWindowGroup group1(Client()->iWs);
1.374 + RWindowGroup group2(Client()->iWs);
1.375 + group1.Construct(1);
1.376 + group2.Construct(2);
1.377 + group1.DefaultOwningWindow();
1.378 + group2.DefaultOwningWindow();
1.379 + group1.DefaultOwningWindow();
1.380 + group1.Close();
1.381 + group2.Close();
1.382 + Client()->iWs.Flush();
1.383 + }
1.384 + else if (aKey.iCode=='w' || aKey.iCode=='W')
1.385 + {
1.386 + RWindowGroup group1(Client()->iWs);
1.387 + RWindowGroup group2(Client()->iWs);
1.388 + group1.Construct(1);
1.389 + group2.Construct(2);
1.390 + group1.DefaultOwningWindow();
1.391 + group2.DefaultOwningWindow();
1.392 + group1.DefaultOwningWindow();
1.393 + group2.Close();
1.394 + group1.Close();
1.395 + Client()->iWs.Flush();
1.396 + }
1.397 + else if (aKey.iCode=='A' || aKey.iCode=='a')
1.398 + {
1.399 + /*RWindowGroup group(Client()->iWs);
1.400 + group.Construct(1);*/
1.401 + RDrawableWindow* win=new(ELeave) RBackedUpWindow(Client()->iWs);
1.402 + User::LeaveIfError(((RBackedUpWindow*)win)->Construct(*Client()->iGroup->GroupWin(),EGray2,(TUint32)this));
1.403 + User::LeaveIfError(win->SetExtentErr(TPoint(20,20),TSize(600,200)));
1.404 + win->Activate();
1.405 + }
1.406 + else if (aKey.iCode=='B' || aKey.iCode=='b')
1.407 + {
1.408 + RWindowGroup group(Client()->iWs);
1.409 + group.Construct(344);
1.410 + //group.EnableReceiptOfFocus(EFalse);
1.411 + RBlankWindow blank(Client()->iWs);
1.412 + blank.Construct(group,345);
1.413 + blank.SetOrdinalPosition(0,1000);
1.414 + //blank.SetShadowHeight(0);
1.415 + //blank.SetShadowDisabled(ETrue);
1.416 + blank.Activate();
1.417 + RWindow window(Client()->iWs);
1.418 + window.Construct(group,346);
1.419 + }
1.420 + /*else if (aKey.iCode=='Z' || aKey.iCode=='z') //TDes8 TPtr8 TPtrC8 TBufCBase8 TBuf8
1.421 + {
1.422 + TBuf<4> buf2(_L("1234"));
1.423 + TBuf<4> buf(_L("abcd"));
1.424 + TBufC<4> bufC(_L("WXYZ"));
1.425 + HBufC *hbuf=HBufC::NewL(4);
1.426 + TPtr pHBuf=hbuf->Des();
1.427 + pHBuf=buf2;
1.428 + TPtr ptr(hbuf->Des());
1.429 + //AFunction(ptr);
1.430 + TPtrC ptrC1(buf);
1.431 + //AFunction(ptrC1);
1.432 + TPtrC ptrC2(bufC);
1.433 + //AFunction(ptrC2);
1.434 + TPtrC ptrC3(hbuf->Des());
1.435 + AFunction(ptrC3);
1.436 + AFunction(buf);
1.437 + AFunction(bufC);
1.438 + AFunction(*hbuf);
1.439 + AFunction2(ptr);
1.440 + AFunction2(buf);
1.441 + }*/
1.442 + if (aKey.iCode==' ')
1.443 + {
1.444 + iDrawPolygon=!iDrawPolygon;
1.445 + iWin.Invalidate();
1.446 + }
1.447 + }
1.448 +
1.449 +TestWindow2::TestWindow2() : CTWin(),
1.450 + iWid(0), iFontHeight(16), iPointerState(EPointerOut), iFilter(0), iCapture(EFalse), iGrab(EFalse)
1.451 + {
1.452 + __DECLARE_NAME(_S("TestWindow2"));
1.453 + }
1.454 +
1.455 +TestWindow2::~TestWindow2()
1.456 + {
1.457 + }
1.458 +
1.459 +void TestWindow2::InitWinL()
1.460 + {
1.461 + iPos.SetXY(40,iFont->AscentInPixels()+10);
1.462 + TPoint next(0,iFont->HeightInPixels()+10);
1.463 + iPosBits=iPos+next;
1.464 + iPosMem=iPosBits+next;
1.465 + iWin.PointerFilter(0xFFFFFFFF,iFilter);
1.466 + User::LeaveIfError(iWin.EnableOnEvents());
1.467 + iWin.ClaimPointerGrab();
1.468 + }
1.469 +
1.470 +void TestWindow2::Draw()
1.471 + {
1.472 + TInt pen=0;
1.473 + switch(iPointerState)
1.474 + {
1.475 + case EPointerIn:
1.476 + pen=0;
1.477 + break;
1.478 + case EPointerOut:
1.479 + pen=5;
1.480 + break;
1.481 + case EPointerUndefined:
1.482 + pen=15;
1.483 + break;
1.484 + }
1.485 + iGc->SetPenColor(TRgb::Gray16(pen));
1.486 + iGc->SetBrushColor(iBackColor);
1.487 + DrawBorder();
1.488 + iGc->DrawText(iBuf,iPos);
1.489 + iGc->DrawText(iBufBits,iPosBits);
1.490 + iGc->DrawText(iBufMem,iPosMem);
1.491 + }
1.492 +
1.493 +void TestWindow2::NewText(TPoint &pos,TInt &width,TDes &des)
1.494 + {
1.495 + TInt newWid=iFont->TextWidthInPixels(des);
1.496 + Invalidate(TRect(pos-TSize(0,iFont->AscentInPixels()),pos+TSize(Max(width,newWid),iFont->DescentInPixels())));
1.497 + width=newWid;
1.498 + }
1.499 +
1.500 +void TestWindow2::PointerState(EPointerState aState)
1.501 + {
1.502 + switch(aState)
1.503 + {
1.504 + case EPointerIn:
1.505 + iBackColor=TRgb::Gray16(15);
1.506 + break;
1.507 + case EPointerOut:
1.508 + iBackColor=TRgb::Gray16(12);
1.509 + break;
1.510 + case EPointerUndefined:
1.511 + iBackColor=TRgb::Gray16(4);
1.512 + break;
1.513 + }
1.514 + iWin.SetBackgroundColor(iBackColor);
1.515 + Invalidate();
1.516 + iPointerState=aState;
1.517 + }
1.518 +
1.519 +void TestWindow2::SwitchOn(const TTime &)
1.520 + {
1.521 + iWin.SetBackgroundColor(TRgb(0,0,0));
1.522 + Client()->iWs.Flush();
1.523 + User::After(TTimeIntervalMicroSeconds32(500000));
1.524 + PointerState(iPointerState);
1.525 + }
1.526 +
1.527 +void TestWindow2::PointerEnter(const TTime &)
1.528 + {
1.529 + PointerState(EPointerIn);
1.530 + }
1.531 +
1.532 +void TestWindow2::PointerExit(const TTime &)
1.533 + {
1.534 + PointerState(EPointerOut);
1.535 + }
1.536 +
1.537 +void TestWindow2::RequestPointerRepeat()
1.538 + {
1.539 + iWin.RequestPointerRepeatEvent(TTimeIntervalMicroSeconds32(200000),iRepeatRect);
1.540 + }
1.541 +
1.542 +void TestWindow2::PointerL(const TPointerEvent &pointer,const TTime &aTime)
1.543 + {
1.544 + if (pointer.iType==TPointerEvent::EButtonRepeat)
1.545 + {
1.546 + iRepeatCount++;
1.547 + SetBufBits();
1.548 + RequestPointerRepeat();
1.549 + }
1.550 + else
1.551 + {
1.552 + iRepeatCount=0;
1.553 + CTWin::PointerL(pointer,aTime);
1.554 + 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);
1.555 + NewText(iPos,iWid,iBuf);
1.556 + if (pointer.iType==TPointerEvent::EButton1Down)
1.557 + {
1.558 + iRepeatRect=TRect(pointer.iPosition-TPoint(5,5),pointer.iPosition+TPoint(5,5));
1.559 + RequestPointerRepeat();
1.560 + }
1.561 + SetBufBits();
1.562 + }
1.563 + }
1.564 +
1.565 +void TestWindow2::SetBufBits()
1.566 + {
1.567 + iBufBits.Format(TRefByValue<const TDesC>(_L("Filter=0x%x, Capture[%s], Grab[%s], Repeat[%d]")),iFilter,
1.568 + iCapture ? _S("On") : _S("Off"),
1.569 + iGrab ? _S("On") : _S("Off"),
1.570 + iRepeatCount);
1.571 + NewText(iPosBits,iWidBits,iBufBits);
1.572 + Invalidate();
1.573 + }
1.574 +
1.575 +void TestWindow2::WinKeyL(const TKeyEvent &aKey,const TTime &)
1.576 + {
1.577 + switch(aKey.iCode)
1.578 + {
1.579 + case ',': // Unshifted <
1.580 + case '.': // Unshifted >
1.581 + {
1.582 + if (aKey.iCode==',')
1.583 + {
1.584 + if (iFontHeight>1)
1.585 + iFontHeight-=1;
1.586 + }
1.587 + else
1.588 + iFontHeight+=1;
1.589 + CFbsFont *newFont;
1.590 + TFontSpec fspec(KTestFontTypefaceName,iFontHeight*KTwipsPerPoint);
1.591 + User::LeaveIfError(Client()->iScreen->GetNearestFontToDesignHeightInTwips((CFont *&)newFont, fspec));
1.592 +
1.593 + Client()->iScreen->ReleaseFont(iFont);
1.594 + iFont=newFont;
1.595 + iWid=iFont->TextWidthInPixels(iBuf);
1.596 + Invalidate();
1.597 + }
1.598 + break;
1.599 + case '?':
1.600 + iBufMem.Format(TRefByValue<const TDesC>(_L("Count=%d")),Client()->iWs.HeapCount());
1.601 + NewText(iPosMem,iWidMem,iBufMem);
1.602 + break;
1.603 + case 'c':
1.604 + iCapture=(TBool)!iCapture;
1.605 + iWin.SetPointerCapture(iCapture);
1.606 + SetBufBits();
1.607 + break;
1.608 + case 'g':
1.609 + iGrab=(TBool)!iGrab;
1.610 + iWin.SetPointerGrab(iGrab);
1.611 + SetBufBits();
1.612 + break;
1.613 + case ' ':
1.614 + {
1.615 + iFilter=(iFilter+1)%8;
1.616 + iWin.PointerFilter(0xFFFFFFFF,iFilter);
1.617 + SetBufBits();
1.618 + if (iFilter&EPointerFilterEnterExit)
1.619 + PointerState(EPointerUndefined);
1.620 + else
1.621 + PointerState(EPointerOut);
1.622 + }
1.623 + case 's':
1.624 + case 'S':
1.625 + {
1.626 + CWsBitmap* bitmap=new(ELeave) CWsBitmap(Client()->iWs);
1.627 + CleanupStack::PushL(bitmap);
1.628 + User::LeaveIfError(bitmap->Create(Client()->iScreen->SizeInPixels(),EGray4));
1.629 + User::LeaveIfError(Client()->iScreen->CopyScreenToBitmap(bitmap));
1.630 + CleanupStack::Pop();
1.631 + }
1.632 + break;
1.633 + default:
1.634 + iBufMem.Format(TRefByValue<const TDesC>(_L("Key=%d")),aKey.iCode);
1.635 + NewText(iPosMem,iWidMem,iBufMem);
1.636 + break;
1.637 + }
1.638 + }
1.639 +
1.640 +TestWindow3::TestWindow3() : CTWin()
1.641 + {
1.642 + __DECLARE_NAME(_S("TestWindow3"));
1.643 + }
1.644 +
1.645 +TestWindow3::~TestWindow3()
1.646 + {
1.647 + delete iBitmap;
1.648 + }
1.649 +
1.650 +void TestWindow3::Resized(const TSize &aNewSize)
1.651 + {
1.652 + CTBaseWin::Resized(aNewSize);
1.653 + SetShape(iShapeNum);
1.654 + DrawNow();
1.655 + }
1.656 +
1.657 +void TestWindow3::InitWinL()
1.658 + {
1.659 + iCornerType=EWindowCorner3;
1.660 + iWin.PointerFilter(EPointerFilterDrag,0); // Clear drag filter
1.661 + iWin.SetPointerGrab(ETrue);
1.662 + iWin.SetBackgroundColor(TRgb::Gray256(230));
1.663 + iWin.SetCornerType(iCornerType);
1.664 + iBitmap=new(ELeave) CWsBitmap(Client()->iWs);
1.665 + User::LeaveIfError(iBitmap->Load(TEST_BITMAP_NAME,0));
1.666 + iSize=iBitmap->SizeInPixels();
1.667 + }
1.668 +
1.669 +void TestWindow3::Draw()
1.670 + {
1.671 + iGc->BitBlt(TPoint(0,0),iBitmap);
1.672 + TSize bitSize(iBitmap->SizeInPixels());
1.673 + TSize winSize(Size());
1.674 + iGc->Clear(TRect(bitSize.iWidth,0,winSize.iWidth,bitSize.iHeight));
1.675 + iGc->Clear(TRect(0,bitSize.iHeight,winSize.iWidth,winSize.iHeight));
1.676 + }
1.677 +
1.678 +void TestWindow3::SetShape(TInt aShapeNum)
1.679 + {
1.680 + iShapeNum=aShapeNum;
1.681 + TSize size=Size();
1.682 + switch(iShapeNum)
1.683 + {
1.684 + case 0:
1.685 + {
1.686 + TRegionFix<4> shape;
1.687 + shape.AddRect(TRect(0,0,size.iWidth,size.iHeight>>2));
1.688 + shape.AddRect(TRect(0,size.iHeight>>2,size.iWidth>>2,size.iHeight-(size.iHeight>>2)));
1.689 + shape.AddRect(TRect(size.iWidth-(size.iWidth>>2),size.iHeight>>2,size.iWidth,size.iHeight-(size.iHeight>>2)));
1.690 + shape.AddRect(TRect(0,size.iHeight-(size.iHeight>>2),size.iWidth,size.iHeight));
1.691 + iWin.SetShape(shape);
1.692 + }
1.693 + break;
1.694 + case 1:
1.695 + {
1.696 + TRegionFix<3> shape;
1.697 + shape.AddRect(TRect(size.iWidth>>2,0,size.iWidth-(size.iWidth>>2),size.iHeight>>2));
1.698 + shape.AddRect(TRect(0,size.iHeight>>2,size.iWidth,size.iHeight-(size.iHeight>>2)));
1.699 + shape.AddRect(TRect(size.iWidth>>2,size.iHeight-(size.iHeight>>2),size.iWidth-(size.iWidth>>2),size.iHeight));
1.700 + iWin.SetShape(shape);
1.701 + }
1.702 + break;
1.703 + case 2:
1.704 + {
1.705 + RRegion shape;
1.706 + for(TInt index=0;index<(size.iHeight-1);index++)
1.707 + {
1.708 + TInt xFactor=(size.iWidth>>1)*index/size.iHeight;
1.709 + shape.AddRect(TRect((size.iWidth>>1)-xFactor,index,(size.iWidth>>1)+xFactor,index+1));
1.710 + }
1.711 + iWin.SetShape(shape);
1.712 + shape.Close();
1.713 + }
1.714 + break;
1.715 + }
1.716 + }
1.717 +
1.718 +void TestWindow3::WinKeyL(const TKeyEvent &aKey,const TTime &)
1.719 + {
1.720 + if (aKey.iCode=='f')
1.721 + {
1.722 + TSize scrSize(Client()->iScreen->SizeInPixels());
1.723 + if (scrSize==iWin.Size())
1.724 + {
1.725 + scrSize.iWidth/=2;
1.726 + scrSize.iHeight/=2;
1.727 + }
1.728 + SetExtL(TPoint(),scrSize);
1.729 + }
1.730 + else if (aKey.iCode>='0' && aKey.iCode<='5')
1.731 + {
1.732 + switch(aKey.iCode)
1.733 + {
1.734 + case '0':
1.735 + iCornerType=EWindowCornerSquare;
1.736 + break;
1.737 + case '1':
1.738 + iCornerType=EWindowCorner1;
1.739 + break;
1.740 + case '2':
1.741 + iCornerType=EWindowCorner2;
1.742 + break;
1.743 + case '3':
1.744 + iCornerType=EWindowCorner3;
1.745 + break;
1.746 + case '5':
1.747 + iCornerType=EWindowCorner5;
1.748 + break;
1.749 + }
1.750 + iWin.SetCornerType(iCornerType,iCornerFlags);
1.751 + }
1.752 + else switch(User::LowerCase(aKey.iCode))
1.753 + {
1.754 + case '6':
1.755 + SetShape(0);
1.756 + break;
1.757 + case '7':
1.758 + SetShape(1);
1.759 + break;
1.760 + case '8':
1.761 + SetShape(2);
1.762 + break;
1.763 + case 'a':
1.764 + iCornerFlags^=EWindowCornerNotTL;
1.765 + goto setcorner;
1.766 + case 'b':
1.767 + iCornerFlags^=EWindowCornerNotTR;
1.768 + goto setcorner;
1.769 + case 'c':
1.770 + iCornerFlags^=EWindowCornerNotBL;
1.771 + goto setcorner;
1.772 + case 'd':
1.773 + iCornerFlags^=EWindowCornerNotBR;
1.774 +setcorner: iWin.SetCornerType(iCornerType,iCornerFlags);
1.775 + break;
1.776 + }
1.777 + }
1.778 +
1.779 +void TestWindow3::ScreenDeviceChangedL()
1.780 + {
1.781 + TSize scrSize(Client()->iScreen->SizeInPixels());
1.782 + if (scrSize==iWin.Size())
1.783 + {
1.784 + scrSize.iWidth/=2;
1.785 + scrSize.iHeight/=2;
1.786 + }
1.787 + SetExtL(TPoint(),scrSize);
1.788 + }
1.789 +
1.790 +TestWindow4::TestWindow4() : CTWin()
1.791 + {
1.792 + __DECLARE_NAME(_S("TestWindow4"));
1.793 + }
1.794 +
1.795 +void TestWindow4::SetSwappedSize()
1.796 + {
1.797 + if (iVertical)
1.798 + {
1.799 + iSwappedSize.iHeight=iSize.iWidth;
1.800 + iSwappedSize.iWidth=iSize.iHeight;
1.801 + }
1.802 + else
1.803 + iSwappedSize=iSize;
1.804 + }
1.805 +
1.806 +void TestWindow4::InitWin()
1.807 + {
1.808 + iBasePos.SetXY(10,20);
1.809 + iWin.SetBackgroundColor();
1.810 + SetSwappedSize();
1.811 + //iTemp=1;
1.812 + }
1.813 +
1.814 +void TestWindow4::Resized(const TSize &aSize)
1.815 + {
1.816 + CTBaseWin::Resized(aSize);
1.817 + SetSwappedSize();
1.818 + Invalidate();
1.819 + iWin.BeginRedraw();
1.820 + iGc->Activate(iWin);
1.821 + iGc->UseFont((CFont *)iFont);
1.822 + Draw(ETrue);
1.823 + iGc->Deactivate();
1.824 + iWin.EndRedraw();
1.825 + }
1.826 +
1.827 +void TestWindow4::Draw()
1.828 + {
1.829 + Draw(EFalse);
1.830 + }
1.831 +
1.832 +void TestWindow4::Draw(TBool aSetCursor)
1.833 + {
1.834 + TPoint tl(iBasePos.iX,iBasePos.iY-iFont->AscentInPixels());
1.835 + TRect rect(1,1,iSize.iWidth-1,iSize.iHeight);
1.836 +//
1.837 + /*switch (iTemp)
1.838 + {
1.839 + case 1:
1.840 + iGc->SetBrushColor(TRgb::Gray4(2));
1.841 + break;
1.842 + case 2:*/
1.843 + iGc->SetBrushColor(TRgb::Gray16(13));
1.844 + /*break;
1.845 + case 3:
1.846 + iGc->SetBrushColor(TRgb::Gray16(12));
1.847 + break;
1.848 + case 4:
1.849 + iGc->SetBrushColor(TRgb::Gray16(11));
1.850 + default:
1.851 + break;
1.852 + }*/
1.853 + iGc->Clear(rect);
1.854 +//
1.855 + TPoint pos(iBasePos);
1.856 + iGc->SetPenColor(TRgb::Gray16(0));
1.857 + iGc->DrawRect(TRect(iSize));
1.858 + TInt index=0;
1.859 + TInt ToGo=TxtBuf.Length();
1.860 + TInt lineHeight=iFont->HeightInPixels()+2;
1.861 + rect.iTl.iY=rect.iBr.iY=tl.iY;
1.862 + while((pos.iY+iFont->DescentInPixels())<(iSwappedSize.iHeight-1))
1.863 + {
1.864 + rect.iBr.iY+=lineHeight;
1.865 + iGc->Clear(rect);
1.866 + if (ToGo>0)
1.867 + {
1.868 + TInt len=iFont->TextCount(TxtBuf.Right(ToGo),iSwappedSize.iWidth-2*pos.iX);
1.869 + if (len==0)
1.870 + len=1;
1.871 + if (iVertical)
1.872 + iGc->DrawTextVertical(TxtBuf.Mid(index,len),TPoint(pos.iY,iSize.iHeight-pos.iX),ETrue);
1.873 + else
1.874 + iGc->DrawText(TxtBuf.Mid(index,len),pos);
1.875 + ToGo-=len;
1.876 + if (ToGo==0 && aSetCursor)
1.877 + {
1.878 + TPoint cursorPos;
1.879 + if (iVertical)
1.880 + cursorPos=TPoint(pos.iY-iFont->AscentInPixels(),iSize.iHeight-pos.iX)+TPoint(0,iFont->TextWidthInPixels(TxtBuf.Mid(index,len)));
1.881 + else
1.882 + cursorPos=pos+TPoint(iFont->TextWidthInPixels(TxtBuf.Mid(index,len)),0);
1.883 + SetCursor(cursorPos);
1.884 + }
1.885 + index+=len;
1.886 + }
1.887 + pos.iY+=lineHeight;
1.888 + rect.iTl.iY=rect.iBr.iY;
1.889 + }
1.890 + rect.iBr.iY=iSwappedSize.iHeight-1;
1.891 + iGc->Clear(rect);
1.892 + }
1.893 +
1.894 +void TestWindow4::SetCursor(const TPoint &aPos)
1.895 + {
1.896 + TTextCursor cursor;
1.897 + cursor.iType=TTextCursor::ETypeRectangle;
1.898 + if (iVertical)
1.899 + {
1.900 + cursor.iAscent=2;
1.901 + cursor.iHeight=2;
1.902 + cursor.iWidth=iFont->HeightInPixels();
1.903 + }
1.904 + else
1.905 + {
1.906 + cursor.iAscent=iFont->AscentInPixels();
1.907 + cursor.iHeight=iFont->HeightInPixels();
1.908 + cursor.iWidth=20;
1.909 + }
1.910 + cursor.iFlags=0;
1.911 +// cursor.iColor=TRgb(255,255,255);
1.912 + cursor.iColor=TRgb(128,128,128);
1.913 + Client()->iGroup->GroupWin()->SetTextCursor(iWin, aPos, cursor);
1.914 + }
1.915 +
1.916 +void TestWindow4::WinKeyL(const TKeyEvent &aKey,const TTime &)
1.917 + {
1.918 + TChar chr=aKey.iCode;
1.919 +
1.920 + if (aKey.iCode==32 && aKey.iModifiers&EModifierFunc)
1.921 + {
1.922 + iWin.Invalidate();
1.923 + iVertical=!iVertical;
1.924 + SetSwappedSize();
1.925 + }
1.926 + else if (aKey.iCode>=32 && aKey.iCode<4000)
1.927 + {
1.928 + TBool invalidate=EFalse;
1.929 + if (TxtBuf.Length()==TxtBuf.MaxLength())
1.930 + {
1.931 + TxtBuf=TxtBuf.Right(TxtBuf.Length()-1);
1.932 + invalidate=ETrue;
1.933 + }
1.934 + TxtBuf.Append(chr);
1.935 +
1.936 + TPoint pos(iBasePos);
1.937 + TInt index=0;
1.938 + TInt ToGo=TxtBuf.Length();
1.939 + while(ToGo>0)
1.940 + {
1.941 + TInt len=iFont->TextCount(TxtBuf.Right(ToGo),iSwappedSize.iWidth-2*pos.iX);
1.942 + if (len==0)
1.943 + len=1;
1.944 + if (len==ToGo)
1.945 + break;
1.946 + index+=len;
1.947 + ToGo-=len;
1.948 + pos.iY+=iFont->HeightInPixels()+2;
1.949 + }
1.950 + pos.iX+=iFont->TextWidthInPixels(TxtBuf.Mid(index,ToGo-1));
1.951 + if (invalidate)
1.952 + iWin.Invalidate(TRect(iBasePos.iX,iBasePos.iY-iFont->AscentInPixels(),iSize.iWidth-iBasePos.iX,iSize.iHeight));
1.953 + else
1.954 + {
1.955 + iGc->Activate(iWin);
1.956 + iGc->UseFont(iFont);
1.957 + if (iVertical)
1.958 + iGc->DrawTextVertical(TxtBuf.Mid(index+ToGo-1,1),TPoint(pos.iY,iSize.iHeight-pos.iX),ETrue);
1.959 + else
1.960 + iGc->DrawText(TxtBuf.Mid(index+ToGo-1,1),pos);
1.961 + iGc->Deactivate();
1.962 + }
1.963 + pos.iX+=iFont->TextWidthInPixels(TxtBuf.Mid(index+ToGo-1));
1.964 + SetCursor(iVertical ? TPoint(pos.iY-iFont->AscentInPixels(),iSize.iHeight-pos.iX) : pos);
1.965 + }
1.966 + }
1.967 +
1.968 +TestWindow5::TestWindow5(TBool aGrey2) : CTBackedUpWin(aGrey2?EGray2:EGray4)
1.969 + {
1.970 + __DECLARE_NAME(_S("TestWindow5"));
1.971 + }
1.972 +
1.973 +void TestWindow5::Resized(const TSize &aNewSize)
1.974 + {
1.975 + CTBaseWin::Resized(aNewSize);
1.976 + iGc->Activate(*DrawableWin());
1.977 + iGc->SetBrushColor(TRgb::Gray256(128));
1.978 + iGc->Clear(TRect(aNewSize));
1.979 + iGc->UseBrushPattern(&iBrushBit);
1.980 + iGc->SetBrushStyle(CGraphicsContext::EPatternedBrush);
1.981 + iGc->DrawEllipse(TRect(aNewSize));
1.982 + iGc->Deactivate();
1.983 + }
1.984 +
1.985 +void TestWindow5::InitWinL()
1.986 + {
1.987 + iWin.PointerFilter(EPointerFilterMove|EPointerFilterEnterExit,EPointerFilterMove|EPointerFilterEnterExit);
1.988 + iWin.SetPointerGrab(ETrue);
1.989 + iOrdPri=-1;
1.990 + iWin.SetOrdinalPosition(0,iOrdPri);
1.991 + User::LeaveIfError(iBrushBit.Load(TEST_BITMAP_NAME,0));
1.992 + }
1.993 +
1.994 +void TestWindow5::Draw()
1.995 + {
1.996 + Panic(EConnectPanicRedrawToBackedUpWindow);
1.997 + }
1.998 +
1.999 +void TestWindow5::WinKeyL(const TKeyEvent &aKey,const TTime &)
1.1000 + {
1.1001 + switch(aKey.iCode)
1.1002 + {
1.1003 + case ' ':
1.1004 + iOrdPri=(iOrdPri<0)?1:-1;
1.1005 + iWin.SetOrdinalPosition(0,iOrdPri);
1.1006 + break;
1.1007 + case 'z':
1.1008 + SetPos(iPos-TPoint(2,1));
1.1009 + SetPos(iPos-TPoint(-1,-1));
1.1010 + SetPos(iPos-TPoint(2,3));
1.1011 + SetPos(iPos-TPoint(-2,-1));
1.1012 + SetPos(iPos-TPoint(-2,-3));
1.1013 + SetPos(iPos-TPoint(1,1));
1.1014 + break;
1.1015 + }
1.1016 + }
1.1017 +
1.1018 +TestWindow6::TestWindow6(TBool aGrey2) : CTBackedUpWin(aGrey2?EGray2:EGray16), iGray(0)
1.1019 + {
1.1020 + __DECLARE_NAME(_S("TestWindow6"));
1.1021 + }
1.1022 +
1.1023 +TestWindow6::~TestWindow6()
1.1024 + {
1.1025 + delete iGc;
1.1026 + delete iGc2;
1.1027 + }
1.1028 +
1.1029 +void TestWindow6::Resized(const TSize &aNewSize)
1.1030 + {
1.1031 + CTBaseWin::Resized(aNewSize);
1.1032 + iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.1033 + iGc->SetPenStyle(CGraphicsContext::ENullPen);
1.1034 + if (iOldSize.iWidth<aNewSize.iWidth)
1.1035 + iGc->DrawRect(TRect(iOldSize.iWidth,0,aNewSize.iWidth,iOldSize.iHeight));
1.1036 + if (iOldSize.iHeight<aNewSize.iHeight)
1.1037 + iGc->DrawRect(TRect(0,iOldSize.iHeight,aNewSize.iWidth,aNewSize.iHeight));
1.1038 + iGc->SetBrushStyle(CGraphicsContext::ENullBrush);
1.1039 + iGc->SetPenStyle(CGraphicsContext::ESolidPen);
1.1040 + iOldSize=aNewSize;
1.1041 + TPoint pos;
1.1042 + for(TInt index=0;index<3;index++)
1.1043 + {
1.1044 + pos.iY=index*aNewSize.iHeight/3;
1.1045 + for(pos.iX=0;pos.iX<aNewSize.iWidth;pos.iX++)
1.1046 + {
1.1047 + TInt val=pos.iX*255/aNewSize.iWidth;
1.1048 + TRgb rgb(index==0?val:0,index==1?val:0,index==2?val:0);
1.1049 + iGc->SetPenColor(rgb);
1.1050 + iGc->DrawLine(pos,pos+TSize(0,aNewSize.iHeight/3));
1.1051 + }
1.1052 + }
1.1053 + iGc->SetPenColor(TRgb(255,255,255));
1.1054 + }
1.1055 +
1.1056 +void TestWindow6::InitWinL()
1.1057 + {
1.1058 + iWin.PointerFilter(EPointerFilterMove|EPointerFilterEnterExit,EPointerFilterMove|EPointerFilterEnterExit);
1.1059 + User::LeaveIfError(iWin.AllocPointerMoveBuffer(KPointerMoveBufferSize,0));
1.1060 + iWin.DisablePointerMoveBuffer();
1.1061 + iWin.SetPointerGrab(ETrue);
1.1062 + iGc=new(ELeave) CWindowGc(Client()->iScreen);
1.1063 + User::LeaveIfError(iGc->Construct());
1.1064 + iGc2=new(ELeave) CWindowGc(Client()->iScreen);
1.1065 + User::LeaveIfError(iGc2->Construct());
1.1066 + iWin.SetCornerType(EWindowCorner1);
1.1067 + iGc->Activate(iWin);
1.1068 + iGc->SetBrushColor(TRgb::Gray256(230));
1.1069 + iGc2->Activate(iWin);
1.1070 + iGc2->SetBrushColor(TRgb::Gray256(230));
1.1071 + iCurGc=iGc;
1.1072 + }
1.1073 +
1.1074 +void TestWindow6::Draw()
1.1075 + {
1.1076 + Panic(EConnectPanicRedrawToBackedUpWindow);
1.1077 + }
1.1078 +
1.1079 +void TestWindow6::PointerBufferReady(const TTime &)
1.1080 + {
1.1081 + TPoint pnts[KPointerMoveBufferSize];
1.1082 + TPtr8 ptr((TUint8 *)&pnts,sizeof(pnts));
1.1083 + TInt numPnts=iWin.RetrievePointerMoveBuffer(ptr);
1.1084 + for(TInt index=0;index<numPnts;index++)
1.1085 + iCurGc->DrawLineTo(pnts[index]);
1.1086 + }
1.1087 +
1.1088 +void TestWindow6::PointerL(const TPointerEvent &pointer,const TTime &aTime)
1.1089 + {
1.1090 + switch(pointer.iType)
1.1091 + {
1.1092 + case TPointerEvent::EButton1Down:
1.1093 + if (pointer.iModifiers&(EModifierCtrl|EModifierShift))
1.1094 + {
1.1095 + iDragging=ETrue;
1.1096 + iWin.EnablePointerMoveBuffer();
1.1097 + if (pointer.iModifiers&EModifierCtrl)
1.1098 + iCurGc=iGc;
1.1099 + else if (pointer.iModifiers&EModifierShift)
1.1100 + iCurGc=iGc2;
1.1101 + iCurGc->MoveTo(pointer.iPosition);
1.1102 + return;
1.1103 + }
1.1104 + break;
1.1105 + case TPointerEvent::EButton1Up:
1.1106 + if (iDragging)
1.1107 + {
1.1108 + iDragging=EFalse;
1.1109 + iWin.DisablePointerMoveBuffer();
1.1110 + return;
1.1111 + }
1.1112 + default:;
1.1113 + }
1.1114 + CTBackedUpWin::PointerL(pointer,aTime);
1.1115 + }
1.1116 +
1.1117 +void TestWindow6::WinKeyL(const TKeyEvent &aKey,const TTime &)
1.1118 + {
1.1119 + if (TChar(aKey.iCode).IsDigit())
1.1120 + {
1.1121 + TInt wid=1;
1.1122 + for(TUint i=0;i<(aKey.iCode-'0');i++)
1.1123 + wid+=i;
1.1124 + iCurGc->SetPenSize(TSize(wid,wid));
1.1125 + }
1.1126 + else switch(aKey.iCode)
1.1127 + {
1.1128 + case ',': // Unshifted <
1.1129 + case '.': // Unshifted >
1.1130 + {
1.1131 + if (aKey.iCode==',')
1.1132 + {
1.1133 + if (iGray>0)
1.1134 + iGray-=1;
1.1135 + }
1.1136 + else if (iGray<15)
1.1137 + iGray+=1;
1.1138 + iCurGc->SetPenColor(TRgb::Gray16(iGray));
1.1139 + }
1.1140 + break;
1.1141 + }
1.1142 + }
1.1143 +
1.1144 +void TestWindow6::AssignGC(CWindowGc &)
1.1145 + {
1.1146 + }
1.1147 +
1.1148 +TestWindow7::TestWindow7(TBool aGrey2) : CTBackedUpWin(aGrey2?EGray2:EGray4)
1.1149 + {
1.1150 + __DECLARE_NAME(_S("TestWindow1"));
1.1151 + }
1.1152 +
1.1153 +TestWindow7::~TestWindow7()
1.1154 + {
1.1155 + delete iSpriteBitmap;
1.1156 + delete iSpriteMaskBitmap;
1.1157 + delete iPointerCursor;
1.1158 + delete iSprite4;
1.1159 + delete iSprite5;
1.1160 + delete iSprite2;
1.1161 + delete iSprite3;
1.1162 + delete iSprite1;
1.1163 + }
1.1164 +
1.1165 +void DrawPointerCursor(CBitmapContext *aGc,TInt , const TSize &aSize, TBool aDoMask, TAny *aMode)
1.1166 + {
1.1167 + TInt mode=*(TInt *)aMode;
1.1168 + aGc->SetBrushColor(TRgb::Gray4(aDoMask ? 0 : 2));
1.1169 + aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.1170 + aGc->SetPenStyle(CGraphicsContext::ENullPen);
1.1171 + aGc->DrawRect(TRect(aSize));
1.1172 + TInt size=mode+1;
1.1173 + TRect rect1(0,aSize.iHeight/2-size,aSize.iWidth,aSize.iHeight/2+size);
1.1174 + TRect rect2(aSize.iWidth/2-size,0,aSize.iWidth/2+size,aSize.iHeight);
1.1175 +//
1.1176 + if (!aDoMask)
1.1177 + {
1.1178 + aGc->SetPenStyle(CGraphicsContext::ESolidPen);
1.1179 + aGc->SetPenColor(TRgb::Gray4(0));
1.1180 + aGc->SetBrushStyle(CGraphicsContext::ENullBrush);
1.1181 + aGc->DrawRect(rect1);
1.1182 + aGc->DrawRect(rect2);
1.1183 + rect1.Shrink(1,1);
1.1184 + rect2.Shrink(1,1);
1.1185 + }
1.1186 +//
1.1187 + aGc->SetPenStyle(CGraphicsContext::ENullPen);
1.1188 + aGc->SetBrushColor(TRgb::Gray4(aDoMask ? 3 : 1));
1.1189 + aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.1190 + aGc->DrawRect(rect1);
1.1191 + aGc->DrawRect(rect2);
1.1192 + }
1.1193 +
1.1194 +void DrawSprite(CBitmapContext *aGc,TInt , const TSize &aSize, TBool aDoMask, TAny *)
1.1195 + {
1.1196 + aGc->SetBrushColor(TRgb::Gray4(aDoMask ? 0 : 2));
1.1197 + aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.1198 + aGc->SetPenStyle(CGraphicsContext::ENullPen);
1.1199 + aGc->DrawRect(TRect(aSize));
1.1200 + aGc->SetPenStyle(CGraphicsContext::ESolidPen);
1.1201 + aGc->SetPenColor(TRgb::Gray4(aDoMask ? 3 : 0));
1.1202 + aGc->SetBrushColor(TRgb::Gray4(aDoMask ? 3 : 1));
1.1203 + aGc->DrawEllipse(TRect(aSize));
1.1204 + }
1.1205 +
1.1206 +void TestWindow7::InitWinL()
1.1207 + {
1.1208 + iPos1.SetXY(30,10);
1.1209 + iPos2.SetXY(50,40);
1.1210 + iPos3.SetXY(10,50);
1.1211 + iPos4.SetXY(10,10);
1.1212 + iPos5.SetXY(50,10);
1.1213 +//
1.1214 + TSpriteCreateParams params(TSize(30,70),TPoint(0,0),DrawSprite);
1.1215 + TSpriteCreateParams paramarray[10];
1.1216 + params.iInterval=TTimeIntervalMicroSeconds32(200000);
1.1217 +
1.1218 + paramarray[0]=params;
1.1219 + paramarray[1]=params;
1.1220 + paramarray[2]=params;
1.1221 + paramarray[1].iSize=TSize(20,30);
1.1222 + paramarray[2].iSize=TSize(100,10);
1.1223 + paramarray[2].iInterval=TTimeIntervalMicroSeconds32(200000);
1.1224 + iSprite1=new(ELeave) CTSprite(Client()->iWs);
1.1225 + iSprite1->ConstructL(iWin,iPos1,3,¶marray[0],ESpriteNoChildClip);
1.1226 +//
1.1227 + params.iSize=TSize(20,30);
1.1228 + for(TInt index=0;index<10;index++)
1.1229 + {
1.1230 + paramarray[index]=params;
1.1231 + paramarray[index].iOffset=TPoint(index*20,index*4);
1.1232 + }
1.1233 + iSprite2=new(ELeave) CTSprite(Client()->iWs);
1.1234 + iSprite2->ConstructL(iWin,iPos2,10,¶marray[0],0);
1.1235 +//
1.1236 + params.iSize=TSize(100,10);
1.1237 + iSprite3=new(ELeave) CTSprite(Client()->iWs);
1.1238 + iSprite3->ConstructL(iWin,iPos3,1,¶ms,ESpriteFlash);
1.1239 +//
1.1240 + params.iSize=TSize(32,32);
1.1241 + iSprite4=new(ELeave) CTSprite(Client()->iWs);
1.1242 + iSprite4->ConstructL(*Client()->iGroup->GroupWin(),iPos4,1,¶ms,0);
1.1243 +//
1.1244 + params.iSize=TSize(16,64);
1.1245 + iSprite5=new(ELeave) CTSprite(Client()->iWs);
1.1246 + iSprite5->ConstructL(*Client()->iGroup->GroupWin(),iPos5,1,¶ms,ESpriteNoChildClip);
1.1247 +//
1.1248 + iCurPos= &iPos1;
1.1249 + iCurSprite= iSprite1;
1.1250 +// iWin.SetBackgroundColor(TRgb::Gray256(170));
1.1251 + TSpriteCreateParams pcursor(TSize(24,48),TPoint(-12,-24),DrawPointerCursor,&iPointerMode);
1.1252 + iPointerCursor=new(ELeave) CTPointerCursor(Client()->iWs);
1.1253 + iPointerCursor->ConstructL(1,&pcursor,0,iSpriteBitmap,iSpriteMaskBitmap);
1.1254 + iWin.SetCustomPointerCursor(iPointerCursor->PointerCursor());
1.1255 + Client()->iGroup->GroupWin()->SetCustomPointerCursor(iPointerCursor->PointerCursor());
1.1256 + }
1.1257 +
1.1258 +
1.1259 +void TestWindow7::Resized(const TSize &aNewSize)
1.1260 + {
1.1261 + CTBaseWin::Resized(aNewSize);
1.1262 + iGc->Activate(*DrawableWin());
1.1263 + Draw();
1.1264 + iGc->Deactivate();
1.1265 + }
1.1266 +
1.1267 +void TestWindow7::Draw()
1.1268 + {
1.1269 + iGc->SetBrushColor(TRgb::Gray256(170));
1.1270 + iGc->Clear();
1.1271 + for(TInt xPos=0;xPos<iSize.iWidth;xPos+=50)
1.1272 + iGc->DrawLine(TPoint(xPos,0),TPoint(xPos,iSize.iHeight));
1.1273 + for(TInt yPos=0;yPos<iSize.iHeight;yPos+=50)
1.1274 + iGc->DrawLine(TPoint(0,yPos),TPoint(iSize.iWidth,yPos));
1.1275 + }
1.1276 +
1.1277 +void TestWindow7::WinKeyL(const TKeyEvent &aKey,const TTime &)
1.1278 + {
1.1279 + switch(aKey.iCode)
1.1280 + {
1.1281 + case 'c':
1.1282 + case 'C':
1.1283 + {
1.1284 + iPointerMode=(iPointerMode+1)&EPointerModes;
1.1285 + TSpriteCreateParams params(iSpriteBitmap->SizeInPixels(),TPoint(0,0),DrawPointerCursor,&iPointerMode);
1.1286 + iPointerCursor->RedrawL(iSpriteBitmap,iSpriteMaskBitmap,¶ms);
1.1287 + break;
1.1288 + }
1.1289 + case ' ':
1.1290 + if (iCurSprite==iSprite1)
1.1291 + {
1.1292 + iCurPos= &iPos2;
1.1293 + iCurSprite= iSprite2;
1.1294 + }
1.1295 + else if (iCurSprite==iSprite2)
1.1296 + {
1.1297 + iCurPos= &iPos3;
1.1298 + iCurSprite= iSprite3;
1.1299 + }
1.1300 + else if (iCurSprite==iSprite3)
1.1301 + {
1.1302 + iCurPos= &iPos4;
1.1303 + iCurSprite= iSprite4;
1.1304 + }
1.1305 + else if (iCurSprite==iSprite4)
1.1306 + {
1.1307 + iCurPos= &iPos5;
1.1308 + iCurSprite= iSprite5;
1.1309 + }
1.1310 + else if (iCurSprite==iSprite5)
1.1311 + {
1.1312 + iCurPos= &iPos1;
1.1313 + iCurSprite= iSprite1;
1.1314 + }
1.1315 + break;
1.1316 + case '1':
1.1317 + iCurPos->iX-=5;
1.1318 + iCurSprite->Sprite().SetPosition(*iCurPos);
1.1319 + break;
1.1320 + case '2':
1.1321 + iCurPos->iX+=5;
1.1322 + iCurSprite->Sprite().SetPosition(*iCurPos);
1.1323 + break;
1.1324 + case '3':
1.1325 + iCurPos->iY-=5;
1.1326 + iCurSprite->Sprite().SetPosition(*iCurPos);
1.1327 + break;
1.1328 + case '4':
1.1329 + iCurPos->iY+=5;
1.1330 + iCurSprite->Sprite().SetPosition(*iCurPos);
1.1331 + break;
1.1332 + default:;
1.1333 + }
1.1334 + }
1.1335 +
1.1336 +TestWindow8::TestWindow8() : CTBlankWindow()
1.1337 + {
1.1338 + __DECLARE_NAME(_S("TestWindow8"));
1.1339 + }
1.1340 +
1.1341 +void TestWindow8::InitWin()
1.1342 + {
1.1343 + iWin.PointerFilter(EPointerFilterMove|EPointerFilterEnterExit,EPointerFilterMove|EPointerFilterEnterExit);
1.1344 + iWin.SetPointerGrab(ETrue);
1.1345 + iWin.SetColor(TRgb::Gray256(170));
1.1346 + }
1.1347 +
1.1348 +void TestWindow8::Draw()
1.1349 + {
1.1350 + Panic(EConnectPanicRedrawToBackedUpWindow);
1.1351 + }
1.1352 +
1.1353 +TestWindow9::TestWindow9() : CTWin()
1.1354 + {
1.1355 + __DECLARE_NAME(_S("TestWindow9"));
1.1356 + }
1.1357 +
1.1358 +void TestWindow9::InitWinL()
1.1359 + {
1.1360 + iWin.SetRequiredDisplayMode(EGray16);
1.1361 + User::LeaveIfError(iBitmap.Load(VIDEO_MBM_NAME,0));
1.1362 + iVideoSize=iBitmap.SizeInPixels();
1.1363 + }
1.1364 +
1.1365 +void TestWindow9::Draw()
1.1366 + {
1.1367 + iGc->BitBlt(TPoint(),&iBitmap);
1.1368 + }
1.1369 +
1.1370 +void TestWindow9::Play()
1.1371 + {
1.1372 + iWin.SetExtent(TPoint(320-(iVideoSize.iWidth>>1),0),iVideoSize);
1.1373 + iWin.BeginRedraw();
1.1374 + iWin.EndRedraw();
1.1375 + iGc->Activate(iWin);
1.1376 + TInt index=1;
1.1377 + while(iBitmap.Load(VIDEO_MBM_NAME,index++)==KErrNone)
1.1378 + {
1.1379 + iGc->BitBlt(TPoint(),&iBitmap);
1.1380 + Client()->iWs.Flush();
1.1381 + }
1.1382 + iBitmap.Load(VIDEO_MBM_NAME,0);
1.1383 + iGc->BitBlt(TPoint(),&iBitmap);
1.1384 + iGc->Deactivate();
1.1385 + }
1.1386 +
1.1387 +void TestWindow9::WinKeyL(const TKeyEvent &aKey,const TTime &)
1.1388 + {
1.1389 + if (aKey.iCode=='p' || aKey.iCode=='P')
1.1390 + Play();
1.1391 + }
1.1392 +
1.1393 +TestWindow10::TestWindow10() : CTWin()
1.1394 + {
1.1395 + __DECLARE_NAME(_S("TestWindow10"));
1.1396 + }
1.1397 +
1.1398 +void TestWindow10::InitWin()
1.1399 + {
1.1400 + //iWin.PointerFilter(EPointerFilterMove|EPointerFilterEnterExit,EPointerFilterMove|EPointerFilterEnterExit);
1.1401 + //iWin.SetPointerGrab(ETrue);
1.1402 + iWin.SetRequiredDisplayMode(EColor256);
1.1403 + }
1.1404 +
1.1405 +void TestWindow10::Draw()
1.1406 + {
1.1407 + TSize size=Size();
1.1408 + TRect rect(size);
1.1409 + TInt ii;
1.1410 +
1.1411 + iGc->SetPenStyle(CGraphicsContext::ENullPen);
1.1412 + iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.1413 + rect.iBr.iX=0;
1.1414 + for(ii=0;ii<256;ii++)
1.1415 + {
1.1416 + rect.iTl.iX=rect.iBr.iX;
1.1417 + rect.iBr.iX=((ii+1)*size.iWidth)/256;
1.1418 + iGc->SetBrushColor(TRgb::Color256(ii));
1.1419 + iGc->DrawRect(rect);
1.1420 + }
1.1421 + }
1.1422 +
1.1423 +void TestWindow10::WinKeyL(const TKeyEvent &aKey,const TTime &)
1.1424 + {
1.1425 + switch(aKey.iCode)
1.1426 + {
1.1427 + case '0':
1.1428 + iWin.SetRequiredDisplayMode(EGray2);
1.1429 + break;
1.1430 + case '1':
1.1431 + iWin.SetRequiredDisplayMode(EGray4);
1.1432 + break;
1.1433 + case '2':
1.1434 + iWin.SetRequiredDisplayMode(EGray16);
1.1435 + break;
1.1436 + case '3':
1.1437 + iWin.SetRequiredDisplayMode(EGray256);
1.1438 + break;
1.1439 + case '4':
1.1440 + iWin.SetRequiredDisplayMode(EColor16);
1.1441 + break;
1.1442 + case '5':
1.1443 + iWin.SetRequiredDisplayMode(EColor256);
1.1444 + break;
1.1445 + case '6':
1.1446 + iWin.SetRequiredDisplayMode(EColor64K);
1.1447 + break;
1.1448 + }
1.1449 + }
1.1450 +
1.1451 +TestWindow12::TestWindow12() : CTWin()
1.1452 + {}
1.1453 +
1.1454 +void TestWindow12::InitWin()
1.1455 + {
1.1456 + iWin.SetRequiredDisplayMode(EColor16);
1.1457 + }
1.1458 +
1.1459 +void TestWindow12::Draw()
1.1460 + {
1.1461 + TRect rect(Size());
1.1462 +
1.1463 + iGc->SetPenStyle(CGraphicsContext::ENullPen);
1.1464 + iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.1465 + iGc->SetBrushColor(TRgb(0,255,0));
1.1466 + iGc->DrawRect(rect);
1.1467 + rect.iTl.iX=rect.iBr.iX/2;
1.1468 + iGc->SetBrushColor(TRgb(0,0,255));
1.1469 + iGc->DrawRect(rect);
1.1470 + }
1.1471 +
1.1472 +void TestWindow12::WinKeyL(const TKeyEvent &aKey,const TTime &)
1.1473 + {
1.1474 + TSize screen(Client()->iScreen->SizeInPixels());
1.1475 + TSize size(Size());
1.1476 + TPoint pos(Position());
1.1477 + TPoint dest1(screen.iWidth-size.iWidth,screen.iHeight-size.iHeight);
1.1478 + TPoint dest;
1.1479 + iGc->Activate(iWin);
1.1480 + switch(aKey.iCode)
1.1481 + {
1.1482 + //case '1':
1.1483 + //break;
1.1484 + case '2':
1.1485 + dest.iX=dest1.iX/2;
1.1486 + break;
1.1487 + case '3':
1.1488 + dest.iX=dest1.iX;
1.1489 + break;
1.1490 + case '4':
1.1491 + dest.iY=dest1.iY/2;
1.1492 + break;
1.1493 + case '5':
1.1494 + dest.iX=dest1.iX/2;
1.1495 + dest.iY=dest1.iY/2;
1.1496 + break;
1.1497 + case '6':
1.1498 + dest.iX=dest1.iX;
1.1499 + dest.iY=dest1.iY/2;
1.1500 + break;
1.1501 + case '7':
1.1502 + dest.iY=dest1.iY;
1.1503 + break;
1.1504 + case '8':
1.1505 + dest.iX=dest1.iX/2;
1.1506 + dest.iY=dest1.iY;
1.1507 + break;
1.1508 + case '9':
1.1509 + dest.iX=dest1.iX;
1.1510 + dest.iY=dest1.iY;
1.1511 + break;
1.1512 + }
1.1513 + TRect rect(screen);
1.1514 + rect.Move(-pos);
1.1515 + iGc->CopyRect(pos-dest,rect);
1.1516 + iGc->Deactivate();
1.1517 + }
1.1518 +
1.1519 +//
1.1520 +
1.1521 +TestWindowGroup::TestWindowGroup(CTClient *aClient) : CTWindowGroup(aClient), iIncludeChildren(EFalse)
1.1522 + {
1.1523 + }
1.1524 +
1.1525 +void TestWindowGroup::ConstructL()
1.1526 + {
1.1527 + CTWindowGroup::ConstructL();
1.1528 + iGroupWin.EnableScreenChangeEvents();
1.1529 + }
1.1530 +
1.1531 +void TestWindowGroup::ScreenDeviceChanged()
1.1532 + {
1.1533 + TPixelsTwipsAndRotation sizeAndRotation;
1.1534 + Client()->iScreen->GetDefaultScreenSizeAndRotation(sizeAndRotation);
1.1535 + Client()->iScreen->SetScreenSizeAndRotation(sizeAndRotation);
1.1536 + }
1.1537 +
1.1538 +void TestWindowGroup::KeyL(const TKeyEvent &aKey,const TTime &aTime)
1.1539 + {
1.1540 + if (aKey.iModifiers&EModifierCtrl && !(aKey.iModifiers&EModifierFunc))
1.1541 + {
1.1542 + TInt type=0;
1.1543 + if (aKey.iCode<=14)
1.1544 + type=aKey.iCode;
1.1545 + if (type!=0)
1.1546 + {
1.1547 + TPoint pos;
1.1548 + TSize size;
1.1549 + CTWinBase *win=this;
1.1550 + if ((aKey.iModifiers&EModifierLeftShift) && iCurWin)
1.1551 + win=iCurWin;
1.1552 + pos.iX=win->Size().iWidth>>2;
1.1553 + pos.iY=win->Size().iHeight>>2;
1.1554 + size.iWidth=win->Size().iWidth>>1;
1.1555 + size.iHeight=win->Size().iHeight>>1;
1.1556 + iCurWin=((TestClient *)Client())->CreateTestWindowL(type,pos,size,win,*Client()->iGc,aKey.iModifiers&EModifierRightShift);
1.1557 + return;
1.1558 + }
1.1559 + }
1.1560 + if (aKey.iModifiers&EModifierFunc)
1.1561 + {
1.1562 + switch(aKey.iCode)
1.1563 + {
1.1564 + case 'a':
1.1565 + {
1.1566 + for(TInt loop=0;loop<100;loop++)
1.1567 + {
1.1568 + ((TestClient *)Client())->iWs.HeapSetFail(RHeap::EDeterministic,loop);
1.1569 + CTBaseWin *win=NULL;
1.1570 + TRAP_IGNORE(win=((TestClient *)Client())->CreateTestWindowL(1,TPoint(15,20),TSize(150,110),Client()->iGroup,*Client()->iGc));
1.1571 + if (win)
1.1572 + {
1.1573 + ((CTWin *)win)->Redraw(TRect());
1.1574 + delete win;
1.1575 + }
1.1576 + }
1.1577 + ((TestClient *)Client())->iWs.HeapSetFail(RHeap::ENone,0);
1.1578 + }
1.1579 + break;
1.1580 + case '0':
1.1581 + {
1.1582 + TUint *aNullPtr=NULL;
1.1583 + *aNullPtr=0;
1.1584 + }
1.1585 + break;
1.1586 + case 'p':
1.1587 + {
1.1588 + RThread thread;
1.1589 + thread.Panic(_L("Connect"),123);
1.1590 + }
1.1591 + break;
1.1592 + case 'x':
1.1593 + ((TestClient *)Client())->Exit();
1.1594 + break;
1.1595 + case 'f':
1.1596 + if (Client()->iWs.SetAutoFlush(ETrue))
1.1597 + Client()->iWs.SetAutoFlush(EFalse);
1.1598 + break;
1.1599 + case 'b':
1.1600 + RunLaunchAndShootTestL();
1.1601 + break;
1.1602 + case 'm':
1.1603 + MillionsOfSessions();
1.1604 + break;
1.1605 + case 'o':
1.1606 + GroupWin()->SetOrdinalPosition(KOrdinalPositionSwitchToOwningWindow);
1.1607 + break;
1.1608 + case 10:
1.1609 + if (aKey.iModifiers&EModifierCtrl && aKey.iModifiers&EModifierShift)
1.1610 + iHand->ToggleStatus();
1.1611 + break;
1.1612 + case EKeyLeftArrow:
1.1613 + ((TestClient *)Client())->AdjustLightSource(-1,0);
1.1614 + break;
1.1615 + case EKeyRightArrow:
1.1616 + ((TestClient *)Client())->AdjustLightSource(1,0);
1.1617 + break;
1.1618 + case EKeyUpArrow:
1.1619 + ((TestClient *)Client())->AdjustLightSource(0,-1);
1.1620 + break;
1.1621 + case EKeyDownArrow:
1.1622 + ((TestClient *)Client())->AdjustLightSource(0,1);
1.1623 + break;
1.1624 + default:
1.1625 + goto keeptrying;
1.1626 + }
1.1627 + return;
1.1628 + }
1.1629 +keeptrying:
1.1630 + if (iCurWin)
1.1631 + {
1.1632 + if (aKey.iModifiers&EModifierFunc)
1.1633 + {
1.1634 + //TBool shift=aKey.iModifiers&EModifierShift;
1.1635 + switch(aKey.iCode)
1.1636 + {
1.1637 + case 'c':
1.1638 + GroupWin()->DisableKeyClick(ETrue);
1.1639 + break;
1.1640 + case 'C':
1.1641 + GroupWin()->DisableKeyClick(EFalse);
1.1642 + break;
1.1643 + case 's':
1.1644 + iCurWin->BaseWin()->SetShadowDisabled(ETrue);
1.1645 + break;
1.1646 + case 'S':
1.1647 + iCurWin->BaseWin()->SetShadowDisabled(EFalse);
1.1648 + break;
1.1649 + case 'v':
1.1650 + iCurWin->SetVisible(ETrue);
1.1651 + break;
1.1652 + case 'i':
1.1653 + iCurWin->SetVisible(EFalse);
1.1654 + break;
1.1655 + case 'd':
1.1656 + iCurWin->BaseWin()->SetFaded(ETrue
1.1657 + ,(iIncludeChildren? RWindowTreeNode::EFadeIncludeChildren:RWindowTreeNode::EFadeWindowOnly));
1.1658 + break;
1.1659 + case 'D':
1.1660 + iCurWin->BaseWin()->SetFaded(EFalse
1.1661 + ,(iIncludeChildren? RWindowTreeNode::EFadeIncludeChildren:RWindowTreeNode::EFadeWindowOnly));
1.1662 + break;
1.1663 + case 'w':
1.1664 + case 'W':
1.1665 + iIncludeChildren=!iIncludeChildren;
1.1666 + case 'e':
1.1667 + iCurWin->BaseWin()->SetNonFading(ETrue);
1.1668 + break;
1.1669 + case 'E':
1.1670 + iCurWin->BaseWin()->SetNonFading(EFalse);
1.1671 + break;
1.1672 + case 'r':
1.1673 + iCurWin->BaseWin()->FadeBehind(ETrue);
1.1674 + break;
1.1675 + case 'R':
1.1676 + iCurWin->BaseWin()->FadeBehind(EFalse);
1.1677 + break;
1.1678 + /*case 'b':
1.1679 + iCurWin->WinTreeNode()->SetOrdinalPosition(-1);
1.1680 + break;
1.1681 + case 'f':
1.1682 + iCurWin->WinTreeNode()->SetOrdinalPosition(0);
1.1683 + break;*/
1.1684 + case 'B':
1.1685 + {
1.1686 + RWindowTreeNode* win=iCurWin->WinTreeNode();
1.1687 + win->SetOrdinalPosition(win->OrdinalPosition()+1);
1.1688 + }
1.1689 + break;
1.1690 + case 'F':
1.1691 + {
1.1692 + RWindowTreeNode* win=iCurWin->WinTreeNode();
1.1693 + win->SetOrdinalPosition(win->OrdinalPosition()-1);
1.1694 + }
1.1695 + break;
1.1696 + default:
1.1697 + goto keeptrying2;
1.1698 + }
1.1699 + return;
1.1700 + }
1.1701 +keeptrying2:
1.1702 + switch(aKey.iCode)
1.1703 + {
1.1704 + case 24: //Ctrl-X
1.1705 + CTWin::Delete(iCurWin);
1.1706 + break;
1.1707 + case 19: //Ctrl-S
1.1708 + if (aKey.iModifiers&EModifierShift)
1.1709 + iCurWin=iCurWin->Prev();
1.1710 + else
1.1711 + iCurWin=iCurWin->Next();
1.1712 + break;
1.1713 + case EKeyLeftArrow:
1.1714 + iCurWin->AdjustSizeL(-Xmove,0,aKey.iModifiers);
1.1715 + break;
1.1716 + case EKeyRightArrow:
1.1717 + iCurWin->AdjustSizeL(Xmove,0,aKey.iModifiers);
1.1718 + break;
1.1719 + case EKeyUpArrow:
1.1720 + iCurWin->AdjustSizeL(0,-Ymove,aKey.iModifiers);
1.1721 + break;
1.1722 + case EKeyDownArrow:
1.1723 + iCurWin->AdjustSizeL(0,Ymove,aKey.iModifiers);
1.1724 + break;
1.1725 + case '[': // Move back 1 ordinal position
1.1726 + iCurWin->AdjustOrdinal(-1);
1.1727 + break;
1.1728 + case ']': // Move forward 1 ordinal position
1.1729 + iCurWin->AdjustOrdinal(1);
1.1730 + break;
1.1731 + case '<': // Decrease shadow size
1.1732 + iCurWin->AdjustShadow(-1);
1.1733 + break;
1.1734 + case '>': // Increase shadow size
1.1735 + iCurWin->AdjustShadow(1);
1.1736 + break;
1.1737 + case 13:
1.1738 +// iCurWin->SetDefaultExtL();
1.1739 + iCurWin->SetFullScreenExtL();
1.1740 + break;
1.1741 + default:
1.1742 + iCurWin->WinKeyL(aKey,aTime);
1.1743 + break;
1.1744 + }
1.1745 + }
1.1746 + }
1.1747 +
1.1748 +void TestWindowGroup::RunLaunchAndShootTestL()
1.1749 + {
1.1750 + RThread thread;
1.1751 + User::LeaveIfError(thread.Create(_L("Launcher"),RunLaunchAndShootTest,KDefaultStackSize,NULL,
1.1752 + NULL,NULL,KTestThreadHeapSize,KTestThreadHeapSize,EOwnerThread));
1.1753 + thread.Resume();
1.1754 + thread.Close();
1.1755 + }
1.1756 +
1.1757 +void TestWindowGroup::MillionsOfSessions()
1.1758 + {
1.1759 + RWsSession session;
1.1760 + FOREVER
1.1761 + {
1.1762 + session=RWsSession();
1.1763 + if (session.Connect()!=KErrNone)
1.1764 + break;
1.1765 + }
1.1766 + }
1.1767 +
1.1768 +//
1.1769 +
1.1770 +TestClient::TestClient()
1.1771 + {
1.1772 + __DECLARE_NAME(_S("TestClient"));
1.1773 + }
1.1774 +
1.1775 +CTBaseWin *TestClient::CreateTestWindowL(TInt type,TPoint pos,TSize size,CTWinBase *parent,CWindowGc &aGc,TBool aAlternate/*=EFalse*/)
1.1776 + {
1.1777 + CTBaseWin *win=NULL;
1.1778 + switch(type)
1.1779 + {
1.1780 + case 1:
1.1781 + win=new(ELeave) TestWindow1();
1.1782 + break;
1.1783 + case 2:
1.1784 + win=new(ELeave) TestWindow2();
1.1785 + break;
1.1786 + case 3:
1.1787 + win=new(ELeave) TestWindow3();
1.1788 + break;
1.1789 + case 4:
1.1790 + win=new(ELeave) TestWindow4();
1.1791 + break;
1.1792 + case 5:
1.1793 + win=new(ELeave) TestWindow5(aAlternate);
1.1794 + break;
1.1795 + case 6:
1.1796 + win=new(ELeave) TestWindow6(aAlternate);
1.1797 + break;
1.1798 + case 7:
1.1799 + win=new(ELeave) TestWindow7(aAlternate);
1.1800 + break;
1.1801 + case 8:
1.1802 + win=new(ELeave) TestWindow8();
1.1803 + break;
1.1804 + case 9:
1.1805 + win=new(ELeave) TestWindow9();
1.1806 + break;
1.1807 + case 10:
1.1808 + win=new(ELeave) TestWindow10();
1.1809 + break;
1.1810 + case 11:
1.1811 + win=new(ELeave) TestWindow11();
1.1812 + break;
1.1813 + case 12:
1.1814 + win=new(ELeave) TestWindow12();
1.1815 + break;
1.1816 + default:
1.1817 + User::Leave(KErrArgument);
1.1818 + }
1.1819 + TRAPD(err,win->ConstructL(*parent));
1.1820 + if (err!=KErrNone)
1.1821 + goto ctw_err;
1.1822 + win->AssignGC(aGc);
1.1823 + TRAP(err,win->SetExtL(pos,size));
1.1824 + if (err!=KErrNone)
1.1825 + {
1.1826 +ctw_err:
1.1827 + delete win;
1.1828 + User::Leave(err);
1.1829 + }
1.1830 + if (type!=2)
1.1831 + win->BaseWin()->EnableBackup();
1.1832 + win->BaseWin()->SetPointerCursor(0);
1.1833 + win->Activate();
1.1834 + return(win);
1.1835 + }
1.1836 +
1.1837 +TestClient::~TestClient()
1.1838 + {
1.1839 + delete iHandWriting;
1.1840 + }
1.1841 +
1.1842 +//
1.1843 +
1.1844 +// Define to include hand writing tests
1.1845 +#define TEST_HWR
1.1846 +void TestClient::ConstructL()
1.1847 + {
1.1848 + CTClient::ConstructL();
1.1849 + iGroup=new(ELeave) TestWindowGroup(this);
1.1850 + iGroup->ConstructL();
1.1851 +// CreateTestWindowL(1,TPoint(15,20),TSize(150,110),iGroup,*iGc);
1.1852 +// CreateTestWindowL(2,TPoint(100,100),TSize(200,90),iGroup,*iGc);
1.1853 +// CreateTestWindowL(3,TPoint(310,190),TSize(90,40),iGroup,*iGc);
1.1854 + CreateTestWindowL(4,TPoint(10,10),TSize(160,120),iGroup,*iGc);
1.1855 +// CreateTestWindowL(5,TPoint(300,14),TSize(260,140),iGroup,*iGc);
1.1856 +// CreateTestWindowL(6,TPoint(20,200),TSize(160,60),iGroup,*iGc);
1.1857 + iGroup->SetCurrentWindow(iGroup->Child());
1.1858 +#if defined(TEST_HWR)
1.1859 + iHandWriting=new(ELeave) CHandWriting(iWs);
1.1860 + TRAPD(err,iHandWriting->ConstructL(iScreen->SizeInPixels(),*iGroup->GroupWin(),ETrue)); //EFalse don't use seperate Mask bitmap.
1.1861 + if (err!=KErrNone)
1.1862 + delete iHandWriting;
1.1863 + else
1.1864 + TestWindow()->SetHandWriting(iHandWriting);
1.1865 +#endif
1.1866 + }
1.1867 +
1.1868 +void TestClient::AdjustLightSource(TInt aX,TInt aY)
1.1869 + {
1.1870 + TPoint vector=iWs.ShadowVector();
1.1871 + vector.iX+=aX;
1.1872 + vector.iY+=aY;
1.1873 + iWs.SetShadowVector(vector);
1.1874 + }
1.1875 +
1.1876 +void TestClient::Exit()
1.1877 + {
1.1878 + CActiveScheduler::Stop();
1.1879 + }
1.1880 +
1.1881 +//
1.1882 +// Special bit of test code to repeatedly launch and shoot a wserv //
1.1883 +//
1.1884 +
1.1885 +#define NT_KILLER
1.1886 +
1.1887 +TInt LaunchAndShootTestLoop(TAny *)
1.1888 + {
1.1889 +#if defined(NT_KILLER)
1.1890 + User::WaitForAnyRequest();
1.1891 +#else
1.1892 +
1.1893 + RWsSession ws;
1.1894 + ws.Connect();
1.1895 + TTimeIntervalMicroSeconds32 initialTime;
1.1896 + TTimeIntervalMicroSeconds32 time;
1.1897 + FOREVER
1.1898 + ws.GetKeyboardRepeatRate(initialTime, time);
1.1899 +#endif
1.1900 + return(KErrNone);
1.1901 + }
1.1902 +
1.1903 +#if defined(NT_KILLER)
1.1904 +TInt RunLaunchAndShootTest(TAny *)
1.1905 + {
1.1906 + RThread().SetPriority(EPriorityRealTime);
1.1907 + RThread thread;
1.1908 + thread.Create(_L("xx1"),LaunchAndShootTestLoop,KDefaultStackSize,NULL,
1.1909 + NULL,NULL,KTestThreadHeapSize,KTestThreadHeapSize,EOwnerThread);
1.1910 + thread.Resume();
1.1911 + thread.Kill(KErrNone);
1.1912 + thread.Close();
1.1913 + RThread thread2;
1.1914 + thread2.Create(_L("xx2"),LaunchAndShootTestLoop,KDefaultStackSize,NULL,
1.1915 + NULL,NULL,KTestThreadHeapSize,KTestThreadHeapSize,EOwnerThread);
1.1916 + thread2.Resume();
1.1917 + thread2.Kill(KErrNone);
1.1918 + thread2.Close();
1.1919 + return(KErrNone);
1.1920 + }
1.1921 +#else
1.1922 +TInt RunLaunchAndShootTest(TAny *)
1.1923 + {
1.1924 + RThread().SetPriority(EPriorityRealTime);
1.1925 + for(TInt count=0;count<100;count++)
1.1926 + {
1.1927 + RThread thread;
1.1928 + TBuf<KMaxFileName> threadName;
1.1929 + TInt num=0;
1.1930 + TInt err=KErrNone;
1.1931 + do
1.1932 + {
1.1933 + threadName.Format(_L("%S%02d"),&_L("Looper"),num++);
1.1934 + err=thread.Create(threadName,LaunchAndShootTestLoop,KDefaultStackSize,NULL,
1.1935 + NULL,NULL,KTestThreadHeapSize,KTestThreadHeapSize,EOwnerThread);
1.1936 + } while(err==KErrAlreadyExists);
1.1937 + if (err!=KErrNone)
1.1938 + return(KErrNone);
1.1939 + thread.Resume();
1.1940 + User::After(TTimeIntervalMicroSeconds32(50000));
1.1941 + thread.Kill(KErrNone);
1.1942 + thread.Close();
1.1943 + }
1.1944 + return(KErrNone);
1.1945 + }
1.1946 +#endif
1.1947 +
1.1948 +//
1.1949 +#define leavescan_needs_to_see_some_brackets_here { }
1.1950 +
1.1951 +GLDEF_C CTClient* CreateClientL()
1.1952 + {
1.1953 + return(new(ELeave) TestClient()); //Leavescan thinks this fn is user::After!
1.1954 + }
1.1955 +
1.1956 +GLDEF_C TInt E32Main()
1.1957 + {
1.1958 + return(TestLibStartUp(CreateClientL));
1.1959 + }