sl@0
|
1 |
// Copyright (c) 2006-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 |
// CWsSprite and associated classes definitions
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __SPRITE_H__
|
sl@0
|
19 |
#define __SPRITE_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "server.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
//
|
sl@0
|
24 |
// CWsSpriteMember
|
sl@0
|
25 |
//
|
sl@0
|
26 |
class CWsSpriteMember : public CBase
|
sl@0
|
27 |
{
|
sl@0
|
28 |
public:
|
sl@0
|
29 |
CWsSpriteMember();
|
sl@0
|
30 |
~CWsSpriteMember();
|
sl@0
|
31 |
TBool SetL(const TCmdSpriteMember &aCmdSpriteMember);
|
sl@0
|
32 |
public:
|
sl@0
|
33 |
CFbsBitmap *iBitmap;
|
sl@0
|
34 |
CFbsBitmap *iMaskBitmap;
|
sl@0
|
35 |
TBool iInvertMask;
|
sl@0
|
36 |
CGraphicsContext::TDrawMode iDrawMode;
|
sl@0
|
37 |
TPoint iOffset;
|
sl@0
|
38 |
TTimeIntervalMicroSeconds32 iInterval;
|
sl@0
|
39 |
};
|
sl@0
|
40 |
|
sl@0
|
41 |
//
|
sl@0
|
42 |
// CWsSpriteBase
|
sl@0
|
43 |
//
|
sl@0
|
44 |
class CWsSpriteBase : public CWsScreenObject
|
sl@0
|
45 |
{
|
sl@0
|
46 |
protected:
|
sl@0
|
47 |
enum {ENoChildPriorityBoost=1,EPointerPriorityBoost=2};
|
sl@0
|
48 |
public:
|
sl@0
|
49 |
friend class CWsSpriteTimer;
|
sl@0
|
50 |
friend class CWsAnim;
|
sl@0
|
51 |
friend class TCursorSprite;
|
sl@0
|
52 |
public:
|
sl@0
|
53 |
static void InitStaticsL();
|
sl@0
|
54 |
static void DeleteStatics();
|
sl@0
|
55 |
|
sl@0
|
56 |
CWsSpriteBase(CWsClient *aOwner, WH_HANDLES aType);
|
sl@0
|
57 |
~CWsSpriteBase();
|
sl@0
|
58 |
|
sl@0
|
59 |
TRect Rect() const;
|
sl@0
|
60 |
TPoint Pos() const;
|
sl@0
|
61 |
|
sl@0
|
62 |
void SetPos(const TPoint &Pos);
|
sl@0
|
63 |
void Deactivate();
|
sl@0
|
64 |
void TimerExpired();
|
sl@0
|
65 |
void Activate();
|
sl@0
|
66 |
inline TBool IsActive();
|
sl@0
|
67 |
inline TBool IsFlashingEnabled();
|
sl@0
|
68 |
TBool CanBeSeen() const;
|
sl@0
|
69 |
|
sl@0
|
70 |
CWsSpriteBase * Next() { return iNext; }
|
sl@0
|
71 |
void SetNext(CWsSpriteBase * aNext) { iNext = aNext; }
|
sl@0
|
72 |
void Redraw(CFbsBitGc * aGc, const TRegion& aRegion);
|
sl@0
|
73 |
void ForceRedraw();
|
sl@0
|
74 |
inline const CWsWindow* Win();
|
sl@0
|
75 |
TBool IsActivated() const;
|
sl@0
|
76 |
TBool HasSpriteMember() const { return iMembers->Count(); }
|
sl@0
|
77 |
protected:
|
sl@0
|
78 |
void ConstructL(TUint aFlags, CWsWindow *aWindow);
|
sl@0
|
79 |
void CommandL(TInt aOpcode, const TAny *aCmdData);
|
sl@0
|
80 |
void AppendMemberL(const TCmdSpriteMember &aCmdSpriteMember);
|
sl@0
|
81 |
virtual void CompleteL();
|
sl@0
|
82 |
void SetMember(TInt aIndex);
|
sl@0
|
83 |
void CheckSizesL();
|
sl@0
|
84 |
TBool UpdateMemberL(CWsSpriteMember *aMember, const TCmdSpriteMember &aCmdSpriteMember);
|
sl@0
|
85 |
void QueueDeltaTimer();
|
sl@0
|
86 |
protected:
|
sl@0
|
87 |
CWsWindow *iWin;
|
sl@0
|
88 |
CWsWindowGroup *iGroupWin;
|
sl@0
|
89 |
TPoint iBasePos;
|
sl@0
|
90 |
TPoint iPos; // Combined position and offset
|
sl@0
|
91 |
TSize iMaxSize;
|
sl@0
|
92 |
TSize iSize;
|
sl@0
|
93 |
TUint iFlags;
|
sl@0
|
94 |
TRect iClipRect;
|
sl@0
|
95 |
CArrayPtrFlat<CWsSpriteMember> *iMembers;
|
sl@0
|
96 |
TInt iCurIndex;
|
sl@0
|
97 |
TWsDeltaTimerEntry iDeltaTimerEntry;
|
sl@0
|
98 |
TDisplayMode iDisplayMode;
|
sl@0
|
99 |
TBool iClipSprite;
|
sl@0
|
100 |
TPoint iClipOffset;
|
sl@0
|
101 |
TSize iClipSize;
|
sl@0
|
102 |
CWsSpriteBase * iNext; // linked list per window
|
sl@0
|
103 |
TBool iFloating;
|
sl@0
|
104 |
//
|
sl@0
|
105 |
// Static data
|
sl@0
|
106 |
//
|
sl@0
|
107 |
static CWsDeltaTimer *iDeltaTimer;
|
sl@0
|
108 |
};
|
sl@0
|
109 |
|
sl@0
|
110 |
/** Sprite flags.
|
sl@0
|
111 |
|
sl@0
|
112 |
These can be combined with each other and TSpriteFlags using a bit-wise OR operation.
|
sl@0
|
113 |
|
sl@0
|
114 |
@internalComponent
|
sl@0
|
115 |
@released
|
sl@0
|
116 |
@see RWsPointerCursor::Construct()
|
sl@0
|
117 |
@see RWsSprite::Construct() */
|
sl@0
|
118 |
enum TSystemSpriteFlags
|
sl@0
|
119 |
{
|
sl@0
|
120 |
ESpriteNonSystemFlags=0x0000FFFF,
|
sl@0
|
121 |
ESpriteSystemFlags= 0xFFFF0000,
|
sl@0
|
122 |
ESpritePointer=0x10000,
|
sl@0
|
123 |
ESpriteOOM=0x20000,
|
sl@0
|
124 |
ESpriteDisabled=0x40000,
|
sl@0
|
125 |
ESpriteActive=0x80000,
|
sl@0
|
126 |
ESpriteDirty=0x100000
|
sl@0
|
127 |
};
|
sl@0
|
128 |
|
sl@0
|
129 |
//
|
sl@0
|
130 |
// CWsSpriteBase inlines
|
sl@0
|
131 |
//
|
sl@0
|
132 |
inline TBool CWsSpriteBase::IsActive()
|
sl@0
|
133 |
{
|
sl@0
|
134 |
return iNext != NULL;
|
sl@0
|
135 |
}
|
sl@0
|
136 |
inline TBool CWsSpriteBase::IsFlashingEnabled()
|
sl@0
|
137 |
{
|
sl@0
|
138 |
return (iFlags&ESpriteFlash);
|
sl@0
|
139 |
}
|
sl@0
|
140 |
inline const CWsWindow* CWsSpriteBase::Win()
|
sl@0
|
141 |
{
|
sl@0
|
142 |
return iWin;
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
//
|
sl@0
|
146 |
// CWsSprite
|
sl@0
|
147 |
//
|
sl@0
|
148 |
class CWsSprite : public CWsSpriteBase
|
sl@0
|
149 |
{
|
sl@0
|
150 |
public:
|
sl@0
|
151 |
CWsSprite(CWsClient *aOwner);
|
sl@0
|
152 |
~CWsSprite();
|
sl@0
|
153 |
void ConstructL(const TWsClCmdCreateSprite &aParams);
|
sl@0
|
154 |
void CommandL(TInt aOpcode, const TAny *aCmdData);
|
sl@0
|
155 |
void CompleteL();
|
sl@0
|
156 |
void Update(TInt aMember,TRect aRect,TBool aFullUpdate);
|
sl@0
|
157 |
public:
|
sl@0
|
158 |
CWsAnim *iAnim; // The AnimDLL on this sprite if there is one.
|
sl@0
|
159 |
};
|
sl@0
|
160 |
|
sl@0
|
161 |
//
|
sl@0
|
162 |
// CWsSpriteManager
|
sl@0
|
163 |
//
|
sl@0
|
164 |
class CWsSpriteManager : public CBase
|
sl@0
|
165 |
{
|
sl@0
|
166 |
public:
|
sl@0
|
167 |
~CWsSpriteManager();
|
sl@0
|
168 |
static CWsSpriteManager* NewL();
|
sl@0
|
169 |
void DrawFloatingSprites(CFbsBitGc* aGc,const TRegion& aRegion);
|
sl@0
|
170 |
void AddFloatingSprite(CWsSpriteBase* aSprite);
|
sl@0
|
171 |
void RemoveFloatingSprite(CWsSpriteBase* aSprite);
|
sl@0
|
172 |
void Schedule(CWsSpriteBase* aSprite, TRect* aRect = 0);
|
sl@0
|
173 |
TFlashState CurrentSpriteFlashState(const CWsSpriteBase* aSprite) const;
|
sl@0
|
174 |
TFlashState CurrentCursorFlashState() const;
|
sl@0
|
175 |
TInt SpriteCount() const { return iFloatingSprites.Count(); }
|
sl@0
|
176 |
TTimeIntervalMicroSeconds NextCursorFlashStateChange() const;
|
sl@0
|
177 |
void CalcFloatingSpriteRgn( TRegion& aResultRgn, const TRect& aDefaultRect );
|
sl@0
|
178 |
private:
|
sl@0
|
179 |
CWsSpriteManager();
|
sl@0
|
180 |
void ConstructL();
|
sl@0
|
181 |
TTimeIntervalMicroSeconds NextSpriteFlashStateChange(const CWsSpriteBase* aSprite) const;
|
sl@0
|
182 |
TTimeIntervalMicroSeconds CalculateTimeToNextFlash(TTimeIntervalMicroSeconds aTime) const;
|
sl@0
|
183 |
private:
|
sl@0
|
184 |
RPointerArray<CWsSpriteBase> iFloatingSprites;
|
sl@0
|
185 |
};
|
sl@0
|
186 |
#endif
|