1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/Anim/MINANIM.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,133 @@
1.4 +// Copyright (c) 1999-2010 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 +// Template for writing Anim DLL's
1.18 +//
1.19 +//
1.20 +
1.21 +#include "mincmd.h"
1.22 +#include "minanim.h"
1.23 +
1.24 +
1.25 +GLDEF_C TInt E32Dll(TDllReason)
1.26 + {
1.27 + return(KErrNone);
1.28 + }
1.29 +
1.30 +EXPORT_C CAnimDll *CreateCAnimDllL()
1.31 + {
1.32 + return(new(ELeave) CMinAnimDll());
1.33 + }
1.34 +
1.35 +
1.36 +/*CMinAnimDll*/
1.37 +
1.38 +CAnim *CMinAnimDll::CreateInstanceL(TInt aType)
1.39 + {
1.40 + switch (aType)
1.41 + {
1.42 + case EMinAnimWindow:
1.43 + return new(ELeave) CMinWindowAnim();
1.44 +
1.45 + case EMinAnimHandwriting:
1.46 + return new(ELeave) CMinHandAnim();
1.47 +
1.48 + default:
1.49 + User::Leave(KErrArgument);
1.50 + }
1.51 + return NULL; // dummy return to prevent compiler error
1.52 + }
1.53 +
1.54 +
1.55 +/*CAnimateMbm*/
1.56 +
1.57 +CAnimateMbm::~CAnimateMbm()
1.58 + {
1.59 + delete iTimer;
1.60 + delete iBitmap;
1.61 + }
1.62 +
1.63 +void CAnimateMbm::ConstructL(TAny *, TBool )
1.64 + {
1.65 + iTimer=new(ELeave) CAnimTimer(this);
1.66 + iTimer->ConstructL();
1.67 + CActiveScheduler::Add(iTimer);
1.68 + iInterval=100000; //0.1 secs
1.69 + iBitmap=new(ELeave) CFbsBitmap();
1.70 + iWindowFunctions->SetRect(TRect(0,0,20,20));
1.71 + }
1.72 +
1.73 +void CAnimateMbm::Animate()
1.74 + {
1.75 + if (!iRunning)
1.76 + return;
1.77 + iTimer->After(iInterval);
1.78 + ++iIndex;
1.79 + while(LoadBitmap()!=KErrNone)
1.80 + iIndex=0;
1.81 + iWindowFunctions->ActivateGc();
1.82 + Redraw();
1.83 + WindowFunctions()->DeactivateGc();
1.84 + WindowFunctions()->Update();
1.85 + }
1.86 +
1.87 +TBool CAnimateMbm::OfferRawEvent(const TRawEvent& /*aRawEvent*/)
1.88 + {
1.89 + return EFalse;
1.90 + }
1.91 +
1.92 +void CAnimateMbm::Animate(TDateTime* /*aDateTime*/)
1.93 + {
1.94 + }
1.95 +
1.96 +void CAnimateMbm::Redraw()
1.97 + {
1.98 + iGc->BitBlt(TPoint(),iBitmap);
1.99 + }
1.100 +
1.101 +void CAnimateMbm::Command(TInt aOpcode,TAny *aParams)
1.102 + {
1.103 + switch (aOpcode)
1.104 + {
1.105 + case EMbmOpActivate:
1.106 + //iFunctions->SetSync(MAnimGeneralFunctions::ESyncSecond);
1.107 + iTimer->After(iInterval);
1.108 + iRunning=ETrue;
1.109 + break;
1.110 + case EMbmOpDeactivate:
1.111 + //iFunctions->SetSync(MAnimGeneralFunctions::ESyncNone);
1.112 + iRunning=EFalse;
1.113 + break;
1.114 + case EMbmOpFaster:
1.115 + iInterval=(19*iInterval.Int())/20;
1.116 + break;
1.117 + case EMbmOpSlower:
1.118 + iInterval=(21*iInterval.Int())/20;
1.119 + break;
1.120 + case EMbmOpSetFileName:
1.121 + iName=*STATIC_CAST(TBuf<32>*,aParams);
1.122 + iIndex=0;
1.123 + break;
1.124 + default:
1.125 + iFunctions->Panic();
1.126 + }
1.127 + }
1.128 +
1.129 +void CAnimateMbm::FocusChanged(TBool )
1.130 + {
1.131 + }
1.132 +
1.133 +TInt CAnimateMbm::CommandReplyL(TInt /*aOpcode*/,TAny* /*aParams*/)
1.134 + {
1.135 + return KErrNone;
1.136 + }