os/graphics/windowing/windowserver/nga/SERVER/openwfc/sprite.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
#include "window.h"
sl@0
    23
#include <graphics/wsgraphicscontext.h>
sl@0
    24
#include <babitflags.h>
sl@0
    25
sl@0
    26
//
sl@0
    27
// CWsSpriteMember
sl@0
    28
//
sl@0
    29
class CWsSpriteMember : public CBase
sl@0
    30
	{
sl@0
    31
public:
sl@0
    32
	CWsSpriteMember();
sl@0
    33
	~CWsSpriteMember();
sl@0
    34
	TBool SetL(const TCmdSpriteMember &aCmdSpriteMember);
sl@0
    35
public:
sl@0
    36
	CFbsBitmap *iBitmap;
sl@0
    37
	CFbsBitmap *iMaskBitmap;
sl@0
    38
	TBool iInvertMask;
sl@0
    39
	CGraphicsContext::TDrawMode iDrawMode;
sl@0
    40
	TPoint iOffset;
sl@0
    41
	TTimeIntervalMicroSeconds32 iInterval;
sl@0
    42
	};
sl@0
    43
sl@0
    44
//
sl@0
    45
// CWsSpriteBase
sl@0
    46
//
sl@0
    47
class CWsSpriteBase : public CWsScreenObject, public MWsWindowTreeNode, public MWsSprite
sl@0
    48
	{
sl@0
    49
protected:
sl@0
    50
	enum {ENoChildPriorityBoost=1,EPointerPriorityBoost=2};
sl@0
    51
public:
sl@0
    52
	friend class CWsSpriteTimer;
sl@0
    53
	friend class CWsAnim;
sl@0
    54
	friend class TCursorSprite;
sl@0
    55
public:
sl@0
    56
	static void InitStaticsL();
sl@0
    57
	static void DeleteStatics();
sl@0
    58
sl@0
    59
	CWsSpriteBase(CWsClient *aOwner, WH_HANDLES aType);
sl@0
    60
	~CWsSpriteBase();
sl@0
    61
sl@0
    62
	//from MWsSprite
sl@0
    63
	TRect Rect() const;
sl@0
    64
	TSpriteType SpriteType() const;
sl@0
    65
	
sl@0
    66
	TPoint Pos() const;
sl@0
    67
	void SetPos(const TPoint &Pos);
sl@0
    68
	void Deactivate();
sl@0
    69
	void DisconnectGroupWin();
sl@0
    70
	void TimerExpired();
sl@0
    71
	void Activate();
sl@0
    72
	inline TBool IsActive() const;
sl@0
    73
	inline TBool IsFlashingEnabled() const;
sl@0
    74
	inline TBool AdvancedPointersEnabled() const;
sl@0
    75
	TBool CanBeSeen() const;
sl@0
    76
	CWsSpriteBase * Next() { return iNext; }
sl@0
    77
	void SetNext(CWsSpriteBase * aNext) { iNext = aNext; }
sl@0
    78
	void CalcRedrawRegion(const TRegion& aSourceRegion, TRegion& aTarget) const;
sl@0
    79
	void Redraw(MWsGraphicsContext * aGc, const TRegion& aRegion);
sl@0
    80
	void ForceRedraw();
sl@0
    81
	inline const CWsWindow* Win() const;
sl@0
    82
	inline CWsWindow* Win();
sl@0
    83
	TBool IsActivated() const;
sl@0
    84
	inline TBool HasSpriteMember() const { return  iMembers->Count(); }
sl@0
    85
	void SendState(MWsWindowTreeObserver& aWindowTreeObserver) const;
sl@0
    86
	
sl@0
    87
public: // from MWsWindowTreeNode
sl@0
    88
	MWsWindowTreeNode::TType NodeType() const;
sl@0
    89
	const MWsWindow* Window() const;
sl@0
    90
	const MWsSprite* Sprite() const;
sl@0
    91
	const MWsStandardTextCursor* StandardTextCursor() const;
sl@0
    92
	const MWsWindowGroup* WindowGroup() const;
sl@0
    93
	const MWsWindowTreeNode* ParentNode() const;
sl@0
    94
sl@0
    95
protected:
sl@0
    96
	void ConstructL(TUint aFlags, CWsWindow *aWindow);
sl@0
    97
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
    98
	void AppendMemberL(const TCmdSpriteMember &aCmdSpriteMember);
sl@0
    99
	virtual void CompleteL();
sl@0
   100
	void SetMember(TInt aIndex);
sl@0
   101
	void CheckSizesL();
sl@0
   102
	TBool UpdateMemberL(CWsSpriteMember *aMember, const TCmdSpriteMember &aCmdSpriteMember);
sl@0
   103
	void QueueDeltaTimer();
sl@0
   104
	void NotifyExtentChanged() const;
sl@0
   105
	enum TInternalFlags 
sl@0
   106
		{
sl@0
   107
		EFloating, 
sl@0
   108
		EClipSprite,
sl@0
   109
		EHasAnimation,
sl@0
   110
		EDirty
sl@0
   111
		};
sl@0
   112
	inline void SetIsFloating(TBool aIsFloating);
sl@0
   113
	inline TBool IsFloating() const;
sl@0
   114
	inline void SetClipSprite(TBool aClipSprite);
sl@0
   115
	inline TBool ClipSprite() const;
sl@0
   116
public:	
sl@0
   117
	inline void SetHasAnimation(TBool aValue);
sl@0
   118
	inline TBool HasAnimation() const;
sl@0
   119
	inline void SetDirty(TBool aValue);
sl@0
   120
	inline TBool IsDirty() const;
sl@0
   121
sl@0
   122
protected:
sl@0
   123
	CWsWindow *iWin;
sl@0
   124
	CWsWindowGroup *iGroupWin;
sl@0
   125
	TPoint iBasePos;
sl@0
   126
	TPoint iPos;		// Combined position and offset
sl@0
   127
	TSize iMaxSize;
sl@0
   128
	TSize iSize;
sl@0
   129
    TUint iFlags;
sl@0
   130
	TRect iClipRect;
sl@0
   131
	CArrayPtrFlat<CWsSpriteMember> *iMembers;
sl@0
   132
	TInt iCurIndex;
sl@0
   133
	TWsDeltaTimerEntry iDeltaTimerEntry;
sl@0
   134
	TDisplayMode iDisplayMode;
sl@0
   135
	TPoint iClipOffset;
sl@0
   136
	TSize iClipSize;
sl@0
   137
	CWsSpriteBase * iNext; // linked list per window
sl@0
   138
	TBitFlags iInternalFlags;
sl@0
   139
//
sl@0
   140
// Static data
sl@0
   141
//
sl@0
   142
	static CWsDeltaTimer *iDeltaTimer;
sl@0
   143
	};
sl@0
   144
sl@0
   145
/** Sprite flags.
sl@0
   146
sl@0
   147
These can be combined with each other and TSpriteFlags using a bit-wise OR operation.
sl@0
   148
sl@0
   149
@internalComponent
sl@0
   150
@released
sl@0
   151
@see RWsPointerCursor::Construct()
sl@0
   152
@see RWsSprite::Construct() */
sl@0
   153
enum TSystemSpriteFlags
sl@0
   154
	{
sl@0
   155
	ESpriteNonSystemFlags=0x0000FFFF,
sl@0
   156
	ESpriteSystemFlags=	  0xFFFF0000,
sl@0
   157
	ESpritePointer=0x10000,
sl@0
   158
	ESpriteOOM=0x20000,
sl@0
   159
	ESpriteDisabled=0x40000,
sl@0
   160
	ESpriteActive=0x80000,
sl@0
   161
	ESpriteDirty=0x100000
sl@0
   162
	};
sl@0
   163
sl@0
   164
//
sl@0
   165
// CWsSpriteBase inlines
sl@0
   166
//
sl@0
   167
inline TBool CWsSpriteBase::IsActive() const
sl@0
   168
	{
sl@0
   169
	return (iFlags&ESpriteActive);
sl@0
   170
	}
sl@0
   171
inline TBool CWsSpriteBase::IsFlashingEnabled() const
sl@0
   172
	{
sl@0
   173
	return (iFlags&ESpriteFlash);
sl@0
   174
	}
sl@0
   175
inline const CWsWindow* CWsSpriteBase::Win() const
sl@0
   176
	{
sl@0
   177
	return iWin;
sl@0
   178
	}
sl@0
   179
inline CWsWindow* CWsSpriteBase::Win()
sl@0
   180
	{
sl@0
   181
	return iWin;
sl@0
   182
	}
sl@0
   183
/*
sl@0
   184
@return ETrue if this sprite belongs to window which has Advanced Pointer Support enabled.
sl@0
   185
*/
sl@0
   186
inline TBool CWsSpriteBase::AdvancedPointersEnabled() const
sl@0
   187
	{
sl@0
   188
	return iWin ? iWin->AdvancedPointersEnabled() : EFalse;
sl@0
   189
	}
sl@0
   190
sl@0
   191
inline void CWsSpriteBase::SetIsFloating(TBool aIsFloating) 
sl@0
   192
	{ 
sl@0
   193
	iInternalFlags.Assign(EFloating, aIsFloating); }	
sl@0
   194
sl@0
   195
inline TBool CWsSpriteBase::IsFloating() const 
sl@0
   196
	{
sl@0
   197
	return iInternalFlags.IsSet(EFloating);
sl@0
   198
	}
sl@0
   199
sl@0
   200
inline void CWsSpriteBase::SetClipSprite(TBool aClipSprite) 
sl@0
   201
	{ 
sl@0
   202
	iInternalFlags.Assign(EClipSprite, aClipSprite);
sl@0
   203
	}
sl@0
   204
sl@0
   205
inline TBool CWsSpriteBase::ClipSprite() const 
sl@0
   206
	{ 
sl@0
   207
	return iInternalFlags.IsSet(EClipSprite);
sl@0
   208
	}
sl@0
   209
sl@0
   210
inline void CWsSpriteBase::SetHasAnimation(TBool aValue) 
sl@0
   211
	{
sl@0
   212
	iInternalFlags.Assign(EHasAnimation, aValue);
sl@0
   213
	}
sl@0
   214
sl@0
   215
inline TBool CWsSpriteBase::HasAnimation() const
sl@0
   216
	{
sl@0
   217
	return iInternalFlags.IsSet(EHasAnimation);
sl@0
   218
	}
sl@0
   219
sl@0
   220
inline void CWsSpriteBase::SetDirty(TBool aValue)
sl@0
   221
	{
sl@0
   222
	iInternalFlags.Assign(EDirty, aValue);
sl@0
   223
	}
sl@0
   224
sl@0
   225
inline TBool CWsSpriteBase::IsDirty() const	
sl@0
   226
	{ 
sl@0
   227
	return iInternalFlags.IsSet(EDirty);
sl@0
   228
	}	
sl@0
   229
	
sl@0
   230
sl@0
   231
//
sl@0
   232
// CWsSprite
sl@0
   233
//
sl@0
   234
class CWsSprite : public CWsSpriteBase
sl@0
   235
	{
sl@0
   236
public:
sl@0
   237
	CWsSprite(CWsClient *aOwner);
sl@0
   238
	~CWsSprite();
sl@0
   239
	void ConstructL(const TWsClCmdCreateSprite &aParams);
sl@0
   240
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
   241
	void CompleteL();
sl@0
   242
	void Update(TInt aMember,TRect aRect,TBool aFullUpdate);
sl@0
   243
public:
sl@0
   244
	CWsAnim *iAnim;	// The AnimDLL on this sprite if there is one.
sl@0
   245
	};
sl@0
   246
sl@0
   247
//
sl@0
   248
// CWsSpriteManager
sl@0
   249
//
sl@0
   250
class CWsSpriteManager : public CBase
sl@0
   251
	{
sl@0
   252
public:
sl@0
   253
	~CWsSpriteManager();
sl@0
   254
	static CWsSpriteManager* NewL();
sl@0
   255
	void DrawFloatingSprites(MWsGraphicsContext* aGc,const TRegion& aRegion);
sl@0
   256
	void AddFloatingSprite(CWsSpriteBase* aSprite);
sl@0
   257
	void RemoveFloatingSprite(CWsSpriteBase* aSprite);
sl@0
   258
	void Schedule(CWsSpriteBase* aSprite, TRect* aRect = 0);
sl@0
   259
	TFlashState CurrentSpriteFlashState(const CWsSpriteBase* aSprite) const;
sl@0
   260
	TInt SpriteCount() const { return iFloatingSprites.Count(); }
sl@0
   261
	TTimeIntervalMicroSeconds NextCursorFlashStateChange() const;
sl@0
   262
	void CalcFloatingSpriteRgn( TRegion& aResultRgn, const TRect& aDefaultRect );
sl@0
   263
	void SendState(MWsWindowTreeObserver& aWindowTreeObserver) const;
sl@0
   264
private:
sl@0
   265
	CWsSpriteManager();
sl@0
   266
	void ConstructL();
sl@0
   267
	TTimeIntervalMicroSeconds NextSpriteFlashStateChange(const CWsSpriteBase* aSprite) const;
sl@0
   268
	TTimeIntervalMicroSeconds CalculateTimeToNextFlash(TTimeIntervalMicroSeconds aTime) const;
sl@0
   269
private:
sl@0
   270
	RPointerArray<CWsSpriteBase> iFloatingSprites;
sl@0
   271
	};
sl@0
   272
#endif