os/graphics/windowing/windowserver/test/tanim/ANIM.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 code to tun ANIMDLL.DLL
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 <e32svr.h>
sl@0
    21
#include "../tlib/testbase.h"
sl@0
    22
#include "TANIM.H"
sl@0
    23
#include "ANIMDLL.H"
sl@0
    24
sl@0
    25
#define NONEXISTENT_DLL_NAME	_L("Z:\\NONEXISTENT.DLL")
sl@0
    26
#define ANIM_BITMAP		_L("Z:\\WSTEST\\TANIM.MBM")
sl@0
    27
#define ANIM_DLL_NAME	_L("ANIDLL.DLL")
sl@0
    28
sl@0
    29
enum TAnimPanic
sl@0
    30
	{
sl@0
    31
	EAnimPanicBadLoadFailed,
sl@0
    32
	};
sl@0
    33
sl@0
    34
class CTAnimClient;
sl@0
    35
sl@0
    36
class TestAnim : public RAnim
sl@0
    37
	{
sl@0
    38
public:
sl@0
    39
	TestAnim(RAnimDll &aDll);
sl@0
    40
	TInt Construct(RWindowBase &aWin,const TPoint &aPos,CFbsBitmap *aBit1,CFbsBitmap *aBit2,CFbsBitmap *aMask,TInt aInterval, CFbsFont *aFont);
sl@0
    41
	void Set(const TPoint &aPos, TInt aInterval);
sl@0
    42
	void TextPos(const TPoint &aPos);
sl@0
    43
	void SetPolyRectL(const TRect &aRect);
sl@0
    44
	void ToggleMask();
sl@0
    45
	};
sl@0
    46
sl@0
    47
class CTAnimWindow2 : public CTBlankWindow
sl@0
    48
	{
sl@0
    49
public:
sl@0
    50
	CTAnimWindow2(RAnimDll &aAnimDll);
sl@0
    51
	~CTAnimWindow2();
sl@0
    52
	void ConstructL(CTWinBase &parent, const TPoint &aPos, const TSize &aSize);
sl@0
    53
	void ConstructExtLD(CTWinBase &aParent, const TPoint &aPos, const TSize &aSize);
sl@0
    54
private:
sl@0
    55
	TestAnim iAnim;
sl@0
    56
	CFbsBitmap iAnimBitmap1;
sl@0
    57
	CFbsBitmap iAnimBitmap2;
sl@0
    58
	};
sl@0
    59
sl@0
    60
class CTAnimWindow1 : public CTTitledWindow
sl@0
    61
	{
sl@0
    62
public:
sl@0
    63
	CTAnimWindow1(RAnimDll &aAnimDll);
sl@0
    64
	~CTAnimWindow1();
sl@0
    65
	void ConstructL(CTWinBase &parent);
sl@0
    66
	void Draw();
sl@0
    67
	void AdjustAnimRect(TInt xMove,TInt yMove,TInt modifiers);
sl@0
    68
	void AdjustPolyRectL(TInt xMove,TInt yMove,TInt modifiers);
sl@0
    69
	void ToggleMask();
sl@0
    70
	TInt SubType();
sl@0
    71
private:
sl@0
    72
	TestAnim iAnim;
sl@0
    73
	TPoint iAnimPos;
sl@0
    74
	TRect iAnimPolyRect;
sl@0
    75
	CFbsBitmap iAnimBitmap1;
sl@0
    76
	CFbsBitmap iAnimBitmap2;
sl@0
    77
	CFbsBitmap iMask;
sl@0
    78
	};
sl@0
    79
sl@0
    80
class CTAnimWindowGroup : public CTWindowGroup
sl@0
    81
	{
sl@0
    82
public:
sl@0
    83
	CTAnimWindowGroup(CTClient *aClient);
sl@0
    84
	void CursorKeyL(TInt xMove,TInt yMove,TInt modifiers);
sl@0
    85
	void KeyL(const TKeyEvent &aKey, const TTime &aTime);
sl@0
    86
	TInt iCursorMode;
sl@0
    87
	};
sl@0
    88
sl@0
    89
class CTAnimClient : public CTClient
sl@0
    90
	{
sl@0
    91
public:
sl@0
    92
	CTAnimClient();
sl@0
    93
	~CTAnimClient();
sl@0
    94
	void ConstructL();
sl@0
    95
	void KeyL(const TKeyEvent &aKey,const TTime &aTime);
sl@0
    96
	void ExitL();
sl@0
    97
	void ErrorTests();
sl@0
    98
	CTBaseWin *CreateTestWindowL(TPoint pos,TSize size,CTWinBase *parent, TInt aType);
sl@0
    99
private:
sl@0
   100
	TInt iNum;
sl@0
   101
	RAnimDll iAnimDll;
sl@0
   102
	};
sl@0
   103
sl@0
   104
const TInt Xmove=8;
sl@0
   105
const TInt Ymove=6;
sl@0
   106
sl@0
   107
void AnimPanic(TInt aPanic)
sl@0
   108
	{
sl@0
   109
	User::Panic(_L("ANIM"),aPanic);
sl@0
   110
	}
sl@0
   111
sl@0
   112
//
sl@0
   113
//  Anim class
sl@0
   114
//
sl@0
   115
sl@0
   116
TestAnim::TestAnim(RAnimDll &aDll) : RAnim(aDll)
sl@0
   117
	{
sl@0
   118
	}
sl@0
   119
sl@0
   120
TInt TestAnim::Construct(RWindowBase &aWin, const TPoint &aPos, CFbsBitmap *aBit1,CFbsBitmap *aBit2,CFbsBitmap *aMask, TInt aInterval, CFbsFont *aFont)
sl@0
   121
	{
sl@0
   122
	TPckgBuf<CTAParams> params;
sl@0
   123
	params().pos=aPos;
sl@0
   124
	params().interval=aInterval;
sl@0
   125
	params().bit1=aBit1->Handle();
sl@0
   126
	params().bit2=aBit2->Handle();
sl@0
   127
	params().mask=aMask->Handle();
sl@0
   128
	params().font=aFont->Handle();
sl@0
   129
	return(RAnim::Construct(aWin,0,params));
sl@0
   130
	}
sl@0
   131
sl@0
   132
void TestAnim::Set(const TPoint &aPos, TInt aInterval)
sl@0
   133
	{
sl@0
   134
	TPckgBuf<CTAParams> params;
sl@0
   135
	params().pos=aPos;
sl@0
   136
	params().interval=aInterval;
sl@0
   137
	Command(EADllOpcodeMove,params);
sl@0
   138
	}
sl@0
   139
sl@0
   140
void TestAnim::TextPos(const TPoint &aPos)
sl@0
   141
	{
sl@0
   142
	TPckgBuf<TPoint> params;
sl@0
   143
	params()=aPos;
sl@0
   144
	Command(EADllTextPos,params);
sl@0
   145
	}
sl@0
   146
sl@0
   147
void TestAnim::SetPolyRectL(const TRect &aRect)
sl@0
   148
	{
sl@0
   149
	TPckgC<TRect> params(aRect);
sl@0
   150
	User::LeaveIfError(CommandReply(EADllOpcodePolyLineRect,params));
sl@0
   151
	}
sl@0
   152
sl@0
   153
void TestAnim::ToggleMask()
sl@0
   154
	{
sl@0
   155
	Command(EADllToggleBitmapMask);
sl@0
   156
	}
sl@0
   157
sl@0
   158
//
sl@0
   159
// Individual window sub-classes
sl@0
   160
//
sl@0
   161
sl@0
   162
CTAnimWindow1::CTAnimWindow1(RAnimDll &aAnimDll) : CTTitledWindow(), 
sl@0
   163
	iAnim(aAnimDll)
sl@0
   164
	{
sl@0
   165
	}
sl@0
   166
sl@0
   167
CTAnimWindow1::~CTAnimWindow1()
sl@0
   168
	{
sl@0
   169
	iAnim.Close();
sl@0
   170
	}
sl@0
   171
sl@0
   172
void CTAnimWindow1::ConstructL(CTWinBase &parent)
sl@0
   173
	{
sl@0
   174
	CTTitledWindow::ConstructL(parent);
sl@0
   175
	User::LeaveIfError(iAnimBitmap1.Load(ANIM_BITMAP,EMbmTanimAnim1));
sl@0
   176
	User::LeaveIfError(iAnimBitmap2.Load(ANIM_BITMAP,EMbmTanimAnim2));
sl@0
   177
	User::LeaveIfError(iMask.Load(ANIM_BITMAP,EMbmTanimMask));
sl@0
   178
	iAnimPos=TPoint(10,10);
sl@0
   179
	User::LeaveIfError(iAnim.Construct(iWin, iAnimPos,&iAnimBitmap1,&iAnimBitmap2,&iMask,1,iFont));
sl@0
   180
	iAnimPolyRect=TRect(TPoint(10,40),TSize(50,50));
sl@0
   181
	iAnim.SetPolyRectL(iAnimPolyRect);
sl@0
   182
	iAnim.TextPos(TPoint(20,50));
sl@0
   183
	}
sl@0
   184
sl@0
   185
void CTAnimWindow1::Draw()
sl@0
   186
	{
sl@0
   187
	TInt i;
sl@0
   188
sl@0
   189
	CTTitledWindow::Draw();
sl@0
   190
	iGc->SetPenColor(TRgb::Gray16(8));
sl@0
   191
	TInt hgt=iSize.iHeight-iTitleHeight;
sl@0
   192
	for(i=0;i<iSize.iWidth;i+=30)
sl@0
   193
		{
sl@0
   194
		iGc->DrawLine(TPoint(i,iTitleHeight),TPoint(iSize.iWidth,iTitleHeight+(hgt*i)/iSize.iWidth));
sl@0
   195
		iGc->DrawLine(TPoint(iSize.iWidth-i,iTitleHeight+hgt),TPoint(iSize.iWidth,iTitleHeight+(hgt*i)/iSize.iWidth));
sl@0
   196
		iGc->DrawLine(TPoint(iSize.iWidth-i,iTitleHeight+hgt),TPoint(0,iTitleHeight+hgt-(hgt*i)/iSize.iWidth));
sl@0
   197
		iGc->DrawLine(TPoint(i,iTitleHeight),TPoint(0,iTitleHeight+hgt-(hgt*i)/iSize.iWidth));
sl@0
   198
		}
sl@0
   199
	}
sl@0
   200
sl@0
   201
void CTAnimWindow1::AdjustAnimRect(TInt xMove,TInt yMove,TInt modifiers)
sl@0
   202
	{
sl@0
   203
	if (modifiers&EModifierCtrl)	// 4 times the movement
sl@0
   204
		{
sl@0
   205
		xMove<<=2;
sl@0
   206
		yMove<<=2;
sl@0
   207
		}
sl@0
   208
	iAnimPos+=TPoint(xMove,yMove);
sl@0
   209
	iAnim.Set(iAnimPos,5);
sl@0
   210
	}
sl@0
   211
sl@0
   212
void CTAnimWindow1::AdjustPolyRectL(TInt xMove,TInt yMove,TInt modifiers)
sl@0
   213
	{
sl@0
   214
	if (modifiers&EModifierCtrl)	// 4 times the movement
sl@0
   215
		{
sl@0
   216
		xMove<<=2;
sl@0
   217
		yMove<<=2;
sl@0
   218
		}
sl@0
   219
	if (modifiers&EModifierShift)	// 4 times the movement
sl@0
   220
		iAnimPolyRect.Grow(xMove,yMove);
sl@0
   221
	else
sl@0
   222
		iAnimPolyRect.Move(TPoint(xMove,yMove));
sl@0
   223
	iAnim.SetPolyRectL(iAnimPolyRect);
sl@0
   224
	}
sl@0
   225
sl@0
   226
void CTAnimWindow1::ToggleMask()
sl@0
   227
	{
sl@0
   228
	iAnim.ToggleMask();
sl@0
   229
	}
sl@0
   230
sl@0
   231
TInt CTAnimWindow1::SubType()
sl@0
   232
	{
sl@0
   233
	return(69);
sl@0
   234
	}
sl@0
   235
sl@0
   236
// CTAnimWindow2 //
sl@0
   237
sl@0
   238
CTAnimWindow2::CTAnimWindow2(RAnimDll &aAnimDll) : CTBlankWindow(), 
sl@0
   239
	iAnim(aAnimDll)
sl@0
   240
	{
sl@0
   241
	}
sl@0
   242
sl@0
   243
CTAnimWindow2::~CTAnimWindow2()
sl@0
   244
	{
sl@0
   245
	iAnim.Close();
sl@0
   246
	}
sl@0
   247
sl@0
   248
void CTAnimWindow2::ConstructL(CTWinBase &parent, const TPoint &aPos, const TSize &aSize)
sl@0
   249
	{
sl@0
   250
	CTBlankWindow::ConstructL(parent);
sl@0
   251
	iWin.SetColor(TRgb(128,128,128));
sl@0
   252
	iWin.SetVisible(EFalse);
sl@0
   253
	SetExt(aPos,aSize);
sl@0
   254
	iWin.Activate();
sl@0
   255
	User::LeaveIfError(iAnimBitmap1.Load(ANIM_BITMAP,EMbmTanimAnim1));
sl@0
   256
	User::LeaveIfError(iAnimBitmap2.Load(ANIM_BITMAP,EMbmTanimAnim2));
sl@0
   257
	User::LeaveIfError(iAnim.Construct(iWin, TPoint(10,10), &iAnimBitmap1, &iAnimBitmap2, &iAnimBitmap1, 1, iFont));
sl@0
   258
	iWin.SetVisible(ETrue);
sl@0
   259
	}
sl@0
   260
sl@0
   261
void CTAnimWindow2::ConstructExtLD(CTWinBase &aParent, const TPoint &aPos, const TSize &aSize)
sl@0
   262
//
sl@0
   263
// Call ConstructL, SetExt and either of these fail destroy this and leave
sl@0
   264
//
sl@0
   265
	{
sl@0
   266
	TRAPD(err,ConstructL(aParent, aPos, aSize));
sl@0
   267
	if (err!=KErrNone)
sl@0
   268
		{
sl@0
   269
		delete this;
sl@0
   270
		User::Leave(err);
sl@0
   271
		}
sl@0
   272
	}
sl@0
   273
sl@0
   274
//
sl@0
   275
// End of CTAnimWindow class //
sl@0
   276
//
sl@0
   277
sl@0
   278
CTAnimWindowGroup::CTAnimWindowGroup(CTClient *aClient) : CTWindowGroup(aClient)
sl@0
   279
	{
sl@0
   280
	}
sl@0
   281
sl@0
   282
void CTAnimWindowGroup::CursorKeyL(TInt xMove,TInt yMove,TInt modifiers)
sl@0
   283
	{
sl@0
   284
	if (iCursorMode==0)
sl@0
   285
		iCurWin->AdjustSizeL(xMove,yMove,modifiers);
sl@0
   286
	else if (iCurWin->SubType()==69)
sl@0
   287
		{
sl@0
   288
		if (iCursorMode==1)
sl@0
   289
			((CTAnimWindow1 *)iCurWin)->AdjustAnimRect(xMove,yMove,modifiers);
sl@0
   290
		else
sl@0
   291
			((CTAnimWindow1 *)iCurWin)->AdjustPolyRectL(xMove,yMove,modifiers);
sl@0
   292
		}
sl@0
   293
	}
sl@0
   294
sl@0
   295
void CTAnimWindowGroup::KeyL(const TKeyEvent &aKey,const TTime &aTime)
sl@0
   296
	{
sl@0
   297
	if (aKey.iModifiers&EModifierCtrl)
sl@0
   298
		{
sl@0
   299
		TInt type=0;
sl@0
   300
		switch(aKey.iCode)
sl@0
   301
			{
sl@0
   302
			case 1:
sl@0
   303
				type=1;
sl@0
   304
				break;
sl@0
   305
			case 2:
sl@0
   306
				type=2;
sl@0
   307
				break;
sl@0
   308
			}
sl@0
   309
		if (type!=0)
sl@0
   310
			{
sl@0
   311
			TPoint pos;
sl@0
   312
			TSize size;
sl@0
   313
			pos.iX=iCurWin->Size().iWidth>>2;
sl@0
   314
			pos.iY=iCurWin->Size().iHeight>>2;
sl@0
   315
			size.iWidth=iCurWin->Size().iWidth>>1;
sl@0
   316
			size.iHeight=iCurWin->Size().iHeight>>1;
sl@0
   317
			SetCurrentWindow(((CTAnimClient *)iClient)->CreateTestWindowL(pos,size,iCurWin,type));
sl@0
   318
			return;
sl@0
   319
			}
sl@0
   320
		}
sl@0
   321
	if (aKey.iModifiers&EModifierFunc)
sl@0
   322
		{
sl@0
   323
		switch(aKey.iCode)
sl@0
   324
			{
sl@0
   325
			case 'x':
sl@0
   326
				((CTAnimClient *)iClient)->ExitL();
sl@0
   327
				break;
sl@0
   328
			}
sl@0
   329
		}
sl@0
   330
	else switch(aKey.iCode)
sl@0
   331
		{
sl@0
   332
		case ' ':
sl@0
   333
			iCursorMode=(iCursorMode+1)%3;
sl@0
   334
			break;
sl@0
   335
		case 8:
sl@0
   336
			CTWin::Delete(iCurWin);
sl@0
   337
			break;
sl@0
   338
		case 9:
sl@0
   339
			if (aKey.iModifiers&EModifierShift)
sl@0
   340
				SetCurrentWindow(iCurWin->Prev());
sl@0
   341
			else
sl@0
   342
				SetCurrentWindow(iCurWin->Next());
sl@0
   343
			break;
sl@0
   344
		case 13:
sl@0
   345
			if (iCurWin->SubType()==69)
sl@0
   346
				((CTAnimWindow1 *)iCurWin)->ToggleMask();
sl@0
   347
			break;
sl@0
   348
		case EKeyLeftArrow:
sl@0
   349
			CursorKeyL(-Xmove,0,aKey.iModifiers);
sl@0
   350
			break;
sl@0
   351
		case EKeyRightArrow:
sl@0
   352
			CursorKeyL(Xmove,0,aKey.iModifiers);
sl@0
   353
			break;
sl@0
   354
		case EKeyUpArrow:
sl@0
   355
			CursorKeyL(0,-Ymove,aKey.iModifiers);
sl@0
   356
			break;
sl@0
   357
		case EKeyDownArrow:
sl@0
   358
			CursorKeyL(0,Ymove,aKey.iModifiers);
sl@0
   359
			break;
sl@0
   360
		default:
sl@0
   361
			iCurWin->WinKeyL(aKey,aTime);
sl@0
   362
			break;
sl@0
   363
		}
sl@0
   364
	}
sl@0
   365
sl@0
   366
//
sl@0
   367
sl@0
   368
CTAnimClient::CTAnimClient()
sl@0
   369
	{
sl@0
   370
	}
sl@0
   371
sl@0
   372
CTBaseWin *CTAnimClient::CreateTestWindowL(TPoint pos,TSize size,CTWinBase *parent, TInt type)
sl@0
   373
	{
sl@0
   374
	CTBaseWin *win;
sl@0
   375
	if (type==1)
sl@0
   376
		{
sl@0
   377
		win=new(ELeave) CTAnimWindow1(iAnimDll);
sl@0
   378
		win->ConstructExtLD(*parent,pos,size);
sl@0
   379
		win->Activate();
sl@0
   380
		}
sl@0
   381
	else
sl@0
   382
		{
sl@0
   383
		win=new(ELeave) CTAnimWindow2(iAnimDll);
sl@0
   384
		win->ConstructExtLD(*parent,pos,size);
sl@0
   385
		}
sl@0
   386
	win->AssignGC(*iGc);
sl@0
   387
	return(win);
sl@0
   388
	}
sl@0
   389
sl@0
   390
CTAnimClient::~CTAnimClient()
sl@0
   391
	{
sl@0
   392
	DestroyWindows();
sl@0
   393
	iAnimDll.Close();
sl@0
   394
	}
sl@0
   395
sl@0
   396
void CTAnimClient::ErrorTests()
sl@0
   397
	{
sl@0
   398
	RAnimDll animDll=RAnimDll(iWs);
sl@0
   399
	if (animDll.Load(NONEXISTENT_DLL_NAME)!=KErrNotFound)
sl@0
   400
		AnimPanic(EAnimPanicBadLoadFailed);
sl@0
   401
	animDll.Close();		// Close should be harmless, but unnecassary
sl@0
   402
	RAnimDll animDll2=RAnimDll(iWs);
sl@0
   403
	if (animDll2.Load(NONEXISTENT_DLL_NAME)!=KErrNotFound)
sl@0
   404
		AnimPanic(EAnimPanicBadLoadFailed);
sl@0
   405
	}
sl@0
   406
sl@0
   407
void CTAnimClient::ConstructL()
sl@0
   408
	{
sl@0
   409
	CTClient::ConstructL();
sl@0
   410
sl@0
   411
	iGroup=new(ELeave) CTAnimWindowGroup(this);
sl@0
   412
	iGroup->ConstructL();
sl@0
   413
	
sl@0
   414
	ErrorTests();
sl@0
   415
sl@0
   416
	iAnimDll=RAnimDll(iWs);
sl@0
   417
	User::LeaveIfError(iAnimDll.Load(ANIM_DLL_NAME));
sl@0
   418
sl@0
   419
	CreateTestWindowL(TPoint(30,20),TSize(220,140),iGroup, 1);
sl@0
   420
	CreateTestWindowL(TPoint(260,60),TSize(60,40),iGroup, 2);
sl@0
   421
	iGroup->SetCurrentWindow(iGroup->Child());
sl@0
   422
	}
sl@0
   423
sl@0
   424
void CTAnimClient::ExitL()
sl@0
   425
	{
sl@0
   426
	CActiveScheduler::Stop();
sl@0
   427
	User::Leave(0);		// Signals RunL not to do another Request()
sl@0
   428
	}
sl@0
   429
sl@0
   430
GLDEF_C CTClient *CreateClientL()
sl@0
   431
	{
sl@0
   432
	return(new(ELeave) CTAnimClient());
sl@0
   433
	}
sl@0
   434
sl@0
   435
GLDEF_C TInt E32Main()
sl@0
   436
	{
sl@0
   437
	return(TestLibStartUp(CreateClientL));
sl@0
   438
	}