os/graphics/windowing/windowserver/test/tman/TMPNTKEY.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 <hal.h>
sl@0
    20
#include "W32STD.H"
sl@0
    21
#include "../tlib/testbase.h"
sl@0
    22
#include "TMAN.H"
sl@0
    23
sl@0
    24
const TInt ENumPntKeyTests=6;
sl@0
    25
const TUint EModifierMask=EModifierCtrl|EModifierShift|EModifierFunc;
sl@0
    26
sl@0
    27
class CTPntKeyTest;
sl@0
    28
sl@0
    29
class CTPntKeyWindow : public CTWin
sl@0
    30
	{
sl@0
    31
private:
sl@0
    32
	enum {KPointerMoveBufferSize=32};
sl@0
    33
public:
sl@0
    34
	CTPntKeyWindow(CTPntKeyTest *aTest);
sl@0
    35
	~CTPntKeyWindow();
sl@0
    36
	void SetUpLD(TPoint pos,TSize size,CTWinBase *parent);
sl@0
    37
	void PointerL(const TPointerEvent &pointer,const TTime &aTime);
sl@0
    38
	void KeyUpL(const TKeyEvent &aKey,const TTime &);
sl@0
    39
	void KeyDownL(const TKeyEvent &aKey,const TTime &);
sl@0
    40
	void WinKeyL(const TKeyEvent &aKey,const TTime &);
sl@0
    41
	void SwitchOn(const TTime &aTime);
sl@0
    42
	void SetState(TInt iState);
sl@0
    43
	void NextKey();
sl@0
    44
	void Test(TInt aCheck);
sl@0
    45
	void Error();
sl@0
    46
	void DrawButton(const TRect &aRect, const TDesC &aText);
sl@0
    47
	void Draw();
sl@0
    48
private:
sl@0
    49
	CTPntKeyTest *iTest;
sl@0
    50
	TInt iKeyCount;
sl@0
    51
	TRect iKey1;
sl@0
    52
	TRect iKey2;
sl@0
    53
	TRect iKey3;
sl@0
    54
	static TInt iTestScanCodes[ENumPntKeyTests];
sl@0
    55
	static TUint iTestCodes[ENumPntKeyTests];
sl@0
    56
	static TUint iTestModifiers[ENumPntKeyTests];
sl@0
    57
	};
sl@0
    58
sl@0
    59
class CTPntKeyTest : public CTestBase
sl@0
    60
	{
sl@0
    61
public:
sl@0
    62
	CTPntKeyTest();
sl@0
    63
	~CTPntKeyTest();
sl@0
    64
	TestState DoTestL();
sl@0
    65
	void FinishedTests();
sl@0
    66
	void ConstructL();
sl@0
    67
	void Failed();
sl@0
    68
	inline TBool NoDigitiser() const {return iNoDigitiser;}
sl@0
    69
private:
sl@0
    70
	CTPntKeyWindow *iWin;
sl@0
    71
	TSize iWinSize;
sl@0
    72
	TInt iState;
sl@0
    73
	TBool iFailed;
sl@0
    74
	TBool iOldPointerState;
sl@0
    75
	TBool iNoDigitiser;
sl@0
    76
	};
sl@0
    77
sl@0
    78
TInt CTPntKeyWindow::iTestScanCodes[ENumPntKeyTests]={'A','B',0,'C',EStdKeyEnter,'Y'};
sl@0
    79
TUint CTPntKeyWindow::iTestCodes[ENumPntKeyTests]={'a','B',0,'c',EKeyEnter,'y'};
sl@0
    80
TUint CTPntKeyWindow::iTestModifiers[ENumPntKeyTests]={0,EModifierShift,0,0,0,0};
sl@0
    81
sl@0
    82
GLDEF_C CTestBase *CreatePointerKeyTest()
sl@0
    83
	{
sl@0
    84
	return(new(ELeave) CTPntKeyTest());
sl@0
    85
	}
sl@0
    86
sl@0
    87
CTPntKeyWindow::CTPntKeyWindow(CTPntKeyTest *aTest) : iTest(aTest)
sl@0
    88
	{}
sl@0
    89
sl@0
    90
CTPntKeyWindow::~CTPntKeyWindow()
sl@0
    91
	{
sl@0
    92
	}
sl@0
    93
sl@0
    94
void CTPntKeyWindow::SetUpLD(TPoint pos,TSize size,CTWinBase *parent)
sl@0
    95
	{
sl@0
    96
	ConstructExtLD(*parent,pos,size);
sl@0
    97
	iWin.SetPointerGrab(ETrue);
sl@0
    98
	iKey1=TRect(size.iWidth*1/16,size.iHeight/2,size.iWidth*5/16,size.iHeight);
sl@0
    99
	iKey2=TRect(size.iWidth*6/16,size.iHeight/2,size.iWidth*10/16,size.iHeight);
sl@0
   100
	iKey3=TRect(size.iWidth*11/16,size.iHeight/2,size.iWidth*15/16,size.iHeight);
sl@0
   101
	iWin.AddKeyRect(iKey1,'A',EFalse);
sl@0
   102
	iWin.AddKeyRect(iKey2,'B',EFalse);
sl@0
   103
	AssignGC(*Client()->iGc);
sl@0
   104
	BaseWin()->EnableOnEvents();
sl@0
   105
	Activate();
sl@0
   106
	}
sl@0
   107
sl@0
   108
void CTPntKeyWindow::Error()
sl@0
   109
	{
sl@0
   110
	iTest->Failed();
sl@0
   111
	}
sl@0
   112
sl@0
   113
void CTPntKeyWindow::SetState(TInt iState)
sl@0
   114
	{
sl@0
   115
	iKeyCount=iState-1;
sl@0
   116
	NextKey();
sl@0
   117
	iTest->Client()->Flush();
sl@0
   118
	}
sl@0
   119
sl@0
   120
void CTPntKeyWindow::NextKey()
sl@0
   121
	{
sl@0
   122
	if (++iKeyCount==ENumPntKeyTests || iKeyCount>4)
sl@0
   123
		iTest->FinishedTests();
sl@0
   124
	else
sl@0
   125
		{
sl@0
   126
		if (iKeyCount==2)
sl@0
   127
			iWin.RemoveAllKeyRects();
sl@0
   128
		else if (iKeyCount==3)
sl@0
   129
			iWin.AddKeyRect(iKey3,'C',EFalse);
sl@0
   130
		else if (iKeyCount==4)
sl@0
   131
			{
sl@0
   132
	#if !defined(__WINS__)
sl@0
   133
			if (iTest->NoDigitiser())
sl@0
   134
				iTest->FinishedTests();
sl@0
   135
	#endif
sl@0
   136
			iWin.RemoveAllKeyRects();
sl@0
   137
			iWin.AddKeyRect(TRect(Client()->iScreen->SizeInPixels()),'Z',EFalse);
sl@0
   138
			}
sl@0
   139
		else if (iKeyCount==5)
sl@0
   140
			{
sl@0
   141
			iWin.RemoveAllKeyRects();
sl@0
   142
			Client()->iWs.Flush();
sl@0
   143
			User::After(500000);	// Wait half a second
sl@0
   144
			iWin.AddKeyRect(TRect(Client()->iScreen->SizeInPixels()),'Y',ETrue);
sl@0
   145
			}
sl@0
   146
		Invalidate();
sl@0
   147
		}
sl@0
   148
	}
sl@0
   149
sl@0
   150
void CTPntKeyWindow::Test(TInt aCheck)
sl@0
   151
	{
sl@0
   152
	if (!aCheck)
sl@0
   153
		Error();
sl@0
   154
	}
sl@0
   155
sl@0
   156
void CTPntKeyWindow::KeyUpL(const TKeyEvent &aKey,const TTime&)
sl@0
   157
	{
sl@0
   158
	if (aKey.iScanCode==iTestScanCodes[iKeyCount])
sl@0
   159
		NextKey();
sl@0
   160
	}
sl@0
   161
sl@0
   162
void CTPntKeyWindow::KeyDownL(const TKeyEvent &aKey,const TTime &)
sl@0
   163
	{
sl@0
   164
	if (aKey.iScanCode!=EStdKeyLeftFunc && aKey.iScanCode!=EStdKeyRightFunc && 
sl@0
   165
		 aKey.iScanCode!=EStdKeyLeftAlt && aKey.iScanCode!=EStdKeyRightAlt &&
sl@0
   166
		 aKey.iScanCode!=EStdKeyLeftCtrl && aKey.iScanCode!=EStdKeyRightCtrl &&
sl@0
   167
		 aKey.iScanCode!=EStdKeyLeftShift && aKey.iScanCode!=EStdKeyRightShift && 
sl@0
   168
		 aKey.iScanCode!=EStdKeyOff &&
sl@0
   169
		 aKey.iScanCode!=EStdKeyEscape)
sl@0
   170
		Test(aKey.iScanCode==iTestScanCodes[iKeyCount]);
sl@0
   171
	}
sl@0
   172
sl@0
   173
void CTPntKeyWindow::WinKeyL(const TKeyEvent &aKey,const TTime &)
sl@0
   174
	{
sl@0
   175
	if (aKey.iCode==EKeyEscape)
sl@0
   176
		iTest->FinishedTests();
sl@0
   177
	else
sl@0
   178
		{
sl@0
   179
		Test(aKey.iScanCode==iTestScanCodes[iKeyCount]);
sl@0
   180
		Test(aKey.iCode==iTestCodes[iKeyCount]);
sl@0
   181
		Test((aKey.iModifiers&EModifierMask)==(iTestModifiers[iKeyCount]&EModifierMask));
sl@0
   182
		}
sl@0
   183
	}
sl@0
   184
sl@0
   185
void CTPntKeyWindow::SwitchOn(const TTime &)
sl@0
   186
	{
sl@0
   187
	if (iKeyCount==4)
sl@0
   188
		NextKey();
sl@0
   189
	else if (iKeyCount!=5)
sl@0
   190
		Error();
sl@0
   191
	}
sl@0
   192
sl@0
   193
void CTPntKeyWindow::PointerL(const TPointerEvent &aPointer,const TTime &)
sl@0
   194
	{
sl@0
   195
	if (aPointer.iType==TPointerEvent::EButton1Down)
sl@0
   196
		{
sl@0
   197
		if (iKeyCount!=2)
sl@0
   198
			Error();
sl@0
   199
		else
sl@0
   200
			NextKey();
sl@0
   201
		}
sl@0
   202
	}
sl@0
   203
sl@0
   204
void CTPntKeyWindow::DrawButton(const TRect &aRect, const TDesC &aText)
sl@0
   205
	{
sl@0
   206
	iGc->DrawRect(aRect);
sl@0
   207
	iGc->DrawText(aText, TPoint((aRect.iBr.iX+aRect.iTl.iX)/2,(aRect.iBr.iY+aRect.iTl.iY)/2));
sl@0
   208
	}
sl@0
   209
sl@0
   210
void CTPntKeyWindow::Draw()
sl@0
   211
	{
sl@0
   212
	iGc->SetBrushColor(TRgb::Gray4(0));
sl@0
   213
	iGc->SetPenColor(TRgb::Gray4(3));
sl@0
   214
	iGc->Clear();
sl@0
   215
	DrawButton(iKey1,_L("A"));
sl@0
   216
	DrawButton(iKey2,_L("B"));
sl@0
   217
	DrawButton(iKey3,_L("C"));
sl@0
   218
	switch(iKeyCount)
sl@0
   219
		{
sl@0
   220
		case 0:
sl@0
   221
			iGc->DrawText(_L("Click on 'A'"), TPoint(10,20));
sl@0
   222
			break;
sl@0
   223
		case 1:
sl@0
   224
			iGc->DrawText(_L("Shift-Click on 'B'"), TPoint(10,20));
sl@0
   225
			break;
sl@0
   226
		case 2:
sl@0
   227
			iGc->DrawText(_L("Click anywhere in this window"), TPoint(10,20));
sl@0
   228
			break;
sl@0
   229
		case 3:
sl@0
   230
			iGc->DrawText(_L("Click on 'C'"), TPoint(10,20));
sl@0
   231
			break;
sl@0
   232
		case 4:
sl@0
   233
#if defined(__WINS__)	// Can't emulate touching dig when switched off under WINS
sl@0
   234
			iGc->DrawText(_L("Switch off and on (or press Enter)"), TPoint(10,20));
sl@0
   235
#else
sl@0
   236
			iGc->DrawText(_L("1st Switch off, then touch the screen to switch on"), TPoint(10,20));
sl@0
   237
#endif
sl@0
   238
			break;
sl@0
   239
		case 5:
sl@0
   240
#if defined(__WINS__)	// Can't emulate touching dig when switched off under WINS
sl@0
   241
			iGc->DrawText(_L("Touch anywhere in the window"), TPoint(10,20));
sl@0
   242
#else
sl@0
   243
			iGc->DrawText(_L("2nd Switch off and touch the screen to switch on"), TPoint(10,20));
sl@0
   244
#endif
sl@0
   245
			break;
sl@0
   246
		}
sl@0
   247
	}
sl@0
   248
sl@0
   249
CTPntKeyTest::CTPntKeyTest() : CTestBase(_L("Pointer Key Test"))
sl@0
   250
	{}
sl@0
   251
sl@0
   252
CTPntKeyTest::~CTPntKeyTest()
sl@0
   253
	{
sl@0
   254
	HAL::Set(HALData::EPenDisplayOn,iOldPointerState);
sl@0
   255
	CTWin::Delete(iWin);
sl@0
   256
	Client()->ResetFocus();
sl@0
   257
	}
sl@0
   258
sl@0
   259
void CTPntKeyTest::Failed()
sl@0
   260
	{
sl@0
   261
	if (!iFailed)
sl@0
   262
		{
sl@0
   263
		iFailed=ETrue;
sl@0
   264
		FinishedTests();
sl@0
   265
		}
sl@0
   266
	}
sl@0
   267
sl@0
   268
void CTPntKeyTest::FinishedTests()
sl@0
   269
	{
sl@0
   270
	Request();
sl@0
   271
	}
sl@0
   272
sl@0
   273
void CTPntKeyTest::ConstructL()
sl@0
   274
	{
sl@0
   275
	CTPntKeyWindow *win=new(ELeave) CTPntKeyWindow(this);
sl@0
   276
	win->SetUpLD(TPoint(20,20),Client()->iScreen->SizeInPixels()-TSize(40,40),Client()->iGroup);
sl@0
   277
	iWin=win;
sl@0
   278
	Client()->iGroup->SetCurrentWindow(iWin);
sl@0
   279
	iNoDigitiser=EFalse;
sl@0
   280
	TInt err=HAL::Get(HALData::EPenDisplayOn,iOldPointerState);
sl@0
   281
	if (err==KErrNotSupported)
sl@0
   282
		iNoDigitiser=ETrue;
sl@0
   283
	else if (err==KErrNone)
sl@0
   284
		err=HAL::Set(HALData::EPenDisplayOn,ETrue);
sl@0
   285
	if (err==KErrNotSupported)
sl@0
   286
		iNoDigitiser=(!iOldPointerState);
sl@0
   287
	else
sl@0
   288
		TestL(err==KErrNone);
sl@0
   289
	}
sl@0
   290
sl@0
   291
TestState CTPntKeyTest::DoTestL()
sl@0
   292
	{
sl@0
   293
	TestL(!iFailed);
sl@0
   294
	switch(iState)
sl@0
   295
		{
sl@0
   296
		case 0:
sl@0
   297
			LogSubTest(_L("Key set 1"),1);
sl@0
   298
			iWin->SetState(4);
sl@0
   299
			iState++;
sl@0
   300
			return(EContinue);
sl@0
   301
		default:
sl@0
   302
			return(EFinished);
sl@0
   303
		}
sl@0
   304
//	return(ENext);
sl@0
   305
	}