os/graphics/windowing/windowserver/nga/SERVER/openwfc/wnredraw.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
// CWsWindowRedraw and associated classes definitions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __WNREDRAW_H__
sl@0
    19
#define __WNREDRAW_H__
sl@0
    20
sl@0
    21
#include "server.h"
sl@0
    22
#include "panics.h"
sl@0
    23
sl@0
    24
class TSurfaceId;
sl@0
    25
sl@0
    26
class CPlaybackGc;
sl@0
    27
class MWsGraphicsContext;
sl@0
    28
class TBackgroundAttributes;
sl@0
    29
sl@0
    30
//
sl@0
    31
// Base class defining how a window is redrawn, i.e. Backed up, redraw from client, blanked...
sl@0
    32
//
sl@0
    33
class CWsWindowRedraw : public CBase
sl@0
    34
	{
sl@0
    35
private:
sl@0
    36
	enum TStateFlags
sl@0
    37
		{
sl@0
    38
		EHasElement=0x01,
sl@0
    39
		EMayContainElement=0x10,
sl@0
    40
		};
sl@0
    41
public:
sl@0
    42
	~CWsWindowRedraw();
sl@0
    43
	virtual void ConstructL();
sl@0
    44
	virtual TBool CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd)=0;
sl@0
    45
	virtual TRgb BackColor() const=0;
sl@0
    46
	virtual TBool NeedsRedraw() const=0;
sl@0
    47
	virtual TBool GetRedrawRect(TRect &aRect) const=0;
sl@0
    48
	virtual const TRegion &BaseDrawRegion() const;
sl@0
    49
	virtual void ClipInvalidRegion(const TRect &aRect);
sl@0
    50
	virtual const TRegion& InvalidArea() const;
sl@0
    51
	virtual void Resize(const TSize &aSize, const TSize &aOldSize);
sl@0
    52
	virtual CWsBackedUpWindow *Backup() const;
sl@0
    53
	virtual void Scroll(const TRect &aClipRect, const TPoint &aOffset,const TRect &aRect);
sl@0
    54
	virtual void UpdateAnimArea();
sl@0
    55
	virtual void PrepareForResizeL(const TSize &aSize, TSize &aOldSize);
sl@0
    56
	virtual void Moved() {}
sl@0
    57
	virtual void ClearRedrawStore(TBool aClearPendingRedraw=EFalse);
sl@0
    58
	virtual TBool DrawCommand(CWsGc* aGc,const TAny *aCmdData);
sl@0
    59
	virtual void GcAttributeChange(CWsGc* aGc,const TAny *aCmdData);
sl@0
    60
	virtual void GcDeactivate(CWsGc* aGc);
sl@0
    61
	inline CWsWindow *WsWin();	// Link back to main window class
sl@0
    62
	virtual void ClientExposing();
sl@0
    63
	virtual void DrawWindow()=0;
sl@0
    64
	TInt DrawBackgroundColor(const TRegion& aRegion, TBool aDoFillColor);
sl@0
    65
	virtual TBool Contains(const TArray<TGraphicDrawerId>& aDrawers,const TRegion& aRegion) const;
sl@0
    66
	const TRegion * RedrawRegion();
sl@0
    67
	virtual TBool ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel aLevel);
sl@0
    68
	virtual CFbsDevice* OutputDevice() const;
sl@0
    69
	virtual void VisibleRegionChange();
sl@0
    70
	virtual TBool ReadyToDraw() const;
sl@0
    71
	void PreDrawWindow(MWsGraphicsContext * aGc, const TRegion &aWindowRegion);
sl@0
    72
	void PostDrawWindow(MWsGraphicsContext* aGc, const TRegion& aWindowChildNodeRegion);
sl@0
    73
	virtual void Invalidate(const TRect *) {}	
sl@0
    74
	virtual TInt SizeInBytes() const { return 0; }
sl@0
    75
	inline TBool HasElement() const;
sl@0
    76
	inline TBool MayContainElement() const;
sl@0
    77
	inline void SetHasElement(TBool);
sl@0
    78
	inline TBool HasElementExtentDefined() const;
sl@0
    79
	inline void  ClearMayContainElement();
sl@0
    80
	virtual TBool RedrawingInProgress() const; 
sl@0
    81
	virtual void WindowClosing();
sl@0
    82
	virtual TBool IsRedrawStoreEmpty() const { return EFalse; }
sl@0
    83
	virtual TBool IsBackgroundClearEnabled() const { return ETrue; }
sl@0
    84
	virtual CFbsBitmap* BitmapFromHandle(TInt /*aHandle*/) const { return NULL; }
sl@0
    85
sl@0
    86
	void SetDsaElementL();
sl@0
    87
	inline void QueueRedraw();
sl@0
    88
	void Fade(MWsGraphicsContext * aGc, const TRegion& aRegion);
sl@0
    89
protected:
sl@0
    90
	CWsWindowRedraw(CWsWindow *aWin);
sl@0
    91
	void SetReply(TInt aReply);
sl@0
    92
	void OwnerPanic(TClientPanic aPanic);
sl@0
    93
	inline CScreen* Screen() const;
sl@0
    94
	inline CWsClientWindow *CliWin() const;
sl@0
    95
	void DrawWindowAnimsL(MWsGraphicsContext * aGc, const TRegion& aRegion);
sl@0
    96
	TBackgroundAttributes& AcquireBackgroundElementL();
sl@0
    97
	void SetBackgroundSurfaceL(const TSurfaceId& aSurface);
sl@0
    98
	void SetBackgroundSurfaceL(const TSurfaceConfiguration& aConfiguration, TBool aTriggerRedraw, TBool aAllowScreenSurface);
sl@0
    99
	void SetElementExtentL(TRect& aNewExtent, TBackgroundAttributes& aAttributes);
sl@0
   100
	void ElementRedraw(const TRect& aOldExtent, const TRect& aNewExtent, TBool aAlwaysScheduleUpdate);
sl@0
   101
	void RemoveBackgroundSurface(TBool aTriggerRedraw);
sl@0
   102
	void RemoveBackgroundElement(TBool aTriggerRedraw);
sl@0
   103
	void GetBackgroundSurfaceL(TSurfaceConfiguration& aConfiguration);
sl@0
   104
	void ReleaseBackgroundElement();
sl@0
   105
	void SetMayContainElementFlags();
sl@0
   106
private:
sl@0
   107
	void DoFade(const TRegion& aRegion);
sl@0
   108
	void DrawWindowAnims(MWsGraphicsContext * aGc, const TRegion& aRegion);
sl@0
   109
	void DrawCursorAndSprites(MWsGraphicsContext * aGc, const TRegion& aRegion);
sl@0
   110
	TBool HasDsaElement() const;
sl@0
   111
sl@0
   112
protected:
sl@0
   113
	CWsWindow *iWsWin;	// Link back to main window class
sl@0
   114
	TUint iStateFlags; 	// Flags affecting how drawing is done
sl@0
   115
	const TRegion * iRedrawRegion; // During a scheduled draw, this is the window area scheduled to be drawn.
sl@0
   116
	};							   // In ChangeTracking mode, iRedrawRegion doesn't include the area to be drawn by window-sprites, cursors or window-anims.
sl@0
   117
								   // All of them use the sprite region, declared in CWsWindow::iDirtySpriteRegion.
sl@0
   118
sl@0
   119
class CWsBlankWindow : public CWsWindowRedraw
sl@0
   120
	{
sl@0
   121
public:
sl@0
   122
	CWsBlankWindow(CWsWindow *aWin);
sl@0
   123
	~CWsBlankWindow();
sl@0
   124
	void ConstructL();
sl@0
   125
	
sl@0
   126
	//from CWsWindowRedraw
sl@0
   127
	TBool CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd);
sl@0
   128
	TBool NeedsRedraw() const;
sl@0
   129
	TBool GetRedrawRect(TRect &aRect) const;
sl@0
   130
	void DrawWindow();
sl@0
   131
	
sl@0
   132
	void SetColor(TRgb aColor);
sl@0
   133
	inline void SetBackgroundClear();
sl@0
   134
	inline TBool IsBackgroundColor();
sl@0
   135
private:
sl@0
   136
	TRgb BackColor() const;
sl@0
   137
private:
sl@0
   138
	TRgb iColor;
sl@0
   139
	TBool iNoColor;
sl@0
   140
	};
sl@0
   141
	
sl@0
   142
#include "window.h"
sl@0
   143
sl@0
   144
inline CWsWindow *CWsWindowRedraw::WsWin()
sl@0
   145
	{
sl@0
   146
	return iWsWin;
sl@0
   147
	}
sl@0
   148
sl@0
   149
inline CScreen* CWsWindowRedraw::Screen() const
sl@0
   150
	{
sl@0
   151
	return iWsWin->Screen();
sl@0
   152
	}
sl@0
   153
sl@0
   154
inline CWsClientWindow *CWsWindowRedraw::CliWin() const
sl@0
   155
	{
sl@0
   156
	return (CWsClientWindow *)iWsWin;
sl@0
   157
	}
sl@0
   158
sl@0
   159
inline TBool CWsWindowRedraw::HasElement() const
sl@0
   160
	{
sl@0
   161
	return (iStateFlags&EHasElement)>0;
sl@0
   162
	}
sl@0
   163
inline void CWsWindowRedraw::SetHasElement(TBool aSet)
sl@0
   164
	{
sl@0
   165
	TInt oldStateFlags = iStateFlags; 
sl@0
   166
	if (aSet)
sl@0
   167
		{
sl@0
   168
		iStateFlags|=EHasElement;
sl@0
   169
		}
sl@0
   170
	else
sl@0
   171
		{
sl@0
   172
		iStateFlags&=~EHasElement;
sl@0
   173
		}
sl@0
   174
	if (oldStateFlags!=iStateFlags)
sl@0
   175
		{
sl@0
   176
		iWsWin->SetupVisibleRegionTracking(aSet);
sl@0
   177
		}
sl@0
   178
	}
sl@0
   179
sl@0
   180
inline TBool CWsWindowRedraw::MayContainElement() const
sl@0
   181
	{
sl@0
   182
	return (iStateFlags&EMayContainElement)>0;
sl@0
   183
	}
sl@0
   184
sl@0
   185
inline void CWsWindowRedraw::ClearMayContainElement()
sl@0
   186
	{
sl@0
   187
	iStateFlags&=~EMayContainElement;
sl@0
   188
	}
sl@0
   189
sl@0
   190
sl@0
   191
inline void CWsBlankWindow::SetBackgroundClear()
sl@0
   192
	{
sl@0
   193
	iNoColor=ETrue;
sl@0
   194
	}
sl@0
   195
sl@0
   196
inline TBool CWsBlankWindow::IsBackgroundColor()
sl@0
   197
	{
sl@0
   198
	return !iNoColor;
sl@0
   199
	}
sl@0
   200
sl@0
   201
inline void CWsWindowRedraw::QueueRedraw()
sl@0
   202
	{
sl@0
   203
	if (iWsWin->IsActive())
sl@0
   204
		{
sl@0
   205
		iWsWin->WsOwner()->RedrawQueue()->AddInvalid(this);
sl@0
   206
		}
sl@0
   207
	}
sl@0
   208
sl@0
   209
inline const TRegion * CWsWindowRedraw::RedrawRegion()
sl@0
   210
	{
sl@0
   211
	return iRedrawRegion;
sl@0
   212
	}
sl@0
   213
sl@0
   214
#endif