os/graphics/windowing/windowserver/nonnga/SERVER/windowgroup.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
// CWsWindow and associated classes definitions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __WINDOWGROUP_H__
sl@0
    19
#define __WINDOWGROUP_H__
sl@0
    20
sl@0
    21
#include "server.h"
sl@0
    22
#include "tcursor.h"
sl@0
    23
sl@0
    24
class CWsWindowGroup : public CWsWindowBase
sl@0
    25
	{
sl@0
    26
private:
sl@0
    27
	enum {EMaxIdentifierCount=10000};	// Could go as high as the highest signed int, but this would be impractical to test
sl@0
    28
	enum TGroupWindowFlags {
sl@0
    29
		EGroupFlagDisableKeyClick=0x01,
sl@0
    30
		EGroupFlagReceivesFocus=  0x02,
sl@0
    31
		EGroupFlagAutoForeground= 0x04,
sl@0
    32
		EGroupFlagHandlesDeviceChange= 0x08,
sl@0
    33
		EGroupFlagScreenDeviceDeleted= 0x10,
sl@0
    34
		EGroupFlagMsgQueueActive= 0x20,
sl@0
    35
		EGroupFlagMsgQueueNew=	  0x40,
sl@0
    36
		EGroupFlagMessageSignalled= 0x80,
sl@0
    37
		};
sl@0
    38
public:
sl@0
    39
	static CWsWindowGroup* NewL(CWsClient* aOwner, CScreen* aScreen, 
sl@0
    40
		const TWsClCmdCreateWindowGroup& aCmd);
sl@0
    41
	~CWsWindowGroup();
sl@0
    42
private:
sl@0
    43
	CWsWindowGroup(CWsClient* aOwner,CScreen* aScreen);
sl@0
    44
	void ConstructL(const TWsClCmdCreateWindowGroup &aCmd);
sl@0
    45
public: // from CWsObject
sl@0
    46
	virtual void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
    47
public: // from CWsWindowBase
sl@0
    48
	virtual TPoint Origin() const;
sl@0
    49
	virtual TRect AbsRect() const;
sl@0
    50
	virtual TSize Size() const;
sl@0
    51
public:
sl@0
    52
	CWsClientWindow *Child() const;
sl@0
    53
	inline CWsWindowGroup *PrevSibling() const;
sl@0
    54
	inline CWsWindowGroup *NextSibling() const;
sl@0
    55
	CWsRootWindow *Parent() const;
sl@0
    56
	void UpdateOrdinalPriority(TBool aDoAdjust);
sl@0
    57
	void LostFocus();
sl@0
    58
	void ReceivedFocus();
sl@0
    59
	inline RWsTextCursor *TextCursor();
sl@0
    60
	inline TBool ReceivesFocus() const;
sl@0
    61
	static TInt NumWindowGroups(TBool aAllPriorities, TInt aPriority);
sl@0
    62
	static TInt SendWindowGroupListAndChainL(TBool aAllPriorities, TInt aPriority, TInt aCount);
sl@0
    63
	static TBool SendEventToAllGroups(TBool aAllPriorities,TBool aOnePerClient,const TWsClCmdSendEventToWindowGroup& aData);
sl@0
    64
	static void SendMessageToAllGroupsL(CWsClient& aSender,TBool aAllPriorities,const TWsClCmdSendMessageToWindowGroup& aData);
sl@0
    65
	static void GetFocusWindowGroupL();
sl@0
    66
	virtual void SetOrdinalPosition(TInt pos);
sl@0
    67
	TBool SetOrdinalPosition(TInt pos,CWsWindowGroup *aClosingWindow);
sl@0
    68
	void SetOrdinalPriority(TInt aPos, TInt aPriority);
sl@0
    69
	void QueueMessageL(TUid aUid, TInt aDataLength, CWsClient& aSender);
sl@0
    70
	void AddPriorityKeyL(TUint aKeycode, TUint aModifierMask, TUint aModifiers);
sl@0
    71
	void RemovePriorityKey(TUint aKeycode, TUint aModifierMask, TUint aModifiers);
sl@0
    72
	void RemoveAllPriorityKeys();
sl@0
    73
	TBool CheckForPriorityKey(const TKeyData &aKey, TInt aScanCode);
sl@0
    74
	inline CWsPointerCursor *GroupPointerCursor() const;
sl@0
    75
	static CWsWindowGroup *WindowGroupFromIdentifier(TInt aIdentifier);
sl@0
    76
	static CWsWindowGroup *WindowGroupFromIdentifierL(TInt aIdentifier);
sl@0
    77
	static CWsWindowGroup *FindWindowGroupL(CWsClient* aClient,TInt aIdentifier,TInt aOffset,const TPtrC *aMatch,const TThreadId *aThreadId);
sl@0
    78
	inline TInt Identifier() const;
sl@0
    79
	inline HBufC *GroupName();
sl@0
    80
	inline TInt OrdinalPriority();
sl@0
    81
	inline void SetNextDefaultOwningWindow(CWsWindowGroup *aNext);
sl@0
    82
	inline CWsWindowGroup **NextDefaultOwningWindowPtr();
sl@0
    83
	void SetScreenDeviceValidState(const DWsScreenDevice *aDevice);
sl@0
    84
	void SetScreenChangeEventStateL(TBool aEnabled);
sl@0
    85
	TBool ScreenDeviceValid() const;
sl@0
    86
	TBool CanReceiveFocus() const;
sl@0
    87
	static void SetScreenDeviceValidStates(const DWsScreenDevice *aDevice);
sl@0
    88
	static TBool SetScreenDeviceValidStates(const TBool aScreenSizeChanged, const TBool aSwapWidthAndHeight, CScreen* aScreen);
sl@0
    89
	static void NewOrientation(TInt aMode,CFbsBitGc::TGraphicsOrientation aRotation, CWsRootWindow* aRootWindow);
sl@0
    90
	inline DWsScreenDevice *Device();
sl@0
    91
	void FetchMessageL();
sl@0
    92
	static inline void SetFocusGainPreprocessing(TBool aDo);
sl@0
    93
	TBool IsChained(TInt& aParentId);
sl@0
    94
	inline TInt NumWindowGroupsOnMyScreen(TInt aPriority);
sl@0
    95
	static TInt NumWindowGroupsOnScreen(const CWsWindowGroup* aGroupWin,TBool aAllPriorities,TInt aPriority);
sl@0
    96
	inline void SetScreenDeviceDeleted();
sl@0
    97
	inline TBool ScreenDeviceDeleted() const;
sl@0
    98
	static TInt SendWindowGroupListL(TInt aScreenNumber, TBool aAllPriorities, TInt aPriority, TInt aCount);
sl@0
    99
	static void GetFocusWindowGroupL(TInt aScreenNumber);
sl@0
   100
	void SetScreenDevice(DWsScreenDevice *aDevice);
sl@0
   101
	TBool HasVisibleTranslucentChild();
sl@0
   102
private:
sl@0
   103
	void SwitchToOwningWindow(CWsWindowGroup *aClosingWindow);
sl@0
   104
	void MoveChainedWindows(TDblQueIter<CWsWindowGroup>& aIter,TBool aForward,TInt aPos,CWsWindowGroup* aClosingWindow);
sl@0
   105
	TBool DoSetOrdinalPosition1(TInt aPos,CWsWindowGroup *aClosingWindow);
sl@0
   106
	void DoSetOrdinalPosition2(TInt aPos,CWsWindowGroup *aClosingWindow);
sl@0
   107
	void SignalMessageReady();
sl@0
   108
	static void AdvanceIdentifierCount();
sl@0
   109
	void StatusDump(TDes &aBuf);
sl@0
   110
	void PurgeCapturedKeys();
sl@0
   111
	inline void UpdateKeyClickState();
sl@0
   112
	void ResetFocus(CWsWindowGroup *aClosingWindow);
sl@0
   113
	static TInt GetWindowGroupListL(TInt aScreenNo,TBool aAllPriorities,TInt aPriority,TInt aCount,CArrayFixFlat<TInt>* aList);	
sl@0
   114
	inline CWsWindowGroup* BeforeInChain();
sl@0
   115
	static void GetWindowGroupListAndChainL(TInt aScreen,TBool aAllPriorities,TInt aPriority
sl@0
   116
																,RArray<RWsSession::TWindowGroupChainInfo>& list,TInt& aCountLeft);
sl@0
   117
	TBool CheckCapability(TInt& aOrdinalPriority);
sl@0
   118
	void DeleteQueue(TDblQue<CWsWindowGroup>* aQueue);
sl@0
   119
	TInt NumClientWindowGroups();
sl@0
   120
// data
sl@0
   121
private:
sl@0
   122
	RWsTextCursor iTextCursor;
sl@0
   123
	TInt iFlags;
sl@0
   124
	TInt iOrdinalPriorityBase;
sl@0
   125
	TInt iOrdinalPriorityAdjust;
sl@0
   126
	TPriorityKey *iPriorityKeys;
sl@0
   127
	TInt iOwningWindowGroup;
sl@0
   128
	HBufC *iGroupName;
sl@0
   129
	TInt iIdentifier;
sl@0
   130
	CWsWindowGroup *iNextDefaultOwningWindow;
sl@0
   131
	CArrayVarSeg<TWsMessage> *iMessageArray;
sl@0
   132
	static TInt iIdentifierCount;
sl@0
   133
	DWsScreenDevice *iScreenDevice;
sl@0
   134
	static RPointerArray< TDblQue<CWsWindowGroup> > iChains;
sl@0
   135
	TDblQue<CWsWindowGroup>* iQueue;
sl@0
   136
	TDblQueLink iChainLink;
sl@0
   137
	TUint32 iChildSID;
sl@0
   138
	static TBool iFocusGainPreProcess;		//'REMOVEFADINGONFOCUSGAIN' flag in INI file
sl@0
   139
	// used for eventqueue testing
sl@0
   140
#if defined(_DEBUG)
sl@0
   141
	static TInt iSkipCount;
sl@0
   142
#endif
sl@0
   143
	friend class WsPointer;
sl@0
   144
	};
sl@0
   145
sl@0
   146
inline CWsClientWindow *CWsWindowGroup::Child() const
sl@0
   147
	{
sl@0
   148
	return (CWsClientWindow *)iChild;
sl@0
   149
	}
sl@0
   150
sl@0
   151
inline CWsWindowGroup *CWsWindowGroup::NextSibling() const
sl@0
   152
	{
sl@0
   153
	return (CWsWindowGroup *)iSibling;
sl@0
   154
	}
sl@0
   155
sl@0
   156
inline CWsWindowGroup *CWsWindowGroup::PrevSibling() const
sl@0
   157
	{
sl@0
   158
	return (CWsWindowGroup *)GetPrevSibling();
sl@0
   159
	}
sl@0
   160
sl@0
   161
inline CWsRootWindow *CWsWindowGroup::Parent() const
sl@0
   162
	{
sl@0
   163
	return (CWsRootWindow *)iParent;
sl@0
   164
	}
sl@0
   165
sl@0
   166
inline TBool CWsWindowGroup::ReceivesFocus() const
sl@0
   167
	{
sl@0
   168
	return(iFlags&EGroupFlagReceivesFocus);
sl@0
   169
	}
sl@0
   170
sl@0
   171
inline RWsTextCursor *CWsWindowGroup::TextCursor()
sl@0
   172
	{
sl@0
   173
	return &iTextCursor;
sl@0
   174
	}
sl@0
   175
sl@0
   176
inline TInt CWsWindowGroup::Identifier() const
sl@0
   177
	{
sl@0
   178
	return iIdentifier;
sl@0
   179
	}
sl@0
   180
sl@0
   181
inline HBufC *CWsWindowGroup::GroupName()
sl@0
   182
	{
sl@0
   183
	return iGroupName;
sl@0
   184
	}
sl@0
   185
sl@0
   186
inline TInt CWsWindowGroup::OrdinalPriority()
sl@0
   187
	{
sl@0
   188
	return iOrdinalPriorityBase;
sl@0
   189
	}
sl@0
   190
sl@0
   191
inline void CWsWindowGroup::SetNextDefaultOwningWindow(CWsWindowGroup *aNext)
sl@0
   192
	{
sl@0
   193
	iNextDefaultOwningWindow=aNext;
sl@0
   194
	}
sl@0
   195
sl@0
   196
inline CWsWindowGroup **CWsWindowGroup::NextDefaultOwningWindowPtr()
sl@0
   197
	{
sl@0
   198
	return &iNextDefaultOwningWindow;
sl@0
   199
	}
sl@0
   200
sl@0
   201
/**
sl@0
   202
@return A pointer to the DWsScreenDevice used by this window-group, or 
sl@0
   203
		NULL when there is no DWsScreenDevice used by the window-group.
sl@0
   204
*/
sl@0
   205
inline DWsScreenDevice *CWsWindowGroup::Device()
sl@0
   206
	{
sl@0
   207
	return iScreenDevice;
sl@0
   208
	}
sl@0
   209
sl@0
   210
inline void CWsWindowGroup::SetFocusGainPreprocessing(TBool aDo)
sl@0
   211
	{
sl@0
   212
	iFocusGainPreProcess=aDo;
sl@0
   213
	}
sl@0
   214
sl@0
   215
inline void CWsWindowGroup::SetScreenDeviceDeleted()
sl@0
   216
	{
sl@0
   217
	iFlags|=EGroupFlagScreenDeviceDeleted;
sl@0
   218
	iScreenDevice = NULL; //  PDEF100409
sl@0
   219
	}
sl@0
   220
sl@0
   221
inline TBool CWsWindowGroup::ScreenDeviceDeleted() const
sl@0
   222
	{
sl@0
   223
	return (iFlags&EGroupFlagScreenDeviceDeleted);
sl@0
   224
	}
sl@0
   225
sl@0
   226
#endif