1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/openwfc/sprite.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,272 @@
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 +#include "window.h"
1.26 +#include <graphics/wsgraphicscontext.h>
1.27 +#include <babitflags.h>
1.28 +
1.29 +//
1.30 +// CWsSpriteMember
1.31 +//
1.32 +class CWsSpriteMember : public CBase
1.33 + {
1.34 +public:
1.35 + CWsSpriteMember();
1.36 + ~CWsSpriteMember();
1.37 + TBool SetL(const TCmdSpriteMember &aCmdSpriteMember);
1.38 +public:
1.39 + CFbsBitmap *iBitmap;
1.40 + CFbsBitmap *iMaskBitmap;
1.41 + TBool iInvertMask;
1.42 + CGraphicsContext::TDrawMode iDrawMode;
1.43 + TPoint iOffset;
1.44 + TTimeIntervalMicroSeconds32 iInterval;
1.45 + };
1.46 +
1.47 +//
1.48 +// CWsSpriteBase
1.49 +//
1.50 +class CWsSpriteBase : public CWsScreenObject, public MWsWindowTreeNode, public MWsSprite
1.51 + {
1.52 +protected:
1.53 + enum {ENoChildPriorityBoost=1,EPointerPriorityBoost=2};
1.54 +public:
1.55 + friend class CWsSpriteTimer;
1.56 + friend class CWsAnim;
1.57 + friend class TCursorSprite;
1.58 +public:
1.59 + static void InitStaticsL();
1.60 + static void DeleteStatics();
1.61 +
1.62 + CWsSpriteBase(CWsClient *aOwner, WH_HANDLES aType);
1.63 + ~CWsSpriteBase();
1.64 +
1.65 + //from MWsSprite
1.66 + TRect Rect() const;
1.67 + TSpriteType SpriteType() const;
1.68 +
1.69 + TPoint Pos() const;
1.70 + void SetPos(const TPoint &Pos);
1.71 + void Deactivate();
1.72 + void DisconnectGroupWin();
1.73 + void TimerExpired();
1.74 + void Activate();
1.75 + inline TBool IsActive() const;
1.76 + inline TBool IsFlashingEnabled() const;
1.77 + inline TBool AdvancedPointersEnabled() const;
1.78 + TBool CanBeSeen() const;
1.79 + CWsSpriteBase * Next() { return iNext; }
1.80 + void SetNext(CWsSpriteBase * aNext) { iNext = aNext; }
1.81 + void CalcRedrawRegion(const TRegion& aSourceRegion, TRegion& aTarget) const;
1.82 + void Redraw(MWsGraphicsContext * aGc, const TRegion& aRegion);
1.83 + void ForceRedraw();
1.84 + inline const CWsWindow* Win() const;
1.85 + inline CWsWindow* Win();
1.86 + TBool IsActivated() const;
1.87 + inline TBool HasSpriteMember() const { return iMembers->Count(); }
1.88 + void SendState(MWsWindowTreeObserver& aWindowTreeObserver) const;
1.89 +
1.90 +public: // from MWsWindowTreeNode
1.91 + MWsWindowTreeNode::TType NodeType() const;
1.92 + const MWsWindow* Window() const;
1.93 + const MWsSprite* Sprite() const;
1.94 + const MWsStandardTextCursor* StandardTextCursor() const;
1.95 + const MWsWindowGroup* WindowGroup() const;
1.96 + const MWsWindowTreeNode* ParentNode() const;
1.97 +
1.98 +protected:
1.99 + void ConstructL(TUint aFlags, CWsWindow *aWindow);
1.100 + void CommandL(TInt aOpcode, const TAny *aCmdData);
1.101 + void AppendMemberL(const TCmdSpriteMember &aCmdSpriteMember);
1.102 + virtual void CompleteL();
1.103 + void SetMember(TInt aIndex);
1.104 + void CheckSizesL();
1.105 + TBool UpdateMemberL(CWsSpriteMember *aMember, const TCmdSpriteMember &aCmdSpriteMember);
1.106 + void QueueDeltaTimer();
1.107 + void NotifyExtentChanged() const;
1.108 + enum TInternalFlags
1.109 + {
1.110 + EFloating,
1.111 + EClipSprite,
1.112 + EHasAnimation,
1.113 + EDirty
1.114 + };
1.115 + inline void SetIsFloating(TBool aIsFloating);
1.116 + inline TBool IsFloating() const;
1.117 + inline void SetClipSprite(TBool aClipSprite);
1.118 + inline TBool ClipSprite() const;
1.119 +public:
1.120 + inline void SetHasAnimation(TBool aValue);
1.121 + inline TBool HasAnimation() const;
1.122 + inline void SetDirty(TBool aValue);
1.123 + inline TBool IsDirty() const;
1.124 +
1.125 +protected:
1.126 + CWsWindow *iWin;
1.127 + CWsWindowGroup *iGroupWin;
1.128 + TPoint iBasePos;
1.129 + TPoint iPos; // Combined position and offset
1.130 + TSize iMaxSize;
1.131 + TSize iSize;
1.132 + TUint iFlags;
1.133 + TRect iClipRect;
1.134 + CArrayPtrFlat<CWsSpriteMember> *iMembers;
1.135 + TInt iCurIndex;
1.136 + TWsDeltaTimerEntry iDeltaTimerEntry;
1.137 + TDisplayMode iDisplayMode;
1.138 + TPoint iClipOffset;
1.139 + TSize iClipSize;
1.140 + CWsSpriteBase * iNext; // linked list per window
1.141 + TBitFlags iInternalFlags;
1.142 +//
1.143 +// Static data
1.144 +//
1.145 + static CWsDeltaTimer *iDeltaTimer;
1.146 + };
1.147 +
1.148 +/** Sprite flags.
1.149 +
1.150 +These can be combined with each other and TSpriteFlags using a bit-wise OR operation.
1.151 +
1.152 +@internalComponent
1.153 +@released
1.154 +@see RWsPointerCursor::Construct()
1.155 +@see RWsSprite::Construct() */
1.156 +enum TSystemSpriteFlags
1.157 + {
1.158 + ESpriteNonSystemFlags=0x0000FFFF,
1.159 + ESpriteSystemFlags= 0xFFFF0000,
1.160 + ESpritePointer=0x10000,
1.161 + ESpriteOOM=0x20000,
1.162 + ESpriteDisabled=0x40000,
1.163 + ESpriteActive=0x80000,
1.164 + ESpriteDirty=0x100000
1.165 + };
1.166 +
1.167 +//
1.168 +// CWsSpriteBase inlines
1.169 +//
1.170 +inline TBool CWsSpriteBase::IsActive() const
1.171 + {
1.172 + return (iFlags&ESpriteActive);
1.173 + }
1.174 +inline TBool CWsSpriteBase::IsFlashingEnabled() const
1.175 + {
1.176 + return (iFlags&ESpriteFlash);
1.177 + }
1.178 +inline const CWsWindow* CWsSpriteBase::Win() const
1.179 + {
1.180 + return iWin;
1.181 + }
1.182 +inline CWsWindow* CWsSpriteBase::Win()
1.183 + {
1.184 + return iWin;
1.185 + }
1.186 +/*
1.187 +@return ETrue if this sprite belongs to window which has Advanced Pointer Support enabled.
1.188 +*/
1.189 +inline TBool CWsSpriteBase::AdvancedPointersEnabled() const
1.190 + {
1.191 + return iWin ? iWin->AdvancedPointersEnabled() : EFalse;
1.192 + }
1.193 +
1.194 +inline void CWsSpriteBase::SetIsFloating(TBool aIsFloating)
1.195 + {
1.196 + iInternalFlags.Assign(EFloating, aIsFloating); }
1.197 +
1.198 +inline TBool CWsSpriteBase::IsFloating() const
1.199 + {
1.200 + return iInternalFlags.IsSet(EFloating);
1.201 + }
1.202 +
1.203 +inline void CWsSpriteBase::SetClipSprite(TBool aClipSprite)
1.204 + {
1.205 + iInternalFlags.Assign(EClipSprite, aClipSprite);
1.206 + }
1.207 +
1.208 +inline TBool CWsSpriteBase::ClipSprite() const
1.209 + {
1.210 + return iInternalFlags.IsSet(EClipSprite);
1.211 + }
1.212 +
1.213 +inline void CWsSpriteBase::SetHasAnimation(TBool aValue)
1.214 + {
1.215 + iInternalFlags.Assign(EHasAnimation, aValue);
1.216 + }
1.217 +
1.218 +inline TBool CWsSpriteBase::HasAnimation() const
1.219 + {
1.220 + return iInternalFlags.IsSet(EHasAnimation);
1.221 + }
1.222 +
1.223 +inline void CWsSpriteBase::SetDirty(TBool aValue)
1.224 + {
1.225 + iInternalFlags.Assign(EDirty, aValue);
1.226 + }
1.227 +
1.228 +inline TBool CWsSpriteBase::IsDirty() const
1.229 + {
1.230 + return iInternalFlags.IsSet(EDirty);
1.231 + }
1.232 +
1.233 +
1.234 +//
1.235 +// CWsSprite
1.236 +//
1.237 +class CWsSprite : public CWsSpriteBase
1.238 + {
1.239 +public:
1.240 + CWsSprite(CWsClient *aOwner);
1.241 + ~CWsSprite();
1.242 + void ConstructL(const TWsClCmdCreateSprite &aParams);
1.243 + void CommandL(TInt aOpcode, const TAny *aCmdData);
1.244 + void CompleteL();
1.245 + void Update(TInt aMember,TRect aRect,TBool aFullUpdate);
1.246 +public:
1.247 + CWsAnim *iAnim; // The AnimDLL on this sprite if there is one.
1.248 + };
1.249 +
1.250 +//
1.251 +// CWsSpriteManager
1.252 +//
1.253 +class CWsSpriteManager : public CBase
1.254 + {
1.255 +public:
1.256 + ~CWsSpriteManager();
1.257 + static CWsSpriteManager* NewL();
1.258 + void DrawFloatingSprites(MWsGraphicsContext* aGc,const TRegion& aRegion);
1.259 + void AddFloatingSprite(CWsSpriteBase* aSprite);
1.260 + void RemoveFloatingSprite(CWsSpriteBase* aSprite);
1.261 + void Schedule(CWsSpriteBase* aSprite, TRect* aRect = 0);
1.262 + TFlashState CurrentSpriteFlashState(const CWsSpriteBase* aSprite) const;
1.263 + TInt SpriteCount() const { return iFloatingSprites.Count(); }
1.264 + TTimeIntervalMicroSeconds NextCursorFlashStateChange() const;
1.265 + void CalcFloatingSpriteRgn( TRegion& aResultRgn, const TRect& aDefaultRect );
1.266 + void SendState(MWsWindowTreeObserver& aWindowTreeObserver) const;
1.267 +private:
1.268 + CWsSpriteManager();
1.269 + void ConstructL();
1.270 + TTimeIntervalMicroSeconds NextSpriteFlashStateChange(const CWsSpriteBase* aSprite) const;
1.271 + TTimeIntervalMicroSeconds CalculateTimeToNextFlash(TTimeIntervalMicroSeconds aTime) const;
1.272 +private:
1.273 + RPointerArray<CWsSpriteBase> iFloatingSprites;
1.274 + };
1.275 +#endif