os/graphics/windowing/windowserver/nga/SERVER/openwfc/winbase.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
// CWsWindowBase and associated classes definitions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __WINBASE_H__
sl@0
    19
#define __WINBASE_H__
sl@0
    20
sl@0
    21
#include "server.h"
sl@0
    22
sl@0
    23
class TWalkWindowTreeBase;
sl@0
    24
class TResumableWalkWindowTreeBase;
sl@0
    25
class CWsAnim;
sl@0
    26
class CWsSprite;
sl@0
    27
class CWsBlankWindow;
sl@0
    28
sl@0
    29
/** The base class that represents a node in the window tree.
sl@0
    30
sl@0
    31
Every window and window group is part of a window tree. The root of the tree is an instance of the
sl@0
    32
CWsRootWindow class.
sl@0
    33
sl@0
    34
@see RWindowTreeNode
sl@0
    35
@internalComponent
sl@0
    36
@released
sl@0
    37
*/
sl@0
    38
class CWsWindowBase : public CWsScreenObject, public MWsWindowTreeNode
sl@0
    39
	{
sl@0
    40
public:
sl@0
    41
	CWsWindowBase(CWsClient *aOwner,WH_HANDLES aType, CScreen* aScreen);
sl@0
    42
	void ConstructL(CWsWindowBase *aParent);
sl@0
    43
	virtual void AreaCovered(TRegion &aRegion)=0;
sl@0
    44
	virtual TPoint Origin() const = 0;
sl@0
    45
	virtual TRect AbsRect() const = 0;
sl@0
    46
	virtual TSize Size() const = 0;
sl@0
    47
	CWsWindowGroup *WinGroup() const;
sl@0
    48
	inline TUint32 ClientHandle() const;
sl@0
    49
	inline CWsWindowBase *BaseParent() const;
sl@0
    50
	inline CWsWindowBase *BaseChild() const;
sl@0
    51
	inline CWsWindowBase *NextSibling() const;
sl@0
    52
	CWsWindowBase *GetPrevSibling() const;
sl@0
    53
	CWsWindowBase *LastSibling() const;
sl@0
    54
	CWsWindowBase *PrevSiblingMultiParent() const;
sl@0
    55
	CWsWindowBase *NextSiblingMultiParent() const;
sl@0
    56
	inline TWinType WinType() const;
sl@0
    57
	virtual void StatusDump(TDes &aBuf)=0;
sl@0
    58
	TBool QueueEvent(TInt aEvent, TInt aIntVal = 0) const;
sl@0
    59
	inline TBool AdvancedPointersEnabled() const;
sl@0
    60
	inline CWsPointerCursor *PointerCursor() const;
sl@0
    61
	TEventQueueWalkRet EventPurgeCheck(TWsEvent *aEvent);
sl@0
    62
	virtual void SetOrdinalPosition(TInt aPos);
sl@0
    63
	TBool TreeIsObscured() const;
sl@0
    64
	CEventQueue *EventQueue() const;
sl@0
    65
	TInt Depth() const;
sl@0
    66
	void WalkWindowTree(TWalkWindowTreeBase &doIt,TWalkMode aMode);
sl@0
    67
	void WalkWindowTree(TResumableWalkWindowTreeBase& aWalkClass, TWalkMode aMode, TBool aResume);
sl@0
    68
	void WalkWindowTreeBackToFront(TWalkWindowTreeBase &doIt, TWalkModeBackToFront aMode);
sl@0
    69
	void PurgeEvents();
sl@0
    70
	inline TInt FadeCount() const;
sl@0
    71
  void AddSprite(CWsSpriteBase * aSprite);
sl@0
    72
  void RemoveSprite(CWsSpriteBase * aSprite);
sl@0
    73
	inline TBool HasSprite() const;
sl@0
    74
	virtual TBool IsDSAHost() const;
sl@0
    75
	virtual void SendState(MWsWindowTreeObserver& aWindowTreeObserver) const;
sl@0
    76
	
sl@0
    77
public:	// from CWsObject
sl@0
    78
	TBool CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd);
sl@0
    79
	
sl@0
    80
public: // from MWsWindowTreeNode
sl@0
    81
	MWsWindowTreeNode::TType NodeType() const;
sl@0
    82
	const MWsWindow* Window() const;
sl@0
    83
	const MWsSprite* Sprite() const;
sl@0
    84
	const MWsStandardTextCursor* StandardTextCursor() const;
sl@0
    85
	const MWsWindowGroup* WindowGroup() const;
sl@0
    86
	const MWsWindowTreeNode* ParentNode() const;	
sl@0
    87
	
sl@0
    88
protected:
sl@0
    89
	TInt OrdinalPosition(TBool aFull) const;
sl@0
    90
	TBool CheckOrdinalPositionChange(TInt aPos);
sl@0
    91
	virtual void Shutdown();	// Part of two phase destruction
sl@0
    92
	void SetPointerCursor(CWsPointerCursor *aCursor);
sl@0
    93
	void SetPointerCursorByIndex(TInt aIndex);
sl@0
    94
	void ChangeWindowPosition(TInt aPos,CWsWindowBase* aNewParent);
sl@0
    95
sl@0
    96
private:
sl@0
    97
	void RemoveFromSiblingList();
sl@0
    98
	virtual TBool IsActivated() const;
sl@0
    99
sl@0
   100
public:	
sl@0
   101
	CWsSpriteBase *iSpriteList; // Start of linked list of sprites attached to the window		
sl@0
   102
	
sl@0
   103
protected:
sl@0
   104
	enum TBaseWinFlags
sl@0
   105
		{
sl@0
   106
		EBaseWinAdvancedPointersEnabled = 0x00000001,
sl@0
   107
		EBaseWinNodeCreated				= 0x00000002,
sl@0
   108
		};
sl@0
   109
	
sl@0
   110
	CWsWindowBase *iParent;
sl@0
   111
	CWsWindowBase *iSibling;
sl@0
   112
	CWsWindowBase *iChild;
sl@0
   113
	/** The handle specified by the client when the object was created.
sl@0
   114
	
sl@0
   115
	This is different from CWsObject::iWsOwner which is the handle assigned to the object by the server.
sl@0
   116
	@see CWsObject::iWsOwner
sl@0
   117
	*/
sl@0
   118
	TUint32 iClientHandle;
sl@0
   119
	TInt iOrdinalPriority;
sl@0
   120
	TWinType iWinType;
sl@0
   121
	TInt iFadeCount;
sl@0
   122
	TUint iBaseWinFlags;
sl@0
   123
sl@0
   124
private:
sl@0
   125
	CWsPointerCursor *iPointerCursor;
sl@0
   126
	
sl@0
   127
#if defined(_DEBUG)
sl@0
   128
public:
sl@0
   129
	void CheckTree();
sl@0
   130
	TBool IsClientHandleInUse(TUint32 aHandle);
sl@0
   131
#endif
sl@0
   132
	};
sl@0
   133
	
sl@0
   134
inline TWinType CWsWindowBase::WinType() const
sl@0
   135
	{
sl@0
   136
	return iWinType;
sl@0
   137
	}
sl@0
   138
sl@0
   139
inline CWsPointerCursor *CWsWindowBase::PointerCursor() const
sl@0
   140
	{
sl@0
   141
	return iPointerCursor;
sl@0
   142
	}
sl@0
   143
sl@0
   144
inline CWsWindowBase *CWsWindowBase::NextSibling() const
sl@0
   145
	{
sl@0
   146
	return iSibling;
sl@0
   147
	}
sl@0
   148
sl@0
   149
inline CWsWindowBase *CWsWindowBase::BaseChild() const
sl@0
   150
	{
sl@0
   151
	return iChild;
sl@0
   152
	}
sl@0
   153
sl@0
   154
inline CWsWindowBase *CWsWindowBase::BaseParent() const
sl@0
   155
	{
sl@0
   156
	return iParent;
sl@0
   157
	}
sl@0
   158
sl@0
   159
inline TUint32 CWsWindowBase::ClientHandle() const
sl@0
   160
	{
sl@0
   161
	return iClientHandle;
sl@0
   162
	}
sl@0
   163
sl@0
   164
inline TInt CWsWindowBase::FadeCount() const
sl@0
   165
	{
sl@0
   166
	return iFadeCount;
sl@0
   167
	}
sl@0
   168
sl@0
   169
inline TBool CWsWindowBase::AdvancedPointersEnabled() const
sl@0
   170
	{
sl@0
   171
	return iBaseWinFlags&EBaseWinAdvancedPointersEnabled;
sl@0
   172
	}
sl@0
   173
sl@0
   174
inline TBool CWsWindowBase::HasSprite() const
sl@0
   175
	{
sl@0
   176
	return (NULL != iSpriteList);
sl@0
   177
	}
sl@0
   178
sl@0
   179
#endif