First public contribution.
1 // Copyright (c) 1995-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.
24 #define ANIM_TEST_TEXT _L("Testing 123")
26 class CTestAnim : public CWindowAnim
28 enum {ENumPolyPoints=9};
31 virtual void ConstructL(TAny *aArgs, TBool aHasFocus);
32 virtual void Animate(TDateTime *aDateTime);
33 virtual void Redraw();
34 virtual void Command(TInt aOpcode, TAny *aArgs);
35 virtual TInt CommandReplyL(TInt aOpcode, TAny *aArgs);
36 void SetPolyList(const TRect &aRect);
40 void TweakPolyList(TInt aState);
41 void FocusChanged(TBool aState);
42 void InvalidateText();
43 void InvalidateBitmap();
44 //Pure virtual function from MEventHandler
45 virtual TBool OfferRawEvent(const TRawEvent &aRawEvent);
47 void AppendTime(TDes& aTimeText,const TTime& aTime) const;
58 CArrayFixFlat<TPoint> *iPolyList;
65 class CTestAnimDll : public CAnimDll
68 CAnim *CreateInstanceL(TInt aType);
72 /*#if defined(__WINS__)
73 #pragma data_seg(".E32_UID")
74 __WINS_UID(0, KWservAnimDllUidValue, 0)
78 EXPORT_C CAnimDll *CreateCAnimDllL()
80 return(new(ELeave) CTestAnimDll());
85 void CTestAnim::Animate(TDateTime *)
87 if (!iWindowFunctions->IsHidden())
89 iWindowFunctions->ActivateGc();
95 iPolyState=(iPolyState+1)%4;
96 TweakPolyList(iPolyState);
98 if (!iWindowFunctions->IsHidden())
105 iColor=(iColor+16)&0xFF;
108 void CTestAnim::DrawPolyLine()
110 iGc->SetDrawMode(CGraphicsContext::EDrawModeXOR);
111 iGc->SetPenColor(TRgb(255,255,255));
112 iGc->DrawPolyLine(iPolyList);
113 iGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
114 iGc->SetPenColor(TRgb(0,0,0));
117 void CTestAnim::DrawBitmap()
119 iGc->SetClippingRegion(TRegionFix<1>(TRect(iPos,iSize)));
120 CFbsBitmap *bitmap=iFunctions->FlashStateOn() ? &iBitmap1 : &iBitmap2;
122 iGc->BitBltMasked(iPos,bitmap, TRect(iSize), &iMask,EFalse);
124 iGc->BitBlt(iPos,bitmap);
125 iGc->CancelClippingRegion();
128 void CTestAnim::AppendTime(TDes& aTimeText,const TTime& aTime) const
130 _LIT(TimeFormat,"%:0%H%:1%T%:2%S");
131 TRAPD(err,aTime.FormatL(aTimeText,TimeFormat));
134 _LIT(DummyTime,"######");
135 aTimeText.Append(DummyTime);
139 void CTestAnim::DrawText()
145 TTime time(iFunctions->SystemTime());
146 AppendTime(timebuf,time);
147 TRect rect(iTextPos.iX,iTextPos.iY-iFont->AscentInPixels(),iTextPos.iX+iFont->TextWidthInPixels(timebuf),iTextPos.iY-iFont->AscentInPixels()+iFont->HeightInPixels());
148 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
149 iGc->DrawText(timebuf,rect,iFont->AscentInPixels());
150 time.UniversalTime();
151 AppendTime(timebuf,time);
152 rect.Move(0,iFont->HeightInPixels());
153 iGc->DrawText(timebuf,rect,iFont->AscentInPixels());
157 void CTestAnim::Redraw()
165 void CTestAnim::ConstructL(TAny *aArgs, TBool aHasFocus)
168 iPos=((CTAParams *)aArgs)->pos;
169 iFunctions->SetInterval(((CTAParams *)aArgs)->interval);
170 if (iBitmap1.Duplicate(((CTAParams *)aArgs)->bit1)!=KErrNone ||
171 iBitmap2.Duplicate(((CTAParams *)aArgs)->bit2)!=KErrNone ||
172 iMask.Duplicate(((CTAParams *)aArgs)->mask)!=KErrNone)
174 iSize.iWidth=Min(iBitmap1.SizeInPixels().iWidth,iBitmap2.SizeInPixels().iWidth);
175 iSize.iHeight=Min(iBitmap1.SizeInPixels().iHeight,iBitmap2.SizeInPixels().iHeight);
177 iFont=iFunctions->DuplicateFontL(((CTAParams *)aArgs)->font);
180 void CTestAnim::SetPolyList(const TRect &aRect)
183 TSize halfsize=aRect.Size();
185 halfsize.iHeight>>=1;
186 (*iPolyList)[0]=aRect.iTl;
187 (*iPolyList)[1]=TPoint(aRect.iTl.iX+iWiggleSize,aRect.iTl.iY+halfsize.iHeight);
188 (*iPolyList)[2]=TPoint(aRect.iTl.iX,aRect.iBr.iY);
189 (*iPolyList)[3]=TPoint(aRect.iTl.iX+halfsize.iWidth,aRect.iBr.iY-iWiggleSize);
190 (*iPolyList)[4]=aRect.iBr;
191 (*iPolyList)[5]=TPoint(aRect.iBr.iX-iWiggleSize,aRect.iTl.iY+halfsize.iHeight);
192 (*iPolyList)[6]=TPoint(aRect.iBr.iX,aRect.iTl.iY);
193 (*iPolyList)[7]=TPoint(aRect.iTl.iX+halfsize.iWidth,aRect.iTl.iY+iWiggleSize);
194 (*iPolyList)[8]=aRect.iTl;
195 TweakPolyList(iPolyState);
198 void CTestAnim::TweakPolyList(TInt aState)
200 TSize halfsize=iPolyRect.Size();
202 halfsize.iHeight>>=1;
206 (*iPolyList)[7]=TPoint(iPolyRect.iTl.iX+halfsize.iWidth,iPolyRect.iTl.iY+iWiggleSize);
207 (*iPolyList)[1]=TPoint(iPolyRect.iTl.iX,iPolyRect.iTl.iY+halfsize.iHeight);
210 (*iPolyList)[1]=TPoint(iPolyRect.iTl.iX+iWiggleSize,iPolyRect.iTl.iY+halfsize.iHeight);
211 (*iPolyList)[3]=TPoint(iPolyRect.iTl.iX+halfsize.iWidth,iPolyRect.iBr.iY);
214 (*iPolyList)[3]=TPoint(iPolyRect.iTl.iX+halfsize.iWidth,iPolyRect.iBr.iY-iWiggleSize);
215 (*iPolyList)[5]=TPoint(iPolyRect.iBr.iX,iPolyRect.iTl.iY+halfsize.iHeight);
218 (*iPolyList)[5]=TPoint(iPolyRect.iBr.iX-iWiggleSize,iPolyRect.iTl.iY+halfsize.iHeight);
219 (*iPolyList)[7]=TPoint(iPolyRect.iTl.iX+halfsize.iWidth,iPolyRect.iTl.iY);
224 void CTestAnim::InvalidateText()
227 invalidate.iTl.iX=iTextPos.iX;
228 invalidate.iTl.iY=iTextPos.iY-iFont->AscentInPixels();
229 invalidate.iBr.iX=iTextPos.iX+iFont->TextWidthInPixels(ANIM_TEST_TEXT);
230 invalidate.iBr.iY=iTextPos.iY+iFont->DescentInPixels();
231 iWindowFunctions->Invalidate(invalidate);
234 void CTestAnim::InvalidateBitmap()
236 iWindowFunctions->Invalidate(TRect(iPos,iSize));
239 void CTestAnim::Command(TInt aOpcode, TAny *aArgs)
243 case EADllOpcodeMove:
246 iPos=((CTAParams *)aArgs)->pos;
247 iWindowFunctions->ActivateGc();
249 iFunctions->SetInterval(((CTAParams *)aArgs)->interval);
255 iTextPos=((CTAParams *)aArgs)->pos;
256 iWindowFunctions->ActivateGc();
260 case EADllToggleBitmapMask:
267 TInt CTestAnim::CommandReplyL(TInt aOpcode, TAny *aArgs)
271 case EADllOpcodePolyLineRect:
272 iWindowFunctions->ActivateGc();
275 iPolyList=new(ELeave) CArrayFixFlat<TPoint>(ENumPolyPoints);
277 for(TInt i=0;i<ENumPolyPoints;i++)
278 iPolyList->AppendL(zeropoint);
282 SetPolyList(*((TRect *)aArgs));
291 CTestAnim::~CTestAnim()
294 iFunctions->CloseFont(iFont);
297 void CTestAnim::FocusChanged(TBool aNewState)
304 TBool CTestAnim::OfferRawEvent(const TRawEvent &/*aRawEvent*/)
311 CAnim *CTestAnimDll::CreateInstanceL(TInt )
313 return(new(ELeave) CTestAnim());
316 // Dummy E32Dll needed by E32 to build //