1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/tanim/TANIMDLL.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,317 @@
1.4 +// Copyright (c) 1995-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 +// Test Animated DLL
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32std.h>
1.22 +#include <w32std.h>
1.23 +#include <w32adll.h>
1.24 +#include <bitstd.h>
1.25 +#include "ANIMDLL.H"
1.26 +
1.27 +#define ANIM_TEST_TEXT _L("Testing 123")
1.28 +
1.29 +class CTestAnim : public CWindowAnim
1.30 + {
1.31 + enum {ENumPolyPoints=9};
1.32 +public:
1.33 + ~CTestAnim();
1.34 + virtual void ConstructL(TAny *aArgs, TBool aHasFocus);
1.35 + virtual void Animate(TDateTime *aDateTime);
1.36 + virtual void Redraw();
1.37 + virtual void Command(TInt aOpcode, TAny *aArgs);
1.38 + virtual TInt CommandReplyL(TInt aOpcode, TAny *aArgs);
1.39 + void SetPolyList(const TRect &aRect);
1.40 + void DrawPolyLine();
1.41 + void DrawBitmap();
1.42 + void DrawText();
1.43 + void TweakPolyList(TInt aState);
1.44 + void FocusChanged(TBool aState);
1.45 + void InvalidateText();
1.46 + void InvalidateBitmap();
1.47 + //Pure virtual function from MEventHandler
1.48 + virtual TBool OfferRawEvent(const TRawEvent &aRawEvent);
1.49 +private:
1.50 + void AppendTime(TDes& aTimeText,const TTime& aTime) const;
1.51 +private:
1.52 + TPoint iPos;
1.53 + TSize iSize;
1.54 + TInt iColor;
1.55 + TBool iMasked;
1.56 + TRect iPolyRect;
1.57 + TInt iPolyState;
1.58 + TInt iWiggleSize;
1.59 + TPoint iTextPos;
1.60 + TBool iHasFocus;
1.61 + CArrayFixFlat<TPoint> *iPolyList;
1.62 + CFbsBitmap iBitmap1;
1.63 + CFbsBitmap iBitmap2;
1.64 + CFbsBitmap iMask;
1.65 + CFbsFont *iFont;
1.66 + };
1.67 +
1.68 +class CTestAnimDll : public CAnimDll
1.69 + {
1.70 +public:
1.71 + CAnim *CreateInstanceL(TInt aType);
1.72 +private:
1.73 + };
1.74 +
1.75 +/*#if defined(__WINS__)
1.76 +#pragma data_seg(".E32_UID")
1.77 +__WINS_UID(0, KWservAnimDllUidValue, 0)
1.78 +#pragma data_seg()
1.79 +#endif*/
1.80 +
1.81 +EXPORT_C CAnimDll *CreateCAnimDllL()
1.82 + {
1.83 + return(new(ELeave) CTestAnimDll());
1.84 + }
1.85 +
1.86 +// Instance code //
1.87 +
1.88 +void CTestAnim::Animate(TDateTime *)
1.89 + {
1.90 + if (!iWindowFunctions->IsHidden())
1.91 + {
1.92 + iWindowFunctions->ActivateGc();
1.93 + if (iPolyList)
1.94 + DrawPolyLine();
1.95 + }
1.96 + if (iPolyList)
1.97 + {
1.98 + iPolyState=(iPolyState+1)%4;
1.99 + TweakPolyList(iPolyState);
1.100 + }
1.101 + if (!iWindowFunctions->IsHidden())
1.102 + {
1.103 + if (iPolyList)
1.104 + DrawPolyLine();
1.105 + DrawText();
1.106 + DrawBitmap();
1.107 + }
1.108 + iColor=(iColor+16)&0xFF;
1.109 + }
1.110 +
1.111 +void CTestAnim::DrawPolyLine()
1.112 + {
1.113 + iGc->SetDrawMode(CGraphicsContext::EDrawModeXOR);
1.114 + iGc->SetPenColor(TRgb(255,255,255));
1.115 + iGc->DrawPolyLine(iPolyList);
1.116 + iGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
1.117 + iGc->SetPenColor(TRgb(0,0,0));
1.118 + }
1.119 +
1.120 +void CTestAnim::DrawBitmap()
1.121 + {
1.122 + iGc->SetClippingRegion(TRegionFix<1>(TRect(iPos,iSize)));
1.123 + CFbsBitmap *bitmap=iFunctions->FlashStateOn() ? &iBitmap1 : &iBitmap2;
1.124 + if (iMasked)
1.125 + iGc->BitBltMasked(iPos,bitmap, TRect(iSize), &iMask,EFalse);
1.126 + else
1.127 + iGc->BitBlt(iPos,bitmap);
1.128 + iGc->CancelClippingRegion();
1.129 + }
1.130 +
1.131 +void CTestAnim::AppendTime(TDes& aTimeText,const TTime& aTime) const
1.132 + {
1.133 + _LIT(TimeFormat,"%:0%H%:1%T%:2%S");
1.134 + TRAPD(err,aTime.FormatL(aTimeText,TimeFormat));
1.135 + if (err!=KErrNone)
1.136 + {
1.137 + _LIT(DummyTime,"######");
1.138 + aTimeText.Append(DummyTime);
1.139 + }
1.140 + }
1.141 +
1.142 +void CTestAnim::DrawText()
1.143 + {
1.144 + if (iHasFocus)
1.145 + {
1.146 + iGc->UseFont(iFont);
1.147 + TBuf<0x20> timebuf;
1.148 + TTime time(iFunctions->SystemTime());
1.149 + AppendTime(timebuf,time);
1.150 + TRect rect(iTextPos.iX,iTextPos.iY-iFont->AscentInPixels(),iTextPos.iX+iFont->TextWidthInPixels(timebuf),iTextPos.iY-iFont->AscentInPixels()+iFont->HeightInPixels());
1.151 + iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.152 + iGc->DrawText(timebuf,rect,iFont->AscentInPixels());
1.153 + time.UniversalTime();
1.154 + AppendTime(timebuf,time);
1.155 + rect.Move(0,iFont->HeightInPixels());
1.156 + iGc->DrawText(timebuf,rect,iFont->AscentInPixels());
1.157 + }
1.158 + }
1.159 +
1.160 +void CTestAnim::Redraw()
1.161 + {
1.162 + DrawText();
1.163 + DrawBitmap();
1.164 + if (iPolyList)
1.165 + DrawPolyLine();
1.166 + }
1.167 +
1.168 +void CTestAnim::ConstructL(TAny *aArgs, TBool aHasFocus)
1.169 + {
1.170 + iHasFocus=aHasFocus;
1.171 + iPos=((CTAParams *)aArgs)->pos;
1.172 + iFunctions->SetInterval(((CTAParams *)aArgs)->interval);
1.173 + if (iBitmap1.Duplicate(((CTAParams *)aArgs)->bit1)!=KErrNone ||
1.174 + iBitmap2.Duplicate(((CTAParams *)aArgs)->bit2)!=KErrNone ||
1.175 + iMask.Duplicate(((CTAParams *)aArgs)->mask)!=KErrNone)
1.176 + iFunctions->Panic();
1.177 + iSize.iWidth=Min(iBitmap1.SizeInPixels().iWidth,iBitmap2.SizeInPixels().iWidth);
1.178 + iSize.iHeight=Min(iBitmap1.SizeInPixels().iHeight,iBitmap2.SizeInPixels().iHeight);
1.179 + iWiggleSize=10;
1.180 + iFont=iFunctions->DuplicateFontL(((CTAParams *)aArgs)->font);
1.181 + }
1.182 +
1.183 +void CTestAnim::SetPolyList(const TRect &aRect)
1.184 + {
1.185 + iPolyRect=aRect;
1.186 + TSize halfsize=aRect.Size();
1.187 + halfsize.iWidth>>=1;
1.188 + halfsize.iHeight>>=1;
1.189 + (*iPolyList)[0]=aRect.iTl;
1.190 + (*iPolyList)[1]=TPoint(aRect.iTl.iX+iWiggleSize,aRect.iTl.iY+halfsize.iHeight);
1.191 + (*iPolyList)[2]=TPoint(aRect.iTl.iX,aRect.iBr.iY);
1.192 + (*iPolyList)[3]=TPoint(aRect.iTl.iX+halfsize.iWidth,aRect.iBr.iY-iWiggleSize);
1.193 + (*iPolyList)[4]=aRect.iBr;
1.194 + (*iPolyList)[5]=TPoint(aRect.iBr.iX-iWiggleSize,aRect.iTl.iY+halfsize.iHeight);
1.195 + (*iPolyList)[6]=TPoint(aRect.iBr.iX,aRect.iTl.iY);
1.196 + (*iPolyList)[7]=TPoint(aRect.iTl.iX+halfsize.iWidth,aRect.iTl.iY+iWiggleSize);
1.197 + (*iPolyList)[8]=aRect.iTl;
1.198 + TweakPolyList(iPolyState);
1.199 + }
1.200 +
1.201 +void CTestAnim::TweakPolyList(TInt aState)
1.202 + {
1.203 + TSize halfsize=iPolyRect.Size();
1.204 + halfsize.iWidth>>=1;
1.205 + halfsize.iHeight>>=1;
1.206 + switch(aState)
1.207 + {
1.208 + case 0:
1.209 + (*iPolyList)[7]=TPoint(iPolyRect.iTl.iX+halfsize.iWidth,iPolyRect.iTl.iY+iWiggleSize);
1.210 + (*iPolyList)[1]=TPoint(iPolyRect.iTl.iX,iPolyRect.iTl.iY+halfsize.iHeight);
1.211 + break;
1.212 + case 1:
1.213 + (*iPolyList)[1]=TPoint(iPolyRect.iTl.iX+iWiggleSize,iPolyRect.iTl.iY+halfsize.iHeight);
1.214 + (*iPolyList)[3]=TPoint(iPolyRect.iTl.iX+halfsize.iWidth,iPolyRect.iBr.iY);
1.215 + break;
1.216 + case 2:
1.217 + (*iPolyList)[3]=TPoint(iPolyRect.iTl.iX+halfsize.iWidth,iPolyRect.iBr.iY-iWiggleSize);
1.218 + (*iPolyList)[5]=TPoint(iPolyRect.iBr.iX,iPolyRect.iTl.iY+halfsize.iHeight);
1.219 + break;
1.220 + case 3:
1.221 + (*iPolyList)[5]=TPoint(iPolyRect.iBr.iX-iWiggleSize,iPolyRect.iTl.iY+halfsize.iHeight);
1.222 + (*iPolyList)[7]=TPoint(iPolyRect.iTl.iX+halfsize.iWidth,iPolyRect.iTl.iY);
1.223 + break;
1.224 + }
1.225 + }
1.226 +
1.227 +void CTestAnim::InvalidateText()
1.228 + {
1.229 + TRect invalidate;
1.230 + invalidate.iTl.iX=iTextPos.iX;
1.231 + invalidate.iTl.iY=iTextPos.iY-iFont->AscentInPixels();
1.232 + invalidate.iBr.iX=iTextPos.iX+iFont->TextWidthInPixels(ANIM_TEST_TEXT);
1.233 + invalidate.iBr.iY=iTextPos.iY+iFont->DescentInPixels();
1.234 + iWindowFunctions->Invalidate(invalidate);
1.235 + }
1.236 +
1.237 +void CTestAnim::InvalidateBitmap()
1.238 + {
1.239 + iWindowFunctions->Invalidate(TRect(iPos,iSize));
1.240 + }
1.241 +
1.242 +void CTestAnim::Command(TInt aOpcode, TAny *aArgs)
1.243 + {
1.244 + switch(aOpcode)
1.245 + {
1.246 + case EADllOpcodeMove:
1.247 + {
1.248 + InvalidateBitmap();
1.249 + iPos=((CTAParams *)aArgs)->pos;
1.250 + iWindowFunctions->ActivateGc();
1.251 + DrawBitmap();
1.252 + iFunctions->SetInterval(((CTAParams *)aArgs)->interval);
1.253 + }
1.254 + break;
1.255 + case EADllTextPos:
1.256 + {
1.257 + InvalidateText();
1.258 + iTextPos=((CTAParams *)aArgs)->pos;
1.259 + iWindowFunctions->ActivateGc();
1.260 + DrawText();
1.261 + }
1.262 + break;
1.263 + case EADllToggleBitmapMask:
1.264 + iMasked=!iMasked;
1.265 + InvalidateBitmap();
1.266 + break;
1.267 + }
1.268 + }
1.269 +
1.270 +TInt CTestAnim::CommandReplyL(TInt aOpcode, TAny *aArgs)
1.271 + {
1.272 + switch(aOpcode)
1.273 + {
1.274 + case EADllOpcodePolyLineRect:
1.275 + iWindowFunctions->ActivateGc();
1.276 + if (!iPolyList)
1.277 + {
1.278 + iPolyList=new(ELeave) CArrayFixFlat<TPoint>(ENumPolyPoints);
1.279 + TPoint zeropoint;
1.280 + for(TInt i=0;i<ENumPolyPoints;i++)
1.281 + iPolyList->AppendL(zeropoint);
1.282 + }
1.283 + else
1.284 + DrawPolyLine();
1.285 + SetPolyList(*((TRect *)aArgs));
1.286 + DrawPolyLine();
1.287 + break;
1.288 + default:
1.289 + iFunctions->Panic();
1.290 + }
1.291 + return(KErrNone);
1.292 + }
1.293 +
1.294 +CTestAnim::~CTestAnim()
1.295 + {
1.296 + delete iPolyList;
1.297 + iFunctions->CloseFont(iFont);
1.298 + }
1.299 +
1.300 +void CTestAnim::FocusChanged(TBool aNewState)
1.301 + {
1.302 + iHasFocus=aNewState;
1.303 + InvalidateText();
1.304 + InvalidateBitmap();
1.305 + }
1.306 +
1.307 +TBool CTestAnim::OfferRawEvent(const TRawEvent &/*aRawEvent*/)
1.308 + {
1.309 + return EFalse;
1.310 + }
1.311 +
1.312 +// DLL code //
1.313 +
1.314 +CAnim *CTestAnimDll::CreateInstanceL(TInt )
1.315 + {
1.316 + return(new(ELeave) CTestAnim());
1.317 + }
1.318 +
1.319 +// Dummy E32Dll needed by E32 to build //
1.320 +