os/graphics/windowing/windowserver/test/MBMANIM.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/MBMANIM.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,159 @@
     1.4 +// Copyright (c) 1999-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 +// Anim DLL to animate a bitmap
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include "MBMCMD.H"
    1.22 +#include "MBMANIM.H"
    1.23 +
    1.24 +#define DEFAUlT_LINE_WIDTH 4
    1.25 +#define DEFAUlT_MASK_WIDTH_FACTOR 3
    1.26 +#define DEFAUlT_END_POINT_FACTOR 2
    1.27 +#define BLACK TRgb::Gray2(0)
    1.28 +#define WHITE TRgb::Gray2(1)
    1.29 +
    1.30 +
    1.31 +EXPORT_C CAnimDll *CreateCAnimDllL()
    1.32 +	{
    1.33 +	return(new(ELeave) CAnimateMbmAnimDll());
    1.34 +	}
    1.35 +
    1.36 +
    1.37 +/*CAnimateMbmAnimDll*/
    1.38 +
    1.39 +CAnim *CAnimateMbmAnimDll::CreateInstanceL(TInt /*aType*/)
    1.40 +	{
    1.41 +	return new(ELeave) CAnimateMbm();
    1.42 +	}
    1.43 +
    1.44 +
    1.45 +/*CAnimTimer*/
    1.46 +
    1.47 +void CAnimTimer::ConstructL()
    1.48 +	{
    1.49 +	CTimer::ConstructL();
    1.50 +	}
    1.51 +
    1.52 +void CAnimTimer::DoCancel()
    1.53 +	{}
    1.54 +
    1.55 +void CAnimTimer::RunL()
    1.56 +	{
    1.57 +	iAnimator->Animate();
    1.58 +	}
    1.59 +
    1.60 +
    1.61 +/*CAnimateMbm*/
    1.62 +
    1.63 +CAnimateMbm::~CAnimateMbm()
    1.64 +	{
    1.65 +	delete iTimer;
    1.66 +	delete iBitmap;
    1.67 +	}
    1.68 +
    1.69 +void CAnimateMbm::ConstructL(TAny *, TBool )
    1.70 +	{
    1.71 +	iTimer=new(ELeave) CAnimTimer(this);
    1.72 +	iTimer->ConstructL();
    1.73 +	CActiveScheduler::Add(iTimer);
    1.74 +	iInterval=100000;		//0.1 secs
    1.75 +	iBitmap=new(ELeave) CFbsBitmap();
    1.76 +	iWindowFunctions->SetRect(TRect(0,0,20,20));
    1.77 +	}
    1.78 +
    1.79 +void CAnimateMbm::Animate()
    1.80 +	{
    1.81 +	if (!iRunning)
    1.82 +		return;
    1.83 +	iTimer->After(iInterval);
    1.84 +	++iIndex;
    1.85 +	while(LoadBitmap()!=KErrNone)
    1.86 +		iIndex=0;
    1.87 +	iWindowFunctions->ActivateGc();
    1.88 +	Redraw();
    1.89 +	WindowFunctions()->DeactivateGc();
    1.90 +	WindowFunctions()->Update();
    1.91 +	}
    1.92 +
    1.93 +TBool CAnimateMbm::OfferRawEvent(const TRawEvent& /*aRawEvent*/)
    1.94 +	{
    1.95 +	return EFalse;
    1.96 +	}
    1.97 +
    1.98 +void CAnimateMbm::Animate(TDateTime* /*aDateTime*/)
    1.99 +	{
   1.100 +	}
   1.101 +
   1.102 +void CAnimateMbm::Redraw()
   1.103 +	{
   1.104 +	iGc->BitBlt(TPoint(),iBitmap);
   1.105 +	/*if (1>0)
   1.106 +		{
   1.107 +		iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
   1.108 +		iGc->SetBrushColor(TRgb::Gray16(iIndex));
   1.109 +		iGc->DrawRect(TRect(5,5,300,300));
   1.110 +		}*/
   1.111 +	}
   1.112 +
   1.113 +void CAnimateMbm::Command(TInt aOpcode,TAny* /*aParams*/)
   1.114 +	{
   1.115 +	switch (aOpcode)
   1.116 +		{
   1.117 +	case EMbmOpDeactivate:
   1.118 +		//iFunctions->SetSync(MAnimGeneralFunctions::ESyncNone);
   1.119 +		if (iRunning)
   1.120 +			{
   1.121 +			WindowFunctions()->ActivateGc();
   1.122 +			WindowFunctions()->DeactivateGc();
   1.123 +			iRunning=EFalse;
   1.124 +			}
   1.125 +		break;
   1.126 +	case EMbmOpFaster:
   1.127 +		iInterval=(19*iInterval.Int())/20;
   1.128 +		break;
   1.129 +	case EMbmOpSlower:
   1.130 +		iInterval=(21*iInterval.Int())/20;
   1.131 +		break;
   1.132 +	default:
   1.133 +		iFunctions->Panic();
   1.134 +		}
   1.135 +	}
   1.136 +
   1.137 +void CAnimateMbm::FocusChanged(TBool )
   1.138 +	{
   1.139 +	}
   1.140 +
   1.141 +TInt CAnimateMbm::CommandReplyL(TInt aOpcode,TAny* aParams)
   1.142 +	{
   1.143 +	switch (aOpcode)
   1.144 +		{
   1.145 +	case EMbmOpActivate:
   1.146 +		//iFunctions->SetSync(MAnimGeneralFunctions::ESyncSecond);
   1.147 +		if (!iRunning)
   1.148 +			{
   1.149 +			iRunning=ETrue;
   1.150 +			}
   1.151 +		iTimer->After(iInterval);
   1.152 +		break;
   1.153 +	case EMbmOpSetFileName:
   1.154 +		iName=*STATIC_CAST(TBuf<32>*,aParams);
   1.155 +		iIndex=0;
   1.156 +		User::LeaveIfError(LoadBitmap());
   1.157 +		break;
   1.158 +	default:
   1.159 +		iFunctions->Panic();
   1.160 +		}
   1.161 +	return KErrNone;
   1.162 +	}