os/graphics/windowing/windowserver/inc/W32STDGRAPHIC.H
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/inc/W32STDGRAPHIC.H	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,133 @@
     1.4 +// Copyright (c) 2005-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 +// Standard CWsGraphic plugins
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __W32STDGRAPHIC_H__
    1.22 +#define __W32STDGRAPHIC_H__
    1.23 +
    1.24 +#include <w32std.h>
    1.25 +#include <icl/imagedata.h>
    1.26 +	
    1.27 +class TWsGraphicAnimation: public TWsGraphicMsgFixedBase
    1.28 +/** data attached to a CWindowGc::DrawWsGraphic to allow the artwork to understand VCR-style
    1.29 +	play-stop-pause commands.
    1.30 +	@publishedAll
    1.31 +	@released
    1.32 +*/	{
    1.33 +public:
    1.34 +	enum
    1.35 +		{
    1.36 +		ETypeId = 0x10281AB1
    1.37 +		};
    1.38 +	IMPORT_C TWsGraphicAnimation();
    1.39 +	IMPORT_C void Play(TBool aLoop);
    1.40 +	IMPORT_C void Pause();
    1.41 +	IMPORT_C void Stop(TBool aImmediately);
    1.42 +	IMPORT_C TBool IsPlaying() const;
    1.43 +	IMPORT_C TBool IsStopped() const;
    1.44 +	IMPORT_C TBool IsStopping() const;
    1.45 +	IMPORT_C TBool IsPaused() const;
    1.46 +	IMPORT_C TBool Loops() const;
    1.47 +private:
    1.48 +	TUint State() const;
    1.49 +	void SetState(TUint aState);
    1.50 +private:
    1.51 +	enum 
    1.52 +		{
    1.53 +		// animation state in lowest nibble
    1.54 +		EStopped	= 0x00,
    1.55 +		EPlaying	= 0x01,
    1.56 +		EStopping	= 0x02,
    1.57 +		EPaused		= 0x03,
    1.58 +		EStateMask	= 0x0F,
    1.59 +		// other flags above
    1.60 +		ELoop		= 0x10,
    1.61 +		};
    1.62 +	TUint iFlags;
    1.63 +	TTime iPlay;
    1.64 +	TTime iPauseOrStopping;
    1.65 +	};
    1.66 +
    1.67 +NONSHARABLE_CLASS(CWsGraphicBitmap): public CWsGraphic
    1.68 +/** Client representation of a window-server-side CFbsBitmap owned by this Client
    1.69 +
    1.70 +@publishedAll
    1.71 +@released
    1.72 +*/
    1.73 +	{
    1.74 +public:
    1.75 +	IMPORT_C static CWsGraphicBitmap* NewL(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask);
    1.76 +	IMPORT_C static CWsGraphicBitmap* NewL(TUid aUid,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask);
    1.77 +	IMPORT_C static CWsGraphicBitmap* NewL(const TWsGraphicId& aReplace,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask);
    1.78 +	IMPORT_C ~CWsGraphicBitmap();
    1.79 +public: // protected virtuals from CWsGraphic promoted to public
    1.80 +	IMPORT_C TInt ShareGlobally();
    1.81 +	IMPORT_C TInt UnShareGlobally();
    1.82 +	IMPORT_C TInt Share(TSecureId aClientId);
    1.83 +	IMPORT_C TInt UnShare(TSecureId aClientId);
    1.84 +private:
    1.85 +	CWsGraphicBitmap();
    1.86 +	void HandleMessage(const TDesC8& aData);
    1.87 +	void OnReplace();
    1.88 +};
    1.89 +
    1.90 +NONSHARABLE_CLASS(CWsGraphicBitmapAnimation): public CWsGraphic
    1.91 +/** Client representation of a window-server-side CFbsBitmap owned by this Client
    1.92 +
    1.93 +@publishedAll
    1.94 +@released
    1.95 +*/
    1.96 +	{
    1.97 +public:
    1.98 +	NONSHARABLE_CLASS(CFrame): public CBase
    1.99 +		{
   1.100 +	public:
   1.101 +		IMPORT_C static CFrame* NewL();
   1.102 +		IMPORT_C ~CFrame();
   1.103 +		// public getters/setters
   1.104 +		IMPORT_C TFrameInfo FrameInfo() const;
   1.105 +		IMPORT_C void SetFrameInfo(const TFrameInfo& aFrameInfo);
   1.106 +		IMPORT_C const CFbsBitmap* Bitmap() const;
   1.107 +		IMPORT_C void SetBitmap(CFbsBitmap* aBitmap);
   1.108 +		IMPORT_C const CFbsBitmap* Mask() const;
   1.109 +		IMPORT_C void SetMask(CFbsBitmap* aMask);
   1.110 +	private:
   1.111 +		CFrame();
   1.112 +	private:
   1.113 +		friend class CWsGraphicBitmapAnimation;
   1.114 +		TFrameInfo iFrameInfo;
   1.115 +		CFbsBitmap* iBitmap;
   1.116 +		CFbsBitmap* iMask;
   1.117 +		};
   1.118 +	typedef TArray<CFrame*> TFrames;
   1.119 +public:
   1.120 +	IMPORT_C static CWsGraphicBitmapAnimation* NewL(const TFrames& aFrames);
   1.121 +	IMPORT_C static CWsGraphicBitmapAnimation* NewL(TUid aUid,const TFrames& aFrames);
   1.122 +	IMPORT_C static CWsGraphicBitmapAnimation* NewL(const TWsGraphicId& aReplace,const TFrames& aFrames);
   1.123 +	IMPORT_C ~CWsGraphicBitmapAnimation();
   1.124 +public: // protected virtuals from CWsGraphic promoted to public
   1.125 +	IMPORT_C TInt ShareGlobally();
   1.126 +	IMPORT_C TInt UnShareGlobally();
   1.127 +	IMPORT_C TInt Share(TSecureId aClientId);
   1.128 +	IMPORT_C TInt UnShare(TSecureId aClientId);
   1.129 +private:
   1.130 +	CWsGraphicBitmapAnimation();
   1.131 +	static HBufC8* PackLC(const TFrames& aFrames);
   1.132 +	void HandleMessage(const TDesC8& aData);
   1.133 +	void OnReplace();
   1.134 +};
   1.135 +
   1.136 +#endif //__W32STDGRAPHIC_H__