Update contrib.
1 // Copyright (c) 1999-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Template for writing Anim DLL's
22 GLDEF_C TInt E32Dll(TDllReason)
27 EXPORT_C CAnimDll *CreateCAnimDllL()
29 return(new(ELeave) CMinAnimDll());
35 CAnim *CMinAnimDll::CreateInstanceL(TInt aType)
40 return new(ELeave) CMinWindowAnim();
42 case EMinAnimHandwriting:
43 return new(ELeave) CMinHandAnim();
46 User::Leave(KErrArgument);
48 return NULL; // dummy return to prevent compiler error
54 CAnimateMbm::~CAnimateMbm()
60 void CAnimateMbm::ConstructL(TAny *, TBool )
62 iTimer=new(ELeave) CAnimTimer(this);
64 CActiveScheduler::Add(iTimer);
65 iInterval=100000; //0.1 secs
66 iBitmap=new(ELeave) CFbsBitmap();
67 iWindowFunctions->SetRect(TRect(0,0,20,20));
70 void CAnimateMbm::Animate()
74 iTimer->After(iInterval);
76 while(LoadBitmap()!=KErrNone)
78 iWindowFunctions->ActivateGc();
80 WindowFunctions()->DeactivateGc();
81 WindowFunctions()->Update();
84 TBool CAnimateMbm::OfferRawEvent(const TRawEvent& /*aRawEvent*/)
89 void CAnimateMbm::Animate(TDateTime* /*aDateTime*/)
93 void CAnimateMbm::Redraw()
95 iGc->BitBlt(TPoint(),iBitmap);
98 void CAnimateMbm::Command(TInt aOpcode,TAny *aParams)
103 //iFunctions->SetSync(MAnimGeneralFunctions::ESyncSecond);
104 iTimer->After(iInterval);
107 case EMbmOpDeactivate:
108 //iFunctions->SetSync(MAnimGeneralFunctions::ESyncNone);
112 iInterval=(19*iInterval.Int())/20;
115 iInterval=(21*iInterval.Int())/20;
117 case EMbmOpSetFileName:
118 iName=*STATIC_CAST(TBuf<32>*,aParams);
126 void CAnimateMbm::FocusChanged(TBool )
130 TInt CAnimateMbm::CommandReplyL(TInt /*aOpcode*/,TAny* /*aParams*/)