os/graphics/windowing/windowserver/nonnga/SERVER/wnredraw.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 CPlaybackGc;
sl@0
    25
sl@0
    26
//
sl@0
    27
// Base class defining how a window is redrawn, i.e. Backed up, redraw from client, blanked...
sl@0
    28
//
sl@0
    29
class CWsWindowRedraw : public CBase
sl@0
    30
	{
sl@0
    31
public:
sl@0
    32
	~CWsWindowRedraw();
sl@0
    33
	virtual void ConstructL();
sl@0
    34
	virtual TBool CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd)=0;
sl@0
    35
	virtual TRgb BackColor() const=0;
sl@0
    36
	virtual TBool NeedsRedraw() const=0;
sl@0
    37
	virtual TBool GetRedrawRect(TRect &aRect) const=0;
sl@0
    38
	virtual void ClipInvalidRegion(const TRect &aRect);
sl@0
    39
	virtual void Resize(const TSize &aSize, const TSize &aOldSize);
sl@0
    40
	virtual CWsBackedUpWindow *Backup() const;
sl@0
    41
	virtual void Scroll(const TRect &aClipRect, const TPoint &aOffset,const TRect &aRect);
sl@0
    42
	virtual void UpdateAnimArea();
sl@0
    43
	virtual void PrepareForResizeL(const TSize &aSize, TSize &aOldSize);
sl@0
    44
	virtual void Moved() {}
sl@0
    45
	virtual void ClearRedrawStore(TBool aClearPendingRedraw=EFalse);
sl@0
    46
	virtual TBool DrawCommand(CWsGc* aGc,const TAny *aCmdData);
sl@0
    47
	virtual void GcAttributeChange(CWsGc* aGc,const TAny *aCmdData);
sl@0
    48
	virtual void GcDeactivate(CWsGc* aGc);
sl@0
    49
	inline CWsWindow *WsWin();	// Link back to main window class
sl@0
    50
	virtual void ClientExposing();
sl@0
    51
	virtual void DrawWindow()=0;
sl@0
    52
	TInt DrawBackgroundColor(const TRegion* aRegion);
sl@0
    53
	virtual TBool Contains(const TArray<TGraphicDrawerId>& aDrawers,const TRegion& aRegion) const;
sl@0
    54
	void DrawAnims(CFbsBitGc * aGc, const TRegion& aRegion);
sl@0
    55
	const TRegion * GlobalRedrawRegion();
sl@0
    56
	virtual TBool ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel aLevel);
sl@0
    57
	virtual CFbsDevice* OutputDevice() const;
sl@0
    58
	virtual void VisibleRegionChange();
sl@0
    59
	virtual TBool ReadyToDraw() const;
sl@0
    60
	void PreDrawWindow(CFbsBitGc * aGc, const TRegion &aRegion);
sl@0
    61
	void PostDrawWindow(CFbsBitGc * aGc);
sl@0
    62
	virtual void Invalidate(const TRect *) {}	
sl@0
    63
	virtual TInt SizeInBytes() const { return 0; }
sl@0
    64
	virtual void WindowClosing();
sl@0
    65
sl@0
    66
protected:
sl@0
    67
	CWsWindowRedraw(CWsWindow *aWin);
sl@0
    68
	void SetReply(TInt aReply);
sl@0
    69
	void OwnerPanic(TClientPanic aPanic);
sl@0
    70
	inline void QueueRedraw();
sl@0
    71
	inline CScreen* Screen() const;
sl@0
    72
	inline CWsClientWindow *CliWin() const;
sl@0
    73
	void DrawAnimsL(CFbsBitGc * aGc, const TRegion& aRegion);
sl@0
    74
protected:
sl@0
    75
	CWsWindow *iWsWin;	// Link back to main window class
sl@0
    76
	const TRegion * iGlobalRedrawRegion;// During a scheduled draw, this is the area scheduled to be drawn.
sl@0
    77
	};
sl@0
    78
sl@0
    79
class CWsBlankWindow : public CWsWindowRedraw
sl@0
    80
	{
sl@0
    81
public:
sl@0
    82
	CWsBlankWindow(CWsWindow *aWin);
sl@0
    83
	~CWsBlankWindow();
sl@0
    84
	
sl@0
    85
	//from CWsWindowRedraw
sl@0
    86
	TBool CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd);
sl@0
    87
	TBool NeedsRedraw() const;
sl@0
    88
	TBool GetRedrawRect(TRect &aRect) const;
sl@0
    89
	
sl@0
    90
	void SetColor(TRgb aColor);
sl@0
    91
	inline void SetBackgroundClear();
sl@0
    92
	inline TBool IsBackgroundColor();
sl@0
    93
	void DrawWindow();
sl@0
    94
private:
sl@0
    95
	TRgb BackColor() const;
sl@0
    96
private:
sl@0
    97
	TRgb iColor;
sl@0
    98
	TBool iNoColor;
sl@0
    99
	};
sl@0
   100
	
sl@0
   101
#include "window.h"
sl@0
   102
sl@0
   103
inline CWsWindow *CWsWindowRedraw::WsWin()
sl@0
   104
	{
sl@0
   105
	return iWsWin;
sl@0
   106
	}
sl@0
   107
sl@0
   108
inline CScreen* CWsWindowRedraw::Screen() const
sl@0
   109
	{
sl@0
   110
	return iWsWin->Screen();
sl@0
   111
	}
sl@0
   112
sl@0
   113
inline CWsClientWindow *CWsWindowRedraw::CliWin() const
sl@0
   114
	{
sl@0
   115
	return (CWsClientWindow *)iWsWin;
sl@0
   116
	}
sl@0
   117
sl@0
   118
inline void CWsBlankWindow::SetBackgroundClear()
sl@0
   119
	{
sl@0
   120
	iNoColor=ETrue;
sl@0
   121
	}
sl@0
   122
sl@0
   123
inline TBool CWsBlankWindow::IsBackgroundColor()
sl@0
   124
	{
sl@0
   125
	return !iNoColor;
sl@0
   126
	}
sl@0
   127
sl@0
   128
inline void CWsWindowRedraw::QueueRedraw()
sl@0
   129
	{
sl@0
   130
	if (iWsWin->IsActive())
sl@0
   131
		{
sl@0
   132
		iWsWin->WsOwner()->RedrawQueue()->AddInvalid(this);
sl@0
   133
		}
sl@0
   134
	}
sl@0
   135
sl@0
   136
inline const TRegion * CWsWindowRedraw::GlobalRedrawRegion()
sl@0
   137
	{
sl@0
   138
	return iGlobalRedrawRegion;
sl@0
   139
	}
sl@0
   140
sl@0
   141
#endif