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
|
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 TPoint Origin() const = 0;
|
sl@0
|
44 |
virtual TRect AbsRect() const = 0;
|
sl@0
|
45 |
virtual TSize Size() const = 0;
|
sl@0
|
46 |
CWsWindowGroup *WinGroup() const;
|
sl@0
|
47 |
inline TUint32 ClientHandle() const;
|
sl@0
|
48 |
inline CWsWindowBase *BaseParent() const;
|
sl@0
|
49 |
inline CWsWindowBase *BaseChild() const;
|
sl@0
|
50 |
inline CWsWindowBase *NextSibling() const;
|
sl@0
|
51 |
CWsWindowBase *GetPrevSibling() const;
|
sl@0
|
52 |
CWsWindowBase *LastSibling() const;
|
sl@0
|
53 |
CWsWindowBase *PrevSiblingMultiParent() const;
|
sl@0
|
54 |
CWsWindowBase *NextSiblingMultiParent() const;
|
sl@0
|
55 |
inline TWinType WinType() const;
|
sl@0
|
56 |
virtual void StatusDump(TDes &aBuf)=0;
|
sl@0
|
57 |
TBool QueueEvent(TInt aEvent) const;
|
sl@0
|
58 |
inline CWsPointerCursor *PointerCursor() const;
|
sl@0
|
59 |
TEventQueueWalkRet EventPurgeCheck(TWsEvent *aEvent);
|
sl@0
|
60 |
virtual void SetOrdinalPosition(TInt aPos);
|
sl@0
|
61 |
TBool TreeIsObscured() const;
|
sl@0
|
62 |
CEventQueue *EventQueue() const;
|
sl@0
|
63 |
void WalkWindowTree(TWalkWindowTreeBase &doIt,TWalkMode aMode);
|
sl@0
|
64 |
void WalkWindowTree(TResumableWalkWindowTreeBase& aWalkClass, TWalkMode aMode, TBool aResume);
|
sl@0
|
65 |
void PurgeEvents();
|
sl@0
|
66 |
inline TInt FadeCount() const;
|
sl@0
|
67 |
|
sl@0
|
68 |
virtual TBool IsDSAHost() const;
|
sl@0
|
69 |
public: // from CWsObject
|
sl@0
|
70 |
TBool CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd);
|
sl@0
|
71 |
|
sl@0
|
72 |
protected:
|
sl@0
|
73 |
TInt OrdinalPosition(TBool aFull) const;
|
sl@0
|
74 |
TBool CheckOrdinalPositionChange(TInt aPos);
|
sl@0
|
75 |
virtual void Shutdown(); // Part of two phase destruction
|
sl@0
|
76 |
void SetPointerCursor(CWsPointerCursor *aCursor);
|
sl@0
|
77 |
void SetPointerCursorByIndex(TInt aIndex);
|
sl@0
|
78 |
void ChangeWindowPosition(TInt aPos,CWsWindowBase* aNewParent);
|
sl@0
|
79 |
|
sl@0
|
80 |
private:
|
sl@0
|
81 |
void RemoveFromSiblingList();
|
sl@0
|
82 |
|
sl@0
|
83 |
protected:
|
sl@0
|
84 |
CWsWindowBase *iParent;
|
sl@0
|
85 |
CWsWindowBase *iSibling;
|
sl@0
|
86 |
CWsWindowBase *iChild;
|
sl@0
|
87 |
/** The handle specified by the client when the object was created.
|
sl@0
|
88 |
|
sl@0
|
89 |
This is different from CWsObject::iWsOwner which is the handle assigned to the object by the server.
|
sl@0
|
90 |
@see CWsObject::iWsOwner
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
TUint32 iClientHandle;
|
sl@0
|
93 |
TInt iOrdinalPriority;
|
sl@0
|
94 |
TWinType iWinType;
|
sl@0
|
95 |
TInt iFadeCount;
|
sl@0
|
96 |
|
sl@0
|
97 |
private:
|
sl@0
|
98 |
CWsPointerCursor *iPointerCursor;
|
sl@0
|
99 |
|
sl@0
|
100 |
#if defined(_DEBUG)
|
sl@0
|
101 |
public:
|
sl@0
|
102 |
void CheckTree();
|
sl@0
|
103 |
TBool IsClientHandleInUse(TUint32 aHandle);
|
sl@0
|
104 |
#endif
|
sl@0
|
105 |
};
|
sl@0
|
106 |
|
sl@0
|
107 |
inline TWinType CWsWindowBase::WinType() const
|
sl@0
|
108 |
{
|
sl@0
|
109 |
return iWinType;
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
inline CWsPointerCursor *CWsWindowBase::PointerCursor() const
|
sl@0
|
113 |
{
|
sl@0
|
114 |
return iPointerCursor;
|
sl@0
|
115 |
}
|
sl@0
|
116 |
|
sl@0
|
117 |
inline CWsWindowBase *CWsWindowBase::NextSibling() const
|
sl@0
|
118 |
{
|
sl@0
|
119 |
return iSibling;
|
sl@0
|
120 |
}
|
sl@0
|
121 |
|
sl@0
|
122 |
inline CWsWindowBase *CWsWindowBase::BaseChild() const
|
sl@0
|
123 |
{
|
sl@0
|
124 |
return iChild;
|
sl@0
|
125 |
}
|
sl@0
|
126 |
|
sl@0
|
127 |
inline CWsWindowBase *CWsWindowBase::BaseParent() const
|
sl@0
|
128 |
{
|
sl@0
|
129 |
return iParent;
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
inline TUint32 CWsWindowBase::ClientHandle() const
|
sl@0
|
133 |
{
|
sl@0
|
134 |
return iClientHandle;
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
inline TInt CWsWindowBase::FadeCount() const
|
sl@0
|
138 |
{
|
sl@0
|
139 |
return iFadeCount;
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|
sl@0
|
142 |
#endif
|