1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/openwfc/window.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,375 @@
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 +// CWsWindow and associated classes definitions
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __WINDOW_H__
1.22 +#define __WINDOW_H__
1.23 +
1.24 +#include "server.h"
1.25 +#include "winbase.h"
1.26 +
1.27 +#ifndef _DEBUG
1.28 +
1.29 +#define LOG_WINDOW_FADE_START(wswin)
1.30 +#define LOG_WINDOW_FADE_REGION(region)
1.31 +#define LOG_WINDOW_FADE_END(wswin)
1.32 +
1.33 +#else
1.34 +
1.35 +#define LOG_WINDOW_FADE_START(wswin) LogFadeStart(wswin)
1.36 +#define LOG_WINDOW_FADE_REGION(region) LogFadeRegion(region)
1.37 +#define LOG_WINDOW_FADE_END(wswin) LogFadeEnd(wswin)
1.38 +
1.39 +class TTruncateOverflow : public TDesOverflow
1.40 + {
1.41 + public:
1.42 + virtual void Overflow(TDes&) {};
1.43 + };
1.44 +
1.45 +void LogRegion(const TRegion* aRegion);
1.46 +void LogFadeStart(const CWsWindow* aWsWin);
1.47 +void LogFadeRegion(const TRegion* aRegion);
1.48 +void LogFadeEnd(const CWsWindow* aWsWin);
1.49 +
1.50 +#endif
1.51 +
1.52 +void AnnotateWindowRedrawStart(const CWsWindow& aWsWin, const TRegion& aRegion);
1.53 +void AnnotateWindowRedrawEnd(const CWsWindow& aWsWin);
1.54 +void AnnotateWindowAnimRedrawStart(const CWsWindow& aWsWin, const CWsAnim& aAnim, const TRegion& aRegion);
1.55 +void AnnotateWindowAnimRedrawEnd(const CWsWindow& aWsWin, const CWsAnim& aAnim);
1.56 +void AnnotateSpriteRedrawStart(const CWsWindow& aWsWin, const CWsSpriteBase& aSprite, const TRegion& aRegion);
1.57 +void AnnotateSpriteRedrawEnd(const CWsWindow& aWsWin, const CWsSpriteBase& aSprite);
1.58 +
1.59 +class MWsGraphicsContext;
1.60 +class CWsRenderStage;
1.61 +
1.62 +class CWsWindow : public CWsWindowBase, public MWsWindow
1.63 + {
1.64 + friend class TWalkWindowTreeDisconnect;
1.65 + friend class CWsRootWindow;
1.66 + friend class TWalkWindowTreeFindWithFlag;
1.67 +public:
1.68 + CWsWindow(CWsClient* aOwner,WH_HANDLES aType, CScreen* aScreen);
1.69 + ~CWsWindow();
1.70 + void Construct();
1.71 + inline const TRect& Rel() const;
1.72 + inline const TRect& Abs() const;
1.73 + inline CWsWindow *PrevSiblingMultiParent() const;
1.74 + inline CWsWindow *NextSiblingMultiParent() const;
1.75 + inline TUint PointerFilter() const;
1.76 + inline TBool HasPointerGrab() const;
1.77 + inline TBool ShutDownInProgress() const;
1.78 + inline TRgb BackColor() const;
1.79 + virtual void AreaCovered(TRegion &aRegion);
1.80 + const TRegion* VisibleRegionIfValid() const;
1.81 + const TRegion& VisibleRegion() const;
1.82 + void ClearVisibleRegion();
1.83 + void SetVisibleRegion(const TRegion& aNewVisibleRegion, const TRegion* aTop);
1.84 + void SetFadeableRegion(const TRegion& aNewFadeableRegion, const TRegion& aTop);
1.85 +
1.86 + virtual void GenerateWindowRegion(RWsRegion &aRegion) const=0;
1.87 + TRect FullRect() const;
1.88 + inline TBool ClientSetInvisible() const;
1.89 + inline TBool IsVisible() const;
1.90 + inline TBool DragDropCapture() const;
1.91 + inline CWsBackedUpWindow *Backup() const;
1.92 + TDisplayMode DisplayMode() const;
1.93 + inline TInt UsingPointerBuffer() const;
1.94 + virtual TDblQue<TPointerKeyList> *PointerKeyList() const;
1.95 + inline CWsWindowRedraw *Redraw() const;
1.96 + inline TBool IsTopClientWindow() const;
1.97 + TDisplayMode SetRequiredDisplayModeL(TDisplayMode aDisplayMode);
1.98 + inline TBool IsActive() const;
1.99 + TInt AddDSA(CWsDirectScreenAccess& aDirect);
1.100 + void RemoveDSA(CWsDirectScreenAccess& aDirect);
1.101 + void AbortAllDSAs();
1.102 +#if defined(_DEBUG)
1.103 + inline const TSglQue<CWsDirectScreenAccess>& DSAs() const;
1.104 +#endif
1.105 + void PossibleVisibilityChangedEvent(TBool aForceSend);
1.106 + void SetNonFading(TBool aNonFading);
1.107 + void SetFadeBehind(TBool aFade);
1.108 + inline void GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const;
1.109 + inline TBool IsTranslucent() const;
1.110 + inline TBool HasAlpha() const;
1.111 + inline TBool HasBeenDrawnToScreen() const;
1.112 + inline void SetDrawnToScreen(TBool aDrawn);
1.113 + void FocusChanged(TBool aNewFocusState);
1.114 + void ClipRectToViewport(TRect& aRect) const;
1.115 + void SetNextScheduled(CWsWindow * aWin);
1.116 + CWsWindow * NextScheduled() const;
1.117 + inline const TRegion& ScheduledRegion() const;
1.118 + inline const TRegion& ScheduledSpriteRegion() const;
1.119 + TBool SetScheduledRegion(const TRegion& aRegion);
1.120 + void ClearScheduledRegion();
1.121 + void ClearScheduledSpriteRegion();
1.122 + static TBool ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel aLevel);
1.123 + TBool ReadyToDraw() const;
1.124 + void Render(MWsGraphicsContext& aGc, const TRegion& aWindowRegion, const TRegion& aWindowChildNodeRegion);
1.125 + void Accessed();
1.126 +
1.127 + inline TBool IsNonFading() const;
1.128 + const TRegion& QuickFadeRegion() const;
1.129 + void Fade(MWsGraphicsContext * aGc, const TRegion& aRegion);
1.130 +
1.131 + inline void SetValidRedraw();
1.132 + inline TBool IsValidRedraw() const;
1.133 + inline TBool HasElement() const;
1.134 + inline TBool IsFading() const;
1.135 + inline TBool HasAnimation() const;
1.136 + inline TBool IsBackgroundClearEnabled() const;
1.137 + void AddDirtyWindowRegion(const TRegion& aRegion);
1.138 + void AddDirtySpriteRegion(const TRegion& aRegion);
1.139 + const TRegion& DirtyWindowRegion() const;
1.140 + const TRegion& DirtySpriteRegion() const;
1.141 + void ScheduleDirtyWindowRegion();
1.142 + void ScheduleDirtySpriteRegion();
1.143 + void SetupVisibleRegionTracking(TBool aRegister);
1.144 + inline TBool IsTrackingVisibleRegion() const;
1.145 + const TRegion& FadableRegion() const;
1.146 +
1.147 +public: // from CWsWindowBase
1.148 + TBool IsDSAHost() const;
1.149 + void SendState(MWsWindowTreeObserver& aWindowTreeObserver) const;
1.150 +
1.151 +public: // from MWsWindow
1.152 + TPoint Origin() const;
1.153 + TRect AbsRect() const;
1.154 + TSize Size() const;
1.155 + TUint32 Handle() const;
1.156 + MWsScreen * WsScreen() const;
1.157 + void Invalidate(const TRect *) {}
1.158 + MWsWindow * FindChildByHandle(TUint32 aHandle);
1.159 + TInt OrdinalPriority() const;
1.160 +
1.161 +protected:
1.162 + TPoint InquireOffset(TUint32 aHandle) const;
1.163 + void Shutdown(); // Part of two phase destruction
1.164 + void FocusChangedL(TBool aNewFocusState);
1.165 + void RemoveFromAccessList();
1.166 + void InsertIntoAccessListOldestEnd();
1.167 + void InsertIntoAccessListRecentEnd();
1.168 + void DeactivateAllSprites();
1.169 +private:
1.170 + void StatusDump(TDes &aBuf);
1.171 + void ResetVisibleRegion();
1.172 + void AbortDsaIfRequired(const TRegion& aNewRegion, const TRegion* aTop);
1.173 + void RestartAnimations(const TRegion& aNewRegion);
1.174 +#if defined (_DEBUG)
1.175 +public:
1.176 + TBool iInteresting; // Often useful while debugging for conditional breakpoints.
1.177 +#endif
1.178 +protected:
1.179 + TRect iRel;
1.180 + TRect iAbs;
1.181 + TPoint iOrigin;
1.182 + RWsRegionBuf<1> iVisibleRegion;
1.183 + TUint iPointerFilter;
1.184 + TInt iPointerCapturePriority;
1.185 + TUint iFlags;
1.186 + CWsWindowRedraw *iRedraw;
1.187 + TSglQue<CWsDirectScreenAccess> iDSAs;
1.188 + CWsWindow * iNextScheduled;
1.189 + RWsRegionBuf<1> iScheduledRegion;
1.190 + RWsRegionBuf<1> iScheduledSpriteRegion;
1.191 + // The access list is a "most recently drawn" ordering list of all redraw msg windows.
1.192 + static CWsWindow * iAccessListRecentEnd;
1.193 + static CWsWindow * iAccessListOldestEnd;
1.194 + CWsWindow * iAccessListPrev;
1.195 + CWsWindow * iAccessListNext;
1.196 + TUint8 iBlackMap;
1.197 + TUint8 iWhiteMap;
1.198 + RWsRegionBuf<1> iQuickFadeRegion;
1.199 + RWsRegionBuf<1> iFadableRegion; // Region which can be faded (Visible region minus already faded regions)
1.200 + RWsRegionBuf<1> iDirtyWindowRegion;
1.201 + RWsRegionBuf<1> iDirtySpriteRegion;
1.202 + TInt iVisibleRegionTrackingCounter;
1.203 +public:
1.204 + /** The list of graphic contexts associated with this window. The list is managed by calling the
1.205 + GcActivated() and GcDeactivated() functions.
1.206 + This is a linked list. The CWsGc class contains a pointer to the next item: CWsGc::iNextWinGc.
1.207 + */
1.208 + CWsGc *iWinGcList;
1.209 + CWsAnim *iAnimList; // Start of linked list of animated objects attached to the window
1.210 + };
1.211 +
1.212 +#include "wnredraw.h"
1.213 +
1.214 +inline TBool CWsWindow::IsVisible() const
1.215 + {
1.216 + return(!(iFlags&EFlagHidden));
1.217 + }
1.218 +
1.219 +inline TBool CWsWindow::ClientSetInvisible() const
1.220 + {
1.221 + return(iFlags&EFlagInvisible);
1.222 + }
1.223 +
1.224 +inline TBool CWsWindow::DragDropCapture() const
1.225 + {
1.226 + return(iFlags&EFlagPointerCaptureDragDrop);
1.227 + }
1.228 +
1.229 +inline TRgb CWsWindow::BackColor() const
1.230 + {
1.231 + return(iRedraw->BackColor());
1.232 + }
1.233 +
1.234 +inline TInt CWsWindow::UsingPointerBuffer() const
1.235 + {
1.236 + return(iFlags&EFlagUsingPointerBuffer);
1.237 + }
1.238 +
1.239 +inline CWsWindowRedraw *CWsWindow::Redraw() const
1.240 + {
1.241 + return iRedraw;
1.242 + }
1.243 +
1.244 +inline const TRect& CWsWindow::Rel() const
1.245 + {
1.246 + return iRel;
1.247 + }
1.248 +
1.249 +inline const TRect& CWsWindow::Abs() const
1.250 + {
1.251 + return iAbs;
1.252 + }
1.253 +
1.254 +inline TBool CWsWindow::IsTopClientWindow() const
1.255 + {
1.256 + return(iFlags&EFlagIsTopClientWindow);
1.257 + }
1.258 +
1.259 +inline TUint CWsWindow::PointerFilter() const
1.260 + {
1.261 + return(iPointerFilter);
1.262 + }
1.263 +
1.264 +inline TBool CWsWindow::HasPointerGrab() const
1.265 + {
1.266 + return(iFlags&EFlagPointerGrab);
1.267 + }
1.268 +
1.269 +inline TBool CWsWindow::ShutDownInProgress() const
1.270 + {
1.271 + return(iFlags&EFlagShutDownInProgress);
1.272 + }
1.273 +
1.274 +inline CWsBackedUpWindow *CWsWindow::Backup() const
1.275 + {
1.276 + return(iRedraw->Backup());
1.277 + }
1.278 +
1.279 +inline CWsWindow *CWsWindow::PrevSiblingMultiParent() const
1.280 + {
1.281 + return((CWsWindow *)CWsWindowBase::PrevSiblingMultiParent());
1.282 + }
1.283 +
1.284 +inline CWsWindow *CWsWindow::NextSiblingMultiParent() const
1.285 + {
1.286 + return((CWsWindow *)CWsWindowBase::NextSiblingMultiParent());
1.287 + }
1.288 +
1.289 +inline TBool CWsWindow::IsActive() const
1.290 + {
1.291 + return iFlags&EFlagActive;
1.292 + }
1.293 +
1.294 +inline TBool CWsWindow::IsTranslucent() const
1.295 + {
1.296 + return (iFlags & static_cast<TUint>(EFlagHasAlpha)) != 0;
1.297 + }
1.298 +
1.299 +inline TBool CWsWindow::HasAlpha() const
1.300 + {
1.301 + return (iFlags & static_cast<TUint>(EFlagHasAlpha)) !=0;
1.302 + }
1.303 +
1.304 +inline TBool CWsWindow::HasBeenDrawnToScreen() const
1.305 + {
1.306 + return (iFlags & static_cast<TUint>(EFlagDrawnToScreen)) != 0;
1.307 + }
1.308 +
1.309 +inline void CWsWindow::SetDrawnToScreen(TBool aDrawn)
1.310 + {
1.311 + if (aDrawn)
1.312 + iFlags |= static_cast<TUint>(EFlagDrawnToScreen);
1.313 + else
1.314 + iFlags &= ~static_cast<TUint>(EFlagDrawnToScreen);
1.315 + }
1.316 +
1.317 +inline const TRegion& CWsWindow::ScheduledRegion() const
1.318 + {
1.319 + return iScheduledRegion;
1.320 + }
1.321 +
1.322 +inline const TRegion& CWsWindow::ScheduledSpriteRegion() const
1.323 + {
1.324 + return iScheduledSpriteRegion;
1.325 + }
1.326 +
1.327 +#if defined(_DEBUG)
1.328 +inline const TSglQue<CWsDirectScreenAccess>& CWsWindow::DSAs() const
1.329 + {
1.330 + return iDSAs;
1.331 + }
1.332 +#endif
1.333 +
1.334 +inline TBool CWsWindow::IsNonFading() const
1.335 + {
1.336 + return (iFlags&EFlagNonFadingWindow);
1.337 + }
1.338 +
1.339 +inline void CWsWindow::GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const
1.340 + {aBlackMap=iBlackMap;aWhiteMap=iWhiteMap;}
1.341 +
1.342 +inline TBool CWsWindow::HasElement() const
1.343 + {
1.344 + return (Redraw())?(Redraw()->HasElement()):(EFalse);
1.345 + }
1.346 +
1.347 +inline TBool CWsWindow::IsFading() const
1.348 + {
1.349 + return (!IsNonFading() && (iFadeCount > 0));
1.350 + }
1.351 +
1.352 +inline void CWsWindow::SetValidRedraw()
1.353 + {
1.354 + iFlags |= EFlagValidRedraw;
1.355 + }
1.356 +
1.357 +inline TBool CWsWindow::IsValidRedraw() const
1.358 + {
1.359 + return (iFlags & EFlagValidRedraw);
1.360 + }
1.361 +
1.362 +inline TBool CWsWindow::HasAnimation() const
1.363 + {
1.364 + return (NULL != iAnimList);
1.365 + }
1.366 +
1.367 +inline TBool CWsWindow::IsBackgroundClearEnabled() const
1.368 + {
1.369 + return Redraw()->IsBackgroundClearEnabled();
1.370 + }
1.371 +
1.372 +inline TBool CWsWindow::IsTrackingVisibleRegion() const
1.373 + {
1.374 + WS_ASSERT_DEBUG(iVisibleRegionTrackingCounter>=0,EWsPanicVisibleRegionTracking);
1.375 + return iVisibleRegionTrackingCounter;
1.376 + }
1.377 +
1.378 +#endif