os/graphics/windowing/windowserver/test/tman/TMPNTBUF.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Test Pointer move/drag buffer
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32std.h>
sl@0
    19
#include "W32STD.H"
sl@0
    20
#include "../tlib/testbase.h"
sl@0
    21
#include "TMAN.H"
sl@0
    22
sl@0
    23
class CTPntBufTest;
sl@0
    24
sl@0
    25
class CPntBufWindow : public CTBackedUpWin
sl@0
    26
	{
sl@0
    27
private:
sl@0
    28
	enum {KPointerMoveBufferSize=32};
sl@0
    29
public:
sl@0
    30
	CPntBufWindow(CTPntBufTest *aTest);
sl@0
    31
	~CPntBufWindow();
sl@0
    32
	void SetUpLD(TPoint pos,TSize size,CTWinBase *parent);
sl@0
    33
	void PointerBufferReady(const TTime &aTime);
sl@0
    34
	void PointerL(const TPointerEvent &pointer,const TTime &aTime);
sl@0
    35
	void SetUpState();
sl@0
    36
	void NextTest();
sl@0
    37
	void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
sl@0
    38
	void ErrorL();
sl@0
    39
private:
sl@0
    40
	//Virtual functions from CTWinBase
sl@0
    41
	void PointerEnter(const TTime&);
sl@0
    42
	void PointerExit(const TTime&);
sl@0
    43
private:
sl@0
    44
	CTPntBufTest *iTest;
sl@0
    45
	TBool iDragging;
sl@0
    46
	TBool iErrorNest;
sl@0
    47
	TBool iDisabled;
sl@0
    48
	TBool iDiscard;
sl@0
    49
	TInt iMode;
sl@0
    50
	TBool iIgnorNextPoint;
sl@0
    51
	};
sl@0
    52
sl@0
    53
class CTPntBufTest : public CTestBase
sl@0
    54
	{
sl@0
    55
public:
sl@0
    56
	CTPntBufTest();
sl@0
    57
	~CTPntBufTest();
sl@0
    58
	TestState DoTestL();
sl@0
    59
	void FinishedTests();
sl@0
    60
	void ConstructL();
sl@0
    61
private:
sl@0
    62
	CPntBufWindow *iWin;
sl@0
    63
	TSize iWinSize;
sl@0
    64
	TInt iState;
sl@0
    65
	};
sl@0
    66
sl@0
    67
GLDEF_C CTestBase *CreatePointerBufferTest()
sl@0
    68
	{
sl@0
    69
	return(new(ELeave) CTPntBufTest());
sl@0
    70
	}
sl@0
    71
sl@0
    72
CPntBufWindow::CPntBufWindow(CTPntBufTest *aTest) : CTBackedUpWin(EGray4), iTest(aTest)
sl@0
    73
	{}
sl@0
    74
sl@0
    75
CPntBufWindow::~CPntBufWindow()
sl@0
    76
	{
sl@0
    77
	delete iGc;
sl@0
    78
	}
sl@0
    79
sl@0
    80
void CPntBufWindow::SetUpLD(TPoint pos,TSize size,CTWinBase *parent)
sl@0
    81
	{
sl@0
    82
	ConstructExtLD(*parent,pos,size);
sl@0
    83
	User::LeaveIfError(iWin.AllocPointerMoveBuffer(KPointerMoveBufferSize,0));
sl@0
    84
	iWin.SetPointerGrab(ETrue);
sl@0
    85
	iWin.PointerFilter(EPointerFilterEnterExit,0);
sl@0
    86
	Activate();
sl@0
    87
	User::LeaveIfError(Client()->iScreen->CreateContext(iGc));
sl@0
    88
	iGc->Activate(iWin);
sl@0
    89
	SetUpState();
sl@0
    90
	}
sl@0
    91
sl@0
    92
void CPntBufWindow::PointerBufferReady(const TTime &)
sl@0
    93
	{
sl@0
    94
	if (iDiscard)
sl@0
    95
		iWin.DiscardPointerMoveBuffer();
sl@0
    96
	iGc->SetPenColor(iDragging ? TRgb::Gray4(0) : TRgb::Gray4(1));
sl@0
    97
	iGc->SetPenSize(iDragging ? TSize(2,2) : TSize(1,1));
sl@0
    98
	TPoint pnts[KPointerMoveBufferSize];
sl@0
    99
	TPtr8 ptr((TUint8 *)&pnts,sizeof(pnts));
sl@0
   100
	TInt numPnts=iWin.RetrievePointerMoveBuffer(ptr);
sl@0
   101
	TInt index=0;
sl@0
   102
	if (iIgnorNextPoint)
sl@0
   103
		{
sl@0
   104
		iGc->MoveTo(pnts[index]);
sl@0
   105
		index=1;
sl@0
   106
		iIgnorNextPoint=EFalse;
sl@0
   107
		}
sl@0
   108
	for(;index<numPnts;index++)
sl@0
   109
		iGc->DrawLineTo(pnts[index]);
sl@0
   110
	}
sl@0
   111
sl@0
   112
void CPntBufWindow::ErrorL()
sl@0
   113
	{
sl@0
   114
	if (!iErrorNest)
sl@0
   115
		{
sl@0
   116
		iErrorNest=ETrue;
sl@0
   117
		iTest->TestL(EFalse);
sl@0
   118
		}
sl@0
   119
	}
sl@0
   120
sl@0
   121
void CPntBufWindow::PointerL(const TPointerEvent &pointer,const TTime &)
sl@0
   122
	{
sl@0
   123
	switch(pointer.iType)
sl@0
   124
		{
sl@0
   125
		case TPointerEvent::EButton1Down:
sl@0
   126
			iDragging=ETrue;
sl@0
   127
			iGc->MoveTo(pointer.iPosition);
sl@0
   128
			if (iMode==2)
sl@0
   129
				{
sl@0
   130
				if (pointer.iModifiers&EModifierShift)
sl@0
   131
					{
sl@0
   132
					iDisabled=ETrue;
sl@0
   133
					iWin.DisablePointerMoveBuffer();
sl@0
   134
					}
sl@0
   135
				else if (pointer.iModifiers&EModifierCtrl)
sl@0
   136
					iDiscard=ETrue;
sl@0
   137
				}
sl@0
   138
			break;
sl@0
   139
		case TPointerEvent::EButton1Up:
sl@0
   140
			if (iDisabled)
sl@0
   141
				{
sl@0
   142
				iDisabled=EFalse;
sl@0
   143
				iWin.EnablePointerMoveBuffer();
sl@0
   144
				}
sl@0
   145
			iDiscard=EFalse;
sl@0
   146
			iGc->MoveTo(pointer.iPosition);
sl@0
   147
			iDragging=EFalse;
sl@0
   148
			break;
sl@0
   149
		case TPointerEvent::EDrag:
sl@0
   150
			if (iDragging && !iDisabled)
sl@0
   151
				ErrorL();
sl@0
   152
			break;
sl@0
   153
		case TPointerEvent::EMove:
sl@0
   154
			if (iDragging && !iDisabled)
sl@0
   155
				ErrorL();
sl@0
   156
			break;
sl@0
   157
		default:;
sl@0
   158
		}
sl@0
   159
	}
sl@0
   160
sl@0
   161
void CPntBufWindow::SetUpState()
sl@0
   162
	{
sl@0
   163
sl@0
   164
	iGc->Reset();
sl@0
   165
	iGc->UseFont((CFont *)iFont);
sl@0
   166
	iGc->Clear();
sl@0
   167
	switch(iMode)
sl@0
   168
		{
sl@0
   169
		case 0:
sl@0
   170
			iWin.PointerFilter(EPointerFilterMove,EPointerFilterMove);
sl@0
   171
			iGc->DrawText(_L("Drag the pointer around the window and check"), TPoint(10,20));
sl@0
   172
			iGc->DrawText(_L("a line is drawn following the pointer when"), TPoint(10,40));
sl@0
   173
			iGc->DrawText(_L("dragging but not when moving"), TPoint(10,60));
sl@0
   174
			iGc->DrawText(_L("Press <Space> when checked"), TPoint(10,90));
sl@0
   175
			break;
sl@0
   176
		case 1:
sl@0
   177
			iWin.PointerFilter(EPointerFilterMove|EPointerFilterDrag,EPointerFilterDrag);
sl@0
   178
			iGc->DrawText(_L("If pointer moves are supported move the pointer around the "), TPoint(10,20));
sl@0
   179
			iGc->DrawText(_L("window and check a line is drawn following the pointer"), TPoint(10,40));
sl@0
   180
			iGc->DrawText(_L("when it is up, and no lines are drawn when dragging"), TPoint(10,60));
sl@0
   181
			iGc->DrawText(_L("Press <Esc> if moves not supported or <Space> when checked"), TPoint(10,90));
sl@0
   182
			break;
sl@0
   183
		case 2:
sl@0
   184
			iWin.PointerFilter(EPointerFilterMove|EPointerFilterDrag,0);
sl@0
   185
			iGc->DrawText(_L("Drag and move the pointer around the window and check a"), TPoint(10,20));
sl@0
   186
			iGc->DrawText(_L("line is drawn following the pointer during both dragging and"), TPoint(10,40));
sl@0
   187
			iGc->DrawText(_L("moving, also check drag with the shift or control key down doesn't draw"), TPoint(10,60));
sl@0
   188
			iGc->DrawText(_L("Press <Space> when checked"), TPoint(10,90));
sl@0
   189
			break;
sl@0
   190
		}
sl@0
   191
	}
sl@0
   192
sl@0
   193
void CPntBufWindow::NextTest()
sl@0
   194
	{
sl@0
   195
	if (iMode++==2)
sl@0
   196
		iTest->FinishedTests();
sl@0
   197
	else
sl@0
   198
		SetUpState();
sl@0
   199
	}
sl@0
   200
sl@0
   201
void CPntBufWindow::WinKeyL(const TKeyEvent &aKey,const TTime &)
sl@0
   202
	{
sl@0
   203
	switch(aKey.iCode)
sl@0
   204
		{
sl@0
   205
		case ' ':
sl@0
   206
			NextTest();
sl@0
   207
			break;
sl@0
   208
		case EKeyEscape:
sl@0
   209
			iTest->FinishedTests();
sl@0
   210
			break;
sl@0
   211
		case '0':
sl@0
   212
			SetUpState();
sl@0
   213
			break;
sl@0
   214
		case '1':
sl@0
   215
		case '2':
sl@0
   216
		case '3':
sl@0
   217
			{
sl@0
   218
			TInt mode=aKey.iCode-'1';
sl@0
   219
			if (mode!=iMode)
sl@0
   220
				{
sl@0
   221
				iMode=mode;
sl@0
   222
				SetUpState();
sl@0
   223
				}
sl@0
   224
			}
sl@0
   225
			break;
sl@0
   226
		}
sl@0
   227
	}
sl@0
   228
sl@0
   229
void CPntBufWindow::PointerEnter(const TTime&)
sl@0
   230
	{
sl@0
   231
	if (iMode==0)
sl@0
   232
		iDragging=ETrue;
sl@0
   233
	else if (iMode==1)
sl@0
   234
		iDragging=EFalse;
sl@0
   235
	iIgnorNextPoint=ETrue;
sl@0
   236
	}
sl@0
   237
sl@0
   238
void CPntBufWindow::PointerExit(const TTime&)
sl@0
   239
	{}
sl@0
   240
sl@0
   241
sl@0
   242
/*CTPntBufTest*/
sl@0
   243
sl@0
   244
CTPntBufTest::CTPntBufTest() : CTestBase(_L("Scale"))
sl@0
   245
	{}
sl@0
   246
sl@0
   247
CTPntBufTest::~CTPntBufTest()
sl@0
   248
	{
sl@0
   249
#if defined(__WINS__)
sl@0
   250
	Client()->iWs.SimulateXyInputType(EXYInputPointer);
sl@0
   251
#endif
sl@0
   252
	CTWin::Delete(iWin);
sl@0
   253
	}
sl@0
   254
sl@0
   255
void CTPntBufTest::FinishedTests()
sl@0
   256
	{
sl@0
   257
	Request();
sl@0
   258
	}
sl@0
   259
sl@0
   260
void CTPntBufTest::ConstructL()
sl@0
   261
	{
sl@0
   262
	CPntBufWindow *win=new(ELeave) CPntBufWindow(this);
sl@0
   263
	win->SetUpLD(TPoint(0,0),Client()->iScreen->SizeInPixels(),Client()->iGroup);
sl@0
   264
	iWin=win;
sl@0
   265
	Client()->iGroup->SetCurrentWindow(iWin);
sl@0
   266
#if defined(__WINS__)
sl@0
   267
	Client()->iWs.SimulateXyInputType(EXYInputMouse);
sl@0
   268
#endif
sl@0
   269
	}
sl@0
   270
sl@0
   271
TestState CTPntBufTest::DoTestL()
sl@0
   272
	{
sl@0
   273
	switch(iState)
sl@0
   274
		{
sl@0
   275
		case 0:
sl@0
   276
			LogSubTest(_L("Scale 1"),1);
sl@0
   277
			iState++;
sl@0
   278
			return(EContinue);
sl@0
   279
		default:
sl@0
   280
			return(EFinished);
sl@0
   281
		}
sl@0
   282
//	return(ENext);
sl@0
   283
	}