os/graphics/windowing/windowserver/nga/SERVER/openwfc/cliwin.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
// CWsClientWindow and associated classes definitions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __CLIWIN_H__
sl@0
    19
#define __CLIWIN_H__
sl@0
    20
sl@0
    21
#include "server.h"
sl@0
    22
#include "window.h"
sl@0
    23
#include <graphics/wselement.h>
sl@0
    24
sl@0
    25
class CWsClientWindow : public CWsWindow
sl@0
    26
	{
sl@0
    27
protected:
sl@0
    28
	enum
sl@0
    29
		{
sl@0
    30
		KWinRedrawPriBitsPerLevel=4,
sl@0
    31
		KWinRedrawPriMaxOrdinal=(1<<KWinRedrawPriBitsPerLevel)-1,		// 15
sl@0
    32
		KWinRedrawPriMaxLevel=32/KWinRedrawPriBitsPerLevel-1,			// 7
sl@0
    33
		};
sl@0
    34
				
sl@0
    35
public:
sl@0
    36
  	CWsClientWindow(CWsClient* aOwner, CScreen* aScreen);
sl@0
    37
	~CWsClientWindow();
sl@0
    38
	virtual void ConstructL(const TWsClCmdCreateWindow &aCmd,CWsWindowBase *aParent, TBool aScreenDeviceIsInvalid);
sl@0
    39
	CWsClientWindow *Child() const;
sl@0
    40
	inline CWsClientWindow *PrevSibling() const;
sl@0
    41
	inline CWsClientWindow *NextSibling() const;
sl@0
    42
	inline CWsClientWindow *PrevSiblingMultiParent() const;
sl@0
    43
	inline CWsClientWindow *NextSiblingMultiParent() const;
sl@0
    44
	virtual void GenerateWindowRegion(RWsRegion &aRegion) const;
sl@0
    45
	void GenerateTopRegion(RWsRegion &aRegion) const;
sl@0
    46
	
sl@0
    47
public:	// from CWsObject
sl@0
    48
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
    49
sl@0
    50
public: // from MWsWindow
sl@0
    51
	void Invalidate(const TRect * aRect = 0);
sl@0
    52
	const TRegion& WindowArea() const;
sl@0
    53
	
sl@0
    54
public:
sl@0
    55
	void GcActivated(CWsGc *aGc);
sl@0
    56
	void GcDeactivated(CWsGc *aGc);
sl@0
    57
	void ResetHiddenFlag();
sl@0
    58
	const TRegion &InvalidArea() const;
sl@0
    59
	void GetClippedBaseArea(RWsRegion &aRegion) const;
sl@0
    60
	void GetOpaqueClippedBaseArea(RWsRegion &aRegion) const;
sl@0
    61
	inline const TRegion *BaseArea() const;
sl@0
    62
	virtual TUint RedrawPriority(TInt *aShift=NULL) const;
sl@0
    63
	inline void UpdateAnimArea();
sl@0
    64
	void AddKeyRectL(const TRect &aRect, TInt aScanCode, TBool aActivatedByPointerSwitchOn);
sl@0
    65
	void RemoveAllKeyRects();
sl@0
    66
	void SetVisible(TBool aState);
sl@0
    67
	CWsTopClientWindow *TopClientWindow();
sl@0
    68
	const TRegion *DrawingRegion();
sl@0
    69
	inline TBool IsFadeBehind() const;
sl@0
    70
//
sl@0
    71
	TBool IsHidden();
sl@0
    72
	void SetFaded(TBool aFade, TUint8 aBlackMap, TUint8 aWhiteMap, TBool aNotifyObserver);
sl@0
    73
	void SetFaded(TBool aFade, TUint8 aBlackMap, TUint8 aWhiteMap, TBool aNotifyObserver, TBool& aStateChanged); 
sl@0
    74
	void RecalcChildAbs(const TPoint *aOffset);
sl@0
    75
	void ResetHiddenFlagsInParentAndChildren();
sl@0
    76
	static inline void SetAbsoluteFading(TBool aAbsoluteFading);
sl@0
    77
	inline TBool IsBecomingOpaque() const;	
sl@0
    78
	TBool IsInfrontOf(const CWsWindowBase* aWin) const;
sl@0
    79
	inline const TRegion * GetUserOpaqueRegion();
sl@0
    80
	void OffsetUserTransparentRegion(const TPoint& aOffset);
sl@0
    81
	void SetUserOpaqueRegion();
sl@0
    82
	void ReactivateGcs();
sl@0
    83
	void ScheduleRegionUpdate(const TRegion* aDefinitelyDirty);
sl@0
    84
	void AddRedrawRegion(const TRegion& aRegion, TBool aSchedule, TRedrawDepth aDepth);
sl@0
    85
	const TRegion*	DebugRegion(TInt aType)const;
sl@0
    86
	void SendState(MWsWindowTreeObserver& aWindowTreeObserver) const;
sl@0
    87
	
sl@0
    88
	inline void SetOriginalSrcElementRect(const TRect &aSrcRect);
sl@0
    89
	inline void SetOriginalDestElementRect(const TRect &aDestRect);
sl@0
    90
	TRect GetOriginalSrcElementRect() const;
sl@0
    91
	TRect GetOriginalDestElementRect() const;
sl@0
    92
	void GetElementFlipAndRotation(TBool& aElemetFlip, MWsElement::TElementRotation& aElemenetRotation);
sl@0
    93
sl@0
    94
protected:
sl@0
    95
	virtual void Shutdown();	// Part of two phase destruction
sl@0
    96
	void Activate();	
sl@0
    97
	void SetExtentL(const TPoint *aPos, const TSize *aSize);
sl@0
    98
	static void ClipWindows(TRegion &region,const CWsClientWindow *start, const CWsClientWindow *end, TBool aClipTranslucent);
sl@0
    99
	void GenerateArea(RWsRegion &aArea, TBool aClipTranslucent) const;
sl@0
   100
	void SetAbsFromRel();
sl@0
   101
	void MovePosition(const TPoint& aPos);
sl@0
   102
	void IncreaseSize(const TSize& aSize,TSize& aOldSize);
sl@0
   103
	void ReduceSize(const TSize& aSize,TSize& aOldSize);
sl@0
   104
	void Scroll(const TRect &aClipRect, const TPoint &aPoint, const TRect &aRect);
sl@0
   105
	void CalcBaseArea();
sl@0
   106
	void OffsetBaseArea(const TPoint &aOffset);
sl@0
   107
	void DeleteBaseArea();
sl@0
   108
	void SetCornerTypeL(TCornerType aType, TInt aFlags, TRegion *aNewBaseArea=NULL, TBool aNotifyShapeChanged=ETrue);
sl@0
   109
	void ResetHiddenFlags();
sl@0
   110
	TDblQue<TPointerKeyList> *PointerKeyList() const;
sl@0
   111
	void SetUserTransparentRegion(RWsRegion* aRegion);
sl@0
   112
	void UpdateElementExtent(const TPoint* aOffset = NULL);
sl@0
   113
	void SetElementOpacity(TInt aOpacity);
sl@0
   114
sl@0
   115
	// from CWsWindowBase
sl@0
   116
	TBool IsDSAHost() const;
sl@0
   117
	TBool IsActivated() const;
sl@0
   118
sl@0
   119
private:
sl@0
   120
    void GetBaseAreaOfNode(RWsRegion& aRegion) const;
sl@0
   121
    void GetOpaqueBaseAreaOfNode(RWsRegion& aRegion) const;
sl@0
   122
    TInt GetNonOpaqueBaseAreaOfNode(RWsRegion& aRegion) const;
sl@0
   123
    void ClipRegionToBaseArea(RWsRegion& aRegion) const;
sl@0
   124
    void ClipRegionToOpaqueBaseArea(RWsRegion& aRegion) const;
sl@0
   125
sl@0
   126
sl@0
   127
private:
sl@0
   128
	TInt iCornerData;
sl@0
   129
	TUint iBackupsRequested;
sl@0
   130
	TRegion *iBaseArea;			// The base area of the window without any clipping from windows taken into account
sl@0
   131
	TDblQue<TPointerKeyList> *iPointerKeyList;
sl@0
   132
	static TBool iAbsoluteFading;
sl@0
   133
	/**
sl@0
   134
	By default the full window region is transparent if the window is marked 
sl@0
   135
	as transparent. If this is not the desired behaviour the client can
sl@0
   136
	define the transparent region itself.
sl@0
   137
	
sl@0
   138
	@see RWindow::SetTransparentRegion()
sl@0
   139
	*/
sl@0
   140
	RWsRegion* iUserDefinedTransparentRegion;
sl@0
   141
	RWsRegion* iUserDefinedOpaqueRegion;
sl@0
   142
	
sl@0
   143
	TRect iOriginalSrcElementRect;
sl@0
   144
	TRect iOriginalDestElementRect;
sl@0
   145
	};
sl@0
   146
sl@0
   147
class CWsTopClientWindow : public CWsClientWindow
sl@0
   148
	{
sl@0
   149
public:
sl@0
   150
  	CWsTopClientWindow(CWsClient* aOwner, CScreen* aScreen);
sl@0
   151
	void ConstructL(const TWsClCmdCreateWindow &cmd,CWsWindowBase *aParent, TBool aScreenDeviceIsInvalid);
sl@0
   152
	virtual void SetOrdinalPosition(TInt pos);
sl@0
   153
	void DoMoveWindowL(TInt aIdentifier);
sl@0
   154
	inline CWsTopClientWindow *NextSiblingTop() const;
sl@0
   155
	inline CWsTopClientWindow *PrevSiblingTop() const;
sl@0
   156
	inline CWsTopClientWindow *PrevSiblingMultiParent() const;
sl@0
   157
	inline CWsTopClientWindow *NextSiblingMultiParent() const;
sl@0
   158
	inline CWsWindowGroup *Parent() const;
sl@0
   159
	
sl@0
   160
	void SetInactive();
sl@0
   161
	void SetScreenDeviceValidState(TBool aState);
sl@0
   162
	TBool SetScreenDeviceValidStateFlag(TBool aState);
sl@0
   163
	virtual TUint RedrawPriority(TInt *aShift=NULL) const;
sl@0
   164
	};
sl@0
   165
sl@0
   166
inline CWsClientWindow *CWsClientWindow::Child() const
sl@0
   167
	{
sl@0
   168
	return((CWsClientWindow *)iChild);
sl@0
   169
	}
sl@0
   170
sl@0
   171
inline CWsClientWindow *CWsClientWindow::NextSibling() const
sl@0
   172
	{
sl@0
   173
	return((CWsClientWindow *)iSibling);
sl@0
   174
	}
sl@0
   175
sl@0
   176
inline CWsClientWindow *CWsClientWindow::PrevSibling() const
sl@0
   177
	{
sl@0
   178
	return((CWsClientWindow *)GetPrevSibling());
sl@0
   179
	}
sl@0
   180
sl@0
   181
inline const TRegion *CWsClientWindow::BaseArea() const
sl@0
   182
	{
sl@0
   183
	return iBaseArea;
sl@0
   184
	}
sl@0
   185
sl@0
   186
inline void CWsClientWindow::UpdateAnimArea()
sl@0
   187
	{
sl@0
   188
	iRedraw->UpdateAnimArea();
sl@0
   189
	}
sl@0
   190
sl@0
   191
inline TBool CWsClientWindow::IsFadeBehind() const
sl@0
   192
	{
sl@0
   193
	return(iFlags&EFlagFadeBehind);
sl@0
   194
	}
sl@0
   195
sl@0
   196
inline void CWsClientWindow::SetAbsoluteFading(TBool aAbsoluteFading)
sl@0
   197
	{
sl@0
   198
	iAbsoluteFading=aAbsoluteFading;
sl@0
   199
	}
sl@0
   200
sl@0
   201
inline CWsTopClientWindow *CWsTopClientWindow::NextSiblingTop() const
sl@0
   202
	{
sl@0
   203
	return((CWsTopClientWindow *)iSibling);
sl@0
   204
	}
sl@0
   205
sl@0
   206
inline CWsTopClientWindow *CWsTopClientWindow::PrevSiblingTop() const
sl@0
   207
	{
sl@0
   208
	return((CWsTopClientWindow *)GetPrevSibling());
sl@0
   209
	}
sl@0
   210
sl@0
   211
inline CWsTopClientWindow *CWsTopClientWindow::PrevSiblingMultiParent() const
sl@0
   212
	{
sl@0
   213
	return((CWsTopClientWindow *)CWsWindowBase::PrevSiblingMultiParent());
sl@0
   214
	}
sl@0
   215
sl@0
   216
inline CWsTopClientWindow *CWsTopClientWindow::NextSiblingMultiParent() const
sl@0
   217
	{
sl@0
   218
	return((CWsTopClientWindow *)CWsWindowBase::NextSiblingMultiParent());
sl@0
   219
	}
sl@0
   220
sl@0
   221
inline CWsWindowGroup *CWsTopClientWindow::Parent() const
sl@0
   222
	{
sl@0
   223
	return((CWsWindowGroup *)iParent);
sl@0
   224
	}
sl@0
   225
sl@0
   226
inline const TRegion * CWsClientWindow::GetUserOpaqueRegion()
sl@0
   227
	{
sl@0
   228
	return iUserDefinedOpaqueRegion;
sl@0
   229
	}
sl@0
   230
sl@0
   231
inline void CWsClientWindow::SetOriginalSrcElementRect(const TRect &aSrcRect)
sl@0
   232
    {
sl@0
   233
    iOriginalSrcElementRect = aSrcRect;
sl@0
   234
    }
sl@0
   235
sl@0
   236
inline void CWsClientWindow::SetOriginalDestElementRect(const TRect &aDestRect)
sl@0
   237
    {
sl@0
   238
    iOriginalDestElementRect = aDestRect;
sl@0
   239
    }
sl@0
   240
	
sl@0
   241
#endif