os/graphics/windowing/windowserver/nonnga/SERVER/cliwin.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
// 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
sl@0
    24
class CWsClientWindow : public CWsWindow
sl@0
    25
	{
sl@0
    26
protected:
sl@0
    27
	enum
sl@0
    28
		{
sl@0
    29
		KWinRedrawPriBitsPerLevel=4,
sl@0
    30
		KWinRedrawPriMaxOrdinal=(1<<KWinRedrawPriBitsPerLevel)-1,		// 15
sl@0
    31
		KWinRedrawPriMaxLevel=32/KWinRedrawPriBitsPerLevel-1,			// 7
sl@0
    32
		};
sl@0
    33
				
sl@0
    34
public:
sl@0
    35
  	CWsClientWindow(CWsClient* aOwner, CScreen* aScreen);
sl@0
    36
	~CWsClientWindow();
sl@0
    37
	virtual void ConstructL(const TWsClCmdCreateWindow &aCmd,CWsWindowBase *aParent, TBool aScreenDeviceIsInvalid);
sl@0
    38
	CWsClientWindow *Child() const;
sl@0
    39
	inline CWsClientWindow *PrevSibling() const;
sl@0
    40
	inline CWsClientWindow *NextSibling() const;
sl@0
    41
	inline CWsClientWindow *PrevSiblingMultiParent() const;
sl@0
    42
	inline CWsClientWindow *NextSiblingMultiParent() const;
sl@0
    43
	virtual const TRegion& WindowArea() 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
	virtual void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
    49
sl@0
    50
public: // from MWsWindow
sl@0
    51
	virtual void Invalidate(const TRect * aRect = 0);
sl@0
    52
	
sl@0
    53
public:
sl@0
    54
	void GcActivated(CWsGc *aGc);
sl@0
    55
	void GcDeactivated(CWsGc *aGc);
sl@0
    56
	void ResetHiddenFlag();
sl@0
    57
	void SetClippedBaseArea(RWsRegion &aRegion) const;
sl@0
    58
	void SetOpaqueClippedBaseArea(RWsRegion &aRegion) const;
sl@0
    59
	inline const TRegion *BaseArea() const;
sl@0
    60
	virtual TUint RedrawPriority(TInt *aShift=NULL) const;
sl@0
    61
	inline void UpdateAnimArea();
sl@0
    62
	void AddKeyRectL(const TRect &aRect, TInt aScanCode, TBool aActivatedByPointerSwitchOn);
sl@0
    63
	void RemoveAllKeyRects();
sl@0
    64
	void SetVisible(TBool aState);
sl@0
    65
	inline TBool IsFadeBehind() const;
sl@0
    66
//
sl@0
    67
	TBool IsHidden();
sl@0
    68
	void SetFaded(TBool aFade,TUint8 aBlackMap,TUint8 aWhiteMap); 
sl@0
    69
	void RecalcChildAbs(const TPoint *aOffset);
sl@0
    70
	void ResetHiddenFlagsInParentAndChildren();
sl@0
    71
	static inline void SetAbsoluteFading(TBool aAbsoluteFading);
sl@0
    72
	inline const TRegion * GetUserOpaqueRegion();
sl@0
    73
	void OffsetUserTransparentRegion(const TPoint& aOffset);
sl@0
    74
	void SetUserOpaqueRegion();
sl@0
    75
	void ReactivateGcs();
sl@0
    76
	void ScheduleRegionUpdate(const TRegion* aDefinitelyDirty);
sl@0
    77
	
sl@0
    78
	void DoMoveWindowToGroupL(TInt aIdentifier);
sl@0
    79
	void SetScreenDeviceValidState(TBool aState);
sl@0
    80
	TBool SetScreenDeviceValidStateFlag(TBool aState);
sl@0
    81
	void SetInactive();
sl@0
    82
protected:
sl@0
    83
	void Activate();
sl@0
    84
	void SetExtentL(const TPoint *aPos, const TSize *aSize);
sl@0
    85
	static void ClipWindows(TRegion &region,const CWsClientWindow *start, const CWsClientWindow *end, TBool aClipTranslucent);
sl@0
    86
	void GenerateArea(RWsRegion &aArea, TBool aClipTranslucent) const;
sl@0
    87
	void SetAbsFromRel();
sl@0
    88
	void Scroll(const TRect &aClipRect, const TPoint &aPoint, const TRect &aRect);
sl@0
    89
	void CalcBaseArea();
sl@0
    90
	void OffsetBaseArea(const TPoint &aOffset);
sl@0
    91
	void DeleteBaseArea();
sl@0
    92
	void SetCornerTypeL(TCornerType aType, TInt aFlags, TRegion *aNewBaseArea=NULL);
sl@0
    93
	void ResetHiddenFlags();
sl@0
    94
	TDblQue<TPointerKeyList> *PointerKeyList() const;
sl@0
    95
	void SetUserTransparentRegion(RWsRegion* aRegion);
sl@0
    96
	// from CWsWindowBase thru CWsWindow
sl@0
    97
	TBool IsDSAHost() const;
sl@0
    98
	
sl@0
    99
private:
sl@0
   100
	TInt iCornerData;
sl@0
   101
	TUint iBackupsRequested;
sl@0
   102
	TRegion *iBaseArea;			// The base area of the window without any clipping from windows taken into account
sl@0
   103
	TDblQue<TPointerKeyList> *iPointerKeyList;
sl@0
   104
	static TBool iAbsoluteFading;
sl@0
   105
	/**
sl@0
   106
	By default the full window region is transparent if the window is marked 
sl@0
   107
	as transparent. If this is not the desired behaviour the client can
sl@0
   108
	define the transparent region itself.
sl@0
   109
	
sl@0
   110
	@see RWindow::SetTransparentRegion()
sl@0
   111
	*/
sl@0
   112
	RWsRegion* iUserDefinedTransparentRegion;
sl@0
   113
	RWsRegion* iUserDefinedOpaqueRegion;
sl@0
   114
	};
sl@0
   115
sl@0
   116
inline CWsClientWindow *CWsClientWindow::Child() const
sl@0
   117
	{
sl@0
   118
	return((CWsClientWindow *)iChild);
sl@0
   119
	}
sl@0
   120
sl@0
   121
inline CWsClientWindow *CWsClientWindow::NextSibling() const
sl@0
   122
	{
sl@0
   123
	return((CWsClientWindow *)iSibling);
sl@0
   124
	}
sl@0
   125
sl@0
   126
inline CWsClientWindow *CWsClientWindow::PrevSibling() const
sl@0
   127
	{
sl@0
   128
	return((CWsClientWindow *)GetPrevSibling());
sl@0
   129
	}
sl@0
   130
sl@0
   131
inline const TRegion *CWsClientWindow::BaseArea() const
sl@0
   132
	{
sl@0
   133
	return iBaseArea;
sl@0
   134
	}
sl@0
   135
sl@0
   136
inline void CWsClientWindow::UpdateAnimArea()
sl@0
   137
	{
sl@0
   138
	iRedraw->UpdateAnimArea();
sl@0
   139
	}
sl@0
   140
sl@0
   141
inline TBool CWsClientWindow::IsFadeBehind() const
sl@0
   142
	{
sl@0
   143
	return(iFlags&EFlagFadeBehind);
sl@0
   144
	}
sl@0
   145
sl@0
   146
inline void CWsClientWindow::SetAbsoluteFading(TBool aAbsoluteFading)
sl@0
   147
	{
sl@0
   148
	iAbsoluteFading=aAbsoluteFading;
sl@0
   149
	}
sl@0
   150
sl@0
   151
inline CWsClientWindow *CWsClientWindow::PrevSiblingMultiParent() const
sl@0
   152
	{
sl@0
   153
	return((CWsClientWindow *)CWsWindowBase::PrevSiblingMultiParent());
sl@0
   154
	}
sl@0
   155
sl@0
   156
inline CWsClientWindow *CWsClientWindow::NextSiblingMultiParent() const
sl@0
   157
	{
sl@0
   158
	return((CWsClientWindow *)CWsWindowBase::NextSiblingMultiParent());
sl@0
   159
	}
sl@0
   160
sl@0
   161
inline const TRegion * CWsClientWindow::GetUserOpaqueRegion()
sl@0
   162
	{
sl@0
   163
	return iUserDefinedOpaqueRegion;
sl@0
   164
	}
sl@0
   165
	
sl@0
   166
#endif