1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/sprite.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,186 @@
1.4 +// Copyright (c) 2006-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 +// CWsSprite and associated classes definitions
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __SPRITE_H__
1.22 +#define __SPRITE_H__
1.23 +
1.24 +#include "server.h"
1.25 +
1.26 +//
1.27 +// CWsSpriteMember
1.28 +//
1.29 +class CWsSpriteMember : public CBase
1.30 + {
1.31 +public:
1.32 + CWsSpriteMember();
1.33 + ~CWsSpriteMember();
1.34 + TBool SetL(const TCmdSpriteMember &aCmdSpriteMember);
1.35 +public:
1.36 + CFbsBitmap *iBitmap;
1.37 + CFbsBitmap *iMaskBitmap;
1.38 + TBool iInvertMask;
1.39 + CGraphicsContext::TDrawMode iDrawMode;
1.40 + TPoint iOffset;
1.41 + TTimeIntervalMicroSeconds32 iInterval;
1.42 + };
1.43 +
1.44 +//
1.45 +// CWsSpriteBase
1.46 +//
1.47 +class CWsSpriteBase : public CWsScreenObject
1.48 + {
1.49 +protected:
1.50 + enum {ENoChildPriorityBoost=1,EPointerPriorityBoost=2};
1.51 +public:
1.52 + friend class CWsSpriteTimer;
1.53 + friend class CWsAnim;
1.54 + friend class TCursorSprite;
1.55 +public:
1.56 + static void InitStaticsL();
1.57 + static void DeleteStatics();
1.58 +
1.59 + CWsSpriteBase(CWsClient *aOwner, WH_HANDLES aType);
1.60 + ~CWsSpriteBase();
1.61 +
1.62 + TRect Rect() const;
1.63 + TPoint Pos() const;
1.64 +
1.65 + void SetPos(const TPoint &Pos);
1.66 + void Deactivate();
1.67 + void TimerExpired();
1.68 + void Activate();
1.69 + inline TBool IsActive();
1.70 + inline TBool IsFlashingEnabled();
1.71 + TBool CanBeSeen() const;
1.72 +
1.73 + CWsSpriteBase * Next() { return iNext; }
1.74 + void SetNext(CWsSpriteBase * aNext) { iNext = aNext; }
1.75 + void Redraw(CFbsBitGc * aGc, const TRegion& aRegion);
1.76 + void ForceRedraw();
1.77 + inline const CWsWindow* Win();
1.78 + TBool IsActivated() const;
1.79 + TBool HasSpriteMember() const { return iMembers->Count(); }
1.80 +protected:
1.81 + void ConstructL(TUint aFlags, CWsWindow *aWindow);
1.82 + void CommandL(TInt aOpcode, const TAny *aCmdData);
1.83 + void AppendMemberL(const TCmdSpriteMember &aCmdSpriteMember);
1.84 + virtual void CompleteL();
1.85 + void SetMember(TInt aIndex);
1.86 + void CheckSizesL();
1.87 + TBool UpdateMemberL(CWsSpriteMember *aMember, const TCmdSpriteMember &aCmdSpriteMember);
1.88 + void QueueDeltaTimer();
1.89 +protected:
1.90 + CWsWindow *iWin;
1.91 + CWsWindowGroup *iGroupWin;
1.92 + TPoint iBasePos;
1.93 + TPoint iPos; // Combined position and offset
1.94 + TSize iMaxSize;
1.95 + TSize iSize;
1.96 + TUint iFlags;
1.97 + TRect iClipRect;
1.98 + CArrayPtrFlat<CWsSpriteMember> *iMembers;
1.99 + TInt iCurIndex;
1.100 + TWsDeltaTimerEntry iDeltaTimerEntry;
1.101 + TDisplayMode iDisplayMode;
1.102 + TBool iClipSprite;
1.103 + TPoint iClipOffset;
1.104 + TSize iClipSize;
1.105 + CWsSpriteBase * iNext; // linked list per window
1.106 + TBool iFloating;
1.107 +//
1.108 +// Static data
1.109 +//
1.110 + static CWsDeltaTimer *iDeltaTimer;
1.111 + };
1.112 +
1.113 +/** Sprite flags.
1.114 +
1.115 +These can be combined with each other and TSpriteFlags using a bit-wise OR operation.
1.116 +
1.117 +@internalComponent
1.118 +@released
1.119 +@see RWsPointerCursor::Construct()
1.120 +@see RWsSprite::Construct() */
1.121 +enum TSystemSpriteFlags
1.122 + {
1.123 + ESpriteNonSystemFlags=0x0000FFFF,
1.124 + ESpriteSystemFlags= 0xFFFF0000,
1.125 + ESpritePointer=0x10000,
1.126 + ESpriteOOM=0x20000,
1.127 + ESpriteDisabled=0x40000,
1.128 + ESpriteActive=0x80000,
1.129 + ESpriteDirty=0x100000
1.130 + };
1.131 +
1.132 +//
1.133 +// CWsSpriteBase inlines
1.134 +//
1.135 +inline TBool CWsSpriteBase::IsActive()
1.136 + {
1.137 + return iNext != NULL;
1.138 + }
1.139 +inline TBool CWsSpriteBase::IsFlashingEnabled()
1.140 + {
1.141 + return (iFlags&ESpriteFlash);
1.142 + }
1.143 +inline const CWsWindow* CWsSpriteBase::Win()
1.144 + {
1.145 + return iWin;
1.146 + }
1.147 +
1.148 +//
1.149 +// CWsSprite
1.150 +//
1.151 +class CWsSprite : public CWsSpriteBase
1.152 + {
1.153 +public:
1.154 + CWsSprite(CWsClient *aOwner);
1.155 + ~CWsSprite();
1.156 + void ConstructL(const TWsClCmdCreateSprite &aParams);
1.157 + void CommandL(TInt aOpcode, const TAny *aCmdData);
1.158 + void CompleteL();
1.159 + void Update(TInt aMember,TRect aRect,TBool aFullUpdate);
1.160 +public:
1.161 + CWsAnim *iAnim; // The AnimDLL on this sprite if there is one.
1.162 + };
1.163 +
1.164 +//
1.165 +// CWsSpriteManager
1.166 +//
1.167 +class CWsSpriteManager : public CBase
1.168 + {
1.169 +public:
1.170 + ~CWsSpriteManager();
1.171 + static CWsSpriteManager* NewL();
1.172 + void DrawFloatingSprites(CFbsBitGc* aGc,const TRegion& aRegion);
1.173 + void AddFloatingSprite(CWsSpriteBase* aSprite);
1.174 + void RemoveFloatingSprite(CWsSpriteBase* aSprite);
1.175 + void Schedule(CWsSpriteBase* aSprite, TRect* aRect = 0);
1.176 + TFlashState CurrentSpriteFlashState(const CWsSpriteBase* aSprite) const;
1.177 + TFlashState CurrentCursorFlashState() const;
1.178 + TInt SpriteCount() const { return iFloatingSprites.Count(); }
1.179 + TTimeIntervalMicroSeconds NextCursorFlashStateChange() const;
1.180 + void CalcFloatingSpriteRgn( TRegion& aResultRgn, const TRect& aDefaultRect );
1.181 +private:
1.182 + CWsSpriteManager();
1.183 + void ConstructL();
1.184 + TTimeIntervalMicroSeconds NextSpriteFlashStateChange(const CWsSpriteBase* aSprite) const;
1.185 + TTimeIntervalMicroSeconds CalculateTimeToNextFlash(TTimeIntervalMicroSeconds aTime) const;
1.186 +private:
1.187 + RPointerArray<CWsSpriteBase> iFloatingSprites;
1.188 + };
1.189 +#endif