Update contrib.
1 // Copyright (c) 2005-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 // Standard CWsGraphic plugins
18 #ifndef __W32STDGRAPHIC_H__
19 #define __W32STDGRAPHIC_H__
22 #include <icl/imagedata.h>
24 class TWsGraphicAnimation: public TWsGraphicMsgFixedBase
25 /** data attached to a CWindowGc::DrawWsGraphic to allow the artwork to understand VCR-style
26 play-stop-pause commands.
35 IMPORT_C TWsGraphicAnimation();
36 IMPORT_C void Play(TBool aLoop);
37 IMPORT_C void Pause();
38 IMPORT_C void Stop(TBool aImmediately);
39 IMPORT_C TBool IsPlaying() const;
40 IMPORT_C TBool IsStopped() const;
41 IMPORT_C TBool IsStopping() const;
42 IMPORT_C TBool IsPaused() const;
43 IMPORT_C TBool Loops() const;
46 void SetState(TUint aState);
50 // animation state in lowest nibble
61 TTime iPauseOrStopping;
64 NONSHARABLE_CLASS(CWsGraphicBitmap): public CWsGraphic
65 /** Client representation of a window-server-side CFbsBitmap owned by this Client
72 IMPORT_C static CWsGraphicBitmap* NewL(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask);
73 IMPORT_C static CWsGraphicBitmap* NewL(TUid aUid,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask);
74 IMPORT_C static CWsGraphicBitmap* NewL(const TWsGraphicId& aReplace,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask);
75 IMPORT_C ~CWsGraphicBitmap();
76 public: // protected virtuals from CWsGraphic promoted to public
77 IMPORT_C TInt ShareGlobally();
78 IMPORT_C TInt UnShareGlobally();
79 IMPORT_C TInt Share(TSecureId aClientId);
80 IMPORT_C TInt UnShare(TSecureId aClientId);
83 void HandleMessage(const TDesC8& aData);
87 NONSHARABLE_CLASS(CWsGraphicBitmapAnimation): public CWsGraphic
88 /** Client representation of a window-server-side CFbsBitmap owned by this Client
95 NONSHARABLE_CLASS(CFrame): public CBase
98 IMPORT_C static CFrame* NewL();
100 // public getters/setters
101 IMPORT_C TFrameInfo FrameInfo() const;
102 IMPORT_C void SetFrameInfo(const TFrameInfo& aFrameInfo);
103 IMPORT_C const CFbsBitmap* Bitmap() const;
104 IMPORT_C void SetBitmap(CFbsBitmap* aBitmap);
105 IMPORT_C const CFbsBitmap* Mask() const;
106 IMPORT_C void SetMask(CFbsBitmap* aMask);
110 friend class CWsGraphicBitmapAnimation;
111 TFrameInfo iFrameInfo;
115 typedef TArray<CFrame*> TFrames;
117 IMPORT_C static CWsGraphicBitmapAnimation* NewL(const TFrames& aFrames);
118 IMPORT_C static CWsGraphicBitmapAnimation* NewL(TUid aUid,const TFrames& aFrames);
119 IMPORT_C static CWsGraphicBitmapAnimation* NewL(const TWsGraphicId& aReplace,const TFrames& aFrames);
120 IMPORT_C ~CWsGraphicBitmapAnimation();
121 public: // protected virtuals from CWsGraphic promoted to public
122 IMPORT_C TInt ShareGlobally();
123 IMPORT_C TInt UnShareGlobally();
124 IMPORT_C TInt Share(TSecureId aClientId);
125 IMPORT_C TInt UnShare(TSecureId aClientId);
127 CWsGraphicBitmapAnimation();
128 static HBufC8* PackLC(const TFrames& aFrames);
129 void HandleMessage(const TDesC8& aData);
133 #endif //__W32STDGRAPHIC_H__