1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/stdgraphic/stdgraphicdrawer.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,69 @@
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 +//
1.18 +
1.19 +#ifndef __STDGRAPHICDRAWER_H__
1.20 +#define __STDGRAPHICDRAWER_H__
1.21 +
1.22 +#include "graphics/WSGRAPHICDRAWER.H"
1.23 +#include <graphics/WSGRAPHICDRAWERINTERFACE.H>
1.24 +#include <icl/imagedata.h>
1.25 +#include "stdgraphictestdrawer.h"
1.26 +
1.27 +class CFbsBitmap;
1.28 +class MWsGraphicDrawerContext;
1.29 +
1.30 +NONSHARABLE_CLASS(CWsGraphicDrawerBitmap): public CWsGraphicDrawer
1.31 + {
1.32 +public:
1.33 + enum
1.34 + {
1.35 + EImplUid = 0x10281921
1.36 + };
1.37 + static CWsGraphicDrawerBitmap* CreateL();
1.38 + ~CWsGraphicDrawerBitmap();
1.39 + void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& aData);
1.40 + void HandleMessage(const TDesC8& aData);
1.41 +private:
1.42 + CWsGraphicDrawerBitmap();
1.43 + void DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const;
1.44 +private:
1.45 + MWsGraphicDrawerContext* iContext;
1.46 + CFbsBitmap* iBitmap;
1.47 + CFbsBitmap* iMask;
1.48 + };
1.49 +
1.50 +NONSHARABLE_CLASS(CWsGraphicDrawerBitmapAnimation): public CWsGraphicDrawer
1.51 + {
1.52 +public:
1.53 + enum
1.54 + {
1.55 + EImplUid = 0x10281AAE
1.56 + };
1.57 + static CWsGraphicDrawerBitmapAnimation* CreateL();
1.58 + ~CWsGraphicDrawerBitmapAnimation();
1.59 + void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& aData);
1.60 + void HandleMessage(const TDesC8& aData);
1.61 +private:
1.62 + CWsGraphicDrawerBitmapAnimation();
1.63 + void DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const;
1.64 +private:
1.65 + class CFrame;
1.66 + MWsGraphicDrawerContext* iContext;
1.67 + RPointerArray<CFrame> iFrames;
1.68 + TInt64 iAnimationLength;
1.69 + CFrameRate iFps;
1.70 + };
1.71 +
1.72 +#endif //__STDGRAPHICDRAWER_H__