sl@0
|
1 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Standard CWsGraphic plugins
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __W32STDGRAPHIC_H__
|
sl@0
|
19 |
#define __W32STDGRAPHIC_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <w32std.h>
|
sl@0
|
22 |
#include <icl/imagedata.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
class TWsGraphicAnimation: public TWsGraphicMsgFixedBase
|
sl@0
|
25 |
/** data attached to a CWindowGc::DrawWsGraphic to allow the artwork to understand VCR-style
|
sl@0
|
26 |
play-stop-pause commands.
|
sl@0
|
27 |
@publishedAll
|
sl@0
|
28 |
@released
|
sl@0
|
29 |
*/ {
|
sl@0
|
30 |
public:
|
sl@0
|
31 |
enum
|
sl@0
|
32 |
{
|
sl@0
|
33 |
ETypeId = 0x10281AB1
|
sl@0
|
34 |
};
|
sl@0
|
35 |
IMPORT_C TWsGraphicAnimation();
|
sl@0
|
36 |
IMPORT_C void Play(TBool aLoop);
|
sl@0
|
37 |
IMPORT_C void Pause();
|
sl@0
|
38 |
IMPORT_C void Stop(TBool aImmediately);
|
sl@0
|
39 |
IMPORT_C TBool IsPlaying() const;
|
sl@0
|
40 |
IMPORT_C TBool IsStopped() const;
|
sl@0
|
41 |
IMPORT_C TBool IsStopping() const;
|
sl@0
|
42 |
IMPORT_C TBool IsPaused() const;
|
sl@0
|
43 |
IMPORT_C TBool Loops() const;
|
sl@0
|
44 |
private:
|
sl@0
|
45 |
TUint State() const;
|
sl@0
|
46 |
void SetState(TUint aState);
|
sl@0
|
47 |
private:
|
sl@0
|
48 |
enum
|
sl@0
|
49 |
{
|
sl@0
|
50 |
// animation state in lowest nibble
|
sl@0
|
51 |
EStopped = 0x00,
|
sl@0
|
52 |
EPlaying = 0x01,
|
sl@0
|
53 |
EStopping = 0x02,
|
sl@0
|
54 |
EPaused = 0x03,
|
sl@0
|
55 |
EStateMask = 0x0F,
|
sl@0
|
56 |
// other flags above
|
sl@0
|
57 |
ELoop = 0x10,
|
sl@0
|
58 |
};
|
sl@0
|
59 |
TUint iFlags;
|
sl@0
|
60 |
TTime iPlay;
|
sl@0
|
61 |
TTime iPauseOrStopping;
|
sl@0
|
62 |
};
|
sl@0
|
63 |
|
sl@0
|
64 |
NONSHARABLE_CLASS(CWsGraphicBitmap): public CWsGraphic
|
sl@0
|
65 |
/** Client representation of a window-server-side CFbsBitmap owned by this Client
|
sl@0
|
66 |
|
sl@0
|
67 |
@publishedAll
|
sl@0
|
68 |
@released
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
{
|
sl@0
|
71 |
public:
|
sl@0
|
72 |
IMPORT_C static CWsGraphicBitmap* NewL(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask);
|
sl@0
|
73 |
IMPORT_C static CWsGraphicBitmap* NewL(TUid aUid,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask);
|
sl@0
|
74 |
IMPORT_C static CWsGraphicBitmap* NewL(const TWsGraphicId& aReplace,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask);
|
sl@0
|
75 |
IMPORT_C ~CWsGraphicBitmap();
|
sl@0
|
76 |
public: // protected virtuals from CWsGraphic promoted to public
|
sl@0
|
77 |
IMPORT_C TInt ShareGlobally();
|
sl@0
|
78 |
IMPORT_C TInt UnShareGlobally();
|
sl@0
|
79 |
IMPORT_C TInt Share(TSecureId aClientId);
|
sl@0
|
80 |
IMPORT_C TInt UnShare(TSecureId aClientId);
|
sl@0
|
81 |
private:
|
sl@0
|
82 |
CWsGraphicBitmap();
|
sl@0
|
83 |
void HandleMessage(const TDesC8& aData);
|
sl@0
|
84 |
void OnReplace();
|
sl@0
|
85 |
};
|
sl@0
|
86 |
|
sl@0
|
87 |
NONSHARABLE_CLASS(CWsGraphicBitmapAnimation): public CWsGraphic
|
sl@0
|
88 |
/** Client representation of a window-server-side CFbsBitmap owned by this Client
|
sl@0
|
89 |
|
sl@0
|
90 |
@publishedAll
|
sl@0
|
91 |
@released
|
sl@0
|
92 |
*/
|
sl@0
|
93 |
{
|
sl@0
|
94 |
public:
|
sl@0
|
95 |
NONSHARABLE_CLASS(CFrame): public CBase
|
sl@0
|
96 |
{
|
sl@0
|
97 |
public:
|
sl@0
|
98 |
IMPORT_C static CFrame* NewL();
|
sl@0
|
99 |
IMPORT_C ~CFrame();
|
sl@0
|
100 |
// public getters/setters
|
sl@0
|
101 |
IMPORT_C TFrameInfo FrameInfo() const;
|
sl@0
|
102 |
IMPORT_C void SetFrameInfo(const TFrameInfo& aFrameInfo);
|
sl@0
|
103 |
IMPORT_C const CFbsBitmap* Bitmap() const;
|
sl@0
|
104 |
IMPORT_C void SetBitmap(CFbsBitmap* aBitmap);
|
sl@0
|
105 |
IMPORT_C const CFbsBitmap* Mask() const;
|
sl@0
|
106 |
IMPORT_C void SetMask(CFbsBitmap* aMask);
|
sl@0
|
107 |
private:
|
sl@0
|
108 |
CFrame();
|
sl@0
|
109 |
private:
|
sl@0
|
110 |
friend class CWsGraphicBitmapAnimation;
|
sl@0
|
111 |
TFrameInfo iFrameInfo;
|
sl@0
|
112 |
CFbsBitmap* iBitmap;
|
sl@0
|
113 |
CFbsBitmap* iMask;
|
sl@0
|
114 |
};
|
sl@0
|
115 |
typedef TArray<CFrame*> TFrames;
|
sl@0
|
116 |
public:
|
sl@0
|
117 |
IMPORT_C static CWsGraphicBitmapAnimation* NewL(const TFrames& aFrames);
|
sl@0
|
118 |
IMPORT_C static CWsGraphicBitmapAnimation* NewL(TUid aUid,const TFrames& aFrames);
|
sl@0
|
119 |
IMPORT_C static CWsGraphicBitmapAnimation* NewL(const TWsGraphicId& aReplace,const TFrames& aFrames);
|
sl@0
|
120 |
IMPORT_C ~CWsGraphicBitmapAnimation();
|
sl@0
|
121 |
public: // protected virtuals from CWsGraphic promoted to public
|
sl@0
|
122 |
IMPORT_C TInt ShareGlobally();
|
sl@0
|
123 |
IMPORT_C TInt UnShareGlobally();
|
sl@0
|
124 |
IMPORT_C TInt Share(TSecureId aClientId);
|
sl@0
|
125 |
IMPORT_C TInt UnShare(TSecureId aClientId);
|
sl@0
|
126 |
private:
|
sl@0
|
127 |
CWsGraphicBitmapAnimation();
|
sl@0
|
128 |
static HBufC8* PackLC(const TFrames& aFrames);
|
sl@0
|
129 |
void HandleMessage(const TDesC8& aData);
|
sl@0
|
130 |
void OnReplace();
|
sl@0
|
131 |
};
|
sl@0
|
132 |
|
sl@0
|
133 |
#endif //__W32STDGRAPHIC_H__
|