sl@0
|
1 |
// Copyright (c) 1999-2010 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 |
// Definition of classes for the class that deals with client communication
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __CLIENT_H__
|
sl@0
|
19 |
#define __CLIENT_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <graphics/WSGRAPHICDRAWERINTERFACE.H>
|
sl@0
|
22 |
#include "WSGRAPHICDRAWERARRAY.H"
|
sl@0
|
23 |
|
sl@0
|
24 |
#include <e32std.h>
|
sl@0
|
25 |
#include <e32base.h>
|
sl@0
|
26 |
#include "W32STD.H"
|
sl@0
|
27 |
#include "w32cmd.h"
|
sl@0
|
28 |
#include "WSOBJIX.H"
|
sl@0
|
29 |
#include "EVQUEUE.H"
|
sl@0
|
30 |
#include "PRIKEY.H"
|
sl@0
|
31 |
#include "wstypes.h"
|
sl@0
|
32 |
#include <e32hashtab.h> //RHashMap
|
sl@0
|
33 |
|
sl@0
|
34 |
class CWsWindowBase;
|
sl@0
|
35 |
class CWsClientWindow;
|
sl@0
|
36 |
class CWsPointerCursor;
|
sl@0
|
37 |
class CWsCustomTextCursor;
|
sl@0
|
38 |
class CWsSpriteBase;
|
sl@0
|
39 |
class DWsScreenDevice;
|
sl@0
|
40 |
class CScreen;
|
sl@0
|
41 |
class RHandleBase;
|
sl@0
|
42 |
class CWsGraphicDrawerObject;
|
sl@0
|
43 |
class CWsGraphicDrawer;
|
sl@0
|
44 |
class MWsElement;
|
sl@0
|
45 |
class TSurfaceConfiguration;
|
sl@0
|
46 |
class CWsRedrawMsgWindow;
|
sl@0
|
47 |
|
sl@0
|
48 |
/** Server-side object for a client session.
|
sl@0
|
49 |
|
sl@0
|
50 |
@internalComponent
|
sl@0
|
51 |
@released
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
class CWsClient : public CSession2, public MWsClient
|
sl@0
|
54 |
{
|
sl@0
|
55 |
private:
|
sl@0
|
56 |
friend class CWsRedrawMsgWindow;
|
sl@0
|
57 |
private:
|
sl@0
|
58 |
class TWsCursorArrayItem;
|
sl@0
|
59 |
enum{EObjectGranularity=5};
|
sl@0
|
60 |
enum{ENoDefaultSystemPointerCursor=-1};
|
sl@0
|
61 |
public:
|
sl@0
|
62 |
enum{EPanicLeave=1};
|
sl@0
|
63 |
public: // from MWsClient
|
sl@0
|
64 |
TBool HasCapability(TCapability aCapability) const;
|
sl@0
|
65 |
TSecureId SecureId() const;
|
sl@0
|
66 |
TVendorId VendorId() const;
|
sl@0
|
67 |
public:
|
sl@0
|
68 |
CWsClient(RThread aClient);
|
sl@0
|
69 |
~CWsClient();
|
sl@0
|
70 |
static void InitStaticsL();
|
sl@0
|
71 |
static void DeleteStatics();
|
sl@0
|
72 |
inline TBool NotClosing() const;
|
sl@0
|
73 |
inline CWsObjectIx* ObjectIndex();
|
sl@0
|
74 |
|
sl@0
|
75 |
inline const RMessage2& ClientMessage() const;
|
sl@0
|
76 |
|
sl@0
|
77 |
inline const RThread& Client() const;
|
sl@0
|
78 |
static inline CWsClient* CurrentClient();
|
sl@0
|
79 |
inline TInt ConnectionHandle() const;
|
sl@0
|
80 |
inline DWsScreenDevice* PrimaryScreenDevice();
|
sl@0
|
81 |
inline const DWsScreenDevice* PrimaryScreenDevice() const;
|
sl@0
|
82 |
inline CScreen* Screen();
|
sl@0
|
83 |
inline const CScreen* Screen() const;
|
sl@0
|
84 |
static CWsPointerCursor* SystemPointerCursor(TInt aIndex);
|
sl@0
|
85 |
static inline CWsPointerCursor* DefaultSystemPointerCursor();
|
sl@0
|
86 |
static CWsCustomTextCursor* FindCustomTextCursor(TInt aIdentifier);
|
sl@0
|
87 |
void SessionPanic(TClientPanic aReason) const;
|
sl@0
|
88 |
|
sl@0
|
89 |
// Window object access from handle
|
sl@0
|
90 |
void HandleToWindow(TInt aHandle, CWsWindowBase** pWin);
|
sl@0
|
91 |
void HandleToClientWindow(TInt aHandle, CWsClientWindow** pWin);
|
sl@0
|
92 |
|
sl@0
|
93 |
// Generic WsObject access from handle
|
sl@0
|
94 |
CWsObject* HandleToObj(TInt aHandle, WH_HANDLES aType);
|
sl@0
|
95 |
const CWsObject* HandleToObj(TInt aHandle, WH_HANDLES aType) const;
|
sl@0
|
96 |
CWsObject* HandleToObjUntyped(TInt aHandle);
|
sl@0
|
97 |
const CWsObject* HandleToObjUntyped(TInt aHandle) const;
|
sl@0
|
98 |
|
sl@0
|
99 |
CWsGraphicDrawerObject* DrawerObject(const CWsGraphicDrawer* aDrawer);
|
sl@0
|
100 |
const CWsGraphicDrawerObject* DrawerObject(const CWsGraphicDrawer* aDrawer) const;
|
sl@0
|
101 |
|
sl@0
|
102 |
// Handle from object
|
sl@0
|
103 |
inline TInt ObjectHandle(const CWsObject* aThis) const;
|
sl@0
|
104 |
|
sl@0
|
105 |
// Queue access
|
sl@0
|
106 |
inline CEventQueue* EventQueue();
|
sl@0
|
107 |
inline const CEventQueue* EventQueue() const;
|
sl@0
|
108 |
inline CRedrawQueue* RedrawQueue();
|
sl@0
|
109 |
inline const CRedrawQueue* RedrawQueue() const;
|
sl@0
|
110 |
|
sl@0
|
111 |
// Execute client command from buffer
|
sl@0
|
112 |
void ExecuteCommandL(TInt aOpcode, const TAny* aCmdData);
|
sl@0
|
113 |
static const TUint8* EndOfCommandBuffer();
|
sl@0
|
114 |
static const TPtrC BufferTPtr(TText* aStart,TInt aLen);
|
sl@0
|
115 |
static TBool BufferTPtrGc(TText* aStart,TInt aLen,TPtrC& aPtr);
|
sl@0
|
116 |
static const TPtrC8 BufferTPtr8(TUint8* aStart,TInt aLen);
|
sl@0
|
117 |
|
sl@0
|
118 |
// Remote read data from client
|
sl@0
|
119 |
void RemoteRead(TDes16& aDes, TInt aOffset);
|
sl@0
|
120 |
void RemoteRead(TDes8& aDes, TInt aOffset);
|
sl@0
|
121 |
void RemoteReadL(TDes16& aDes, TInt aOffset);
|
sl@0
|
122 |
void RemoteReadL(TDes8& aDes, TInt aOffset);
|
sl@0
|
123 |
|
sl@0
|
124 |
// Send the reply to the client's request
|
sl@0
|
125 |
void SetResponseHandle(RHandleBase* aHandle);
|
sl@0
|
126 |
static void ReplyBuf(const TAny* aSource, TInt aLength);
|
sl@0
|
127 |
static void ReplyBuf(const TDesC8 &aDes);
|
sl@0
|
128 |
static void ReplyBuf(const TDesC16 &aDes);
|
sl@0
|
129 |
static void ReplySize(const TSize &aSize);
|
sl@0
|
130 |
static void ReplyPoint(const TPoint &aPoint);
|
sl@0
|
131 |
static void ReplyRect(const TRect &aRect);
|
sl@0
|
132 |
static void ReplyGroupName(HBufC* aName, TInt aMaxLength);
|
sl@0
|
133 |
static void SetReply(TInt reply);
|
sl@0
|
134 |
void RequestComplete(TRequestStatus*& aStatus, TInt aErr);
|
sl@0
|
135 |
|
sl@0
|
136 |
// Panic or terminate the client
|
sl@0
|
137 |
static void PanicCurrentClient(TClientPanic aPanic);
|
sl@0
|
138 |
static TInt ReplyBufSpace() ;
|
sl@0
|
139 |
void PPanic(TClientPanic aPanic) const;
|
sl@0
|
140 |
void SessionTerminate();
|
sl@0
|
141 |
|
sl@0
|
142 |
// All events
|
sl@0
|
143 |
inline void EventReady(const RMessagePtr2& aEventMsg);
|
sl@0
|
144 |
|
sl@0
|
145 |
// Pointer events
|
sl@0
|
146 |
inline void PurgePointerEvents();
|
sl@0
|
147 |
|
sl@0
|
148 |
// Key events
|
sl@0
|
149 |
inline void PriorityKeyPressed(TInt aHandle, const TKeyEvent &aKeyEvent);
|
sl@0
|
150 |
|
sl@0
|
151 |
// Notification of misc events
|
sl@0
|
152 |
void AddNotificationL(TInt aKey, const RMessage2& aClientMsg);
|
sl@0
|
153 |
void CompleteNotification(TInt aKey, TInt aReason);
|
sl@0
|
154 |
inline void NotifyScreenDeviceDeleted(DWsScreenDevice* aDeletedScreenDevice);
|
sl@0
|
155 |
|
sl@0
|
156 |
// Redraw
|
sl@0
|
157 |
void TriggerRedraw();
|
sl@0
|
158 |
|
sl@0
|
159 |
// Misc
|
sl@0
|
160 |
void UpdateWindowOrdinalPrioritys();
|
sl@0
|
161 |
void SetClientPriority(); // boost when in foreground
|
sl@0
|
162 |
|
sl@0
|
163 |
void CreateDrawableSourceL(const TWsClCmdCreateDrawableSource& aDrawableSourceData);
|
sl@0
|
164 |
|
sl@0
|
165 |
//retry putting events on event queue
|
sl@0
|
166 |
void SetRetryFlag(TEventCode aEventCode);
|
sl@0
|
167 |
void RemoveRetryFlag(TEventCode aEventCode);
|
sl@0
|
168 |
TBool RetryEvent(TEventCode aEventCode);
|
sl@0
|
169 |
|
sl@0
|
170 |
inline void WgMsgQueueOverflow();// Set flag window group message queue is overflow and has pending messages
|
sl@0
|
171 |
|
sl@0
|
172 |
//Get orientation value that app indicated
|
sl@0
|
173 |
TInt GetIndicatedAppOrientation();
|
sl@0
|
174 |
|
sl@0
|
175 |
private: // from MWsClient
|
sl@0
|
176 |
TInt SendMessage(const CWsGraphicDrawer* aOnBehalfOf, const TDesC8& aData);
|
sl@0
|
177 |
TInt SendMessage(const CWsGraphicDrawer* aOnBehalfOf, CWsMessageData& aData);
|
sl@0
|
178 |
|
sl@0
|
179 |
private: // from CSession2
|
sl@0
|
180 |
void ServiceL(const RMessage2 &aMessage);
|
sl@0
|
181 |
void ServiceError(const RMessage2& aMessage,TInt aError);
|
sl@0
|
182 |
private:
|
sl@0
|
183 |
// Construction and destruction
|
sl@0
|
184 |
inline TBool IsInitialised();
|
sl@0
|
185 |
void StartInitializationL(TUint aConnectionHandle);
|
sl@0
|
186 |
void CompleteInitializationL();
|
sl@0
|
187 |
void InitialiseScreenDevices();
|
sl@0
|
188 |
|
sl@0
|
189 |
// Service client commands by dispatching them to the object associated with the op code
|
sl@0
|
190 |
void DoServiceL(const RMessage2& aMessage, TBool& aCompleteRequest);
|
sl@0
|
191 |
void DoServiceCommandBuf();
|
sl@0
|
192 |
void DispatchCommandsInBufL();
|
sl@0
|
193 |
void CompleteMessage(const RMessage2& aMessage,TInt aReason);
|
sl@0
|
194 |
|
sl@0
|
195 |
// Execute async client commands
|
sl@0
|
196 |
void ExecuteAsyncClientCommandL(TInt aOpcode, const RMessage2& aMessage);
|
sl@0
|
197 |
static inline TBool CheckBuffer(TInt aLength, TInt aMaxLength);
|
sl@0
|
198 |
static TBool DebugEnforceRedrawCallingConvention();
|
sl@0
|
199 |
|
sl@0
|
200 |
// Create new objects
|
sl@0
|
201 |
void CreateNewWindowGroupL(const TWsClCmdCreateWindowGroup &aCmd);
|
sl@0
|
202 |
void CreateNewWindowL(const TWsClCmdCreateWindow &aCmd);
|
sl@0
|
203 |
void CreateNewAnimDllL(const TWsClCmdUnion &aParams);
|
sl@0
|
204 |
void CreateNewSpriteL(const TWsClCmdCreateSprite &aCmd);
|
sl@0
|
205 |
void CreateNewPointerCursorL(const TWsClCmdCreatePointerCursor &aCmd);
|
sl@0
|
206 |
void CreateNewBitmapL(const TWsClCmdCreateBitmap &aCmd);
|
sl@0
|
207 |
void CreateNewClickHandlerL(const TUid& aUid);
|
sl@0
|
208 |
void CreateNewScreenDeviceL( TInt aDefaultScreenNumber, TUint aClientScreenDevicePointer);
|
sl@0
|
209 |
|
sl@0
|
210 |
// Surface management
|
sl@0
|
211 |
TInt RegisterSurface(const TWsClCmdUnion& pData);
|
sl@0
|
212 |
void UnregisterSurface(const TWsClCmdUnion& pData);
|
sl@0
|
213 |
|
sl@0
|
214 |
// Text cursor
|
sl@0
|
215 |
static inline CWsCustomTextCursor*& TextCursor (TInt aPosition);
|
sl@0
|
216 |
void StartSetCustomTextCursorL(const TWsClCmdCustomTextCursorData& aCmd);
|
sl@0
|
217 |
void CompleteSetCustomTextCursorL(TInt aErr);
|
sl@0
|
218 |
|
sl@0
|
219 |
// Pointer cursor
|
sl@0
|
220 |
static inline CWsPointerCursor*& PointerCursor (TInt aPosition);
|
sl@0
|
221 |
void SetSystemPointerCursorL(TInt aIndex, CWsPointerCursor* aCursor);
|
sl@0
|
222 |
void ClearSystemPointerCursor(TInt aIndex);
|
sl@0
|
223 |
void ClaimSystemPointerCursorListL();
|
sl@0
|
224 |
void FreeSystemPointerCursorList();
|
sl@0
|
225 |
void SetDefaultSystemPointerCursor(TInt aIndex);
|
sl@0
|
226 |
static void DeleteSystemPointerListEntry(TInt aIndex);
|
sl@0
|
227 |
|
sl@0
|
228 |
static TBool FindCursorArrayItem(CArrayFixFlat<TWsCursorArrayItem>* aCursorArray,
|
sl@0
|
229 |
TInt aIndex, TInt& aPosition);
|
sl@0
|
230 |
|
sl@0
|
231 |
// Key events
|
sl@0
|
232 |
inline void CancelClientRequestForPriorityKeyEvent();
|
sl@0
|
233 |
inline void HandleClientRequestForPriorityKeyData();
|
sl@0
|
234 |
inline void PriorityKeyEventReady(const RMessagePtr2& aEventMsg);
|
sl@0
|
235 |
|
sl@0
|
236 |
// Redraw events
|
sl@0
|
237 |
inline void CancelClientRequestForRedrawEvent();
|
sl@0
|
238 |
inline void HandleClientRequestForRedrawData();
|
sl@0
|
239 |
inline void RedrawEventReady(const RMessagePtr2& aEventMsg);
|
sl@0
|
240 |
inline TBool ClientProcessingRedrawEvent();
|
sl@0
|
241 |
|
sl@0
|
242 |
// Client event requests
|
sl@0
|
243 |
inline void HandleClientRequestForEventData();
|
sl@0
|
244 |
inline void CancelClientRequestForEventData();
|
sl@0
|
245 |
|
sl@0
|
246 |
// Debugging
|
sl@0
|
247 |
void DebugInfoL(TInt aFunction, TInt aParam, TBool aHasReplyBuf) const;
|
sl@0
|
248 |
void DebugInfoUnclassifiedL(TInt aFunction, TInt aParam, TBool aHasReplyBuf) const;
|
sl@0
|
249 |
TInt DebugInfoClassifiedL(TInt aFunction, TInt aParam, TBool aHasReplyBuf) const;
|
sl@0
|
250 |
TInt DebugInfoScreenUiL(TInt aFunction, TInt aParam, TInt aReplyBufSize, CScreen& aScreen) const;
|
sl@0
|
251 |
TInt DebugInfoScreenElementSetL(TInt aFunction, TInt aParam, TInt aReplyBufSize,const CScreen& aScreen) const;
|
sl@0
|
252 |
TInt DebugInfoElementSetWindowL(TInt aFunction, TInt aParam, TInt aReplyBufSize,const CScreen& aScreen) const;
|
sl@0
|
253 |
TInt DebugInfoElementSetElementL(TInt aFunction, TInt aParam, TInt aReplyBufSize,const CScreen& aScreen) const;
|
sl@0
|
254 |
TInt DebugReturnConfig(TInt aReplyBufSize, MWsElement* aElement, TInt aFlags=0)const;
|
sl@0
|
255 |
TInt DebugReturnBase(TInt aReplyBufSize, const MWsElement* aElement) const;
|
sl@0
|
256 |
TInt DebugReturnFlags(TInt aReplyBufSize, const MWsElement* aElement, TInt aFlags=0) const;
|
sl@0
|
257 |
TInt DebugReturnRegion(TInt aReplyBufSize, const TRegion* aRegion, TInt aErrCodeIfEmpty) const;
|
sl@0
|
258 |
|
sl@0
|
259 |
// Misc
|
sl@0
|
260 |
void SetComputeMode(RWsSession::TComputeMode aComputeMode);
|
sl@0
|
261 |
|
sl@0
|
262 |
//Set orientation that application indicated
|
sl@0
|
263 |
void IndicateAppOrientation(TRenderOrientation aOrientation);
|
sl@0
|
264 |
|
sl@0
|
265 |
public:
|
sl@0
|
266 |
static TWsCmdHeaderBase iCurrentCommand;
|
sl@0
|
267 |
private:
|
sl@0
|
268 |
class TWsCursorArrayItem
|
sl@0
|
269 |
{
|
sl@0
|
270 |
public:
|
sl@0
|
271 |
CWsSpriteBase* iCursor;
|
sl@0
|
272 |
TInt iIndex;
|
sl@0
|
273 |
};
|
sl@0
|
274 |
|
sl@0
|
275 |
enum TInternalFlags
|
sl@0
|
276 |
{
|
sl@0
|
277 |
EIsInitialised = 0x01,
|
sl@0
|
278 |
EPanicClientAsSoonAsPossible = 0x02, //The client should be panicked, but we have no way to panic him now
|
sl@0
|
279 |
EClientIsClosing = 0x04, //The client is closing down, so the screen device may no longer be valid
|
sl@0
|
280 |
EFinishedProcessingCommands=0x08, //Reached last command in command buffer or otherwised finihsed processing it
|
sl@0
|
281 |
ERemoveKeyCode=0x10, //Remove the Win32 keycode emulator only
|
sl@0
|
282 |
ERetryDisplayEvent=0x20,
|
sl@0
|
283 |
EIsPerformingRedrawEvent=0x40, //The client is performing a RedrawEvent
|
sl@0
|
284 |
EWgMsgQueueOverflow =0x80,
|
sl@0
|
285 |
};
|
sl@0
|
286 |
private:
|
sl@0
|
287 |
RThread iClient;
|
sl@0
|
288 |
CScreen* iScreen; //## This needs updating
|
sl@0
|
289 |
TUint iConnectionHandle; // Connection ID, only needed for logging, could bin this
|
sl@0
|
290 |
CEventQueue* iEventQueue;
|
sl@0
|
291 |
CRedrawQueue* iRedrawQueue;
|
sl@0
|
292 |
CPriorityKey* iPriorityKeyEvent;
|
sl@0
|
293 |
CWsGraphicMessageQueue iGraphicMessageQueue;
|
sl@0
|
294 |
RWsSession::TComputeMode iComputeMode;
|
sl@0
|
295 |
CWsObjectIx* iObjectIndex;
|
sl@0
|
296 |
DWsScreenDevice* iPrimaryScreenDevice;
|
sl@0
|
297 |
TWsCursorArrayItem iTempCustomTextCursor;
|
sl@0
|
298 |
mutable TInt iPanicReason;
|
sl@0
|
299 |
mutable TUint iInternalFlags;
|
sl@0
|
300 |
RMessage2 iClientMessage;
|
sl@0
|
301 |
RHandleBase* iResponseHandle;
|
sl@0
|
302 |
TInt iMessageIdSeq;
|
sl@0
|
303 |
TInt iIndicatedAppOrientation;
|
sl@0
|
304 |
|
sl@0
|
305 |
//Members for procerssing command buffer
|
sl@0
|
306 |
static CWsClient* iCurrentClient; // Client who's buffer is currently being processed
|
sl@0
|
307 |
static TInt iReply; // Value to reply
|
sl@0
|
308 |
static TInt iReplyOffset; // Offset into reply to write next block of data
|
sl@0
|
309 |
static TBuf8<EClientBufferMaxSize> iCmdBuf; // Buffer contain a block of client commands
|
sl@0
|
310 |
static CWsObject* iDestObj; // Current object client command is for
|
sl@0
|
311 |
static const TUint8* iNextCmd; // Pointer in buffer to the next command to be processed
|
sl@0
|
312 |
|
sl@0
|
313 |
static TInt iDefaultSystemPointerCursorIndex; // Negative when there isn't one
|
sl@0
|
314 |
static CWsPointerCursor* iDefaultSystemPointerCursor;
|
sl@0
|
315 |
static CArrayFixFlat<TWsCursorArrayItem>* iSystemPointerCursors;
|
sl@0
|
316 |
static CWsClient* iSystemPointerCursorListOwner;
|
sl@0
|
317 |
static CArrayFixFlat<TWsCursorArrayItem>* iTextCursorArray;
|
sl@0
|
318 |
static TUint iConnectionId;
|
sl@0
|
319 |
static TKeyArrayFix iCursorKey;
|
sl@0
|
320 |
static TBool iDebug_EnforceRedrawCallingConvention;
|
sl@0
|
321 |
#if defined(__WINS__)
|
sl@0
|
322 |
public:
|
sl@0
|
323 |
inline TBool RemoveKeyCode();
|
sl@0
|
324 |
#endif
|
sl@0
|
325 |
};
|
sl@0
|
326 |
|
sl@0
|
327 |
|
sl@0
|
328 |
//
|
sl@0
|
329 |
// inlines //
|
sl@0
|
330 |
//
|
sl@0
|
331 |
|
sl@0
|
332 |
inline const RThread& CWsClient::Client() const
|
sl@0
|
333 |
{return iClient;}
|
sl@0
|
334 |
|
sl@0
|
335 |
inline void CWsClient::EventReady(const RMessagePtr2& aEventMsg)
|
sl@0
|
336 |
{iEventQueue->EventReady(aEventMsg);}
|
sl@0
|
337 |
|
sl@0
|
338 |
inline void CWsClient::HandleClientRequestForEventData()
|
sl@0
|
339 |
{iEventQueue->GetData();}
|
sl@0
|
340 |
|
sl@0
|
341 |
inline void CWsClient::CancelClientRequestForEventData()
|
sl@0
|
342 |
{iEventQueue->CancelRead();}
|
sl@0
|
343 |
|
sl@0
|
344 |
inline void CWsClient::PurgePointerEvents()
|
sl@0
|
345 |
{iEventQueue->PurgePointerEvents();}
|
sl@0
|
346 |
|
sl@0
|
347 |
inline void CWsClient::RedrawEventReady(const RMessagePtr2& aEventMsg)
|
sl@0
|
348 |
{
|
sl@0
|
349 |
iInternalFlags&=~EIsPerformingRedrawEvent;
|
sl@0
|
350 |
iRedrawQueue->EventReady(aEventMsg);
|
sl@0
|
351 |
}
|
sl@0
|
352 |
|
sl@0
|
353 |
inline TBool CWsClient::ClientProcessingRedrawEvent()
|
sl@0
|
354 |
{return !!(iInternalFlags&EIsPerformingRedrawEvent);}
|
sl@0
|
355 |
|
sl@0
|
356 |
inline void CWsClient::HandleClientRequestForRedrawData()
|
sl@0
|
357 |
{
|
sl@0
|
358 |
iInternalFlags|=EIsPerformingRedrawEvent;
|
sl@0
|
359 |
iRedrawQueue->GetData();
|
sl@0
|
360 |
}
|
sl@0
|
361 |
|
sl@0
|
362 |
inline void CWsClient::CancelClientRequestForRedrawEvent()
|
sl@0
|
363 |
{iRedrawQueue->CancelRead();}
|
sl@0
|
364 |
|
sl@0
|
365 |
inline void CWsClient::PriorityKeyEventReady(const RMessagePtr2& aEventMsg)
|
sl@0
|
366 |
{iPriorityKeyEvent->EventReady(aEventMsg);}
|
sl@0
|
367 |
|
sl@0
|
368 |
inline void CWsClient::CancelClientRequestForPriorityKeyEvent()
|
sl@0
|
369 |
{iPriorityKeyEvent->CancelRead();}
|
sl@0
|
370 |
|
sl@0
|
371 |
inline void CWsClient::HandleClientRequestForPriorityKeyData()
|
sl@0
|
372 |
{iPriorityKeyEvent->GetData();}
|
sl@0
|
373 |
|
sl@0
|
374 |
inline void CWsClient::PriorityKeyPressed(TInt aHandle, const TKeyEvent &aKeyEvent)
|
sl@0
|
375 |
{iPriorityKeyEvent->PriorityKey(aHandle, aKeyEvent);}
|
sl@0
|
376 |
|
sl@0
|
377 |
inline TInt CWsClient::ObjectHandle(const CWsObject* aThis) const
|
sl@0
|
378 |
{return(iObjectIndex->At(aThis));}
|
sl@0
|
379 |
|
sl@0
|
380 |
#if defined(__WINS__)
|
sl@0
|
381 |
inline TBool CWsClient::RemoveKeyCode()
|
sl@0
|
382 |
{return iInternalFlags&ERemoveKeyCode;}
|
sl@0
|
383 |
#endif
|
sl@0
|
384 |
|
sl@0
|
385 |
inline CEventQueue* CWsClient::EventQueue()
|
sl@0
|
386 |
{return(iEventQueue);}
|
sl@0
|
387 |
|
sl@0
|
388 |
inline const CEventQueue* CWsClient::EventQueue() const
|
sl@0
|
389 |
{return(iEventQueue);}
|
sl@0
|
390 |
|
sl@0
|
391 |
inline CRedrawQueue* CWsClient::RedrawQueue()
|
sl@0
|
392 |
{return(iRedrawQueue);}
|
sl@0
|
393 |
|
sl@0
|
394 |
inline const CRedrawQueue* CWsClient::RedrawQueue() const
|
sl@0
|
395 |
{return(iRedrawQueue);}
|
sl@0
|
396 |
|
sl@0
|
397 |
inline CWsObjectIx* CWsClient::ObjectIndex()
|
sl@0
|
398 |
{return(iObjectIndex);}
|
sl@0
|
399 |
|
sl@0
|
400 |
inline TInt CWsClient::ConnectionHandle() const
|
sl@0
|
401 |
{return(iConnectionHandle);}
|
sl@0
|
402 |
|
sl@0
|
403 |
inline DWsScreenDevice* CWsClient::PrimaryScreenDevice()
|
sl@0
|
404 |
{return(iPrimaryScreenDevice);}
|
sl@0
|
405 |
|
sl@0
|
406 |
inline const DWsScreenDevice* CWsClient::PrimaryScreenDevice() const
|
sl@0
|
407 |
{return(iPrimaryScreenDevice);}
|
sl@0
|
408 |
|
sl@0
|
409 |
inline void CWsClient::NotifyScreenDeviceDeleted(DWsScreenDevice* aDeletedScreenDevice)
|
sl@0
|
410 |
{
|
sl@0
|
411 |
if (iPrimaryScreenDevice == aDeletedScreenDevice)
|
sl@0
|
412 |
iPrimaryScreenDevice = NULL;
|
sl@0
|
413 |
}
|
sl@0
|
414 |
|
sl@0
|
415 |
inline CWsPointerCursor*& CWsClient::PointerCursor(TInt aIndex)
|
sl@0
|
416 |
{return (CWsPointerCursor*&)(*iSystemPointerCursors)[aIndex].iCursor;}
|
sl@0
|
417 |
|
sl@0
|
418 |
inline CWsCustomTextCursor*& CWsClient::TextCursor(TInt aIndex)
|
sl@0
|
419 |
{return (CWsCustomTextCursor*&)(*iTextCursorArray)[aIndex].iCursor;}
|
sl@0
|
420 |
|
sl@0
|
421 |
inline const RMessage2& CWsClient::ClientMessage() const
|
sl@0
|
422 |
{return iClientMessage;}
|
sl@0
|
423 |
|
sl@0
|
424 |
inline CScreen* CWsClient::Screen()
|
sl@0
|
425 |
{return iScreen;}
|
sl@0
|
426 |
|
sl@0
|
427 |
inline const CScreen* CWsClient::Screen() const
|
sl@0
|
428 |
{return iScreen;}
|
sl@0
|
429 |
|
sl@0
|
430 |
inline TBool CWsClient::NotClosing() const
|
sl@0
|
431 |
{return !(iInternalFlags&EClientIsClosing);}
|
sl@0
|
432 |
|
sl@0
|
433 |
inline CWsClient* CWsClient::CurrentClient()
|
sl@0
|
434 |
{return iCurrentClient;}
|
sl@0
|
435 |
|
sl@0
|
436 |
inline TBool CWsClient::CheckBuffer(TInt aLength, TInt aMaxLength)
|
sl@0
|
437 |
{return TBool((aLength>=0) && (aLength<=aMaxLength));}
|
sl@0
|
438 |
|
sl@0
|
439 |
inline TBool CWsClient::IsInitialised()
|
sl@0
|
440 |
{return iInternalFlags&EIsInitialised; }
|
sl@0
|
441 |
|
sl@0
|
442 |
inline void CWsClient::WgMsgQueueOverflow()
|
sl@0
|
443 |
{iInternalFlags |= EWgMsgQueueOverflow;}
|
sl@0
|
444 |
|
sl@0
|
445 |
#endif
|