Update contrib.
1 // Copyright (c) 1999-2009 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 // Anim DLL to animate a bitmap
21 #define DEFAUlT_LINE_WIDTH 4
22 #define DEFAUlT_MASK_WIDTH_FACTOR 3
23 #define DEFAUlT_END_POINT_FACTOR 2
24 #define BLACK TRgb::Gray2(0)
25 #define WHITE TRgb::Gray2(1)
28 EXPORT_C CAnimDll *CreateCAnimDllL()
30 return(new(ELeave) CAnimateMbmAnimDll());
34 /*CAnimateMbmAnimDll*/
36 CAnim *CAnimateMbmAnimDll::CreateInstanceL(TInt /*aType*/)
38 return new(ELeave) CAnimateMbm();
44 void CAnimTimer::ConstructL()
49 void CAnimTimer::DoCancel()
52 void CAnimTimer::RunL()
60 CAnimateMbm::~CAnimateMbm()
66 void CAnimateMbm::ConstructL(TAny *, TBool )
68 iTimer=new(ELeave) CAnimTimer(this);
70 CActiveScheduler::Add(iTimer);
71 iInterval=100000; //0.1 secs
72 iBitmap=new(ELeave) CFbsBitmap();
73 iWindowFunctions->SetRect(TRect(0,0,20,20));
76 void CAnimateMbm::Animate()
80 iTimer->After(iInterval);
82 while(LoadBitmap()!=KErrNone)
84 iWindowFunctions->ActivateGc();
86 WindowFunctions()->DeactivateGc();
87 WindowFunctions()->Update();
90 TBool CAnimateMbm::OfferRawEvent(const TRawEvent& /*aRawEvent*/)
95 void CAnimateMbm::Animate(TDateTime* /*aDateTime*/)
99 void CAnimateMbm::Redraw()
101 iGc->BitBlt(TPoint(),iBitmap);
104 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
105 iGc->SetBrushColor(TRgb::Gray16(iIndex));
106 iGc->DrawRect(TRect(5,5,300,300));
110 void CAnimateMbm::Command(TInt aOpcode,TAny* /*aParams*/)
114 case EMbmOpDeactivate:
115 //iFunctions->SetSync(MAnimGeneralFunctions::ESyncNone);
118 WindowFunctions()->ActivateGc();
119 WindowFunctions()->DeactivateGc();
124 iInterval=(19*iInterval.Int())/20;
127 iInterval=(21*iInterval.Int())/20;
134 void CAnimateMbm::FocusChanged(TBool )
138 TInt CAnimateMbm::CommandReplyL(TInt aOpcode,TAny* aParams)
143 //iFunctions->SetSync(MAnimGeneralFunctions::ESyncSecond);
148 iTimer->After(iInterval);
150 case EMbmOpSetFileName:
151 iName=*STATIC_CAST(TBuf<32>*,aParams);
153 User::LeaveIfError(LoadBitmap());