os/graphics/windowing/windowserver/test/tman/HOTKEY2.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) 1995-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 capture key
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32std.h>
sl@0
    19
#include <e32svr.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
enum THotKeyRetValues
sl@0
    25
	{
sl@0
    26
	EHotKeyOkay,
sl@0
    27
	EHotKeyRetry,
sl@0
    28
	EHotKeyFail,
sl@0
    29
	};
sl@0
    30
sl@0
    31
struct SHotKeyParams
sl@0
    32
	{
sl@0
    33
	THotKey hotKey;
sl@0
    34
	TUint keyCode;
sl@0
    35
	TUint mod_mask;
sl@0
    36
	TUint modifiers;
sl@0
    37
	};
sl@0
    38
sl@0
    39
struct SHotKeyTestParams
sl@0
    40
	{
sl@0
    41
	TText *txt;			// Text message telling user what to do
sl@0
    42
	};
sl@0
    43
sl@0
    44
LOCAL_D SHotKeyParams HotKeys[]={
sl@0
    45
	{EHotKeyEnableLogging,'e',EModifierFunc|EModifierCtrl|EModifierShift,0},
sl@0
    46
	{EHotKeyDisableLogging,'d',EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc},
sl@0
    47
	{EHotKeyOfDeath,'q',0},
sl@0
    48
	{EHotKeyOfDeath,'w',0},
sl@0
    49
	};
sl@0
    50
	
sl@0
    51
LOCAL_D SHotKeyTestParams HotKeyTests[]={
sl@0
    52
	{(TText *)_S("Use \"e\" to enable logging")},
sl@0
    53
	{(TText *)_S("Use \"<Alt>d\" to disable logging")},
sl@0
    54
	{(TText *)_S("Use \"q\" to kill the foreground app")},
sl@0
    55
	{(TText *)_S("Use \"w\" to kill the foreground app")},
sl@0
    56
	{(TText *)_S("Use \"<Cntrl><Alt><Shift>K\" to kill the foreground app")},
sl@0
    57
	};
sl@0
    58
sl@0
    59
LOCAL_D TBool HotKeyTestIsDeathTest[]={EFalse, EFalse, ETrue, ETrue, ETrue};
sl@0
    60
sl@0
    61
struct SErrorHotKey
sl@0
    62
	{
sl@0
    63
	THotKey hotKey;
sl@0
    64
	TUint keyCode;
sl@0
    65
	TUint mod_mask;
sl@0
    66
	TUint modifiers;
sl@0
    67
	};
sl@0
    68
sl@0
    69
LOCAL_D SErrorHotKey errorKeys[]={
sl@0
    70
	{EHotKeyEnableLogging,'a',EModifierFunc|EModifierShift,EModifierFunc|EModifierCtrl},
sl@0
    71
	{EHotKeyDisableLogging,'1',0,EModifierFunc},
sl@0
    72
	{EHotKeyEnableLogging,3,EModifierCtrl,EModifierCtrl|EModifierShift},
sl@0
    73
	{EHotKeyDisableLogging,'a',EModifierFunc|EModifierShift,EModifierFunc|EModifierCtrl},
sl@0
    74
	{(THotKey)100,'1',0,EModifierFunc},
sl@0
    75
	{(THotKey)200, 3,EModifierCtrl,EModifierCtrl|EModifierShift},
sl@0
    76
	};
sl@0
    77
sl@0
    78
const TInt numHotKeys=sizeof(HotKeys)/sizeof(HotKeys[0]);
sl@0
    79
const TInt numHotKeyTests=sizeof(HotKeyTests)/sizeof(HotKeyTests[0]);
sl@0
    80
const TInt numErrorKeys=sizeof(errorKeys)/sizeof(errorKeys[0]);
sl@0
    81
sl@0
    82
class SHKWindow;
sl@0
    83
class THotKeyTest;
sl@0
    84
class SHKConnection;
sl@0
    85
sl@0
    86
class SHKDeath : public CActive
sl@0
    87
	{
sl@0
    88
public:
sl@0
    89
	SHKDeath(TInt aPriority);
sl@0
    90
	void SetConnection(SHKConnection *aConn);
sl@0
    91
	virtual void DoCancel();
sl@0
    92
	virtual void RunL();
sl@0
    93
	void Request();
sl@0
    94
private:
sl@0
    95
	SHKConnection *iConn;
sl@0
    96
	};
sl@0
    97
sl@0
    98
class SHKWindowGroup : public CTWindowGroup
sl@0
    99
	{
sl@0
   100
public:
sl@0
   101
	SHKWindowGroup(CTClient *aClient);
sl@0
   102
	void KeyL(const TKeyEvent &aKey,const TTime &aTime);
sl@0
   103
	};
sl@0
   104
sl@0
   105
class SHKConnection : public CTClient
sl@0
   106
	{
sl@0
   107
public:
sl@0
   108
	SHKConnection(THotKeyTest *aTest, TInt aMode);
sl@0
   109
	~SHKConnection();
sl@0
   110
	void ConstructL();
sl@0
   111
	void KeyL(const TKeyEvent &aKey);
sl@0
   112
	void SubStateChangedL();
sl@0
   113
	void CompleteL();
sl@0
   114
protected:
sl@0
   115
	TInt iMode;
sl@0
   116
	SHKDeath iDeath;
sl@0
   117
	THotKeyTest *iTest;
sl@0
   118
	CTWin *iWin;
sl@0
   119
	static TInt iMainWinId;
sl@0
   120
	};
sl@0
   121
sl@0
   122
class SHKWindow : public CTWin
sl@0
   123
	{
sl@0
   124
public:
sl@0
   125
	SHKWindow(THotKeyTest *aTest);
sl@0
   126
	void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
sl@0
   127
	void Draw();
sl@0
   128
protected:
sl@0
   129
	THotKeyTest *iTest;
sl@0
   130
	TRgb iBack;
sl@0
   131
	};
sl@0
   132
sl@0
   133
class SHKWindow2 : public CTWin
sl@0
   134
	{
sl@0
   135
public:
sl@0
   136
	SHKWindow2();
sl@0
   137
	void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
sl@0
   138
	void Draw();
sl@0
   139
	};
sl@0
   140
sl@0
   141
class THotKeyTest : public CTestBase
sl@0
   142
	{
sl@0
   143
public:
sl@0
   144
	THotKeyTest();
sl@0
   145
	~THotKeyTest();
sl@0
   146
	TestState DoTestL();
sl@0
   147
	void ConstructL();
sl@0
   148
	void EndCaptureKeyTest();
sl@0
   149
	TInt SubState() const;
sl@0
   150
	void IncSubStateL();
sl@0
   151
	void BadParamsL();
sl@0
   152
private:
sl@0
   153
	SHKConnection *iConn1;
sl@0
   154
	TSize iWinSize;
sl@0
   155
	TInt iState;
sl@0
   156
	TInt iSubState;
sl@0
   157
	TBool iIsInActiveScheduler;
sl@0
   158
	};
sl@0
   159
sl@0
   160
TInt SHKConnection::iMainWinId;
sl@0
   161
sl@0
   162
TInt SubThread(TAny *);
sl@0
   163
sl@0
   164
GLDEF_C CTestBase *CreateHotKeyTest()
sl@0
   165
	{
sl@0
   166
	return(new(ELeave) THotKeyTest());
sl@0
   167
	}
sl@0
   168
sl@0
   169
THotKeyTest::THotKeyTest() : CTestBase(_L("Hot Key"))
sl@0
   170
	{}
sl@0
   171
sl@0
   172
THotKeyTest::~THotKeyTest()
sl@0
   173
	{
sl@0
   174
	User::SetJustInTime(ETrue);
sl@0
   175
	for(TInt index=0;index<numHotKeys;index++)
sl@0
   176
		{
sl@0
   177
		Client()->iWs.ClearHotKeys(HotKeys[index].hotKey);
sl@0
   178
		Client()->iWs.RestoreDefaultHotKey(HotKeys[index].hotKey);
sl@0
   179
		}
sl@0
   180
	delete iConn1;
sl@0
   181
	if (iIsInActiveScheduler)
sl@0
   182
		CActiveScheduler::Stop();
sl@0
   183
	}
sl@0
   184
sl@0
   185
void THotKeyTest::EndCaptureKeyTest()
sl@0
   186
	{
sl@0
   187
	Request();
sl@0
   188
	}
sl@0
   189
sl@0
   190
void THotKeyTest::ConstructL()
sl@0
   191
	{
sl@0
   192
	iConn1=new(ELeave) SHKConnection(this, EFalse);
sl@0
   193
	iConn1->ConstructL();
sl@0
   194
	for(TInt index=0;index<numHotKeys;index++)
sl@0
   195
		User::LeaveIfError(Client()->iWs.SetHotKey(HotKeys[index].hotKey, HotKeys[index].keyCode,HotKeys[index].mod_mask,HotKeys[index].modifiers));
sl@0
   196
	User::SetJustInTime(EFalse);
sl@0
   197
	}
sl@0
   198
sl@0
   199
//
sl@0
   200
// SHKDeath //
sl@0
   201
//
sl@0
   202
sl@0
   203
SHKDeath::SHKDeath(TInt aPriority) : CActive(aPriority)
sl@0
   204
	{
sl@0
   205
	CActiveScheduler::Add(this);
sl@0
   206
	}
sl@0
   207
sl@0
   208
void SHKDeath::SetConnection(SHKConnection *aConn)
sl@0
   209
	{
sl@0
   210
	iConn=aConn;
sl@0
   211
	}
sl@0
   212
sl@0
   213
void SHKDeath::DoCancel()
sl@0
   214
	{
sl@0
   215
	}
sl@0
   216
sl@0
   217
void SHKDeath::RunL()
sl@0
   218
	{
sl@0
   219
	iConn->CompleteL();
sl@0
   220
	}
sl@0
   221
sl@0
   222
void SHKDeath::Request()
sl@0
   223
	{
sl@0
   224
	SetActive();
sl@0
   225
	}
sl@0
   226
sl@0
   227
//
sl@0
   228
sl@0
   229
SHKWindowGroup::SHKWindowGroup(CTClient *aClient) : CTWindowGroup(aClient)
sl@0
   230
	{}
sl@0
   231
sl@0
   232
void SHKWindowGroup::KeyL(const TKeyEvent &aKey,const TTime &)
sl@0
   233
	{
sl@0
   234
	((SHKConnection *)iClient)->KeyL(aKey);
sl@0
   235
	}
sl@0
   236
sl@0
   237
//
sl@0
   238
// SHKConnection
sl@0
   239
sl@0
   240
SHKConnection::SHKConnection(THotKeyTest *aTest, TInt aMode) : iMode(aMode), iDeath(100), iTest(aTest)
sl@0
   241
	{
sl@0
   242
	iDeath.SetConnection(this);
sl@0
   243
	}
sl@0
   244
sl@0
   245
SHKConnection::~SHKConnection()
sl@0
   246
	{
sl@0
   247
	iGroup->GroupWin()->EnableReceiptOfFocus(EFalse);
sl@0
   248
	CTWin::Delete(iWin);
sl@0
   249
	}
sl@0
   250
sl@0
   251
void SHKConnection::KeyL(const TKeyEvent &aKey)
sl@0
   252
	{
sl@0
   253
	if (iTest)
sl@0
   254
		{
sl@0
   255
		if (aKey.iCode==EKeyEnter && !HotKeyTestIsDeathTest[iTest->SubState()])
sl@0
   256
			iTest->IncSubStateL();
sl@0
   257
		else if (aKey.iCode==EKeyEscape)
sl@0
   258
			iTest->AbortL();
sl@0
   259
		}
sl@0
   260
	}
sl@0
   261
sl@0
   262
void SHKConnection::CompleteL()
sl@0
   263
	{
sl@0
   264
	iTest->IncSubStateL();
sl@0
   265
	}
sl@0
   266
sl@0
   267
void SHKConnection::SubStateChangedL()
sl@0
   268
	{
sl@0
   269
	if (HotKeyTestIsDeathTest[iTest->SubState()])
sl@0
   270
		{
sl@0
   271
		RThread thread;
sl@0
   272
		iMainWinId=iGroup->GroupWin()->Identifier();
sl@0
   273
		TInt subState=iTest->SubState();
sl@0
   274
		User::After(100000);
sl@0
   275
		User::LeaveIfError(thread.Create(_L("SubThread"),SubThread,KDefaultStackSize,0x2000,0x2000,&subState,EOwnerThread));
sl@0
   276
		thread.Logon(iDeath.iStatus);
sl@0
   277
		iDeath.Request();
sl@0
   278
		thread.Resume();
sl@0
   279
		thread.Close();
sl@0
   280
		}
sl@0
   281
	iWin->Invalidate();
sl@0
   282
	iWs.Flush();
sl@0
   283
	}
sl@0
   284
sl@0
   285
void SHKConnection::ConstructL()
sl@0
   286
	{
sl@0
   287
	CTClient::ConstructL();
sl@0
   288
	iGroup=new(ELeave) SHKWindowGroup(this);
sl@0
   289
	iGroup->ConstructL();
sl@0
   290
	TSize screenSize=iGroup->Size();
sl@0
   291
	iGroup->GroupWin()->AutoForeground(EFalse);		// Don't allow clicking to cause foreground, might mess up test
sl@0
   292
	TInt winWidth;
sl@0
   293
	TInt winHeight;
sl@0
   294
	if (iMode==0)
sl@0
   295
		{
sl@0
   296
		winWidth=screenSize.iWidth/2;
sl@0
   297
		winHeight=screenSize.iHeight-10;
sl@0
   298
		SHKWindow *win=new(ELeave) SHKWindow(iTest);
sl@0
   299
		win->SetUpL(TPoint(5,5),TSize(winWidth,winHeight),iGroup,*iGc);
sl@0
   300
		iWin=win;
sl@0
   301
		}
sl@0
   302
	else
sl@0
   303
		{
sl@0
   304
		winWidth=150;
sl@0
   305
		winHeight=50;
sl@0
   306
		iGroup->GroupWin()->SetOwningWindowGroup(iMainWinId);
sl@0
   307
		SHKWindow2 *win=new(ELeave) SHKWindow2();
sl@0
   308
		win->SetUpL(TPoint((screenSize.iWidth-winWidth)/2,(screenSize.iHeight-winHeight)/2),TSize(winWidth,winHeight),iGroup,*iGc);
sl@0
   309
		iWin=win;
sl@0
   310
		}
sl@0
   311
	iWs.Flush();
sl@0
   312
	}
sl@0
   313
sl@0
   314
//
sl@0
   315
// SHKWindow, class //
sl@0
   316
//
sl@0
   317
sl@0
   318
SHKWindow::SHKWindow(THotKeyTest *aTest) : CTWin(), iTest(aTest)
sl@0
   319
	{
sl@0
   320
	iBack=TRgb::Gray256(230);
sl@0
   321
	}
sl@0
   322
sl@0
   323
void SHKWindow::SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc)
sl@0
   324
	{
sl@0
   325
	ConstructExtLD(*parent,pos,size);
sl@0
   326
	iWin.SetBackgroundColor(iBack);
sl@0
   327
	Activate();
sl@0
   328
	AssignGC(aGc);
sl@0
   329
	}
sl@0
   330
sl@0
   331
void SHKWindow::Draw()
sl@0
   332
	{
sl@0
   333
	iGc->Clear();
sl@0
   334
	iGc->DrawText(TPtrC(HotKeyTests[iTest->SubState()].txt), TPoint(10,20));
sl@0
   335
	iGc->DrawText(TPtrC(_L("Press <Enter> when tested okay")), TPoint(10,35));
sl@0
   336
	iGc->DrawText(TPtrC(_L("or escape to abort tests")), TPoint(10,50));
sl@0
   337
	}
sl@0
   338
sl@0
   339
//
sl@0
   340
// SHKWindow2, class //
sl@0
   341
//
sl@0
   342
sl@0
   343
SHKWindow2::SHKWindow2() : CTWin()
sl@0
   344
	{
sl@0
   345
	}
sl@0
   346
sl@0
   347
void SHKWindow2::SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc)
sl@0
   348
	{
sl@0
   349
	ConstructExtLD(*parent,pos,size);
sl@0
   350
	iWin.SetBackgroundColor(TRgb(0,0,0));
sl@0
   351
	Activate();
sl@0
   352
	AssignGC(aGc);
sl@0
   353
	}
sl@0
   354
sl@0
   355
void SHKWindow2::Draw()
sl@0
   356
	{
sl@0
   357
	iGc->SetBrushColor(TRgb::Gray4(1));
sl@0
   358
	iGc->Clear();
sl@0
   359
	iGc->SetPenColor(TRgb::Gray4(3));
sl@0
   360
	iGc->DrawText(TPtrC(_L("Kill me!!!")), TPoint(10,15));
sl@0
   361
	}
sl@0
   362
sl@0
   363
//
sl@0
   364
sl@0
   365
TInt THotKeyTest::SubState() const
sl@0
   366
	{
sl@0
   367
	return(iSubState);
sl@0
   368
	}
sl@0
   369
sl@0
   370
void THotKeyTest::IncSubStateL()
sl@0
   371
	{
sl@0
   372
	if (iSubState==(numHotKeyTests-1))
sl@0
   373
		EndCaptureKeyTest();
sl@0
   374
	else
sl@0
   375
		{
sl@0
   376
		iSubState++;
sl@0
   377
		iConn1->SubStateChangedL();
sl@0
   378
		}
sl@0
   379
	}
sl@0
   380
sl@0
   381
void THotKeyTest::BadParamsL()
sl@0
   382
	{
sl@0
   383
	TInt resCount=Client()->iWs.ResourceCount();
sl@0
   384
	for(TInt index=0;index<numErrorKeys;index++)
sl@0
   385
		TestL(Client()->iWs.SetHotKey(errorKeys[index].hotKey, errorKeys[index].keyCode,errorKeys[index].mod_mask,errorKeys[index].modifiers)==KErrArgument);
sl@0
   386
	TestL(Client()->iWs.ResourceCount()==resCount);
sl@0
   387
	}
sl@0
   388
sl@0
   389
TestState THotKeyTest::DoTestL()
sl@0
   390
	{
sl@0
   391
	switch(iState)
sl@0
   392
		{
sl@0
   393
		case 0:
sl@0
   394
			LogSubTest(_L("Errors"),1);
sl@0
   395
			BadParamsL();
sl@0
   396
			LogSubTest(_L("CaptureKey"),2);
sl@0
   397
			iState++;
sl@0
   398
			return(EContinue);
sl@0
   399
		default:
sl@0
   400
			return(EFinished);
sl@0
   401
		}
sl@0
   402
 	}
sl@0
   403
sl@0
   404
//======================================================//
sl@0
   405
// Sub thread to do tests and get shot by window server //
sl@0
   406
//======================================================//
sl@0
   407
sl@0
   408
void SubThreadMain()
sl@0
   409
	{
sl@0
   410
	CActiveScheduler *TheActiveScheduler=new(ELeave) CActiveScheduler;
sl@0
   411
	CActiveScheduler::Install(TheActiveScheduler);
sl@0
   412
	SHKConnection *conn=new(ELeave) SHKConnection(NULL, ETrue);
sl@0
   413
	conn->ConstructL();
sl@0
   414
	CActiveScheduler::Start();
sl@0
   415
	delete TheActiveScheduler;
sl@0
   416
	}
sl@0
   417
sl@0
   418
TInt SubThread(TAny *)
sl@0
   419
	{
sl@0
   420
	CTrapCleanup* CleanUpStack=CTrapCleanup::New();
sl@0
   421
	TRAPD(err,SubThreadMain());
sl@0
   422
	delete CleanUpStack;
sl@0
   423
	return(err);
sl@0
   424
	}