os/graphics/windowing/windowserver/test/tanim/ANIM.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/tanim/ANIM.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,438 @@
     1.4 +// Copyright (c) 1995-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 +// Test code to tun ANIMDLL.DLL
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include <e32std.h>
    1.22 +#include <w32std.h>
    1.23 +#include <e32svr.h>
    1.24 +#include "../tlib/testbase.h"
    1.25 +#include "TANIM.H"
    1.26 +#include "ANIMDLL.H"
    1.27 +
    1.28 +#define NONEXISTENT_DLL_NAME	_L("Z:\\NONEXISTENT.DLL")
    1.29 +#define ANIM_BITMAP		_L("Z:\\WSTEST\\TANIM.MBM")
    1.30 +#define ANIM_DLL_NAME	_L("ANIDLL.DLL")
    1.31 +
    1.32 +enum TAnimPanic
    1.33 +	{
    1.34 +	EAnimPanicBadLoadFailed,
    1.35 +	};
    1.36 +
    1.37 +class CTAnimClient;
    1.38 +
    1.39 +class TestAnim : public RAnim
    1.40 +	{
    1.41 +public:
    1.42 +	TestAnim(RAnimDll &aDll);
    1.43 +	TInt Construct(RWindowBase &aWin,const TPoint &aPos,CFbsBitmap *aBit1,CFbsBitmap *aBit2,CFbsBitmap *aMask,TInt aInterval, CFbsFont *aFont);
    1.44 +	void Set(const TPoint &aPos, TInt aInterval);
    1.45 +	void TextPos(const TPoint &aPos);
    1.46 +	void SetPolyRectL(const TRect &aRect);
    1.47 +	void ToggleMask();
    1.48 +	};
    1.49 +
    1.50 +class CTAnimWindow2 : public CTBlankWindow
    1.51 +	{
    1.52 +public:
    1.53 +	CTAnimWindow2(RAnimDll &aAnimDll);
    1.54 +	~CTAnimWindow2();
    1.55 +	void ConstructL(CTWinBase &parent, const TPoint &aPos, const TSize &aSize);
    1.56 +	void ConstructExtLD(CTWinBase &aParent, const TPoint &aPos, const TSize &aSize);
    1.57 +private:
    1.58 +	TestAnim iAnim;
    1.59 +	CFbsBitmap iAnimBitmap1;
    1.60 +	CFbsBitmap iAnimBitmap2;
    1.61 +	};
    1.62 +
    1.63 +class CTAnimWindow1 : public CTTitledWindow
    1.64 +	{
    1.65 +public:
    1.66 +	CTAnimWindow1(RAnimDll &aAnimDll);
    1.67 +	~CTAnimWindow1();
    1.68 +	void ConstructL(CTWinBase &parent);
    1.69 +	void Draw();
    1.70 +	void AdjustAnimRect(TInt xMove,TInt yMove,TInt modifiers);
    1.71 +	void AdjustPolyRectL(TInt xMove,TInt yMove,TInt modifiers);
    1.72 +	void ToggleMask();
    1.73 +	TInt SubType();
    1.74 +private:
    1.75 +	TestAnim iAnim;
    1.76 +	TPoint iAnimPos;
    1.77 +	TRect iAnimPolyRect;
    1.78 +	CFbsBitmap iAnimBitmap1;
    1.79 +	CFbsBitmap iAnimBitmap2;
    1.80 +	CFbsBitmap iMask;
    1.81 +	};
    1.82 +
    1.83 +class CTAnimWindowGroup : public CTWindowGroup
    1.84 +	{
    1.85 +public:
    1.86 +	CTAnimWindowGroup(CTClient *aClient);
    1.87 +	void CursorKeyL(TInt xMove,TInt yMove,TInt modifiers);
    1.88 +	void KeyL(const TKeyEvent &aKey, const TTime &aTime);
    1.89 +	TInt iCursorMode;
    1.90 +	};
    1.91 +
    1.92 +class CTAnimClient : public CTClient
    1.93 +	{
    1.94 +public:
    1.95 +	CTAnimClient();
    1.96 +	~CTAnimClient();
    1.97 +	void ConstructL();
    1.98 +	void KeyL(const TKeyEvent &aKey,const TTime &aTime);
    1.99 +	void ExitL();
   1.100 +	void ErrorTests();
   1.101 +	CTBaseWin *CreateTestWindowL(TPoint pos,TSize size,CTWinBase *parent, TInt aType);
   1.102 +private:
   1.103 +	TInt iNum;
   1.104 +	RAnimDll iAnimDll;
   1.105 +	};
   1.106 +
   1.107 +const TInt Xmove=8;
   1.108 +const TInt Ymove=6;
   1.109 +
   1.110 +void AnimPanic(TInt aPanic)
   1.111 +	{
   1.112 +	User::Panic(_L("ANIM"),aPanic);
   1.113 +	}
   1.114 +
   1.115 +//
   1.116 +//  Anim class
   1.117 +//
   1.118 +
   1.119 +TestAnim::TestAnim(RAnimDll &aDll) : RAnim(aDll)
   1.120 +	{
   1.121 +	}
   1.122 +
   1.123 +TInt TestAnim::Construct(RWindowBase &aWin, const TPoint &aPos, CFbsBitmap *aBit1,CFbsBitmap *aBit2,CFbsBitmap *aMask, TInt aInterval, CFbsFont *aFont)
   1.124 +	{
   1.125 +	TPckgBuf<CTAParams> params;
   1.126 +	params().pos=aPos;
   1.127 +	params().interval=aInterval;
   1.128 +	params().bit1=aBit1->Handle();
   1.129 +	params().bit2=aBit2->Handle();
   1.130 +	params().mask=aMask->Handle();
   1.131 +	params().font=aFont->Handle();
   1.132 +	return(RAnim::Construct(aWin,0,params));
   1.133 +	}
   1.134 +
   1.135 +void TestAnim::Set(const TPoint &aPos, TInt aInterval)
   1.136 +	{
   1.137 +	TPckgBuf<CTAParams> params;
   1.138 +	params().pos=aPos;
   1.139 +	params().interval=aInterval;
   1.140 +	Command(EADllOpcodeMove,params);
   1.141 +	}
   1.142 +
   1.143 +void TestAnim::TextPos(const TPoint &aPos)
   1.144 +	{
   1.145 +	TPckgBuf<TPoint> params;
   1.146 +	params()=aPos;
   1.147 +	Command(EADllTextPos,params);
   1.148 +	}
   1.149 +
   1.150 +void TestAnim::SetPolyRectL(const TRect &aRect)
   1.151 +	{
   1.152 +	TPckgC<TRect> params(aRect);
   1.153 +	User::LeaveIfError(CommandReply(EADllOpcodePolyLineRect,params));
   1.154 +	}
   1.155 +
   1.156 +void TestAnim::ToggleMask()
   1.157 +	{
   1.158 +	Command(EADllToggleBitmapMask);
   1.159 +	}
   1.160 +
   1.161 +//
   1.162 +// Individual window sub-classes
   1.163 +//
   1.164 +
   1.165 +CTAnimWindow1::CTAnimWindow1(RAnimDll &aAnimDll) : CTTitledWindow(), 
   1.166 +	iAnim(aAnimDll)
   1.167 +	{
   1.168 +	}
   1.169 +
   1.170 +CTAnimWindow1::~CTAnimWindow1()
   1.171 +	{
   1.172 +	iAnim.Close();
   1.173 +	}
   1.174 +
   1.175 +void CTAnimWindow1::ConstructL(CTWinBase &parent)
   1.176 +	{
   1.177 +	CTTitledWindow::ConstructL(parent);
   1.178 +	User::LeaveIfError(iAnimBitmap1.Load(ANIM_BITMAP,EMbmTanimAnim1));
   1.179 +	User::LeaveIfError(iAnimBitmap2.Load(ANIM_BITMAP,EMbmTanimAnim2));
   1.180 +	User::LeaveIfError(iMask.Load(ANIM_BITMAP,EMbmTanimMask));
   1.181 +	iAnimPos=TPoint(10,10);
   1.182 +	User::LeaveIfError(iAnim.Construct(iWin, iAnimPos,&iAnimBitmap1,&iAnimBitmap2,&iMask,1,iFont));
   1.183 +	iAnimPolyRect=TRect(TPoint(10,40),TSize(50,50));
   1.184 +	iAnim.SetPolyRectL(iAnimPolyRect);
   1.185 +	iAnim.TextPos(TPoint(20,50));
   1.186 +	}
   1.187 +
   1.188 +void CTAnimWindow1::Draw()
   1.189 +	{
   1.190 +	TInt i;
   1.191 +
   1.192 +	CTTitledWindow::Draw();
   1.193 +	iGc->SetPenColor(TRgb::Gray16(8));
   1.194 +	TInt hgt=iSize.iHeight-iTitleHeight;
   1.195 +	for(i=0;i<iSize.iWidth;i+=30)
   1.196 +		{
   1.197 +		iGc->DrawLine(TPoint(i,iTitleHeight),TPoint(iSize.iWidth,iTitleHeight+(hgt*i)/iSize.iWidth));
   1.198 +		iGc->DrawLine(TPoint(iSize.iWidth-i,iTitleHeight+hgt),TPoint(iSize.iWidth,iTitleHeight+(hgt*i)/iSize.iWidth));
   1.199 +		iGc->DrawLine(TPoint(iSize.iWidth-i,iTitleHeight+hgt),TPoint(0,iTitleHeight+hgt-(hgt*i)/iSize.iWidth));
   1.200 +		iGc->DrawLine(TPoint(i,iTitleHeight),TPoint(0,iTitleHeight+hgt-(hgt*i)/iSize.iWidth));
   1.201 +		}
   1.202 +	}
   1.203 +
   1.204 +void CTAnimWindow1::AdjustAnimRect(TInt xMove,TInt yMove,TInt modifiers)
   1.205 +	{
   1.206 +	if (modifiers&EModifierCtrl)	// 4 times the movement
   1.207 +		{
   1.208 +		xMove<<=2;
   1.209 +		yMove<<=2;
   1.210 +		}
   1.211 +	iAnimPos+=TPoint(xMove,yMove);
   1.212 +	iAnim.Set(iAnimPos,5);
   1.213 +	}
   1.214 +
   1.215 +void CTAnimWindow1::AdjustPolyRectL(TInt xMove,TInt yMove,TInt modifiers)
   1.216 +	{
   1.217 +	if (modifiers&EModifierCtrl)	// 4 times the movement
   1.218 +		{
   1.219 +		xMove<<=2;
   1.220 +		yMove<<=2;
   1.221 +		}
   1.222 +	if (modifiers&EModifierShift)	// 4 times the movement
   1.223 +		iAnimPolyRect.Grow(xMove,yMove);
   1.224 +	else
   1.225 +		iAnimPolyRect.Move(TPoint(xMove,yMove));
   1.226 +	iAnim.SetPolyRectL(iAnimPolyRect);
   1.227 +	}
   1.228 +
   1.229 +void CTAnimWindow1::ToggleMask()
   1.230 +	{
   1.231 +	iAnim.ToggleMask();
   1.232 +	}
   1.233 +
   1.234 +TInt CTAnimWindow1::SubType()
   1.235 +	{
   1.236 +	return(69);
   1.237 +	}
   1.238 +
   1.239 +// CTAnimWindow2 //
   1.240 +
   1.241 +CTAnimWindow2::CTAnimWindow2(RAnimDll &aAnimDll) : CTBlankWindow(), 
   1.242 +	iAnim(aAnimDll)
   1.243 +	{
   1.244 +	}
   1.245 +
   1.246 +CTAnimWindow2::~CTAnimWindow2()
   1.247 +	{
   1.248 +	iAnim.Close();
   1.249 +	}
   1.250 +
   1.251 +void CTAnimWindow2::ConstructL(CTWinBase &parent, const TPoint &aPos, const TSize &aSize)
   1.252 +	{
   1.253 +	CTBlankWindow::ConstructL(parent);
   1.254 +	iWin.SetColor(TRgb(128,128,128));
   1.255 +	iWin.SetVisible(EFalse);
   1.256 +	SetExt(aPos,aSize);
   1.257 +	iWin.Activate();
   1.258 +	User::LeaveIfError(iAnimBitmap1.Load(ANIM_BITMAP,EMbmTanimAnim1));
   1.259 +	User::LeaveIfError(iAnimBitmap2.Load(ANIM_BITMAP,EMbmTanimAnim2));
   1.260 +	User::LeaveIfError(iAnim.Construct(iWin, TPoint(10,10), &iAnimBitmap1, &iAnimBitmap2, &iAnimBitmap1, 1, iFont));
   1.261 +	iWin.SetVisible(ETrue);
   1.262 +	}
   1.263 +
   1.264 +void CTAnimWindow2::ConstructExtLD(CTWinBase &aParent, const TPoint &aPos, const TSize &aSize)
   1.265 +//
   1.266 +// Call ConstructL, SetExt and either of these fail destroy this and leave
   1.267 +//
   1.268 +	{
   1.269 +	TRAPD(err,ConstructL(aParent, aPos, aSize));
   1.270 +	if (err!=KErrNone)
   1.271 +		{
   1.272 +		delete this;
   1.273 +		User::Leave(err);
   1.274 +		}
   1.275 +	}
   1.276 +
   1.277 +//
   1.278 +// End of CTAnimWindow class //
   1.279 +//
   1.280 +
   1.281 +CTAnimWindowGroup::CTAnimWindowGroup(CTClient *aClient) : CTWindowGroup(aClient)
   1.282 +	{
   1.283 +	}
   1.284 +
   1.285 +void CTAnimWindowGroup::CursorKeyL(TInt xMove,TInt yMove,TInt modifiers)
   1.286 +	{
   1.287 +	if (iCursorMode==0)
   1.288 +		iCurWin->AdjustSizeL(xMove,yMove,modifiers);
   1.289 +	else if (iCurWin->SubType()==69)
   1.290 +		{
   1.291 +		if (iCursorMode==1)
   1.292 +			((CTAnimWindow1 *)iCurWin)->AdjustAnimRect(xMove,yMove,modifiers);
   1.293 +		else
   1.294 +			((CTAnimWindow1 *)iCurWin)->AdjustPolyRectL(xMove,yMove,modifiers);
   1.295 +		}
   1.296 +	}
   1.297 +
   1.298 +void CTAnimWindowGroup::KeyL(const TKeyEvent &aKey,const TTime &aTime)
   1.299 +	{
   1.300 +	if (aKey.iModifiers&EModifierCtrl)
   1.301 +		{
   1.302 +		TInt type=0;
   1.303 +		switch(aKey.iCode)
   1.304 +			{
   1.305 +			case 1:
   1.306 +				type=1;
   1.307 +				break;
   1.308 +			case 2:
   1.309 +				type=2;
   1.310 +				break;
   1.311 +			}
   1.312 +		if (type!=0)
   1.313 +			{
   1.314 +			TPoint pos;
   1.315 +			TSize size;
   1.316 +			pos.iX=iCurWin->Size().iWidth>>2;
   1.317 +			pos.iY=iCurWin->Size().iHeight>>2;
   1.318 +			size.iWidth=iCurWin->Size().iWidth>>1;
   1.319 +			size.iHeight=iCurWin->Size().iHeight>>1;
   1.320 +			SetCurrentWindow(((CTAnimClient *)iClient)->CreateTestWindowL(pos,size,iCurWin,type));
   1.321 +			return;
   1.322 +			}
   1.323 +		}
   1.324 +	if (aKey.iModifiers&EModifierFunc)
   1.325 +		{
   1.326 +		switch(aKey.iCode)
   1.327 +			{
   1.328 +			case 'x':
   1.329 +				((CTAnimClient *)iClient)->ExitL();
   1.330 +				break;
   1.331 +			}
   1.332 +		}
   1.333 +	else switch(aKey.iCode)
   1.334 +		{
   1.335 +		case ' ':
   1.336 +			iCursorMode=(iCursorMode+1)%3;
   1.337 +			break;
   1.338 +		case 8:
   1.339 +			CTWin::Delete(iCurWin);
   1.340 +			break;
   1.341 +		case 9:
   1.342 +			if (aKey.iModifiers&EModifierShift)
   1.343 +				SetCurrentWindow(iCurWin->Prev());
   1.344 +			else
   1.345 +				SetCurrentWindow(iCurWin->Next());
   1.346 +			break;
   1.347 +		case 13:
   1.348 +			if (iCurWin->SubType()==69)
   1.349 +				((CTAnimWindow1 *)iCurWin)->ToggleMask();
   1.350 +			break;
   1.351 +		case EKeyLeftArrow:
   1.352 +			CursorKeyL(-Xmove,0,aKey.iModifiers);
   1.353 +			break;
   1.354 +		case EKeyRightArrow:
   1.355 +			CursorKeyL(Xmove,0,aKey.iModifiers);
   1.356 +			break;
   1.357 +		case EKeyUpArrow:
   1.358 +			CursorKeyL(0,-Ymove,aKey.iModifiers);
   1.359 +			break;
   1.360 +		case EKeyDownArrow:
   1.361 +			CursorKeyL(0,Ymove,aKey.iModifiers);
   1.362 +			break;
   1.363 +		default:
   1.364 +			iCurWin->WinKeyL(aKey,aTime);
   1.365 +			break;
   1.366 +		}
   1.367 +	}
   1.368 +
   1.369 +//
   1.370 +
   1.371 +CTAnimClient::CTAnimClient()
   1.372 +	{
   1.373 +	}
   1.374 +
   1.375 +CTBaseWin *CTAnimClient::CreateTestWindowL(TPoint pos,TSize size,CTWinBase *parent, TInt type)
   1.376 +	{
   1.377 +	CTBaseWin *win;
   1.378 +	if (type==1)
   1.379 +		{
   1.380 +		win=new(ELeave) CTAnimWindow1(iAnimDll);
   1.381 +		win->ConstructExtLD(*parent,pos,size);
   1.382 +		win->Activate();
   1.383 +		}
   1.384 +	else
   1.385 +		{
   1.386 +		win=new(ELeave) CTAnimWindow2(iAnimDll);
   1.387 +		win->ConstructExtLD(*parent,pos,size);
   1.388 +		}
   1.389 +	win->AssignGC(*iGc);
   1.390 +	return(win);
   1.391 +	}
   1.392 +
   1.393 +CTAnimClient::~CTAnimClient()
   1.394 +	{
   1.395 +	DestroyWindows();
   1.396 +	iAnimDll.Close();
   1.397 +	}
   1.398 +
   1.399 +void CTAnimClient::ErrorTests()
   1.400 +	{
   1.401 +	RAnimDll animDll=RAnimDll(iWs);
   1.402 +	if (animDll.Load(NONEXISTENT_DLL_NAME)!=KErrNotFound)
   1.403 +		AnimPanic(EAnimPanicBadLoadFailed);
   1.404 +	animDll.Close();		// Close should be harmless, but unnecassary
   1.405 +	RAnimDll animDll2=RAnimDll(iWs);
   1.406 +	if (animDll2.Load(NONEXISTENT_DLL_NAME)!=KErrNotFound)
   1.407 +		AnimPanic(EAnimPanicBadLoadFailed);
   1.408 +	}
   1.409 +
   1.410 +void CTAnimClient::ConstructL()
   1.411 +	{
   1.412 +	CTClient::ConstructL();
   1.413 +
   1.414 +	iGroup=new(ELeave) CTAnimWindowGroup(this);
   1.415 +	iGroup->ConstructL();
   1.416 +	
   1.417 +	ErrorTests();
   1.418 +
   1.419 +	iAnimDll=RAnimDll(iWs);
   1.420 +	User::LeaveIfError(iAnimDll.Load(ANIM_DLL_NAME));
   1.421 +
   1.422 +	CreateTestWindowL(TPoint(30,20),TSize(220,140),iGroup, 1);
   1.423 +	CreateTestWindowL(TPoint(260,60),TSize(60,40),iGroup, 2);
   1.424 +	iGroup->SetCurrentWindow(iGroup->Child());
   1.425 +	}
   1.426 +
   1.427 +void CTAnimClient::ExitL()
   1.428 +	{
   1.429 +	CActiveScheduler::Stop();
   1.430 +	User::Leave(0);		// Signals RunL not to do another Request()
   1.431 +	}
   1.432 +
   1.433 +GLDEF_C CTClient *CreateClientL()
   1.434 +	{
   1.435 +	return(new(ELeave) CTAnimClient());
   1.436 +	}
   1.437 +
   1.438 +GLDEF_C TInt E32Main()
   1.439 +	{
   1.440 +	return(TestLibStartUp(CreateClientL));
   1.441 +	}