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 |
// Command numbers and structures for client to window server communications.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __W32CMD_H__
|
sl@0
|
19 |
#define __W32CMD_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <e32std.h>
|
sl@0
|
22 |
#include <w32std.h>
|
sl@0
|
23 |
#include <gdi.h>
|
sl@0
|
24 |
#if defined(SYMBIAN_GRAPHICS_GCE)
|
sl@0
|
25 |
#include <graphics/surfaceconfiguration.h>
|
sl@0
|
26 |
#include <graphics/sgresource.h>
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
|
sl@0
|
29 |
#include <graphics/displayconfiguration.h>
|
sl@0
|
30 |
#include <graphics/displaymapping.h>
|
sl@0
|
31 |
|
sl@0
|
32 |
const TUint KWservMajorVersionNumber=1;
|
sl@0
|
33 |
const TUint KWservMinorVersionNumber=0;
|
sl@0
|
34 |
const TUint KWservBuildVersionNumber=151;
|
sl@0
|
35 |
|
sl@0
|
36 |
const TUint KWservLoggingDllUidValue8=268435925;
|
sl@0
|
37 |
const TUid KWservLoggingDllUid8={KWservLoggingDllUidValue8};
|
sl@0
|
38 |
const TUint KWservLoggingDllUidValue16=268450595;
|
sl@0
|
39 |
const TUid KWservLoggingDllUid16={KWservLoggingDllUidValue16};
|
sl@0
|
40 |
//const TUint KUidWservLoggingCommon=268439591;
|
sl@0
|
41 |
const TUint KWservLoggingDllUidValue=KWservLoggingDllUidValue16;
|
sl@0
|
42 |
const TUid KWservLoggingDllUid={KWservLoggingDllUidValue};
|
sl@0
|
43 |
const TInt KDummyScreenNumber = -1;
|
sl@0
|
44 |
class CClickMaker;
|
sl@0
|
45 |
class CAnimDll;
|
sl@0
|
46 |
class CDebugLogBase;
|
sl@0
|
47 |
class TSurfaceId;
|
sl@0
|
48 |
|
sl@0
|
49 |
/** Creates an interface object for Shell
|
sl@0
|
50 |
|
sl@0
|
51 |
@publishedPartner
|
sl@0
|
52 |
@released
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
typedef TInt (*ShellEntryPoint)(TAny *);
|
sl@0
|
55 |
|
sl@0
|
56 |
/** Creates the key or pointer click plug-in provider interface.
|
sl@0
|
57 |
|
sl@0
|
58 |
When a key is pressed, a key auto repeats or when the screen is tapped with a pointer,
|
sl@0
|
59 |
the window server informs the plug-in DLL, which can then make the sound.
|
sl@0
|
60 |
|
sl@0
|
61 |
@publishedAll
|
sl@0
|
62 |
@released
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
typedef CClickMaker *(*CreateCClickHandler)();
|
sl@0
|
65 |
|
sl@0
|
66 |
/** Creates the animation dll factory interface object.
|
sl@0
|
67 |
|
sl@0
|
68 |
Animation DLL objects are created by the CreateCAnimDllL() function,
|
sl@0
|
69 |
which is called by the window server at the request of the client.
|
sl@0
|
70 |
|
sl@0
|
71 |
@publishedAll
|
sl@0
|
72 |
@released
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
typedef CAnimDll* (*CreateCAnimDll)();
|
sl@0
|
75 |
|
sl@0
|
76 |
|
sl@0
|
77 |
class WservEncoding
|
sl@0
|
78 |
{
|
sl@0
|
79 |
public:
|
sl@0
|
80 |
static inline TUint Encode8BitValues(TUint8 aFirst,TUint8 aSecond);
|
sl@0
|
81 |
static inline TUint Encode8BitValues(TUint8 aFirst,TUint8 aSecond,TUint8 aThird);
|
sl@0
|
82 |
static inline TUint8 ExtractFirst8BitValue(TUint aUint);
|
sl@0
|
83 |
static inline TUint8 ExtractSecond8BitValue(TUint aUint);
|
sl@0
|
84 |
static inline TUint8 ExtractThird8BitValue(TUint aUint);
|
sl@0
|
85 |
};
|
sl@0
|
86 |
|
sl@0
|
87 |
struct SKeyRepeatSettings
|
sl@0
|
88 |
{
|
sl@0
|
89 |
SKeyRepeatSettings();
|
sl@0
|
90 |
TTimeIntervalMicroSeconds32 iInitialTime;
|
sl@0
|
91 |
TTimeIntervalMicroSeconds32 iTime;
|
sl@0
|
92 |
};
|
sl@0
|
93 |
struct SDoubleClickSettings
|
sl@0
|
94 |
{
|
sl@0
|
95 |
SDoubleClickSettings();
|
sl@0
|
96 |
TTimeIntervalMicroSeconds32 iInterval;
|
sl@0
|
97 |
TInt iDistance;
|
sl@0
|
98 |
};
|
sl@0
|
99 |
//struct SMaxNumColors
|
sl@0
|
100 |
struct SDefModeMaxNumColors
|
sl@0
|
101 |
{
|
sl@0
|
102 |
SDefModeMaxNumColors();
|
sl@0
|
103 |
TInt iColors;
|
sl@0
|
104 |
TInt iGrays;
|
sl@0
|
105 |
TDisplayMode iDisplayMode;
|
sl@0
|
106 |
};
|
sl@0
|
107 |
struct SEventMessageReady
|
sl@0
|
108 |
{
|
sl@0
|
109 |
TInt iWindowGroupIdentifier;
|
sl@0
|
110 |
TUid iMessageUid;
|
sl@0
|
111 |
TInt iMessageParametersSize;
|
sl@0
|
112 |
};
|
sl@0
|
113 |
class TCmdSpriteMember
|
sl@0
|
114 |
{
|
sl@0
|
115 |
public:
|
sl@0
|
116 |
inline TCmdSpriteMember();
|
sl@0
|
117 |
TCmdSpriteMember(const TSpriteMember &aSpriteMember);
|
sl@0
|
118 |
public:
|
sl@0
|
119 |
TInt iBitmap;
|
sl@0
|
120 |
TInt iMaskBitmap;
|
sl@0
|
121 |
TBool iInvertMask;
|
sl@0
|
122 |
CGraphicsContext::TDrawMode iDrawMode;
|
sl@0
|
123 |
TPoint iOffset; // Offset from sprites central position
|
sl@0
|
124 |
TTimeIntervalMicroSeconds32 iInterval;
|
sl@0
|
125 |
};
|
sl@0
|
126 |
|
sl@0
|
127 |
enum {EClientBufferSize=640}; // default buffer size
|
sl@0
|
128 |
enum {EClientBufferMaxSize=0x4000}; // 16K is max buffer size
|
sl@0
|
129 |
|
sl@0
|
130 |
enum {EWsOpcodeHandle=0x8000}; // Indicates a new handle is included in the message header
|
sl@0
|
131 |
|
sl@0
|
132 |
enum {EMaxPolygonPoints=50}; // Max size polygon that can be drawn without allocing
|
sl@0
|
133 |
enum {EMaxPolylinePoints=50}; // Max size polygon that can be drawn without allocing
|
sl@0
|
134 |
|
sl@0
|
135 |
enum {EClickLoaded=0x01, EClickLoadable=0x02};
|
sl@0
|
136 |
|
sl@0
|
137 |
////////////////////////
|
sl@0
|
138 |
// Opcodes
|
sl@0
|
139 |
////////////////////////
|
sl@0
|
140 |
|
sl@0
|
141 |
// Client opcodes
|
sl@0
|
142 |
|
sl@0
|
143 |
enum TWsClientOpcodes
|
sl@0
|
144 |
{
|
sl@0
|
145 |
EWsClOpDisconnect, //Keep this as the first enum value - used by test code
|
sl@0
|
146 |
EWsClOpClearHotKeys,
|
sl@0
|
147 |
EWsClOpSetHotKey,
|
sl@0
|
148 |
EWsClOpRestoreDefaultHotKey,
|
sl@0
|
149 |
EWsClOpComputeMode,
|
sl@0
|
150 |
EWsClOpEventReady,
|
sl@0
|
151 |
EWsClOpEventReadyCancel,
|
sl@0
|
152 |
EWsClOpGetEvent,
|
sl@0
|
153 |
EWsClOpPurgePointerEvents,
|
sl@0
|
154 |
EWsClOpRedrawReady,
|
sl@0
|
155 |
EWsClOpRedrawReadyCancel,
|
sl@0
|
156 |
EWsClOpGetRedraw,
|
sl@0
|
157 |
EWsClOpPriorityKeyReady,
|
sl@0
|
158 |
EWsClOpPriorityKeyReadyCancel,
|
sl@0
|
159 |
EWsClOpGetPriorityKey,
|
sl@0
|
160 |
EWsClOpSetShadowVector,
|
sl@0
|
161 |
EWsClOpShadowVector,
|
sl@0
|
162 |
EWsClOpSetKeyboardRepeatRate,
|
sl@0
|
163 |
EWsClOpGetKeyboardRepeatRate,
|
sl@0
|
164 |
EWsClOpSetDoubleClick,
|
sl@0
|
165 |
EWsClOpGetDoubleClickSettings,
|
sl@0
|
166 |
EWsClOpCreateWindowGroup,
|
sl@0
|
167 |
EWsClOpCreateWindow,
|
sl@0
|
168 |
EWsClOpCreateGc,
|
sl@0
|
169 |
EWsClOpCreateAnimDll,
|
sl@0
|
170 |
EWsClOpCreateScreenDevice,
|
sl@0
|
171 |
EWsClOpCreateSprite,
|
sl@0
|
172 |
EWsClOpCreatePointerCursor,
|
sl@0
|
173 |
EWsClOpStartSetCustomTextCursor,
|
sl@0
|
174 |
EWsClOpCompleteSetCustomTextCursor,
|
sl@0
|
175 |
EWsClOpCreateBitmap,
|
sl@0
|
176 |
EWsClOpNumWindowGroups,
|
sl@0
|
177 |
EWsClOpNumWindowGroupsAllPriorities,
|
sl@0
|
178 |
EWsClOpWindowGroupList,
|
sl@0
|
179 |
EWsClOpWindowGroupListAllPriorities,
|
sl@0
|
180 |
EWsClOpSetWindowGroupOrdinalPosition,
|
sl@0
|
181 |
EWsClOpGetWindowGroupHandle,
|
sl@0
|
182 |
EWsClOpGetWindowGroupOrdinalPriority,
|
sl@0
|
183 |
EWsClOpGetWindowGroupClientThreadId,
|
sl@0
|
184 |
EWsClOpGetWindowGroupNameFromIdentifier,
|
sl@0
|
185 |
EWsClOpGetFocusWindowGroup,
|
sl@0
|
186 |
EWsClOpGetDefaultOwningWindow,
|
sl@0
|
187 |
EWsClOpSendEventToWindowGroup,
|
sl@0
|
188 |
EWsClOpFindWindowGroupIdentifier,
|
sl@0
|
189 |
EWsClOpFindWindowGroupIdentifierThread,
|
sl@0
|
190 |
EWsClOpSetBackgroundColor,
|
sl@0
|
191 |
EWsClOpGetBackgroundColor,
|
sl@0
|
192 |
EWsClOpSetSystemPointerCursor,
|
sl@0
|
193 |
EWsClOpClearSystemPointerCursor,
|
sl@0
|
194 |
EWsClOpClaimSystemPointerCursorList,
|
sl@0
|
195 |
EWsClOpFreeSystemPointerCursorList,
|
sl@0
|
196 |
EWsClOpGetModifierState,
|
sl@0
|
197 |
EWsClOpSetModifierState,
|
sl@0
|
198 |
EWsClOpHeapCount,
|
sl@0
|
199 |
EWsClOpResourceCount,
|
sl@0
|
200 |
EWsClOpTestInvariant,
|
sl@0
|
201 |
EWsClOpHeapSetFail,
|
sl@0
|
202 |
EWsClOpRawEvent,
|
sl@0
|
203 |
EWsClOpSystemInfo,
|
sl@0
|
204 |
EWsClOpLogMessage,
|
sl@0
|
205 |
EWsClOpPasswordEntered,
|
sl@0
|
206 |
EWsClOpSendMessageToWindowGroup,
|
sl@0
|
207 |
EWsClOpSendOffEventsToShell,
|
sl@0
|
208 |
EWsClOpGetDefModeMaxNumColors,
|
sl@0
|
209 |
EWsClOpGetColorModeList,
|
sl@0
|
210 |
EWsClOpKeyEvent,
|
sl@0
|
211 |
EWsClOpSendEventToAllWindowGroup,
|
sl@0
|
212 |
EWsClOpSendEventToAllWindowGroupPriority,
|
sl@0
|
213 |
EWsClOpSetPointerCursorArea,
|
sl@0
|
214 |
EWsClOpPointerCursorArea,
|
sl@0
|
215 |
EWsClOpSetPointerCursorMode,
|
sl@0
|
216 |
EWsClOpPointerCursorMode,
|
sl@0
|
217 |
EWsClOpSetDefaultSystemPointerCursor,
|
sl@0
|
218 |
EWsClOpClearDefaultSystemPointerCursor,
|
sl@0
|
219 |
EWsClOpSetPointerCursorPosition,
|
sl@0
|
220 |
EWsClOpPointerCursorPosition,
|
sl@0
|
221 |
EWsClOpSetDefaultFadingParams,
|
sl@0
|
222 |
EWsClOpSendMessageToAllWindowGroups,
|
sl@0
|
223 |
EWsClOpSendMessageToAllWindowGroupsPriority,
|
sl@0
|
224 |
EWsClOpFetchMessage,
|
sl@0
|
225 |
EWsClOpPrepareForSwitchOff,
|
sl@0
|
226 |
EWsClOpCreateDirectScreenAccess,
|
sl@0
|
227 |
EWsClOpSetFaded,
|
sl@0
|
228 |
EWsClOpLogCommand,
|
sl@0
|
229 |
EWsClOpCreateClick,
|
sl@0
|
230 |
EWsClOpSendEventToOneWindowGroupPerClient,
|
sl@0
|
231 |
#if defined(__WINS__)
|
sl@0
|
232 |
EWsClOpRemoveKeyCode,
|
sl@0
|
233 |
EWsClOpSimulateXyInput,
|
sl@0
|
234 |
#endif
|
sl@0
|
235 |
EWsClOpNoFlickerFree,
|
sl@0
|
236 |
EWsClOpSetFocusScreen,
|
sl@0
|
237 |
EWsClOpGetFocusScreen,
|
sl@0
|
238 |
EWsClOpWindowGroupListAndChain,
|
sl@0
|
239 |
EWsClOpWindowGroupListAndChainAllPriorities,
|
sl@0
|
240 |
EWsClOpSetClientCursorMode,
|
sl@0
|
241 |
EWsClOpClearAllRedrawStores,
|
sl@0
|
242 |
EWsClOpCreateGraphic,
|
sl@0
|
243 |
EWsClOpGraphicMessageReady,
|
sl@0
|
244 |
EWsClOpGetGraphicMessage,
|
sl@0
|
245 |
EWsClOpGraphicMessageCancel,
|
sl@0
|
246 |
EWsClOpNumWindowGroupsOnScreen,
|
sl@0
|
247 |
EWsClOpGetNumberOfScreens,
|
sl@0
|
248 |
EWsClOpGraphicAbortMessage,
|
sl@0
|
249 |
EWsClOpGraphicFetchHeaderMessage,
|
sl@0
|
250 |
EWsClOpDebugInfo,
|
sl@0
|
251 |
EWsClOpDebugInfoReplyBuf,
|
sl@0
|
252 |
EWsClOpRegisterSurface,
|
sl@0
|
253 |
EWsClOpUnregisterSurface,
|
sl@0
|
254 |
EWsClOpSetCloseProximityThresholds,
|
sl@0
|
255 |
EWsClOpSetHighPressureThresholds,
|
sl@0
|
256 |
EWsClOpGetEnterCloseProximityThreshold,
|
sl@0
|
257 |
EWsClOpGetExitCloseProximityThreshold,
|
sl@0
|
258 |
EWsClOpGetEnterHighPressureThreshold,
|
sl@0
|
259 |
EWsClOpGetExitHighPressureThreshold,
|
sl@0
|
260 |
EWsClOpCreateDrawableSource,
|
sl@0
|
261 |
EWsClOpCreateDirectScreenAccessRegionTrackingOnly,
|
sl@0
|
262 |
EWsClOpSendEffectCommand,
|
sl@0
|
263 |
EWsClOpRegisterTFXEffectBuf,
|
sl@0
|
264 |
EWsClOpRegisterTFXEffectIPC,
|
sl@0
|
265 |
EWsClOpUnregisterTFXEffect,
|
sl@0
|
266 |
EWsClOpUnregisterAllTFXEffect,
|
sl@0
|
267 |
EWsClOpOverrideEffectBuf,
|
sl@0
|
268 |
EWsClOpOverrideEffectIPC,
|
sl@0
|
269 |
EWsClOpIndicateAppOrientation,
|
sl@0
|
270 |
EWsClOpLastEnumValue //Keep this at the end - used by test code
|
sl@0
|
271 |
};
|
sl@0
|
272 |
|
sl@0
|
273 |
// Graphic Drawer opcodes
|
sl@0
|
274 |
|
sl@0
|
275 |
enum TWsGraphicDrawerOpcodes
|
sl@0
|
276 |
{
|
sl@0
|
277 |
EWsGdOpFree = 0x0000,
|
sl@0
|
278 |
EWsGdOpSendMsg,
|
sl@0
|
279 |
EWsGdOpGetGraphicId,
|
sl@0
|
280 |
EWsGdOpShareGlobally,
|
sl@0
|
281 |
EWsGdOpUnShareGlobally,
|
sl@0
|
282 |
EWsGdOpShare,
|
sl@0
|
283 |
EWsGdOpUnShare,
|
sl@0
|
284 |
EWsGdOpSendSynchronMsg,
|
sl@0
|
285 |
};
|
sl@0
|
286 |
|
sl@0
|
287 |
// types of Graphic Drawer messages to be passed from the Graphic Drawer to the client
|
sl@0
|
288 |
|
sl@0
|
289 |
enum TWsGraphicMessageType
|
sl@0
|
290 |
{
|
sl@0
|
291 |
EWsGraphMessageTypeUser = 0x00
|
sl@0
|
292 |
// max 0x03 as packed into lower two bits of client handle
|
sl@0
|
293 |
};
|
sl@0
|
294 |
|
sl@0
|
295 |
// Window opcodes
|
sl@0
|
296 |
|
sl@0
|
297 |
enum TWsWindowOpcodes
|
sl@0
|
298 |
{
|
sl@0
|
299 |
EWsWinOpFree=0x0000,
|
sl@0
|
300 |
EWsWinOpSetExtent,
|
sl@0
|
301 |
EWsWinOpSetExtentErr,
|
sl@0
|
302 |
EWsWinOpOrdinalPosition,
|
sl@0
|
303 |
EWsWinOpFullOrdinalPosition,
|
sl@0
|
304 |
EWsWinOpSetOrdinalPosition,
|
sl@0
|
305 |
EWsWinOpSetOrdinalPositionPri,
|
sl@0
|
306 |
EWsWinOpSetOrdinalPriorityAdjust,
|
sl@0
|
307 |
EWsWinOpSetPos,
|
sl@0
|
308 |
EWsWinOpSetSize,
|
sl@0
|
309 |
EWsWinOpSetSizeErr,
|
sl@0
|
310 |
EWsWinOpPosition,
|
sl@0
|
311 |
EWsWinOpAbsPosition,
|
sl@0
|
312 |
EWsWinOpSize,
|
sl@0
|
313 |
EWsWinOpActivate,
|
sl@0
|
314 |
EWsWinOpInvalidate,
|
sl@0
|
315 |
EWsWinOpInvalidateFull,
|
sl@0
|
316 |
EWsWinOpBeginRedraw,
|
sl@0
|
317 |
EWsWinOpBeginRedrawFull,
|
sl@0
|
318 |
EWsWinOpEndRedraw,
|
sl@0
|
319 |
EWsWinOpTestInvariant,
|
sl@0
|
320 |
EWsWinOpParent,
|
sl@0
|
321 |
EWsWinOpPrevSibling,
|
sl@0
|
322 |
EWsWinOpNextSibling,
|
sl@0
|
323 |
EWsWinOpChild,
|
sl@0
|
324 |
EWsWinOpInquireOffset,
|
sl@0
|
325 |
EWsWinOpPointerFilter,
|
sl@0
|
326 |
EWsWinOpSetPointerCapture,
|
sl@0
|
327 |
EWsWinOpSetPointerGrab,
|
sl@0
|
328 |
EWsWinOpClaimPointerGrab,
|
sl@0
|
329 |
EWsWinOpSetBackgroundColor,
|
sl@0
|
330 |
EWsWinOpSetOrdinalPositionErr,
|
sl@0
|
331 |
EWsWinOpSetVisible,
|
sl@0
|
332 |
EWsWinOpScroll,
|
sl@0
|
333 |
EWsWinOpScrollClip,
|
sl@0
|
334 |
EWsWinOpScrollRect,
|
sl@0
|
335 |
EWsWinOpScrollClipRect,
|
sl@0
|
336 |
EWsWinOpReceiveFocus,
|
sl@0
|
337 |
EWsWinOpAutoForeground,
|
sl@0
|
338 |
EWsWinOpSetNoBackgroundColor,
|
sl@0
|
339 |
EWsWinOpCaptureKey,
|
sl@0
|
340 |
EWsWinOpCancelCaptureKey,
|
sl@0
|
341 |
EWsWinOpCaptureKeyUpsAndDowns,
|
sl@0
|
342 |
EWsWinOpCancelCaptureKeyUpsAndDowns,
|
sl@0
|
343 |
EWsWinOpAddPriorityKey,
|
sl@0
|
344 |
EWsWinOpRemovePriorityKey,
|
sl@0
|
345 |
EWsWinOpSetTextCursor,
|
sl@0
|
346 |
EWsWinOpSetTextCursorClipped,
|
sl@0
|
347 |
EWsWinOpCancelTextCursor,
|
sl@0
|
348 |
EWsWinOpSetShadowHeight,
|
sl@0
|
349 |
EWsWinOpShadowDisabled,
|
sl@0
|
350 |
EWsWinOpGetInvalidRegion,
|
sl@0
|
351 |
EWsWinOpGetInvalidRegionCount,
|
sl@0
|
352 |
EWsWinOpSetColor,
|
sl@0
|
353 |
EWsWinOpSetCornerType,
|
sl@0
|
354 |
EWsWinOpSetShape,
|
sl@0
|
355 |
EWsWinOpBitmapHandle,
|
sl@0
|
356 |
EWsWinOpUpdateScreen,
|
sl@0
|
357 |
EWsWinOpUpdateScreenRegion,
|
sl@0
|
358 |
EWsWinOpUpdateBackupBitmap,
|
sl@0
|
359 |
EWsWinOpMaintainBackup,
|
sl@0
|
360 |
EWsWinOpName,
|
sl@0
|
361 |
EWsWinOpSetName,
|
sl@0
|
362 |
EWsWinOpSetOwningWindowGroup,
|
sl@0
|
363 |
EWsWinOpDefaultOwningWindow,
|
sl@0
|
364 |
EWsWinOpRequiredDisplayMode,
|
sl@0
|
365 |
EWsWinOpEnableOnEvents,
|
sl@0
|
366 |
EWsWinOpDisableOnEvents,
|
sl@0
|
367 |
EWsWinOpEnableGroupChangeEvents,
|
sl@0
|
368 |
EWsWinOpDisableGroupChangeEvents,
|
sl@0
|
369 |
EWsWinOpSetPointerCursor,
|
sl@0
|
370 |
EWsWinOpSetCustomPointerCursor,
|
sl@0
|
371 |
EWsWinOpRequestPointerRepeatEvent,
|
sl@0
|
372 |
EWsWinOpCancelPointerRepeatEventRequest,
|
sl@0
|
373 |
EWsWinOpAllocPointerMoveBuffer,
|
sl@0
|
374 |
EWsWinOpFreePointerMoveBuffer,
|
sl@0
|
375 |
EWsWinOpEnablePointerMoveBuffer,
|
sl@0
|
376 |
EWsWinOpDisablePointerMoveBuffer,
|
sl@0
|
377 |
EWsWinOpRetrievePointerMoveBuffer,
|
sl@0
|
378 |
EWsWinOpDiscardPointerMoveBuffer, //Tested to here %%%
|
sl@0
|
379 |
EWsWinOpEnableModifierChangedEvents,
|
sl@0
|
380 |
EWsWinOpDisableModifierChangedEvents,
|
sl@0
|
381 |
EWsWinOpEnableErrorMessages,
|
sl@0
|
382 |
EWsWinOpDisableErrorMessages,
|
sl@0
|
383 |
EWsWinOpAddKeyRect,
|
sl@0
|
384 |
EWsWinOpRemoveAllKeyRects,
|
sl@0
|
385 |
EWsWinOpPasswordWindow,
|
sl@0
|
386 |
EWsWinOpEnableBackup,
|
sl@0
|
387 |
EWsWinOpIdentifier,
|
sl@0
|
388 |
EWsWinOpDisableKeyClick,
|
sl@0
|
389 |
EWsWinOpSetFade=EWsWinOpDisableKeyClick+3, //Two messages removed
|
sl@0
|
390 |
EWsWinOpSetNonFading,
|
sl@0
|
391 |
EWsWinOpFadeBehind,
|
sl@0
|
392 |
EWsWinOpEnableScreenChangeEvents,
|
sl@0
|
393 |
EWsWinOpDisableScreenChangeEvents,
|
sl@0
|
394 |
EWsWinOpSendPointerEvent,
|
sl@0
|
395 |
EWsWinOpSendAdvancedPointerEvent,
|
sl@0
|
396 |
EWsWinOpGetDisplayMode,
|
sl@0
|
397 |
EWsWinOpGetIsFaded,
|
sl@0
|
398 |
EWsWinOpGetIsNonFading,
|
sl@0
|
399 |
EWsWinOpOrdinalPriority,
|
sl@0
|
400 |
EWsWinOpClearPointerCursor,
|
sl@0
|
401 |
EWsWinOpMoveToGroup,
|
sl@0
|
402 |
EWsWinOpEnableFocusChangeEvents,
|
sl@0
|
403 |
EWsWinOpDisableFocusChangeEvents,
|
sl@0
|
404 |
EWsWinOpEnableGroupListChangeEvents,
|
sl@0
|
405 |
EWsWinOpDisableGroupListChangeEvents,
|
sl@0
|
406 |
EWsWinOpCaptureLongKey,
|
sl@0
|
407 |
EWsWinOpCancelCaptureLongKey,
|
sl@0
|
408 |
EWsWinOpStoreDrawCommands,
|
sl@0
|
409 |
EWsWinOpHandleTransparencyUpdate,
|
sl@0
|
410 |
EWsWinOpSetTransparencyFactor,
|
sl@0
|
411 |
EWsWinOpSetTransparencyBitmap,
|
sl@0
|
412 |
EWsWinOpAllowChildWindowGroup,
|
sl@0
|
413 |
EWsWinOpSetTransparencyBitmapCWs,
|
sl@0
|
414 |
EWsWinOpEnableVisibilityChangeEvents,
|
sl@0
|
415 |
EWsWinOpDisableVisibilityChangeEvents,
|
sl@0
|
416 |
EWsWinOpSetTransparencyAlphaChannel,
|
sl@0
|
417 |
EWsWinOpWindowGroupId,
|
sl@0
|
418 |
EWsWinOpSetPointerCapturePriority,
|
sl@0
|
419 |
EWsWinOpGetPointerCapturePriority,
|
sl@0
|
420 |
EWsWinOpSetTransparentRegion,
|
sl@0
|
421 |
EWsWinOpSetTransparencyPolicy,
|
sl@0
|
422 |
EWsWinOpIsRedrawStoreEnabled,
|
sl@0
|
423 |
EWsWinOpEnableOSB,
|
sl@0
|
424 |
EWsWinOpDisableOSB,
|
sl@0
|
425 |
EWsWinOpClearChildGroup,
|
sl@0
|
426 |
EWsWinOpSetChildGroup,
|
sl@0
|
427 |
EWsWinOpClientHandle,
|
sl@0
|
428 |
EWsWinOpSetBackgroundSurface,
|
sl@0
|
429 |
EWsWinOpKeyColor=EWsWinOpSetBackgroundSurface+2, //One message removed
|
sl@0
|
430 |
EWsWinOpSetBackgroundSurfaceConfig=EWsWinOpKeyColor+5, //Four messages removed
|
sl@0
|
431 |
EWsWinOpRemoveBackgroundSurface=EWsWinOpSetBackgroundSurfaceConfig+2, //One message removed
|
sl@0
|
432 |
EWsWinOpGetBackgroundSurfaceConfig=EWsWinOpRemoveBackgroundSurface+2, //One message removed
|
sl@0
|
433 |
EWsWinOpClearRedrawStore=EWsWinOpGetBackgroundSurfaceConfig+2, //One message removed
|
sl@0
|
434 |
EWsWinOpScreenNumber,
|
sl@0
|
435 |
EWsWinOpEnableAdvancedPointers,
|
sl@0
|
436 |
#ifdef SYMBIAN_GRAPHICS_WSERV_QT_EFFECTS
|
sl@0
|
437 |
EWsWinOpSetSurfaceTransparency,
|
sl@0
|
438 |
#endif
|
sl@0
|
439 |
EWsWinOpSetPurpose,
|
sl@0
|
440 |
EWsWinOpSendEffectCommand,
|
sl@0
|
441 |
EWsWinOpOverrideEffectBuf,
|
sl@0
|
442 |
EWsWinOpOverrideEffectIPC,
|
sl@0
|
443 |
EWsWinOpTestLowPriorityRedraw=0x2000, //Specific opcode for testing redraw queue priorities
|
sl@0
|
444 |
};
|
sl@0
|
445 |
|
sl@0
|
446 |
// GC opcodes
|
sl@0
|
447 |
|
sl@0
|
448 |
enum TWsGcOpcodes
|
sl@0
|
449 |
{
|
sl@0
|
450 |
EWsGcOpFree=0x0000,
|
sl@0
|
451 |
EWsGcOpActivate,
|
sl@0
|
452 |
EWsGcOpDeactivate,
|
sl@0
|
453 |
EWsGcOpSetClippingRegion,
|
sl@0
|
454 |
EWsGcOpSetClippingRect,
|
sl@0
|
455 |
EWsGcOpCancelClippingRegion,
|
sl@0
|
456 |
EWsGcOpCancelClippingRect,
|
sl@0
|
457 |
EWsGcOpSetWordJustification,
|
sl@0
|
458 |
EWsGcOpSetCharJustification,
|
sl@0
|
459 |
EWsGcOpSetPenColor,
|
sl@0
|
460 |
EWsGcOpSetPenStyle,
|
sl@0
|
461 |
EWsGcOpSetPenSize,
|
sl@0
|
462 |
EWsGcOpSetBrushColor,
|
sl@0
|
463 |
EWsGcOpSetBrushStyle,
|
sl@0
|
464 |
EWsGcOpSetBrushOrigin,
|
sl@0
|
465 |
EWsGcOpUseBrushPattern,
|
sl@0
|
466 |
EWsGcOpDiscardBrushPattern,
|
sl@0
|
467 |
EWsGcOpDrawArc,
|
sl@0
|
468 |
EWsGcOpDrawLine,
|
sl@0
|
469 |
EWsGcOpPlot,
|
sl@0
|
470 |
EWsGcOpDrawTo,
|
sl@0
|
471 |
EWsGcOpDrawBy,
|
sl@0
|
472 |
EWsGcOpDrawPolyLine,
|
sl@0
|
473 |
EWsGcOpDrawPolyLineContinued, //Quater Way
|
sl@0
|
474 |
|
sl@0
|
475 |
EWsGcOpDrawPie,
|
sl@0
|
476 |
EWsGcOpDrawRoundRect,
|
sl@0
|
477 |
EWsGcOpDrawPolygon,
|
sl@0
|
478 |
EWsGcOpStartSegmentedDrawPolygon,
|
sl@0
|
479 |
EWsGcOpSegmentedDrawPolygonData,
|
sl@0
|
480 |
EWsGcOpDrawSegmentedPolygon,
|
sl@0
|
481 |
EWsGcOpDrawBitmap,
|
sl@0
|
482 |
EWsGcOpDrawBitmap2,
|
sl@0
|
483 |
EWsGcOpDrawBitmap3,
|
sl@0
|
484 |
EWsGcOpDrawBitmapMasked,
|
sl@0
|
485 |
EWsGcOpWsDrawBitmapMasked,
|
sl@0
|
486 |
EWsGcOpDrawText,
|
sl@0
|
487 |
EWsGcOpDrawTextPtr,
|
sl@0
|
488 |
EWsGcOpDrawTextInContextPtr,
|
sl@0
|
489 |
EWsGcOpDrawTextInContext,
|
sl@0
|
490 |
EWsGcOpDrawTextVertical,
|
sl@0
|
491 |
EWsGcOpDrawTextInContextVertical,
|
sl@0
|
492 |
EWsGcOpDrawTextInContextVerticalPtr,
|
sl@0
|
493 |
EWsGcOpDrawTextVerticalPtr,
|
sl@0
|
494 |
EWsGcOpDrawBoxTextOptimised1,
|
sl@0
|
495 |
EWsGcOpDrawBoxTextOptimised2,
|
sl@0
|
496 |
EWsGcOpDrawBoxTextInContextOptimised1,
|
sl@0
|
497 |
EWsGcOpDrawBoxTextInContextOptimised2,
|
sl@0
|
498 |
EWsGcOpDrawBoxText,
|
sl@0
|
499 |
EWsGcOpDrawBoxTextInContext,
|
sl@0
|
500 |
EWsGcOpDrawBoxTextPtr,
|
sl@0
|
501 |
EWsGcOpDrawBoxTextInContextPtr,
|
sl@0
|
502 |
EWsGcOpDrawBoxTextVertical,
|
sl@0
|
503 |
EWsGcOpDrawBoxTextInContextVertical,
|
sl@0
|
504 |
EWsGcOpDrawBoxTextVerticalPtr,
|
sl@0
|
505 |
EWsGcOpDrawBoxTextInContextVerticalPtr,
|
sl@0
|
506 |
EWsGcOpMoveBy,
|
sl@0
|
507 |
EWsGcOpMoveTo,
|
sl@0
|
508 |
EWsGcOpSetOrigin,
|
sl@0
|
509 |
EWsGcOpCopyRect,
|
sl@0
|
510 |
EWsGcOpDrawRect,
|
sl@0
|
511 |
EWsGcOpDrawEllipse, //Half Way
|
sl@0
|
512 |
|
sl@0
|
513 |
EWsGcOpGdiBlt2,
|
sl@0
|
514 |
EWsGcOpGdiBlt3,
|
sl@0
|
515 |
EWsGcOpGdiBltMasked,
|
sl@0
|
516 |
EWsGcOpGdiWsBlt2,
|
sl@0
|
517 |
EWsGcOpGdiWsBlt3,
|
sl@0
|
518 |
EWsGcOpGdiWsBltMasked,
|
sl@0
|
519 |
EWsGcOpSize,
|
sl@0
|
520 |
EWsGcOpUseFont,
|
sl@0
|
521 |
//Two unused codes deleted
|
sl@0
|
522 |
EWsGcOpDiscardFont=EWsGcOpUseFont+3,
|
sl@0
|
523 |
EWsGcOpSetUnderlineStyle,
|
sl@0
|
524 |
EWsGcOpSetStrikethroughStyle,
|
sl@0
|
525 |
EWsGcOpSetDrawMode,
|
sl@0
|
526 |
EWsGcOpTestInvariant,
|
sl@0
|
527 |
EWsGcOpClearRect,
|
sl@0
|
528 |
EWsGcOpClear,
|
sl@0
|
529 |
EWsGcOpReset,
|
sl@0
|
530 |
EWsGcOpSetDitherOrigin,
|
sl@0
|
531 |
EWsGcOpMapColors,
|
sl@0
|
532 |
EWsGcOpDrawWsGraphic, //PREQ1246 Bravo
|
sl@0
|
533 |
EWsGcOpDrawWsGraphicPtr,
|
sl@0
|
534 |
//
|
sl@0
|
535 |
// Local opcodes used internally access GC drawing code
|
sl@0
|
536 |
//
|
sl@0
|
537 |
EWsGcOpDrawPolyLineLocal,
|
sl@0
|
538 |
EWsGcOpDrawPolyLineLocalBufLen,
|
sl@0
|
539 |
EWsGcOpDrawPolygonLocal,
|
sl@0
|
540 |
EWsGcOpDrawPolygonLocalBufLen,
|
sl@0
|
541 |
EWsGcOpDrawTextLocal,
|
sl@0
|
542 |
EWsGcOpDrawTextInContextLocal,
|
sl@0
|
543 |
EWsGcOpDrawBoxTextLocal,
|
sl@0
|
544 |
EWsGcOpDrawBoxTextInContextLocal,
|
sl@0
|
545 |
EWsGcOpDrawBitmapLocal,
|
sl@0
|
546 |
EWsGcOpDrawBitmap2Local,
|
sl@0
|
547 |
EWsGcOpDrawBitmap3Local,
|
sl@0
|
548 |
EWsGcOpDrawBitmapMaskedLocal,
|
sl@0
|
549 |
EWsGcOpGdiBlt2Local,
|
sl@0
|
550 |
EWsGcOpGdiBlt3Local,
|
sl@0
|
551 |
EWsGcOpGdiBltMaskedLocal,
|
sl@0
|
552 |
|
sl@0
|
553 |
//
|
sl@0
|
554 |
// Local opcodes used when reading long strings
|
sl@0
|
555 |
//
|
sl@0
|
556 |
EWsGcOpDrawTextPtr1,
|
sl@0
|
557 |
EWsGcOpDrawTextInContextPtr1,
|
sl@0
|
558 |
EWsGcOpDrawTextVerticalPtr1,
|
sl@0
|
559 |
EWsGcOpDrawTextInContextVerticalPtr1,
|
sl@0
|
560 |
EWsGcOpDrawBoxTextPtr1,
|
sl@0
|
561 |
EWsGcOpDrawBoxTextInContextPtr1,
|
sl@0
|
562 |
EWsGcOpDrawBoxTextVerticalPtr1,
|
sl@0
|
563 |
EWsGcOpDrawBoxTextInContextVerticalPtr1,
|
sl@0
|
564 |
|
sl@0
|
565 |
//
|
sl@0
|
566 |
// New functions added leaving a space just in case it may be useful
|
sl@0
|
567 |
//
|
sl@0
|
568 |
EWsGcOpSetFaded=200,
|
sl@0
|
569 |
EWsGcOpSetFadeParams,
|
sl@0
|
570 |
EWsGcOpGdiAlphaBlendBitmaps,
|
sl@0
|
571 |
EWsGcOpGdiWsAlphaBlendBitmaps,
|
sl@0
|
572 |
EWsGcOpSetOpaque,
|
sl@0
|
573 |
EWsGcOpMapColorsLocal,
|
sl@0
|
574 |
EWsGcOpAlphaBlendBitmapsLocal,
|
sl@0
|
575 |
EWsGcOpSetShadowColor,
|
sl@0
|
576 |
EWsGcOpSetDrawTextInContext,
|
sl@0
|
577 |
EWsGcOpDrawResourceToPos,
|
sl@0
|
578 |
EWsGcOpDrawResourceToRect,
|
sl@0
|
579 |
EWsGcOpDrawResourceFromRectToRect,
|
sl@0
|
580 |
EWsGcOpDrawResourceWithData,
|
sl@0
|
581 |
//
|
sl@0
|
582 |
// Codes for internal use only
|
sl@0
|
583 |
//
|
sl@0
|
584 |
EWsStoreAllGcAttributes=1000,
|
sl@0
|
585 |
EWsStoreClippingRegion,
|
sl@0
|
586 |
EWsGcOpFlagDrawOp=0x8000,
|
sl@0
|
587 |
};
|
sl@0
|
588 |
|
sl@0
|
589 |
enum TWsAnimDllOpcode
|
sl@0
|
590 |
{
|
sl@0
|
591 |
EWsAnimDllOpCreateInstance=0x0000,
|
sl@0
|
592 |
EWsAnimDllOpCommand,
|
sl@0
|
593 |
EWsAnimDllOpCommandReply,
|
sl@0
|
594 |
EWsAnimDllOpDestroyInstance,
|
sl@0
|
595 |
EWsAnimDllOpFree,
|
sl@0
|
596 |
EWsAnimDllOpCreateInstanceSprite,
|
sl@0
|
597 |
};
|
sl@0
|
598 |
|
sl@0
|
599 |
enum TWsScreenDeviceOpcodes
|
sl@0
|
600 |
{
|
sl@0
|
601 |
EWsSdSetableBitFlag=0x80000000,
|
sl@0
|
602 |
EWsSdOpGetScanLine=0x0000,
|
sl@0
|
603 |
EWsSdOpPixel,
|
sl@0
|
604 |
EWsSdOpTwipsSize,
|
sl@0
|
605 |
EWsSdOpPixelSize,
|
sl@0
|
606 |
EWsSdOpFree,
|
sl@0
|
607 |
EWsSdOpHorizontalTwipsToPixels,
|
sl@0
|
608 |
EWsSdOpVerticalTwipsToPixels,
|
sl@0
|
609 |
EWsSdOpHorizontalPixelsToTwips,
|
sl@0
|
610 |
EWsSdOpVerticalPixelsToTwips,
|
sl@0
|
611 |
EWsSdOpDisplayMode,
|
sl@0
|
612 |
EWsSdOpRectCompare,
|
sl@0
|
613 |
EWsSdOpPointerRect,
|
sl@0
|
614 |
EWsSdOpCopyScreenToBitmap,
|
sl@0
|
615 |
EWsSdOpCopyScreenToBitmap2,
|
sl@0
|
616 |
EWsSdOpSetScreenSizeAndRotation,
|
sl@0
|
617 |
EWsSdOpSetScreenSizeAndRotation2,
|
sl@0
|
618 |
EWsSdOpGetDefaultScreenSizeAndRotation,
|
sl@0
|
619 |
EWsSdOpGetDefaultScreenSizeAndRotation2,
|
sl@0
|
620 |
EWsSdOpGetNumScreenModes,
|
sl@0
|
621 |
EWsSdOpSetScreenMode,
|
sl@0
|
622 |
EWsSdOpGetScreenModeSizeAndRotation,
|
sl@0
|
623 |
EWsSdOpGetScreenModeSizeAndRotation2,
|
sl@0
|
624 |
EWsSdOpSetScreenModeEnforcement,
|
sl@0
|
625 |
EWsSdOpScreenModeEnforcement,
|
sl@0
|
626 |
EWsSdOpSetModeRotation,
|
sl@0
|
627 |
EWsSdOpGetRotationList,
|
sl@0
|
628 |
EWsSdOpPaletteAttributes,
|
sl@0
|
629 |
EWsSdOpSetPalette,
|
sl@0
|
630 |
EWsSdOpGetPalette,
|
sl@0
|
631 |
EWsSdOpGetScreenMode,
|
sl@0
|
632 |
EWsSdOpGetDefaultScreenModeOrigin,
|
sl@0
|
633 |
EWsSdOpGetScreenModeOrigin,
|
sl@0
|
634 |
EWsSdOpGetScreenModeScale,
|
sl@0
|
635 |
EWsSdOpGetCurrentScreenModeScale,
|
sl@0
|
636 |
EWsSdOpSetAppScreenMode,
|
sl@0
|
637 |
EWsSdOpGetScreenModeScaledOrigin,
|
sl@0
|
638 |
EWsSdOpGetCurrentScreenModeScaledOrigin,
|
sl@0
|
639 |
EWsSdOpSetCurrentScreenModeAttributes,
|
sl@0
|
640 |
EWsSdOpGetCurrentScreenModeAttributes,
|
sl@0
|
641 |
EWsSdOpGetScreenNumber,
|
sl@0
|
642 |
EWsSdOpGetScreenSizeModeList,
|
sl@0
|
643 |
EWsSdOpGetScreenModeDisplayMode,
|
sl@0
|
644 |
EWsClOpSetBackLight,
|
sl@0
|
645 |
EWsSdOpExtensionsSupported,
|
sl@0
|
646 |
EWsSdOpXDcGetNumberOfResolutions,
|
sl@0
|
647 |
EWsSdOpXDcGetResolutionsList,
|
sl@0
|
648 |
EWsSdOpXDcGetConfiguration,
|
sl@0
|
649 |
EWsSdOpXDcSetConfiguration,
|
sl@0
|
650 |
EWsSdOpXDcGetPreferredDisplayVersion,
|
sl@0
|
651 |
EWsSdOpXDcNotifyOnDisplayChange,
|
sl@0
|
652 |
EWsSdOpXDcNotifyOnDisplayChangeCancel,
|
sl@0
|
653 |
EWsSdOpXDcDisplayChangeEventEnabled,
|
sl@0
|
654 |
EWsSdOpXDmMapExtent,
|
sl@0
|
655 |
EWsSdOpXTestScreenCapture,
|
sl@0
|
656 |
EWsSdOpIsScreenModeDynamic,
|
sl@0
|
657 |
EWsSdOpXTestScreenCaptureSize,
|
sl@0
|
658 |
};
|
sl@0
|
659 |
|
sl@0
|
660 |
/** Bitfield of interface extensions explicitly supported.
|
sl@0
|
661 |
* The client interface is welcome to group functionality in different ways, if desired.
|
sl@0
|
662 |
* Operations classified as inside extensions can be called and fail safely on an individual basis.
|
sl@0
|
663 |
* Note that to distinguish versions, new bits may need to be used.
|
sl@0
|
664 |
* The top bit is reserved so that error value returns can be distinguished.
|
sl@0
|
665 |
**/
|
sl@0
|
666 |
enum TWsInterfaceExtensions
|
sl@0
|
667 |
{
|
sl@0
|
668 |
TWsSdXDisplayControl = 0x00000001,
|
sl@0
|
669 |
TWsSdXDisplayMapping = 0x00000002,
|
sl@0
|
670 |
TWsSdXDebugComposition = 0x00000004,
|
sl@0
|
671 |
|
sl@0
|
672 |
|
sl@0
|
673 |
TWsSdXReservedErrorFlag = 0x80000000
|
sl@0
|
674 |
};
|
sl@0
|
675 |
|
sl@0
|
676 |
enum TWsSpriteOpcodes
|
sl@0
|
677 |
{
|
sl@0
|
678 |
EWsSpriteOpFree=0x0000,
|
sl@0
|
679 |
EWsSpriteOpSetPosition,
|
sl@0
|
680 |
EWsSpriteOpUpdateMember,
|
sl@0
|
681 |
EWsSpriteOpUpdateMember2,
|
sl@0
|
682 |
EWsSpriteOpActivate,
|
sl@0
|
683 |
EWsSpriteOpAppendMember,
|
sl@0
|
684 |
};
|
sl@0
|
685 |
|
sl@0
|
686 |
enum TWsBitmapOpcodes
|
sl@0
|
687 |
{
|
sl@0
|
688 |
EWsBitmapOpFree=0x0000,
|
sl@0
|
689 |
};
|
sl@0
|
690 |
|
sl@0
|
691 |
enum TWsDirectOpcodes
|
sl@0
|
692 |
{
|
sl@0
|
693 |
EWsDirectOpFree=0x0000,
|
sl@0
|
694 |
EWsDirectOpRequest,
|
sl@0
|
695 |
EWsDirectOpInitFailed,
|
sl@0
|
696 |
EWsDirectOpGetRegion,
|
sl@0
|
697 |
EWsDirectOpCancel,
|
sl@0
|
698 |
EWsDirectOpGetSendQueue,
|
sl@0
|
699 |
EWsDirectOpGetRecQueue,
|
sl@0
|
700 |
};
|
sl@0
|
701 |
|
sl@0
|
702 |
enum TWsClickOpcodes
|
sl@0
|
703 |
{
|
sl@0
|
704 |
EWsClickOpFree=0x0000,
|
sl@0
|
705 |
EWsClickOpIsLoaded,
|
sl@0
|
706 |
EWsClickOpUnLoad,
|
sl@0
|
707 |
EWsClickOpLoad,
|
sl@0
|
708 |
EWsClickOpCommandReply,
|
sl@0
|
709 |
EWsClickOpSetKeyClick,
|
sl@0
|
710 |
EWsClickOpSetPenClick,
|
sl@0
|
711 |
EWsClickOpKeyClickEnabled,
|
sl@0
|
712 |
EWsClickOpPenClickEnabled,
|
sl@0
|
713 |
};
|
sl@0
|
714 |
|
sl@0
|
715 |
enum TWsGraphicBitFlags
|
sl@0
|
716 |
{
|
sl@0
|
717 |
EWsGraphicIdUid = 0x01,
|
sl@0
|
718 |
EWsGraphicIdTransient = 0x02,
|
sl@0
|
719 |
EWsGraphicReplace = 0x04
|
sl@0
|
720 |
};
|
sl@0
|
721 |
|
sl@0
|
722 |
enum TWsDrawableSourceOpcodes
|
sl@0
|
723 |
{
|
sl@0
|
724 |
EWsDrawableSourceOpFree=0x0000,
|
sl@0
|
725 |
};
|
sl@0
|
726 |
|
sl@0
|
727 |
////////////////////////
|
sl@0
|
728 |
// Command structures
|
sl@0
|
729 |
////////////////////////
|
sl@0
|
730 |
|
sl@0
|
731 |
/** Structure used to pass commands between the client and the server.
|
sl@0
|
732 |
|
sl@0
|
733 |
@internalComponent
|
sl@0
|
734 |
@released
|
sl@0
|
735 |
@see RWsBuffer::DoWrite()
|
sl@0
|
736 |
@see CWsClient::DoCommandBufL()
|
sl@0
|
737 |
*/
|
sl@0
|
738 |
struct TWsCmdHeaderBase
|
sl@0
|
739 |
{
|
sl@0
|
740 |
TUint16 iOpcode;
|
sl@0
|
741 |
TInt16 iCmdLength;
|
sl@0
|
742 |
};
|
sl@0
|
743 |
|
sl@0
|
744 |
/** Structure used to pass commands between the client and the server.
|
sl@0
|
745 |
|
sl@0
|
746 |
@internalComponent
|
sl@0
|
747 |
@released
|
sl@0
|
748 |
@see RWsBuffer::DoWrite()
|
sl@0
|
749 |
@see CWsClient::DoCommandBufL()
|
sl@0
|
750 |
*/
|
sl@0
|
751 |
struct TWsCmdHeader
|
sl@0
|
752 |
{
|
sl@0
|
753 |
TWsCmdHeaderBase iBase;
|
sl@0
|
754 |
TInt32 iDestHandle;
|
sl@0
|
755 |
};
|
sl@0
|
756 |
|
sl@0
|
757 |
//
|
sl@0
|
758 |
// Command structures
|
sl@0
|
759 |
//
|
sl@0
|
760 |
|
sl@0
|
761 |
// Client command structures
|
sl@0
|
762 |
|
sl@0
|
763 |
enum TWinTypes
|
sl@0
|
764 |
{
|
sl@0
|
765 |
EWinRedraw,
|
sl@0
|
766 |
EWinBackedUp,
|
sl@0
|
767 |
EWinBlank,
|
sl@0
|
768 |
};
|
sl@0
|
769 |
|
sl@0
|
770 |
struct TWsClCmdCreateWindow
|
sl@0
|
771 |
{
|
sl@0
|
772 |
TInt parent;
|
sl@0
|
773 |
TUint32 clientHandle;
|
sl@0
|
774 |
TWinTypes type;
|
sl@0
|
775 |
TDisplayMode displayMode; // Only used for backed up windows
|
sl@0
|
776 |
};
|
sl@0
|
777 |
struct TWsClCmdCreateWindowGroup
|
sl@0
|
778 |
{
|
sl@0
|
779 |
TUint32 clientHandle;
|
sl@0
|
780 |
TBool focus;
|
sl@0
|
781 |
TInt parentId;
|
sl@0
|
782 |
TInt32 screenDeviceHandle;
|
sl@0
|
783 |
};
|
sl@0
|
784 |
struct TWsClCmdLoadAnimDll
|
sl@0
|
785 |
{
|
sl@0
|
786 |
TInt length;
|
sl@0
|
787 |
};
|
sl@0
|
788 |
struct TWsClCmdCreatePointerCursor
|
sl@0
|
789 |
{
|
sl@0
|
790 |
TUint flags;
|
sl@0
|
791 |
};
|
sl@0
|
792 |
struct TWsClCmdCustomTextCursorData
|
sl@0
|
793 |
{
|
sl@0
|
794 |
TInt identifier;
|
sl@0
|
795 |
TUint flags;
|
sl@0
|
796 |
RWsSession::TCustomTextCursorAlignment alignment;
|
sl@0
|
797 |
};
|
sl@0
|
798 |
struct TWsClCmdCreateSprite
|
sl@0
|
799 |
{
|
sl@0
|
800 |
inline TWsClCmdCreateSprite(TInt aWindow, const TPoint &aPos, TUint aFlags);
|
sl@0
|
801 |
TInt window;
|
sl@0
|
802 |
TPoint pos;
|
sl@0
|
803 |
TUint flags;
|
sl@0
|
804 |
};
|
sl@0
|
805 |
struct TWsClCmdCreateBitmap
|
sl@0
|
806 |
{
|
sl@0
|
807 |
TInt handle;
|
sl@0
|
808 |
};
|
sl@0
|
809 |
struct TWsClCmdSetHotKey
|
sl@0
|
810 |
{
|
sl@0
|
811 |
TUint type;
|
sl@0
|
812 |
TUint modifiers;
|
sl@0
|
813 |
TUint modifierMask;
|
sl@0
|
814 |
TUint16 keycode;
|
sl@0
|
815 |
TUint16 filler;
|
sl@0
|
816 |
};
|
sl@0
|
817 |
struct TWsClCmdWindowGroupList
|
sl@0
|
818 |
{
|
sl@0
|
819 |
TInt priority;
|
sl@0
|
820 |
TInt count;
|
sl@0
|
821 |
TInt screenNumber;
|
sl@0
|
822 |
};
|
sl@0
|
823 |
struct TWsClCmdSetWindowGroupOrdinalPosition
|
sl@0
|
824 |
{
|
sl@0
|
825 |
inline TWsClCmdSetWindowGroupOrdinalPosition(TInt aIdentifier, TInt aPosition);
|
sl@0
|
826 |
TInt identifier;
|
sl@0
|
827 |
TInt position;
|
sl@0
|
828 |
};
|
sl@0
|
829 |
struct TWsClCmdSetKeyboardRepeatRate
|
sl@0
|
830 |
{
|
sl@0
|
831 |
inline TWsClCmdSetKeyboardRepeatRate(const TTimeIntervalMicroSeconds32 &aInitial,const TTimeIntervalMicroSeconds32 &aTime);
|
sl@0
|
832 |
TTimeIntervalMicroSeconds32 initial;
|
sl@0
|
833 |
TTimeIntervalMicroSeconds32 time;
|
sl@0
|
834 |
};
|
sl@0
|
835 |
struct TWsClCmdSetDoubleClick
|
sl@0
|
836 |
{
|
sl@0
|
837 |
inline TWsClCmdSetDoubleClick(const TTimeIntervalMicroSeconds32 &aInterval,TInt aDistance);
|
sl@0
|
838 |
TTimeIntervalMicroSeconds32 interval;
|
sl@0
|
839 |
TInt distance;
|
sl@0
|
840 |
};
|
sl@0
|
841 |
struct TWsClCmdSetSystemPointerCursor
|
sl@0
|
842 |
{
|
sl@0
|
843 |
TInt handle;
|
sl@0
|
844 |
TInt number;
|
sl@0
|
845 |
};
|
sl@0
|
846 |
struct TWsClCmdHeapSetFail
|
sl@0
|
847 |
{
|
sl@0
|
848 |
RHeap::TAllocFail type;
|
sl@0
|
849 |
TInt value;
|
sl@0
|
850 |
TInt burst;
|
sl@0
|
851 |
};
|
sl@0
|
852 |
struct TWsClCmdSendEventToWindowGroup
|
sl@0
|
853 |
{
|
sl@0
|
854 |
inline TWsClCmdSendEventToWindowGroup(TInt aParameter, const TWsEvent &aEvent);
|
sl@0
|
855 |
TInt parameter;
|
sl@0
|
856 |
TWsEvent event;
|
sl@0
|
857 |
};
|
sl@0
|
858 |
struct TWsClCmdFindWindowGroupIdentifier
|
sl@0
|
859 |
{
|
sl@0
|
860 |
inline TWsClCmdFindWindowGroupIdentifier(TInt aPreviousIdentifier,TInt aOffset, TInt aLength);
|
sl@0
|
861 |
TInt identifier;
|
sl@0
|
862 |
TInt offset;
|
sl@0
|
863 |
TInt length;
|
sl@0
|
864 |
};
|
sl@0
|
865 |
struct TWsClCmdSendMessageToWindowGroup
|
sl@0
|
866 |
{
|
sl@0
|
867 |
inline TWsClCmdSendMessageToWindowGroup(TInt aIdentifier, TUid aUid, TInt aDataLength, const TDesC8 *aPtr);
|
sl@0
|
868 |
TInt identifierOrPriority; // identifier in case of EWsClOpSendMessageToWindowGroup, not used in case of EWsClOpSendMessageToAllWindowGroup, priority in case of EWsClOpSendMessageToAllWindowGroupPriority
|
sl@0
|
869 |
TUid uid;
|
sl@0
|
870 |
TInt dataLength;
|
sl@0
|
871 |
const TDesC8 *ptr;
|
sl@0
|
872 |
};
|
sl@0
|
873 |
struct TWsClCmdFetchMessage
|
sl@0
|
874 |
{
|
sl@0
|
875 |
inline TWsClCmdFetchMessage(TInt aWindowGroupIdentifier);
|
sl@0
|
876 |
TInt windowGroupIdentifier;
|
sl@0
|
877 |
};
|
sl@0
|
878 |
struct TWsClCmdFindWindowGroupIdentifierThread
|
sl@0
|
879 |
{
|
sl@0
|
880 |
inline TWsClCmdFindWindowGroupIdentifierThread(TInt aPreviousIdentifier,TThreadId aThreadId);
|
sl@0
|
881 |
TInt identifier;
|
sl@0
|
882 |
TThreadId threadId;
|
sl@0
|
883 |
};
|
sl@0
|
884 |
struct TWsClCmdGetWindowGroupNameFromIdentifier
|
sl@0
|
885 |
{
|
sl@0
|
886 |
inline TWsClCmdGetWindowGroupNameFromIdentifier(TInt aIdentifier,TInt aMaxLength);
|
sl@0
|
887 |
TInt identifier;
|
sl@0
|
888 |
TInt maxLength;
|
sl@0
|
889 |
};
|
sl@0
|
890 |
struct TWsClCmdOffEventsToShell
|
sl@0
|
891 |
{
|
sl@0
|
892 |
inline TWsClCmdOffEventsToShell(TBool aOn,TUint32 aWindow);
|
sl@0
|
893 |
TBool on;
|
sl@0
|
894 |
TUint32 window;
|
sl@0
|
895 |
};
|
sl@0
|
896 |
struct TWsClCmdSetModifierState
|
sl@0
|
897 |
{
|
sl@0
|
898 |
TEventModifier modifier;
|
sl@0
|
899 |
TModifierState state;
|
sl@0
|
900 |
};
|
sl@0
|
901 |
struct TWsClCmdSetPointerCursorArea
|
sl@0
|
902 |
{
|
sl@0
|
903 |
inline TWsClCmdSetPointerCursorArea(TInt aMode,TRect aArea);
|
sl@0
|
904 |
TInt mode;
|
sl@0
|
905 |
TRect area;
|
sl@0
|
906 |
};
|
sl@0
|
907 |
struct TWsClCmdSetSystemFaded
|
sl@0
|
908 |
{
|
sl@0
|
909 |
enum {EFaded=0x01,EUseDefaultMap=0x02};
|
sl@0
|
910 |
inline TWsClCmdSetSystemFaded(TBool aFaded,TBool aUseDefaults=ETrue,TUint8 aBlackMap=0,TUint8 aWhiteMap=0);
|
sl@0
|
911 |
inline TBool Faded() const;
|
sl@0
|
912 |
inline TBool UseDefaultMap() const;
|
sl@0
|
913 |
inline void GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const;
|
sl@0
|
914 |
TUint params;
|
sl@0
|
915 |
};
|
sl@0
|
916 |
struct TWsClCmdCreateGraphic
|
sl@0
|
917 |
{
|
sl@0
|
918 |
TUint iFlags; // TWsGraphicBitFlags
|
sl@0
|
919 |
TInt iClientHandle;
|
sl@0
|
920 |
TInt iId;
|
sl@0
|
921 |
TUid iType;
|
sl@0
|
922 |
TInt iDataLen;
|
sl@0
|
923 |
TBool iRemoteReadData;
|
sl@0
|
924 |
};
|
sl@0
|
925 |
struct TWsClCmdGdSendMessage
|
sl@0
|
926 |
{
|
sl@0
|
927 |
TInt iDataLen;
|
sl@0
|
928 |
TBool iRemoteReadData;
|
sl@0
|
929 |
};
|
sl@0
|
930 |
struct TWsClCmdGdGetId
|
sl@0
|
931 |
{
|
sl@0
|
932 |
TInt iId;
|
sl@0
|
933 |
TBool iIsUid;
|
sl@0
|
934 |
};
|
sl@0
|
935 |
struct TWsClCmdDebugInfo
|
sl@0
|
936 |
{
|
sl@0
|
937 |
inline TWsClCmdDebugInfo(TInt aFunction, TInt aParam);
|
sl@0
|
938 |
TInt iFunction;
|
sl@0
|
939 |
TInt iParam;
|
sl@0
|
940 |
};
|
sl@0
|
941 |
struct TWsClCmdCreateDrawableSource;
|
sl@0
|
942 |
struct TWsClCmdSurfaceRegister;
|
sl@0
|
943 |
#if defined(SYMBIAN_GRAPHICS_GCE)
|
sl@0
|
944 |
struct TWsClCmdCreateDrawableSource
|
sl@0
|
945 |
{
|
sl@0
|
946 |
inline TWsClCmdCreateDrawableSource(const TSgDrawableId& aDrawableId, TInt aScreenNumber);
|
sl@0
|
947 |
TSgDrawableId iDrawableId;
|
sl@0
|
948 |
TInt iScreenNumber;
|
sl@0
|
949 |
};
|
sl@0
|
950 |
struct TWsClCmdSurfaceRegister
|
sl@0
|
951 |
{
|
sl@0
|
952 |
inline TWsClCmdSurfaceRegister(TInt aScreenNumber, const TSurfaceId& aSurface);
|
sl@0
|
953 |
TInt screenNumber;
|
sl@0
|
954 |
TSurfaceId surfaceId;
|
sl@0
|
955 |
};
|
sl@0
|
956 |
#endif
|
sl@0
|
957 |
struct TWsClCmdNumWindowGroups
|
sl@0
|
958 |
{
|
sl@0
|
959 |
TInt screenNumber;
|
sl@0
|
960 |
TInt priority;
|
sl@0
|
961 |
};
|
sl@0
|
962 |
struct TWsClCmdCreateScreenDevice
|
sl@0
|
963 |
{
|
sl@0
|
964 |
TInt screenNumber;
|
sl@0
|
965 |
TUint clientScreenDevicePointer;
|
sl@0
|
966 |
};
|
sl@0
|
967 |
struct TWsClCmdZThresholdPair
|
sl@0
|
968 |
{
|
sl@0
|
969 |
inline TWsClCmdZThresholdPair(const TInt aEnterThreshold, const TInt aExitThreshold);
|
sl@0
|
970 |
TInt enterThreshold;
|
sl@0
|
971 |
TInt exitThreshold;
|
sl@0
|
972 |
};
|
sl@0
|
973 |
struct TWsClCmdSendEffectCommand
|
sl@0
|
974 |
{
|
sl@0
|
975 |
inline TWsClCmdSendEffectCommand(TInt aTfxCmd,TInt aTfxCmdDataLength, TInt aWinHandle);
|
sl@0
|
976 |
TInt tfxCmd;
|
sl@0
|
977 |
TInt tfxCmdDataLength;
|
sl@0
|
978 |
TInt windowHandle;
|
sl@0
|
979 |
};
|
sl@0
|
980 |
struct TWsClCmdRegisterEffect
|
sl@0
|
981 |
{
|
sl@0
|
982 |
inline TWsClCmdRegisterEffect(TInt aAction, TInt aPurpose, TInt aDirStrSize, TInt aPhase1StrSize, TInt aPhase2StrSize, TUint aAppUid, TBitFlags aFlags);
|
sl@0
|
983 |
TInt tfxAction;
|
sl@0
|
984 |
TInt tfxPurpose;
|
sl@0
|
985 |
TInt tfxDirStrSize;
|
sl@0
|
986 |
TInt tfxPhase1StrSize;
|
sl@0
|
987 |
TInt tfxPhase2StrSize;
|
sl@0
|
988 |
TUint tfxAppUid;
|
sl@0
|
989 |
TBitFlags tfxFlags;
|
sl@0
|
990 |
};
|
sl@0
|
991 |
struct TWsClCmdUnRegisterEffect
|
sl@0
|
992 |
{
|
sl@0
|
993 |
inline TWsClCmdUnRegisterEffect(TInt aAction, TInt aPurpose, TUint aAppUid);
|
sl@0
|
994 |
TInt tfxAction;
|
sl@0
|
995 |
TInt tfxPurpose;
|
sl@0
|
996 |
TUint tfxAppUid;
|
sl@0
|
997 |
};
|
sl@0
|
998 |
struct TWsClCmdOverrideEffect
|
sl@0
|
999 |
{
|
sl@0
|
1000 |
inline TWsClCmdOverrideEffect(TInt aAction, TInt aPurpose, TInt aDirStrSize, TInt aPhase1StrSize, TInt aPhase2StrSize, TBitFlags aFlags);
|
sl@0
|
1001 |
TInt tfxAction;
|
sl@0
|
1002 |
TInt tfxPurpose;
|
sl@0
|
1003 |
TInt tfxDirStrSize;
|
sl@0
|
1004 |
TInt tfxPhase1StrSize;
|
sl@0
|
1005 |
TInt tfxPhase2StrSize;
|
sl@0
|
1006 |
TBitFlags tfxFlags;
|
sl@0
|
1007 |
};
|
sl@0
|
1008 |
typedef TRequestStatus *RqStatPtr;
|
sl@0
|
1009 |
union TWsClCmdUnion
|
sl@0
|
1010 |
{
|
sl@0
|
1011 |
const TAny* any;
|
sl@0
|
1012 |
const TAny** pAny;
|
sl@0
|
1013 |
const TInt* Int;
|
sl@0
|
1014 |
const TUint* UInt;
|
sl@0
|
1015 |
const TBool* Bool;
|
sl@0
|
1016 |
const TUid* Uid;
|
sl@0
|
1017 |
const TPointerCursorMode* Mode;
|
sl@0
|
1018 |
const TInt *XyInput;
|
sl@0
|
1019 |
const TPoint* Point;
|
sl@0
|
1020 |
const TRgb* rgb;
|
sl@0
|
1021 |
const RqStatPtr* RequestStatus;
|
sl@0
|
1022 |
const TRawEvent* RawEvent;
|
sl@0
|
1023 |
const TKeyEvent* KeyEvent;
|
sl@0
|
1024 |
const RWsSession::TComputeMode* ComputeMode;
|
sl@0
|
1025 |
const RWsSession::TLoggingCommand* LogCommand;
|
sl@0
|
1026 |
const TWsClCmdCreateWindow* CreateWindow;
|
sl@0
|
1027 |
const TWsClCmdCreateWindowGroup* CreateWindowGroup;
|
sl@0
|
1028 |
const TWsClCmdLoadAnimDll* LoadAnimDll;
|
sl@0
|
1029 |
const TWsClCmdCreatePointerCursor* CreatePointerCursor;
|
sl@0
|
1030 |
const TWsClCmdCustomTextCursorData* CustomTextCursorData;
|
sl@0
|
1031 |
const TWsClCmdCreateSprite* CreateSprite;
|
sl@0
|
1032 |
const TWsClCmdCreateBitmap* CreateBitmap;
|
sl@0
|
1033 |
const TWsClCmdSetHotKey* SetHotKey;
|
sl@0
|
1034 |
const TWsClCmdWindowGroupList* WindowGroupList;
|
sl@0
|
1035 |
const TWsClCmdSetWindowGroupOrdinalPosition* SetWindowGroupOrdinalPosition;
|
sl@0
|
1036 |
const TWsClCmdSetKeyboardRepeatRate* SetKeyboardRepeatRate;
|
sl@0
|
1037 |
const TWsClCmdHeapSetFail* HeapSetFail;
|
sl@0
|
1038 |
const TWsClCmdSetDoubleClick* SetDoubleClick;
|
sl@0
|
1039 |
const TWsClCmdSetSystemPointerCursor* SetSystemPointerCursor;
|
sl@0
|
1040 |
const TWsClCmdSendEventToWindowGroup* SendEventToWindowGroup;
|
sl@0
|
1041 |
const TWsClCmdSendMessageToWindowGroup* SendMessageToWindowGroup;
|
sl@0
|
1042 |
const TWsClCmdFetchMessage* FetchMessage;
|
sl@0
|
1043 |
const TWsClCmdFindWindowGroupIdentifier* FindWindowGroupIdentifier;
|
sl@0
|
1044 |
const TWsClCmdFindWindowGroupIdentifierThread* FindWindowGroupIdentifierThread;
|
sl@0
|
1045 |
const TWsClCmdGetWindowGroupNameFromIdentifier* GetWindowGroupNameFromIdentifier;
|
sl@0
|
1046 |
const TWsClCmdOffEventsToShell* OffEventsToShell;
|
sl@0
|
1047 |
const TWsClCmdSetModifierState* SetModifierState;
|
sl@0
|
1048 |
const TWsClCmdSetPointerCursorArea* SetPointerCursorArea;
|
sl@0
|
1049 |
const TWsClCmdSetSystemFaded* SetSystemFaded;
|
sl@0
|
1050 |
const TWsClCmdCreateGraphic* CreateGraphic;
|
sl@0
|
1051 |
const TWsClCmdGdSendMessage* GraphicSendMessage;
|
sl@0
|
1052 |
const TWsClCmdGdGetId* GetGraphicId;
|
sl@0
|
1053 |
const TWsClCmdDebugInfo* DebugInfo;
|
sl@0
|
1054 |
const TWsClCmdSurfaceRegister* SurfaceRegister;
|
sl@0
|
1055 |
const TWsClCmdNumWindowGroups* NumWinGroups;
|
sl@0
|
1056 |
const TWsClCmdCreateScreenDevice* CreateScreenDevice;
|
sl@0
|
1057 |
const TWsClCmdZThresholdPair* ZThresholdPair;
|
sl@0
|
1058 |
const TWsClCmdCreateDrawableSource* CreateDrawableSource;
|
sl@0
|
1059 |
const TWsClCmdSendEffectCommand* SendEffectCommand;
|
sl@0
|
1060 |
const TWsClCmdRegisterEffect* RegisterEffect;
|
sl@0
|
1061 |
const TWsClCmdUnRegisterEffect* UnRegisterEffect;
|
sl@0
|
1062 |
const TWsClCmdOverrideEffect* OverrideEffect;
|
sl@0
|
1063 |
const TRenderOrientation* Orientation;
|
sl@0
|
1064 |
};
|
sl@0
|
1065 |
|
sl@0
|
1066 |
// Window command structures
|
sl@0
|
1067 |
|
sl@0
|
1068 |
struct TWsWinCmdSetExtent
|
sl@0
|
1069 |
{
|
sl@0
|
1070 |
inline TWsWinCmdSetExtent(const TPoint &aPos,const TSize &aSize);
|
sl@0
|
1071 |
TPoint pos;
|
sl@0
|
1072 |
TSize size;
|
sl@0
|
1073 |
};
|
sl@0
|
1074 |
struct TWsWinCmdOrdinalPos
|
sl@0
|
1075 |
{
|
sl@0
|
1076 |
TInt pos;
|
sl@0
|
1077 |
TInt ordinalPriority;
|
sl@0
|
1078 |
};
|
sl@0
|
1079 |
struct TWsWinCmdScroll
|
sl@0
|
1080 |
{
|
sl@0
|
1081 |
inline TWsWinCmdScroll(const TRect &aClip,const TPoint &aOffset,const TRect &aRect);
|
sl@0
|
1082 |
TRect clip;
|
sl@0
|
1083 |
TPoint offset;
|
sl@0
|
1084 |
TRect rect;
|
sl@0
|
1085 |
};
|
sl@0
|
1086 |
struct TWsWinCmdCaptureKey
|
sl@0
|
1087 |
{
|
sl@0
|
1088 |
TUint modifiers;
|
sl@0
|
1089 |
TUint modifierMask;
|
sl@0
|
1090 |
TUint key;
|
sl@0
|
1091 |
TInt priority;
|
sl@0
|
1092 |
};
|
sl@0
|
1093 |
struct TWsWinCmdCaptureLongKey
|
sl@0
|
1094 |
{
|
sl@0
|
1095 |
inline TWsWinCmdCaptureLongKey();
|
sl@0
|
1096 |
inline TWsWinCmdCaptureLongKey(TUint aModifiers,TUint aModifierMask,TUint aInputKey,TUint aOutputKey
|
sl@0
|
1097 |
,TTimeIntervalMicroSeconds32 aDelay,TInt aPriority,TUint aFlags);
|
sl@0
|
1098 |
TUint modifiers;
|
sl@0
|
1099 |
TUint modifierMask;
|
sl@0
|
1100 |
TUint inputKey;
|
sl@0
|
1101 |
TUint outputKey;
|
sl@0
|
1102 |
TTimeIntervalMicroSeconds32 delay;
|
sl@0
|
1103 |
TInt priority;
|
sl@0
|
1104 |
TUint flags;
|
sl@0
|
1105 |
};
|
sl@0
|
1106 |
struct TWsWinCmdPriorityKey
|
sl@0
|
1107 |
{
|
sl@0
|
1108 |
TUint modifiers;
|
sl@0
|
1109 |
TUint modifierMask;
|
sl@0
|
1110 |
TUint keycode;
|
sl@0
|
1111 |
};
|
sl@0
|
1112 |
struct TWsWinCmdSetTextCursor
|
sl@0
|
1113 |
{
|
sl@0
|
1114 |
inline TWsWinCmdSetTextCursor(TUint32 aWindow, const TPoint &aPos, const TTextCursor &aCursor, const TRect &aRect);
|
sl@0
|
1115 |
inline TWsWinCmdSetTextCursor(TUint32 aWindow, const TPoint &aPos, const TTextCursor &aCursor);
|
sl@0
|
1116 |
TUint32 window;
|
sl@0
|
1117 |
TPoint pos;
|
sl@0
|
1118 |
TTextCursor cursor;
|
sl@0
|
1119 |
TRect rect;
|
sl@0
|
1120 |
};
|
sl@0
|
1121 |
struct TWsWinCmdPointerFilter
|
sl@0
|
1122 |
{
|
sl@0
|
1123 |
TUint32 mask;
|
sl@0
|
1124 |
TUint32 flags;
|
sl@0
|
1125 |
};
|
sl@0
|
1126 |
struct TWsWinCmdSetCornerType
|
sl@0
|
1127 |
{
|
sl@0
|
1128 |
TCornerType type;
|
sl@0
|
1129 |
TInt flags;
|
sl@0
|
1130 |
};
|
sl@0
|
1131 |
struct TWsWinCmdSetShape
|
sl@0
|
1132 |
{
|
sl@0
|
1133 |
TPtrC8 *ptr;
|
sl@0
|
1134 |
TInt count;
|
sl@0
|
1135 |
};
|
sl@0
|
1136 |
struct TWsWinCmdUpdateScreen
|
sl@0
|
1137 |
{
|
sl@0
|
1138 |
TPtrC8 *ptr;
|
sl@0
|
1139 |
TInt count;
|
sl@0
|
1140 |
};
|
sl@0
|
1141 |
struct TWsWinCmdGrabControl
|
sl@0
|
1142 |
{
|
sl@0
|
1143 |
enum TWsWinCmdGrabControlFlags
|
sl@0
|
1144 |
{
|
sl@0
|
1145 |
ENone=0,
|
sl@0
|
1146 |
ESendUpEvent=0x2,
|
sl@0
|
1147 |
ESendReply=0x4
|
sl@0
|
1148 |
};
|
sl@0
|
1149 |
inline TWsWinCmdGrabControl(const TUint aGrabControlFlags);
|
sl@0
|
1150 |
inline TWsWinCmdGrabControl(const TUint8 aPointerNumber, const TUint aGrabControlFlags);
|
sl@0
|
1151 |
inline TBool CheckFlags(TUint aFlags) const;
|
sl@0
|
1152 |
inline TBool HasPointerNumber() const;
|
sl@0
|
1153 |
|
sl@0
|
1154 |
// integer to ensure passed in unsigned TUint8 can't get confused with
|
sl@0
|
1155 |
// signed negative values that are used internally.
|
sl@0
|
1156 |
// The signed int member will be "promoted" to unsigned for the assignement in the constructor.
|
sl@0
|
1157 |
TInt pointerNumber;
|
sl@0
|
1158 |
TUint flags;
|
sl@0
|
1159 |
};
|
sl@0
|
1160 |
|
sl@0
|
1161 |
struct TWsWinCmdCancelPointerRepeatEventRequest
|
sl@0
|
1162 |
{
|
sl@0
|
1163 |
enum TCancelRepeatFlags
|
sl@0
|
1164 |
{
|
sl@0
|
1165 |
ECancelRepeatFlagsNone=0,
|
sl@0
|
1166 |
ECancelRepeatFlagsSendReply=0x2
|
sl@0
|
1167 |
};
|
sl@0
|
1168 |
|
sl@0
|
1169 |
inline TWsWinCmdCancelPointerRepeatEventRequest();
|
sl@0
|
1170 |
inline TWsWinCmdCancelPointerRepeatEventRequest(const TUint8 aPointerNumber);
|
sl@0
|
1171 |
inline TWsWinCmdCancelPointerRepeatEventRequest(const TUint8 aPointerNumber, const TUint aFlags);
|
sl@0
|
1172 |
inline TBool HasPointerNumber() const;
|
sl@0
|
1173 |
TInt pointerNumber;
|
sl@0
|
1174 |
TUint flags;
|
sl@0
|
1175 |
};
|
sl@0
|
1176 |
|
sl@0
|
1177 |
struct TWsWinCmdRequestPointerRepeatEvent
|
sl@0
|
1178 |
{
|
sl@0
|
1179 |
enum TRepeatFlags
|
sl@0
|
1180 |
{
|
sl@0
|
1181 |
ERepeatFlagsNone=0,
|
sl@0
|
1182 |
ERepeatFlagsSendReply=0x2
|
sl@0
|
1183 |
};
|
sl@0
|
1184 |
|
sl@0
|
1185 |
inline TWsWinCmdRequestPointerRepeatEvent(const TTimeIntervalMicroSeconds32 &aTime,const TRect &aRect);
|
sl@0
|
1186 |
inline TWsWinCmdRequestPointerRepeatEvent(const TTimeIntervalMicroSeconds32 &aTime,const TRect &aRect,const TUint8 aPointerNumber, const TUint aRepeatFlags);
|
sl@0
|
1187 |
inline TBool HasPointerNumber() const;
|
sl@0
|
1188 |
TTimeIntervalMicroSeconds32 time;
|
sl@0
|
1189 |
TRect rect;
|
sl@0
|
1190 |
TInt pointerNumber;
|
sl@0
|
1191 |
TUint repeatFlags;
|
sl@0
|
1192 |
};
|
sl@0
|
1193 |
struct TWsWinCmdAllocPointerMoveBuffer
|
sl@0
|
1194 |
{
|
sl@0
|
1195 |
TInt maxNumPoints;
|
sl@0
|
1196 |
TInt flags;
|
sl@0
|
1197 |
};
|
sl@0
|
1198 |
struct TWsWinCmdSetName
|
sl@0
|
1199 |
{
|
sl@0
|
1200 |
TInt length;
|
sl@0
|
1201 |
const TDesC *ptr;
|
sl@0
|
1202 |
};
|
sl@0
|
1203 |
struct TWsWinCmdAddKeyRect
|
sl@0
|
1204 |
{
|
sl@0
|
1205 |
inline TWsWinCmdAddKeyRect(const TRect &aRect,TInt aScanCodea, TBool aActivatedByPointerSwitchOn);
|
sl@0
|
1206 |
TRect rect;
|
sl@0
|
1207 |
TInt scanCode;
|
sl@0
|
1208 |
TBool activatedByPointerSwitchOn;
|
sl@0
|
1209 |
};
|
sl@0
|
1210 |
struct TWsWinOpSetBackgroundSurfaceConfig;
|
sl@0
|
1211 |
#if defined(SYMBIAN_GRAPHICS_GCE)
|
sl@0
|
1212 |
struct TWsWinOpSetBackgroundSurfaceConfig
|
sl@0
|
1213 |
{
|
sl@0
|
1214 |
inline TWsWinOpSetBackgroundSurfaceConfig(const TSurfaceConfiguration& aConfiguration, TBool aTriggerRedraw);
|
sl@0
|
1215 |
TSurfaceConfiguration surfaceConfig;
|
sl@0
|
1216 |
TBool triggerRedraw;
|
sl@0
|
1217 |
};
|
sl@0
|
1218 |
#endif
|
sl@0
|
1219 |
struct TWsWinCmdEnableModifierChangedEvents
|
sl@0
|
1220 |
{
|
sl@0
|
1221 |
inline TWsWinCmdEnableModifierChangedEvents(TUint aModifierMask, TEventControl aCircumstances);
|
sl@0
|
1222 |
TInt modifierMask;
|
sl@0
|
1223 |
TEventControl circumstances;
|
sl@0
|
1224 |
};
|
sl@0
|
1225 |
struct TWsWinCmdSetFaded
|
sl@0
|
1226 |
{
|
sl@0
|
1227 |
enum {EFaded=0x01,EIncludeChildren=0x02,EUseDefaultMap=0x04};
|
sl@0
|
1228 |
inline TWsWinCmdSetFaded(TBool aFaded, TBool aIncludeChildren
|
sl@0
|
1229 |
,TBool aUseDefaults=ETrue,TUint8 aBlackMap=0,TUint8 aWhiteMap=0);
|
sl@0
|
1230 |
inline TBool Faded() const;
|
sl@0
|
1231 |
inline TBool IncludeChildren() const;
|
sl@0
|
1232 |
inline TBool UseDefaultMap() const;
|
sl@0
|
1233 |
inline void GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const;
|
sl@0
|
1234 |
TUint params;
|
sl@0
|
1235 |
};
|
sl@0
|
1236 |
|
sl@0
|
1237 |
union TWsWinCmdUnion
|
sl@0
|
1238 |
{
|
sl@0
|
1239 |
const TAny *any;
|
sl@0
|
1240 |
const TAny **pAny;
|
sl@0
|
1241 |
const TRect *rect;
|
sl@0
|
1242 |
const TPoint *pos;
|
sl@0
|
1243 |
const TSize *size;
|
sl@0
|
1244 |
const TInt *Int;
|
sl@0
|
1245 |
const TUint *UInt;
|
sl@0
|
1246 |
const TBool *Bool;
|
sl@0
|
1247 |
const TEventControl *EventControl;
|
sl@0
|
1248 |
const TRgb *rgb;
|
sl@0
|
1249 |
const TDisplayMode *DisplayMode;
|
sl@0
|
1250 |
const TPasswordMode *PasswordMode;
|
sl@0
|
1251 |
const TRawEvent *RawEvent;
|
sl@0
|
1252 |
const TSurfaceConfiguration *SurfaceConfiguration;
|
sl@0
|
1253 |
const TWsWinCmdSetExtent *SetEx;
|
sl@0
|
1254 |
const TWsWinCmdOrdinalPos *OrdinalPos;
|
sl@0
|
1255 |
const TWsWinCmdScroll *ScrollRect;
|
sl@0
|
1256 |
const TWsWinCmdCaptureKey *CaptureKey;
|
sl@0
|
1257 |
const TWsWinCmdCaptureLongKey *CaptureLongKey;
|
sl@0
|
1258 |
const TWsWinCmdPriorityKey *PriorityKey;
|
sl@0
|
1259 |
const TWsWinCmdSetTextCursor *SetTextCursor;
|
sl@0
|
1260 |
const TWsWinCmdPointerFilter *PointerFilter;
|
sl@0
|
1261 |
const TWsWinCmdSetCornerType *SetCornerType;
|
sl@0
|
1262 |
const TWsWinCmdSetShape *SetShape;
|
sl@0
|
1263 |
const TWsWinCmdUpdateScreen *UpdateScreen;
|
sl@0
|
1264 |
const TWsWinCmdRequestPointerRepeatEvent *RequestPointerRepeatEvent;
|
sl@0
|
1265 |
const TWsWinCmdAllocPointerMoveBuffer *AllocPointerMoveBuffer;
|
sl@0
|
1266 |
const TWsWinCmdSetName *SetName;
|
sl@0
|
1267 |
const TWsWinCmdAddKeyRect *AddKeyRect;
|
sl@0
|
1268 |
const TWsWinOpSetBackgroundSurfaceConfig *SurfaceConfigurationAndTrigger;
|
sl@0
|
1269 |
const TWsWinCmdEnableModifierChangedEvents *EnableModifierChangedEvents;
|
sl@0
|
1270 |
const TWsWinCmdSetFaded *SetFaded;
|
sl@0
|
1271 |
const TSurfaceId *Surface;
|
sl@0
|
1272 |
const TWsWinCmdCancelPointerRepeatEventRequest *CancelPointerRepeatEventRequest;
|
sl@0
|
1273 |
const TWsWinCmdGrabControl *GrabControl;
|
sl@0
|
1274 |
const TWsClCmdSendEffectCommand *SendEffectCommand;
|
sl@0
|
1275 |
const TWsClCmdOverrideEffect* OverrideEffect;
|
sl@0
|
1276 |
};
|
sl@0
|
1277 |
|
sl@0
|
1278 |
// GC command structures
|
sl@0
|
1279 |
|
sl@0
|
1280 |
struct TWsGcLargeStruct
|
sl@0
|
1281 |
{
|
sl@0
|
1282 |
TInt int1;
|
sl@0
|
1283 |
TInt int2;
|
sl@0
|
1284 |
TInt int3;
|
sl@0
|
1285 |
TInt int4;
|
sl@0
|
1286 |
TInt int5;
|
sl@0
|
1287 |
TInt int6;
|
sl@0
|
1288 |
TInt int7;
|
sl@0
|
1289 |
TInt int8;
|
sl@0
|
1290 |
TInt int9;
|
sl@0
|
1291 |
TBool tbool;
|
sl@0
|
1292 |
CGraphicsContext::TTextAlign align;
|
sl@0
|
1293 |
TAny* ptr;
|
sl@0
|
1294 |
};
|
sl@0
|
1295 |
struct TWsGcCmdSetClippingRegion
|
sl@0
|
1296 |
{
|
sl@0
|
1297 |
TPtrC8 *ptr;
|
sl@0
|
1298 |
TInt count;
|
sl@0
|
1299 |
};
|
sl@0
|
1300 |
struct TWsGcCmdSetJustification
|
sl@0
|
1301 |
{
|
sl@0
|
1302 |
TInt excessWidth;
|
sl@0
|
1303 |
TInt numGaps;
|
sl@0
|
1304 |
};
|
sl@0
|
1305 |
struct TWsGcCmdDrawText
|
sl@0
|
1306 |
{
|
sl@0
|
1307 |
inline TWsGcCmdDrawText(const TPoint &aPos, TInt aLength);
|
sl@0
|
1308 |
TPoint pos;
|
sl@0
|
1309 |
TInt length;
|
sl@0
|
1310 |
};
|
sl@0
|
1311 |
struct TWsGcCmdDrawTextPtr
|
sl@0
|
1312 |
{
|
sl@0
|
1313 |
TPoint pos;
|
sl@0
|
1314 |
TDesC *text;
|
sl@0
|
1315 |
};
|
sl@0
|
1316 |
|
sl@0
|
1317 |
|
sl@0
|
1318 |
struct TWsGcCmdDrawTextVertical
|
sl@0
|
1319 |
{
|
sl@0
|
1320 |
inline TWsGcCmdDrawTextVertical(const TPoint &aPos, TInt aLength, TBool aUp);
|
sl@0
|
1321 |
TPoint pos;
|
sl@0
|
1322 |
TInt length;
|
sl@0
|
1323 |
TBool up;
|
sl@0
|
1324 |
};
|
sl@0
|
1325 |
|
sl@0
|
1326 |
struct TWsGcCmdDrawTextVerticalPtr
|
sl@0
|
1327 |
{
|
sl@0
|
1328 |
TPoint pos;
|
sl@0
|
1329 |
TBool up;
|
sl@0
|
1330 |
TDesC *text;
|
sl@0
|
1331 |
inline TWsGcCmdDrawTextVerticalPtr(const TDesC *aDesc, const TPoint& aPos, const TBool aUp);
|
sl@0
|
1332 |
};
|
sl@0
|
1333 |
|
sl@0
|
1334 |
struct TWsGcCmdDrawTextLocal
|
sl@0
|
1335 |
{
|
sl@0
|
1336 |
inline TWsGcCmdDrawTextLocal(const TPoint &aPos,const TDesC *aDesc);
|
sl@0
|
1337 |
TPoint pos;
|
sl@0
|
1338 |
const TDesC *desc;
|
sl@0
|
1339 |
};
|
sl@0
|
1340 |
|
sl@0
|
1341 |
struct TWsGcCmdBoxTextOptimised1
|
sl@0
|
1342 |
{
|
sl@0
|
1343 |
inline TWsGcCmdBoxTextOptimised1(const TRect &aRect,TInt aBaselineOffset,TInt alength);
|
sl@0
|
1344 |
TRect box;
|
sl@0
|
1345 |
TInt baselineOffset;
|
sl@0
|
1346 |
TInt length;
|
sl@0
|
1347 |
};
|
sl@0
|
1348 |
struct TWsGcCmdBoxTextOptimised2
|
sl@0
|
1349 |
{
|
sl@0
|
1350 |
inline TWsGcCmdBoxTextOptimised2(const TRect &aRect,TInt aBaselineOffset,CGraphicsContext::TTextAlign aHoriz,TInt aLeftMrg,TInt aLength);
|
sl@0
|
1351 |
TRect box;
|
sl@0
|
1352 |
TInt baselineOffset;
|
sl@0
|
1353 |
CGraphicsContext::TTextAlign horiz;
|
sl@0
|
1354 |
TInt leftMrg;
|
sl@0
|
1355 |
TInt length;
|
sl@0
|
1356 |
};
|
sl@0
|
1357 |
|
sl@0
|
1358 |
struct TWsGcCmdBoxText
|
sl@0
|
1359 |
{
|
sl@0
|
1360 |
inline TWsGcCmdBoxText(const TRect &aRect,TInt aBaselineOffset,CGraphicsContext::TTextAlign aHoriz,TInt aLeftMrg,TInt aLength,TInt aWidth);
|
sl@0
|
1361 |
TRect box;
|
sl@0
|
1362 |
TInt baselineOffset;
|
sl@0
|
1363 |
CGraphicsContext::TTextAlign horiz;
|
sl@0
|
1364 |
TInt leftMrg;
|
sl@0
|
1365 |
TInt length;
|
sl@0
|
1366 |
TInt width;
|
sl@0
|
1367 |
};
|
sl@0
|
1368 |
|
sl@0
|
1369 |
struct TWsGcCmdBoxTextPtr
|
sl@0
|
1370 |
{
|
sl@0
|
1371 |
TRect box;
|
sl@0
|
1372 |
TInt baselineOffset;
|
sl@0
|
1373 |
CGraphicsContext::TTextAlign horiz;
|
sl@0
|
1374 |
TInt leftMrg;
|
sl@0
|
1375 |
TInt width;
|
sl@0
|
1376 |
TDesC *text;
|
sl@0
|
1377 |
};
|
sl@0
|
1378 |
|
sl@0
|
1379 |
struct TWsGcCmdBoxTextVertical
|
sl@0
|
1380 |
{
|
sl@0
|
1381 |
inline TWsGcCmdBoxTextVertical(const TRect& aBox);
|
sl@0
|
1382 |
TRect box;
|
sl@0
|
1383 |
TInt baselineOffset;
|
sl@0
|
1384 |
TBool up;
|
sl@0
|
1385 |
CGraphicsContext::TTextAlign vert;
|
sl@0
|
1386 |
TInt margin;
|
sl@0
|
1387 |
TInt length;
|
sl@0
|
1388 |
TInt width;
|
sl@0
|
1389 |
};
|
sl@0
|
1390 |
|
sl@0
|
1391 |
struct TWsGcCmdBoxTextVerticalPtr
|
sl@0
|
1392 |
{
|
sl@0
|
1393 |
TRect box;
|
sl@0
|
1394 |
TInt baselineOffset;
|
sl@0
|
1395 |
TBool up;
|
sl@0
|
1396 |
CGraphicsContext::TTextAlign vert;
|
sl@0
|
1397 |
TInt margin;
|
sl@0
|
1398 |
TInt width;
|
sl@0
|
1399 |
TDesC *text;
|
sl@0
|
1400 |
};
|
sl@0
|
1401 |
|
sl@0
|
1402 |
struct TWsGcCmdBoxTextLocal
|
sl@0
|
1403 |
{
|
sl@0
|
1404 |
inline TWsGcCmdBoxTextLocal(const TRect &aBox);
|
sl@0
|
1405 |
TRect box;
|
sl@0
|
1406 |
TInt baselineOffset;
|
sl@0
|
1407 |
CGraphicsContext::TTextAlign horiz;
|
sl@0
|
1408 |
TInt leftMrg;
|
sl@0
|
1409 |
const TDesC *desc;
|
sl@0
|
1410 |
};
|
sl@0
|
1411 |
|
sl@0
|
1412 |
struct TWsGcCmdDrawLine
|
sl@0
|
1413 |
{
|
sl@0
|
1414 |
inline TWsGcCmdDrawLine(const TPoint &aPnt1,const TPoint &aPnt2);
|
sl@0
|
1415 |
TPoint pnt1;
|
sl@0
|
1416 |
TPoint pnt2;
|
sl@0
|
1417 |
};
|
sl@0
|
1418 |
struct TWsGcCmdDrawPolyLine
|
sl@0
|
1419 |
{
|
sl@0
|
1420 |
TInt numPoints;
|
sl@0
|
1421 |
TInt more;
|
sl@0
|
1422 |
TPoint last;
|
sl@0
|
1423 |
};
|
sl@0
|
1424 |
struct TWsGcCmdDrawArcOrPie
|
sl@0
|
1425 |
{
|
sl@0
|
1426 |
inline TWsGcCmdDrawArcOrPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd);
|
sl@0
|
1427 |
TRect rect;
|
sl@0
|
1428 |
TPoint start;
|
sl@0
|
1429 |
TPoint end;
|
sl@0
|
1430 |
};
|
sl@0
|
1431 |
struct TWsGcCmdDrawRoundRect
|
sl@0
|
1432 |
{
|
sl@0
|
1433 |
inline TWsGcCmdDrawRoundRect(const TRect &aRect,const TSize &aEllipse);
|
sl@0
|
1434 |
TRect rect;
|
sl@0
|
1435 |
TSize ellipse;
|
sl@0
|
1436 |
};
|
sl@0
|
1437 |
struct TWsGcCmdDrawPolygon
|
sl@0
|
1438 |
{
|
sl@0
|
1439 |
TInt numPoints;
|
sl@0
|
1440 |
CGraphicsContext::TFillRule fillRule;
|
sl@0
|
1441 |
};
|
sl@0
|
1442 |
struct TWsGcCmdStartSegmentedDrawPolygon
|
sl@0
|
1443 |
{
|
sl@0
|
1444 |
TInt totalNumPoints;
|
sl@0
|
1445 |
};
|
sl@0
|
1446 |
struct TWsGcCmdSegmentedDrawPolygonData
|
sl@0
|
1447 |
{
|
sl@0
|
1448 |
const TDesC8 *points;
|
sl@0
|
1449 |
TInt index;
|
sl@0
|
1450 |
TInt numPoints;
|
sl@0
|
1451 |
};
|
sl@0
|
1452 |
struct TWsGcCmdDrawSegmentedPolygon
|
sl@0
|
1453 |
{
|
sl@0
|
1454 |
CGraphicsContext::TFillRule fillRule;
|
sl@0
|
1455 |
};
|
sl@0
|
1456 |
struct TWsGcCmdDrawPolygonLocal
|
sl@0
|
1457 |
{
|
sl@0
|
1458 |
const CArrayFix<TPoint> *pointList;
|
sl@0
|
1459 |
CGraphicsContext::TFillRule fillRule;
|
sl@0
|
1460 |
};
|
sl@0
|
1461 |
struct TWsGcCmdDrawPolygonLocalBufLen
|
sl@0
|
1462 |
{
|
sl@0
|
1463 |
inline TWsGcCmdDrawPolygonLocalBufLen(const TPoint *aPointList,TInt aNumPoints, CGraphicsContext::TFillRule aFillRule);
|
sl@0
|
1464 |
const TPoint *points;
|
sl@0
|
1465 |
TInt length;
|
sl@0
|
1466 |
CGraphicsContext::TFillRule fillRule;
|
sl@0
|
1467 |
};
|
sl@0
|
1468 |
struct TWsGcCmdDrawPolyLineLocalBufLen
|
sl@0
|
1469 |
{
|
sl@0
|
1470 |
inline TWsGcCmdDrawPolyLineLocalBufLen(const TPoint *aPointList,TInt aNumPoints);
|
sl@0
|
1471 |
const TPoint *points;
|
sl@0
|
1472 |
TInt length;
|
sl@0
|
1473 |
};
|
sl@0
|
1474 |
struct TWsGcCmdDrawBitmap
|
sl@0
|
1475 |
{
|
sl@0
|
1476 |
inline TWsGcCmdDrawBitmap(const TPoint &aPoint,TInt aHandle);
|
sl@0
|
1477 |
TInt handle;
|
sl@0
|
1478 |
TPoint pos;
|
sl@0
|
1479 |
};
|
sl@0
|
1480 |
struct TWsGcCmdDrawBitmap2
|
sl@0
|
1481 |
{
|
sl@0
|
1482 |
inline TWsGcCmdDrawBitmap2(const TRect &aRect,TInt aHandle);
|
sl@0
|
1483 |
TInt handle;
|
sl@0
|
1484 |
TRect rect;
|
sl@0
|
1485 |
};
|
sl@0
|
1486 |
struct TWsGcCmdDrawBitmap3
|
sl@0
|
1487 |
{
|
sl@0
|
1488 |
inline TWsGcCmdDrawBitmap3(const TRect &aRect,TInt aHandle,const TRect &aSrcRect);
|
sl@0
|
1489 |
TInt handle;
|
sl@0
|
1490 |
TRect rect;
|
sl@0
|
1491 |
TRect srcRect;
|
sl@0
|
1492 |
};
|
sl@0
|
1493 |
struct TWsGcCmdDrawBitmapMasked
|
sl@0
|
1494 |
{
|
sl@0
|
1495 |
inline TWsGcCmdDrawBitmapMasked(const TRect &aDestRect,TInt aHandle,const TRect& aSrcRect,TInt aMaskHandle,TBool aInvertMask);
|
sl@0
|
1496 |
TInt iHandle;
|
sl@0
|
1497 |
TInt iMaskHandle;
|
sl@0
|
1498 |
TRect iRect;
|
sl@0
|
1499 |
TRect iSrcRect;
|
sl@0
|
1500 |
TBool iInvertMask;
|
sl@0
|
1501 |
};
|
sl@0
|
1502 |
struct TWsGcCmdDrawBitmapLocal
|
sl@0
|
1503 |
{
|
sl@0
|
1504 |
inline TWsGcCmdDrawBitmapLocal(const TPoint &aPos,const CFbsBitmap *aBitmap);
|
sl@0
|
1505 |
const CFbsBitmap *bitmap;
|
sl@0
|
1506 |
TPoint pos;
|
sl@0
|
1507 |
};
|
sl@0
|
1508 |
struct TWsGcCmdDrawBitmap2Local
|
sl@0
|
1509 |
{
|
sl@0
|
1510 |
inline TWsGcCmdDrawBitmap2Local(const TRect &aRect,const CFbsBitmap *aBitmap);
|
sl@0
|
1511 |
const CFbsBitmap *bitmap;
|
sl@0
|
1512 |
TRect rect;
|
sl@0
|
1513 |
};
|
sl@0
|
1514 |
struct TWsGcCmdDrawBitmap3Local
|
sl@0
|
1515 |
{
|
sl@0
|
1516 |
inline TWsGcCmdDrawBitmap3Local(const TRect &aRect,const CFbsBitmap *aBitmap, const TRect &aSrcRect);
|
sl@0
|
1517 |
const CFbsBitmap *bitmap;
|
sl@0
|
1518 |
TRect rect;
|
sl@0
|
1519 |
TRect srcRect;
|
sl@0
|
1520 |
};
|
sl@0
|
1521 |
struct TWsGcCmdDrawBitmapMaskedLocal
|
sl@0
|
1522 |
{
|
sl@0
|
1523 |
inline TWsGcCmdDrawBitmapMaskedLocal(const TRect &aDestRect,const CFbsBitmap* aBitmap,const TRect& aSrcRect,const CFbsBitmap* aMaskBitmap,TBool aInvertMask);
|
sl@0
|
1524 |
const CFbsBitmap* iBitmap;
|
sl@0
|
1525 |
const CFbsBitmap* iMaskBitmap;
|
sl@0
|
1526 |
TRect iRect;
|
sl@0
|
1527 |
TRect iSrcRect;
|
sl@0
|
1528 |
TBool iInvertMask;
|
sl@0
|
1529 |
};
|
sl@0
|
1530 |
struct TWsGcCmdCopyRect
|
sl@0
|
1531 |
{
|
sl@0
|
1532 |
inline TWsGcCmdCopyRect(const TPoint &anOffset,const TRect &aRect);
|
sl@0
|
1533 |
TRect rect; // Must be first
|
sl@0
|
1534 |
TPoint pos;
|
sl@0
|
1535 |
};
|
sl@0
|
1536 |
struct TWsGcCmdGdiBlt2
|
sl@0
|
1537 |
{
|
sl@0
|
1538 |
inline TWsGcCmdGdiBlt2(const TPoint &aPoint, TInt aHandle);
|
sl@0
|
1539 |
TInt handle;
|
sl@0
|
1540 |
TPoint pos;
|
sl@0
|
1541 |
};
|
sl@0
|
1542 |
struct TWsGcCmdGdiBlt3
|
sl@0
|
1543 |
{
|
sl@0
|
1544 |
inline TWsGcCmdGdiBlt3(const TPoint &aPoint, TInt aHandle, const TRect &aSrcRect);
|
sl@0
|
1545 |
TInt handle;
|
sl@0
|
1546 |
TPoint pos;
|
sl@0
|
1547 |
TRect rect;
|
sl@0
|
1548 |
};
|
sl@0
|
1549 |
struct TWsGcCmdGdiBlt2Local
|
sl@0
|
1550 |
{
|
sl@0
|
1551 |
inline TWsGcCmdGdiBlt2Local(const TPoint &aPoint,const CFbsBitmap *aBitmap);
|
sl@0
|
1552 |
const CFbsBitmap *bitmap;
|
sl@0
|
1553 |
TPoint pos;
|
sl@0
|
1554 |
};
|
sl@0
|
1555 |
struct TWsGcCmdGdiBlt3Local
|
sl@0
|
1556 |
{
|
sl@0
|
1557 |
inline TWsGcCmdGdiBlt3Local(const TPoint &aDestination,const CFbsBitmap *aBitmap,const TRect &aSource);
|
sl@0
|
1558 |
const CFbsBitmap *bitmap;
|
sl@0
|
1559 |
TPoint pos;
|
sl@0
|
1560 |
TRect rect;
|
sl@0
|
1561 |
};
|
sl@0
|
1562 |
struct TWsGcCmdGdiBltMaskedLocal
|
sl@0
|
1563 |
{
|
sl@0
|
1564 |
inline TWsGcCmdGdiBltMaskedLocal(const TPoint& aPoint,const CFbsBitmap* aBitmap,const TRect& aSourceRect,const CFbsBitmap* aMaskBitmap,TBool aInvertMask);
|
sl@0
|
1565 |
const CFbsBitmap *bitmap;
|
sl@0
|
1566 |
const CFbsBitmap *maskBitmap;
|
sl@0
|
1567 |
TBool invertMask;
|
sl@0
|
1568 |
TPoint pos;
|
sl@0
|
1569 |
TRect rect;
|
sl@0
|
1570 |
};
|
sl@0
|
1571 |
struct TWsGcCmdUsePatternBrush
|
sl@0
|
1572 |
{
|
sl@0
|
1573 |
TRgb *pdata;
|
sl@0
|
1574 |
TInt width;
|
sl@0
|
1575 |
TInt height;
|
sl@0
|
1576 |
TBool color;
|
sl@0
|
1577 |
};
|
sl@0
|
1578 |
struct TWsGcCmdBltMasked
|
sl@0
|
1579 |
{
|
sl@0
|
1580 |
inline TWsGcCmdBltMasked();
|
sl@0
|
1581 |
inline TWsGcCmdBltMasked(const TPoint& aPoint,TInt aBitmap,const TRect& aSourceRect,TInt aMaskBitmap,TBool aInvertMask);
|
sl@0
|
1582 |
TPoint destination;
|
sl@0
|
1583 |
TInt handle;
|
sl@0
|
1584 |
TRect source;
|
sl@0
|
1585 |
TInt maskHandle;
|
sl@0
|
1586 |
TBool invertMask;
|
sl@0
|
1587 |
};
|
sl@0
|
1588 |
struct TWsGcCmdAlphaBlendBitmaps
|
sl@0
|
1589 |
{
|
sl@0
|
1590 |
inline TWsGcCmdAlphaBlendBitmaps();
|
sl@0
|
1591 |
inline TWsGcCmdAlphaBlendBitmaps(const TPoint& aPoint, TInt aBitmap,const TRect& aSourceRect,TInt aAlpha,const TPoint& aAlphaPoint);
|
sl@0
|
1592 |
TPoint point;
|
sl@0
|
1593 |
TInt bitmapHandle;
|
sl@0
|
1594 |
TRect source;
|
sl@0
|
1595 |
TInt alphaHandle;
|
sl@0
|
1596 |
TPoint alphaPoint;
|
sl@0
|
1597 |
};
|
sl@0
|
1598 |
|
sl@0
|
1599 |
struct TWsGcCmdAlphaBlendBitmapsLocal
|
sl@0
|
1600 |
{
|
sl@0
|
1601 |
inline TWsGcCmdAlphaBlendBitmapsLocal(const TPoint& aPoint, const CFbsBitmap* aBitmap, const TRect& aSourceRect, const CFbsBitmap* aAlpha, const TPoint& aAlphaPoint);
|
sl@0
|
1602 |
TPoint point;
|
sl@0
|
1603 |
const CFbsBitmap *iBitmap;
|
sl@0
|
1604 |
TRect source;
|
sl@0
|
1605 |
const CFbsBitmap *iAlpha;
|
sl@0
|
1606 |
TPoint alphaPoint;
|
sl@0
|
1607 |
};
|
sl@0
|
1608 |
|
sl@0
|
1609 |
struct TWsGcCmdMapColors
|
sl@0
|
1610 |
{
|
sl@0
|
1611 |
inline TWsGcCmdMapColors(const TRect &aRect, TInt aNumPairs, TBool aMapForwards);
|
sl@0
|
1612 |
TRect rect;
|
sl@0
|
1613 |
TInt numPairs;
|
sl@0
|
1614 |
TBool mapForwards;
|
sl@0
|
1615 |
};
|
sl@0
|
1616 |
|
sl@0
|
1617 |
struct TWsGcCmdMapColorsLocal
|
sl@0
|
1618 |
{
|
sl@0
|
1619 |
inline TWsGcCmdMapColorsLocal(const TRect &aRect, const TRgb* aColors, TInt aNumPairs, TBool aMapForwards);
|
sl@0
|
1620 |
TRect rect;
|
sl@0
|
1621 |
const TRgb *colors;
|
sl@0
|
1622 |
TInt numPairs;
|
sl@0
|
1623 |
TBool mapForwards;
|
sl@0
|
1624 |
};
|
sl@0
|
1625 |
|
sl@0
|
1626 |
struct TWsGcCmdDrawWsGraphic
|
sl@0
|
1627 |
{
|
sl@0
|
1628 |
inline TWsGcCmdDrawWsGraphic(const TWsGraphicId& aId,const TRect& aRect);
|
sl@0
|
1629 |
TUint iFlags; // TWsGraphicBitFlags
|
sl@0
|
1630 |
TInt iId;
|
sl@0
|
1631 |
TRect iRect;
|
sl@0
|
1632 |
TInt iDataLen;
|
sl@0
|
1633 |
};
|
sl@0
|
1634 |
struct TWsGcCmdDrawTextInContext
|
sl@0
|
1635 |
{
|
sl@0
|
1636 |
inline TWsGcCmdDrawTextInContext(const TPoint &aPos, TInt aLength, TInt aStart, TInt aEnd);
|
sl@0
|
1637 |
TPoint pos;
|
sl@0
|
1638 |
TInt length;
|
sl@0
|
1639 |
TInt start;
|
sl@0
|
1640 |
TInt end;
|
sl@0
|
1641 |
};
|
sl@0
|
1642 |
struct TWsGcCmdDrawTextInContextPtr
|
sl@0
|
1643 |
{
|
sl@0
|
1644 |
TPoint pos;
|
sl@0
|
1645 |
TDesC *text;
|
sl@0
|
1646 |
TInt start;
|
sl@0
|
1647 |
TInt end;
|
sl@0
|
1648 |
};
|
sl@0
|
1649 |
struct TWsGcCmdDrawTextInContextVertical
|
sl@0
|
1650 |
{
|
sl@0
|
1651 |
inline TWsGcCmdDrawTextInContextVertical(const TPoint &aPos, TInt aLength, TBool aUp, TInt aStart, TInt aEnd);
|
sl@0
|
1652 |
TPoint pos;
|
sl@0
|
1653 |
TInt length;
|
sl@0
|
1654 |
TBool up;
|
sl@0
|
1655 |
TInt start;
|
sl@0
|
1656 |
TInt end;
|
sl@0
|
1657 |
};
|
sl@0
|
1658 |
struct TWsGcCmdDrawTextInContextVerticalPtr
|
sl@0
|
1659 |
{
|
sl@0
|
1660 |
TPoint pos;
|
sl@0
|
1661 |
TBool up;
|
sl@0
|
1662 |
TDesC *text;
|
sl@0
|
1663 |
TInt start;
|
sl@0
|
1664 |
TInt end;
|
sl@0
|
1665 |
inline TWsGcCmdDrawTextInContextVerticalPtr(const TDesC *aDesc, const TPoint& aPos, const TBool aUp, const TInt aStart, const TInt aEnd);
|
sl@0
|
1666 |
};
|
sl@0
|
1667 |
struct TWsGcCmdDrawTextInContextLocal
|
sl@0
|
1668 |
{
|
sl@0
|
1669 |
inline TWsGcCmdDrawTextInContextLocal(const TPoint &aPos,const TDesC *aDesc,const TInt aStart,const TInt aEnd);
|
sl@0
|
1670 |
TPoint pos;
|
sl@0
|
1671 |
const TDesC *desc;
|
sl@0
|
1672 |
TInt start;
|
sl@0
|
1673 |
TInt end;
|
sl@0
|
1674 |
};
|
sl@0
|
1675 |
struct TWsGcCmdBoxTextInContextOptimised1
|
sl@0
|
1676 |
{
|
sl@0
|
1677 |
inline TWsGcCmdBoxTextInContextOptimised1(const TRect &aRect,TInt aBaselineOffset,TInt alength, TInt aStart, TInt aEnd);
|
sl@0
|
1678 |
TRect box;
|
sl@0
|
1679 |
TInt baselineOffset;
|
sl@0
|
1680 |
TInt length;
|
sl@0
|
1681 |
TInt start;
|
sl@0
|
1682 |
TInt end;
|
sl@0
|
1683 |
};
|
sl@0
|
1684 |
struct TWsGcCmdBoxTextInContextOptimised2
|
sl@0
|
1685 |
{
|
sl@0
|
1686 |
inline TWsGcCmdBoxTextInContextOptimised2(const TRect &aRect,TInt aBaselineOffset,CGraphicsContext::TTextAlign aHoriz,TInt aLeftMrg,TInt aLength, TInt aStart, TInt aEnd);
|
sl@0
|
1687 |
TRect box;
|
sl@0
|
1688 |
TInt baselineOffset;
|
sl@0
|
1689 |
CGraphicsContext::TTextAlign horiz;
|
sl@0
|
1690 |
TInt leftMrg;
|
sl@0
|
1691 |
TInt length;
|
sl@0
|
1692 |
TInt start;
|
sl@0
|
1693 |
TInt end;
|
sl@0
|
1694 |
};
|
sl@0
|
1695 |
struct TWsGcCmdBoxTextInContext
|
sl@0
|
1696 |
{
|
sl@0
|
1697 |
inline TWsGcCmdBoxTextInContext(const TRect &aRect,TInt aBaselineOffset,CGraphicsContext::TTextAlign aHoriz,TInt aLeftMrg,TInt aLength,TInt aWidth, TInt aStart, TInt aEnd);
|
sl@0
|
1698 |
TRect box;
|
sl@0
|
1699 |
TInt baselineOffset;
|
sl@0
|
1700 |
CGraphicsContext::TTextAlign horiz;
|
sl@0
|
1701 |
TInt leftMrg;
|
sl@0
|
1702 |
TInt length;
|
sl@0
|
1703 |
TInt width;
|
sl@0
|
1704 |
TInt start;
|
sl@0
|
1705 |
TInt end;
|
sl@0
|
1706 |
};
|
sl@0
|
1707 |
struct TWsGcCmdBoxTextInContextPtr
|
sl@0
|
1708 |
{
|
sl@0
|
1709 |
TRect box;
|
sl@0
|
1710 |
TInt baselineOffset;
|
sl@0
|
1711 |
CGraphicsContext::TTextAlign horiz;
|
sl@0
|
1712 |
TInt leftMrg;
|
sl@0
|
1713 |
TInt width;
|
sl@0
|
1714 |
TDesC *text;
|
sl@0
|
1715 |
TInt start;
|
sl@0
|
1716 |
TInt end;
|
sl@0
|
1717 |
};
|
sl@0
|
1718 |
struct TWsGcCmdBoxTextInContextVertical
|
sl@0
|
1719 |
{
|
sl@0
|
1720 |
inline TWsGcCmdBoxTextInContextVertical(const TRect& aBox);
|
sl@0
|
1721 |
TRect box;
|
sl@0
|
1722 |
TInt baselineOffset;
|
sl@0
|
1723 |
TBool up;
|
sl@0
|
1724 |
CGraphicsContext::TTextAlign vert;
|
sl@0
|
1725 |
TInt margin;
|
sl@0
|
1726 |
TInt length;
|
sl@0
|
1727 |
TInt width;
|
sl@0
|
1728 |
TInt start;
|
sl@0
|
1729 |
TInt end;
|
sl@0
|
1730 |
};
|
sl@0
|
1731 |
struct TWsGcCmdBoxTextInContextVerticalPtr
|
sl@0
|
1732 |
{
|
sl@0
|
1733 |
TRect box;
|
sl@0
|
1734 |
TInt baselineOffset;
|
sl@0
|
1735 |
TBool up;
|
sl@0
|
1736 |
CGraphicsContext::TTextAlign vert;
|
sl@0
|
1737 |
TInt margin;
|
sl@0
|
1738 |
TInt width;
|
sl@0
|
1739 |
TInt start;
|
sl@0
|
1740 |
TInt end;
|
sl@0
|
1741 |
TDesC *text;
|
sl@0
|
1742 |
};
|
sl@0
|
1743 |
struct TWsGcCmdBoxTextInContextLocal
|
sl@0
|
1744 |
{
|
sl@0
|
1745 |
inline TWsGcCmdBoxTextInContextLocal(const TRect &aBox,TInt aStart,TInt aEnd);
|
sl@0
|
1746 |
TRect box;
|
sl@0
|
1747 |
TInt baselineOffset;
|
sl@0
|
1748 |
CGraphicsContext::TTextAlign horiz;
|
sl@0
|
1749 |
TInt leftMrg;
|
sl@0
|
1750 |
TInt start;
|
sl@0
|
1751 |
TInt end;
|
sl@0
|
1752 |
const TDesC *desc;
|
sl@0
|
1753 |
};
|
sl@0
|
1754 |
struct TWsGcCmdDrawResourceToPos
|
sl@0
|
1755 |
{
|
sl@0
|
1756 |
inline TWsGcCmdDrawResourceToPos(TInt aWsHandle, const TPoint &aPos, CWindowGc::TGraphicsRotation aRotation);
|
sl@0
|
1757 |
TInt wsHandle;
|
sl@0
|
1758 |
TPoint pos;
|
sl@0
|
1759 |
CWindowGc::TGraphicsRotation rotation;
|
sl@0
|
1760 |
};
|
sl@0
|
1761 |
struct TWsGcCmdDrawResourceToRect
|
sl@0
|
1762 |
{
|
sl@0
|
1763 |
inline TWsGcCmdDrawResourceToRect(TInt aWsHandle, const TRect &aRect, CWindowGc::TGraphicsRotation aRotation);
|
sl@0
|
1764 |
TInt wsHandle;
|
sl@0
|
1765 |
TRect rect;
|
sl@0
|
1766 |
CWindowGc::TGraphicsRotation rotation;
|
sl@0
|
1767 |
};
|
sl@0
|
1768 |
struct TWsGcCmdDrawResourceFromRectToRect
|
sl@0
|
1769 |
{
|
sl@0
|
1770 |
inline TWsGcCmdDrawResourceFromRectToRect(TInt aWsHandle, const TRect &aRectDest, const TRect &aRectSrc, CWindowGc::TGraphicsRotation aRotation);
|
sl@0
|
1771 |
TInt wsHandle;
|
sl@0
|
1772 |
TRect rectDest;
|
sl@0
|
1773 |
TRect rectSrc;
|
sl@0
|
1774 |
CWindowGc::TGraphicsRotation rotation;
|
sl@0
|
1775 |
};
|
sl@0
|
1776 |
struct TWsGcCmdDrawResourceWithData
|
sl@0
|
1777 |
{
|
sl@0
|
1778 |
inline TWsGcCmdDrawResourceWithData(TInt aWsHandle, const TRect &aRect, const TDesC8* aDesc);
|
sl@0
|
1779 |
TInt wsHandle;
|
sl@0
|
1780 |
TRect rect;
|
sl@0
|
1781 |
const TDesC8* desc;
|
sl@0
|
1782 |
};
|
sl@0
|
1783 |
|
sl@0
|
1784 |
union TWsGcCmdUnion
|
sl@0
|
1785 |
{
|
sl@0
|
1786 |
const TAny *any;
|
sl@0
|
1787 |
const TAny **pAny;
|
sl@0
|
1788 |
const TRect *Rect;
|
sl@0
|
1789 |
const TUint *UInt;
|
sl@0
|
1790 |
const TInt *Int;
|
sl@0
|
1791 |
const TInt *handle;
|
sl@0
|
1792 |
const TBool *Bool;
|
sl@0
|
1793 |
const TRgb *rgb;
|
sl@0
|
1794 |
const TPoint *Point;
|
sl@0
|
1795 |
const TSize *Size;
|
sl@0
|
1796 |
const TFontUnderline *SetUnderlineStyle;
|
sl@0
|
1797 |
const TFontStrikethrough *SetStrikethroughStyle;
|
sl@0
|
1798 |
const TWsGcCmdDrawText *DrawText;
|
sl@0
|
1799 |
const TWsGcCmdDrawTextInContext *DrawTextInContext;
|
sl@0
|
1800 |
const TWsGcCmdDrawTextVertical *DrawTextVertical;
|
sl@0
|
1801 |
const TWsGcCmdDrawTextInContextVertical *DrawTextInContextVertical;
|
sl@0
|
1802 |
const TWsGcCmdDrawLine *DrawLine;
|
sl@0
|
1803 |
const TWsGcCmdDrawPolyLine *PolyLine;
|
sl@0
|
1804 |
const TWsGcCmdStartSegmentedDrawPolygon *StartSegmentedDrawPolygon;
|
sl@0
|
1805 |
const TWsGcCmdSegmentedDrawPolygonData *SegmentedDrawPolygonData;
|
sl@0
|
1806 |
const TWsGcCmdDrawSegmentedPolygon *DrawSegmentedPolygon;
|
sl@0
|
1807 |
const TWsGcCmdDrawPolygonLocal *DrawPolygonLocal;
|
sl@0
|
1808 |
const TWsGcCmdDrawPolygonLocalBufLen *DrawPolygonLocalBufLen;
|
sl@0
|
1809 |
const TWsGcCmdDrawPolyLineLocalBufLen *DrawPolyLineLocalBufLen;
|
sl@0
|
1810 |
const TWsGcCmdDrawArcOrPie *ArcOrPie;
|
sl@0
|
1811 |
const TWsGcCmdDrawRoundRect *RoundRect;
|
sl@0
|
1812 |
const TWsGcCmdDrawPolygon *Polygon;
|
sl@0
|
1813 |
const TWsGcCmdDrawBitmap *Bitmap;
|
sl@0
|
1814 |
const TWsGcCmdDrawBitmap2 *Bitmap2;
|
sl@0
|
1815 |
const TWsGcCmdDrawBitmap3 *Bitmap3;
|
sl@0
|
1816 |
const TWsGcCmdDrawBitmapMasked* iBitmapMasked;
|
sl@0
|
1817 |
const TWsGcCmdCopyRect *CopyRect;
|
sl@0
|
1818 |
const TWsGcCmdGdiBlt2 *GdiBlt2;
|
sl@0
|
1819 |
const TWsGcCmdGdiBlt3 *GdiBlt3;
|
sl@0
|
1820 |
const TWsGcCmdUsePatternBrush *UsePatternBrush;
|
sl@0
|
1821 |
const TWsGcCmdBltMasked *GdiBltMasked;
|
sl@0
|
1822 |
const TWsGcCmdSetClippingRegion *SetClippingRegion;
|
sl@0
|
1823 |
const TWsGcCmdBoxText *BoxText;
|
sl@0
|
1824 |
const TWsGcCmdBoxTextInContext *BoxTextInContext;
|
sl@0
|
1825 |
const TWsGcCmdBoxTextOptimised1 *BoxTextO1;
|
sl@0
|
1826 |
const TWsGcCmdBoxTextOptimised2 *BoxTextO2;
|
sl@0
|
1827 |
const TWsGcCmdBoxTextInContextOptimised1 *BoxTextInContextO1;
|
sl@0
|
1828 |
const TWsGcCmdBoxTextInContextOptimised2 *BoxTextInContextO2;
|
sl@0
|
1829 |
const TWsGcCmdDrawTextLocal *DrawTextLocal;
|
sl@0
|
1830 |
const TWsGcCmdDrawTextInContextLocal *DrawTextInContextLocal;
|
sl@0
|
1831 |
const TWsGcCmdBoxTextVertical *DrawBoxTextVertical;
|
sl@0
|
1832 |
const TWsGcCmdBoxTextInContextVertical *DrawBoxTextInContextVertical;
|
sl@0
|
1833 |
const TWsGcCmdBoxTextLocal *BoxTextLocal;
|
sl@0
|
1834 |
const TWsGcCmdBoxTextInContextLocal *BoxTextInContextLocal;
|
sl@0
|
1835 |
const TWsGcCmdGdiBlt2Local *GdiBlt2Local;
|
sl@0
|
1836 |
const TWsGcCmdGdiBlt3Local *GdiBlt3Local;
|
sl@0
|
1837 |
const TWsGcCmdGdiBltMaskedLocal *GdiBltMaskedLocal;
|
sl@0
|
1838 |
const TWsGcCmdDrawBitmapLocal *BitmapLocal;
|
sl@0
|
1839 |
const TWsGcCmdDrawBitmap2Local *Bitmap2Local;
|
sl@0
|
1840 |
const TWsGcCmdDrawBitmap3Local *Bitmap3Local;
|
sl@0
|
1841 |
const TWsGcCmdDrawBitmapMaskedLocal* iBitmapMaskedLocal;
|
sl@0
|
1842 |
const CArrayFix<TPoint> *PointList;
|
sl@0
|
1843 |
const TWsGcCmdSetJustification *SetJustification;
|
sl@0
|
1844 |
const TWsGcCmdMapColors *MapColors;
|
sl@0
|
1845 |
TWsGcCmdDrawTextPtr *DrawTextPtr;
|
sl@0
|
1846 |
TWsGcCmdDrawTextVerticalPtr *DrawTextVerticalPtr;
|
sl@0
|
1847 |
TWsGcCmdDrawTextInContextVerticalPtr *DrawTextInContextVerticalPtr;
|
sl@0
|
1848 |
TWsGcCmdBoxTextPtr *DrawBoxTextPtr;
|
sl@0
|
1849 |
TWsGcCmdBoxTextInContextPtr *DrawBoxTextInContextPtr;
|
sl@0
|
1850 |
TWsGcCmdBoxTextVerticalPtr *DrawBoxTextVerticalPtr;
|
sl@0
|
1851 |
TWsGcCmdBoxTextInContextVerticalPtr *DrawBoxTextInContextVerticalPtr;
|
sl@0
|
1852 |
TWsGcCmdDrawTextInContextPtr *DrawTextInContextPtr;
|
sl@0
|
1853 |
const TWsGcLargeStruct *LargeStruct;
|
sl@0
|
1854 |
const TWsGcCmdAlphaBlendBitmaps *AlphaBlendBitmaps;
|
sl@0
|
1855 |
const TWsGcCmdAlphaBlendBitmapsLocal *AlphaBlendBitmapsLocal;
|
sl@0
|
1856 |
const TWsGcCmdMapColorsLocal *MapColorsLocal;
|
sl@0
|
1857 |
const TWsGcCmdDrawWsGraphic* WsGraphic;
|
sl@0
|
1858 |
const TWsGcCmdDrawResourceToPos* DrawWsResourceToPos;
|
sl@0
|
1859 |
const TWsGcCmdDrawResourceToRect* DrawWsResourceToRect;
|
sl@0
|
1860 |
const TWsGcCmdDrawResourceFromRectToRect* DrawWsResourceFromRectToRect;
|
sl@0
|
1861 |
const TWsGcCmdDrawResourceWithData* DrawWsResourceWithData;
|
sl@0
|
1862 |
};
|
sl@0
|
1863 |
|
sl@0
|
1864 |
struct TWsSdCmdSetScreenRotation
|
sl@0
|
1865 |
{
|
sl@0
|
1866 |
inline TWsSdCmdSetScreenRotation(TInt aMode, CFbsBitGc::TGraphicsOrientation aRotation);
|
sl@0
|
1867 |
TInt mode;
|
sl@0
|
1868 |
CFbsBitGc::TGraphicsOrientation rotation;
|
sl@0
|
1869 |
};
|
sl@0
|
1870 |
struct TWsSdCmdGetScanLine
|
sl@0
|
1871 |
{
|
sl@0
|
1872 |
inline TWsSdCmdGetScanLine(const TPoint &aPos, TInt aLen, TDisplayMode aDispMode);
|
sl@0
|
1873 |
TPoint pos;
|
sl@0
|
1874 |
TInt len;
|
sl@0
|
1875 |
TDisplayMode dispMode;
|
sl@0
|
1876 |
};
|
sl@0
|
1877 |
struct TWsSdCmdRectCompare
|
sl@0
|
1878 |
{
|
sl@0
|
1879 |
inline TWsSdCmdRectCompare(const TRect &aRect1,const TRect &aRect2,TUint aFlags);
|
sl@0
|
1880 |
TRect rect1;
|
sl@0
|
1881 |
TRect rect2;
|
sl@0
|
1882 |
TUint flags;
|
sl@0
|
1883 |
};
|
sl@0
|
1884 |
struct TWsSdCmdCopyScreenToBitmap
|
sl@0
|
1885 |
{
|
sl@0
|
1886 |
inline TWsSdCmdCopyScreenToBitmap(TInt aHandle);
|
sl@0
|
1887 |
TInt handle;
|
sl@0
|
1888 |
};
|
sl@0
|
1889 |
struct TWsSdCmdCopyScreenToBitmap2
|
sl@0
|
1890 |
{
|
sl@0
|
1891 |
inline TWsSdCmdCopyScreenToBitmap2(const TRect &aRect, TInt aHandle);
|
sl@0
|
1892 |
TRect rect;
|
sl@0
|
1893 |
TInt handle;
|
sl@0
|
1894 |
};
|
sl@0
|
1895 |
struct TWsSdCmdSetPalette
|
sl@0
|
1896 |
{
|
sl@0
|
1897 |
inline TWsSdCmdSetPalette(TPtr8& aPtr);
|
sl@0
|
1898 |
TPtr8* ptr;
|
sl@0
|
1899 |
TInt length;
|
sl@0
|
1900 |
};
|
sl@0
|
1901 |
struct TWsSdCmdMapCoordinates
|
sl@0
|
1902 |
{
|
sl@0
|
1903 |
inline TWsSdCmdMapCoordinates(const TRect &aSource, TCoordinateSpace aSourceSpace, TCoordinateSpace aTargetSpace);
|
sl@0
|
1904 |
TRect sourceRect;
|
sl@0
|
1905 |
TCoordinateSpace sourceSpace;
|
sl@0
|
1906 |
TCoordinateSpace targetSpace;
|
sl@0
|
1907 |
};
|
sl@0
|
1908 |
union TWsSdCmdUnion
|
sl@0
|
1909 |
{
|
sl@0
|
1910 |
const TAny *any;
|
sl@0
|
1911 |
const TAny **pAny;
|
sl@0
|
1912 |
const TUint *UInt;
|
sl@0
|
1913 |
const TInt *Int;
|
sl@0
|
1914 |
const TPoint *Point;
|
sl@0
|
1915 |
const TPixelsTwipsAndRotation *PixelsTwipsAndRotation;
|
sl@0
|
1916 |
const TPixelsAndRotation *PixelsAndRotation;
|
sl@0
|
1917 |
const TWsSdCmdSetScreenRotation *SetScreenRotation;
|
sl@0
|
1918 |
const TWsSdCmdGetScanLine *GetScanLine;
|
sl@0
|
1919 |
const TWsSdCmdRectCompare *RectCompare;
|
sl@0
|
1920 |
const TWsSdCmdCopyScreenToBitmap *CopyScreenToBitmap;
|
sl@0
|
1921 |
const TWsSdCmdCopyScreenToBitmap2 *CopyScreenToBitmap2;
|
sl@0
|
1922 |
const TWsSdCmdSetPalette *SetPalette;
|
sl@0
|
1923 |
const TSizeMode *ScreenSizeMode;
|
sl@0
|
1924 |
const TDisplayConfiguration *DisplayConfiguration;
|
sl@0
|
1925 |
const TWsSdCmdMapCoordinates *MapCoordinates;
|
sl@0
|
1926 |
};
|
sl@0
|
1927 |
|
sl@0
|
1928 |
union TWsAnimDllCmdUnion
|
sl@0
|
1929 |
{
|
sl@0
|
1930 |
const TAny *any;
|
sl@0
|
1931 |
const TUint *UInt;
|
sl@0
|
1932 |
};
|
sl@0
|
1933 |
|
sl@0
|
1934 |
struct TWsSpriteCmdUpdateMember
|
sl@0
|
1935 |
{
|
sl@0
|
1936 |
inline TWsSpriteCmdUpdateMember(TInt aIndex,const TSpriteMember &aData);
|
sl@0
|
1937 |
TInt index;
|
sl@0
|
1938 |
TCmdSpriteMember data;
|
sl@0
|
1939 |
};
|
sl@0
|
1940 |
union TWsSpriteCmdUnion
|
sl@0
|
1941 |
{
|
sl@0
|
1942 |
const TAny *any;
|
sl@0
|
1943 |
const TPoint *Point;
|
sl@0
|
1944 |
const TCmdSpriteMember *SpriteMember;
|
sl@0
|
1945 |
const TWsSpriteCmdUpdateMember *UpdateMember;
|
sl@0
|
1946 |
};
|
sl@0
|
1947 |
|
sl@0
|
1948 |
struct TWsDirectCmdRequestReply
|
sl@0
|
1949 |
{
|
sl@0
|
1950 |
inline TWsDirectCmdRequestReply();
|
sl@0
|
1951 |
inline TWsDirectCmdRequestReply(TThreadId aId,TRequestStatus* aRequest);
|
sl@0
|
1952 |
TThreadId id;
|
sl@0
|
1953 |
TRequestStatus* request;
|
sl@0
|
1954 |
};
|
sl@0
|
1955 |
union TWsDirectCmdUnion
|
sl@0
|
1956 |
{
|
sl@0
|
1957 |
const TAny *any;
|
sl@0
|
1958 |
const TInt *Int;
|
sl@0
|
1959 |
};
|
sl@0
|
1960 |
|
sl@0
|
1961 |
union TWsClickCmdUnion
|
sl@0
|
1962 |
{
|
sl@0
|
1963 |
const TAny *any;
|
sl@0
|
1964 |
const TInt *Int;
|
sl@0
|
1965 |
const TBool *Bool;
|
sl@0
|
1966 |
};
|
sl@0
|
1967 |
|
sl@0
|
1968 |
// Client side Panics and asserts
|
sl@0
|
1969 |
|
sl@0
|
1970 |
enum TW32Assert // used for w32 code errors
|
sl@0
|
1971 |
{
|
sl@0
|
1972 |
EW32AssertOddLengthData,
|
sl@0
|
1973 |
EW32AssertNotImplemented,
|
sl@0
|
1974 |
EW32AssertIllegalOpcode,
|
sl@0
|
1975 |
EW32AssertDirectMisuse,
|
sl@0
|
1976 |
EW32AssertBufferLogic,
|
sl@0
|
1977 |
EW32AssertUnexpectedOutOfRangePointerNumber, // Used for an out-of-range pointer number error within the old API's which doesn't take a pointer number.
|
sl@0
|
1978 |
EW32AssertWindowSizeCacheFailure,
|
sl@0
|
1979 |
};
|
sl@0
|
1980 |
|
sl@0
|
1981 |
enum TW32Panic // used for application errors
|
sl@0
|
1982 |
{
|
sl@0
|
1983 |
EW32PanicReConnect, //An attempt was made to reconnect to the window server using RWsSession::Connect() without having closed the existing one first
|
sl@0
|
1984 |
EW32PanicWindowAlreadyClosed, //Not used
|
sl@0
|
1985 |
EW32PanicGcAlreadyClosed, //Not used
|
sl@0
|
1986 |
EW32PanicPaletteAlreadyClosed, //Not used
|
sl@0
|
1987 |
EW32PanicMapColorsTooManyPairs, //Raised by CWindowGc::MapColors() when its aNumPairs argument has a value greater than 16.
|
sl@0
|
1988 |
EW32PanicDataExceedsBufferLength, //A single string is too long to fit into the buffer.
|
sl@0
|
1989 |
EW32PanicNullPalette, //CWsScreenDevice::SetCustomPalette() was called with a NULL pointer.
|
sl@0
|
1990 |
EW32PanicSilentFail, //The caller would not know that the function was not successful
|
sl@0
|
1991 |
EW32PanicDirectMisuse, //A direct screen access function is being called out of turn
|
sl@0
|
1992 |
EW32PanicInvalidRegion, //An attempt to pass an invalid region to window server
|
sl@0
|
1993 |
EW32PanicUsingReservedIpcSlot, //Raised when the Client is trying to use a wrong IpcSlot. The first slot if raised by: RAnim::CommandReply or RAnimDll::Construct. Either the first or the second if raised by RAnim::AsyncCommandReply
|
sl@0
|
1994 |
EW32PanicNullArray, //A Function has been called with a NULL array pointer when it should not be
|
sl@0
|
1995 |
EW32PanicGraphicAlreadyConstructed, //Not used
|
sl@0
|
1996 |
EW32PanicGraphicOrphaned, //The CWsGraphic::CManager's RPointerArray<CWsGraphic> has still pointers to CWsGraphic left inside when it should be empty
|
sl@0
|
1997 |
EW32PanicGraphicInternal, //Raised when one of the CWsGraphic::CManager's member has an inconsistent value (i.e. NULL when it should not be and viceversa)
|
sl@0
|
1998 |
EW32PanicGraphicBadBuffer, //Raised if RWsGraphicMsgBuf has been passed an out of bounds index or an incorret type message
|
sl@0
|
1999 |
EW32PanicGraphicNullData, //Raised when trying to send an empty TWsClCmdGdSendMessage
|
sl@0
|
2000 |
EW32PanicFunctionNotSupported, //Operation not supported in the current OS distribution
|
sl@0
|
2001 |
EW32PanicInvalidParameter, // Raised when an invalid parameter is passed to a function
|
sl@0
|
2002 |
EW32PanicGraphicDoubleConstruction, //Raised when Construct() is called on an already constructed client-side object
|
sl@0
|
2003 |
EW32PanicBadClientInterface, //Debug: Trying to use an interface that is not initialised
|
sl@0
|
2004 |
EW32PanicSizeNotExpected, //Debug: Returned data does not match expected sizes or granularity
|
sl@0
|
2005 |
EW32PanicStringTooLong, //A string is longer than it is allowed to be
|
sl@0
|
2006 |
};
|
sl@0
|
2007 |
|
sl@0
|
2008 |
enum WservShutdown
|
sl@0
|
2009 |
{EWservShutdownCheck=0x13572468}; // Parameter to EWservMessShutdown to stop accidental shutdowns
|
sl@0
|
2010 |
|
sl@0
|
2011 |
enum WservMessages
|
sl@0
|
2012 |
{
|
sl@0
|
2013 |
EWservMessCommandBuffer,
|
sl@0
|
2014 |
EWservMessShutdown,
|
sl@0
|
2015 |
EWservMessInit,
|
sl@0
|
2016 |
EWservMessFinish,
|
sl@0
|
2017 |
EWservMessSyncMsgBuf,
|
sl@0
|
2018 |
EWservMessAsynchronousService=0x010000,
|
sl@0
|
2019 |
EWservMessAnimDllAsyncCommand=0x100000,
|
sl@0
|
2020 |
};
|
sl@0
|
2021 |
|
sl@0
|
2022 |
enum WH_HANDLES
|
sl@0
|
2023 |
{
|
sl@0
|
2024 |
WS_HANDLE_ROOT_WINDOW,
|
sl@0
|
2025 |
WS_HANDLE_CLIENT,
|
sl@0
|
2026 |
WS_HANDLE_WINDOW,
|
sl@0
|
2027 |
WS_HANDLE_GROUP_WINDOW,
|
sl@0
|
2028 |
WS_HANDLE_GC,
|
sl@0
|
2029 |
WS_HANDLE_CAPTURE_KEY,
|
sl@0
|
2030 |
WS_HANDLE_ANIM_DLL,
|
sl@0
|
2031 |
WS_HANDLE_SCREEN_DEVICE,
|
sl@0
|
2032 |
WS_HANDLE_SPRITE,
|
sl@0
|
2033 |
WS_HANDLE_POINTER_CURSOR,
|
sl@0
|
2034 |
WS_HANDLE_BITMAP,
|
sl@0
|
2035 |
WS_HANDLE_DIRECT,
|
sl@0
|
2036 |
WS_HANDLE_CLICK,
|
sl@0
|
2037 |
WS_HANDLE_TEXT_CURSOR,
|
sl@0
|
2038 |
WS_HANDLE_GRAPHIC_DRAWER,
|
sl@0
|
2039 |
WS_HANDLE_DRAWABLE_SOURCE,
|
sl@0
|
2040 |
WS_HANDLE_CAPTURE_KEY_UPDOWNS,
|
sl@0
|
2041 |
WS_HANDLE_CAPTURE_LONG_KEY,
|
sl@0
|
2042 |
};
|
sl@0
|
2043 |
|
sl@0
|
2044 |
enum TClientPanic
|
sl@0
|
2045 |
{
|
sl@0
|
2046 |
EWservNoPanic=0, // Dummy Value used to indicate no panic
|
sl@0
|
2047 |
EWservPanicOpcode=1, // Out of range opcode
|
sl@0
|
2048 |
EWservPanicBuffer=2, // Invalid command buffer
|
sl@0
|
2049 |
EWservPanicHandle=3, // Invalid handle
|
sl@0
|
2050 |
EWservPanicNullHandle=4, // Null handle given as a handle value
|
sl@0
|
2051 |
EWservPanicDrawable=5, // Invalid drawable handle
|
sl@0
|
2052 |
EWservPanicWindow=6, // Invalid window handle
|
sl@0
|
2053 |
EWservPanicBitmap=7, // Invalid bitmap handle
|
sl@0
|
2054 |
EWservPanicReadOutstanding=8, // Event read already outstanding
|
sl@0
|
2055 |
EWservPanicGcNotActive=9, // Tried use a non-active GC
|
sl@0
|
2056 |
EWservPanicGcActive=10, // Tried to activate an already active GC
|
sl@0
|
2057 |
EWservPanicWindowActive=11, // Window already active
|
sl@0
|
2058 |
EWservPanicRedrawActive=12, // Already inside a begin/end redraw pair
|
sl@0
|
2059 |
EWservPanicFont=13, // Invalid font handle
|
sl@0
|
2060 |
EWservPanicNoFont=14, // Printing with no active font
|
sl@0
|
2061 |
EWservPanicInvalidTextCursor=15, // Tried to set invalid text cursor type
|
sl@0
|
2062 |
EWservPanicReadOnlyDrawable=16, // Attempted to write to a read only drawable
|
sl@0
|
2063 |
EWservPanicInvalidRgb=17, // Invalid RGB passed to window server
|
sl@0
|
2064 |
EWservPanicPatternBrush=18, // Invalid pattern brush
|
sl@0
|
2065 |
EWservPanicNoBrush=19, // Trying to paint without a brush
|
sl@0
|
2066 |
EWservPanicUninitialisedBitmap=20, // Trying to use an uninitialised bitmap
|
sl@0
|
2067 |
EWservPanicDestroy=21, // Trying to do a client destroy function on an illegal handle
|
sl@0
|
2068 |
EWservPanicAnimDll=22, // Panic from Animator DLL
|
sl@0
|
2069 |
EWservPanicAnim=23, // Invalid Anim object handle
|
sl@0
|
2070 |
EWservPanicAnimLeave=24, // Leave from a non-leaving anim function
|
sl@0
|
2071 |
EWservPanicKeyOfDeath=25, // Killed by the key of death!!!!
|
sl@0
|
2072 |
EWservPanicTmpFont=26, // Tried to reuse tmp font
|
sl@0
|
2073 |
EWservPanicNoTmpFont=27, // Tried to free tmp font when not allocated
|
sl@0
|
2074 |
EWservPanicBadPolyData=28, // Inconsistent polygon/polyline data
|
sl@0
|
2075 |
EWservPanicNegativeShadowHeight=29, // Tried to set a negative shadow height
|
sl@0
|
2076 |
EWservPanicRedrawToNonRedrawWindow=30, // Tried to redraw a non-redrawable window
|
sl@0
|
2077 |
EWservPanicRedrawType=31, // Init message contained invalid redraw type
|
sl@0
|
2078 |
EWservPanicInvalidRegionCount=32, // InvalidRegion was passed a zero count
|
sl@0
|
2079 |
EWservPanicNoReplyBuffer=33, // No reply buffer was passed to a function that requires one
|
sl@0
|
2080 |
EWservPanicBackedUpWindowGcActive=34, // Attempting to reactive a backed up window's GC
|
sl@0
|
2081 |
EWservPanicCornerParams=35, // Invalid corner type or flags
|
sl@0
|
2082 |
EWservPanicBitmapAccess=36, // Bitmap access not enabled on a backed up window
|
sl@0
|
2083 |
EWservPanicDescriptor=37, // Bad descriptor passed
|
sl@0
|
2084 |
EWservPanicWindowDestroyed=38, // Accessing a sprite after it's window has been destroyed
|
sl@0
|
2085 |
EWservPanicUnsignalledEventData=39, // A request for event data without a signal for that data being made
|
sl@0
|
2086 |
EWservPanicMaskSize=40, // The mask for a sprite is smaller then the bitmap
|
sl@0
|
2087 |
EWservPanicSprite=41, // bad sprite handle
|
sl@0
|
2088 |
EWservPanicNotSystemPointerCursorListOwner=42, // Trying to set/clear a system pointer cursor when not owning the list
|
sl@0
|
2089 |
EWservPanicNoPointerBuffer=43, // Enabling the pointer buffer when there isn't one allocated
|
sl@0
|
2090 |
EWservPanicBufferPtr=44, // Invalid Buf,Len in the window server command buffer
|
sl@0
|
2091 |
EWservPanicHotKey=45, // Invalid hot key type
|
sl@0
|
2092 |
EWservPanicPassword=46, // Invalid call to PasswordEntered()
|
sl@0
|
2093 |
EWservPanicSetComputeMode=47, // Invalid value in call to SetComputeMode()
|
sl@0
|
2094 |
EWservPanicBackupDisplayMode=48, // Trying to set the display mode of a backed up window
|
sl@0
|
2095 |
EWservPanicFetchMessage=49, // Trying to fetch a message when one has not been signalled
|
sl@0
|
2096 |
EWservPanicReInitialise=50, // Client sent a second Init() message
|
sl@0
|
2097 |
EWservPanicNoWindowSpecifed=51, // Trying to get off messages without specifing a window to send them to
|
sl@0
|
2098 |
EWservPanicParentDeleted=52, // Setting size, pos or extent of a window whose parent or ancestor has been deleted
|
sl@0
|
2099 |
EWservPanicResetingDefaultOwner=53, // Calling the function RWindowGroup::DefaultOwningWindow() twice on the same group window
|
sl@0
|
2100 |
EWservPanicScreenModeNumber=54, // Calling an API function with an illegal screen size mode index
|
sl@0
|
2101 |
EWservPanicScreenEnforcementMode=55, // Illegal screen mode enforcement mode
|
sl@0
|
2102 |
EWservPanicEventType=56, // Must be a pointer event
|
sl@0
|
2103 |
EWservPanicRotation=57, // Not valid rotation
|
sl@0
|
2104 |
EWservPanicNotTopClient=58, // Can only call this on a window whoes parent is a group window
|
sl@0
|
2105 |
EWservPanicDirectMisuse=59, // Trying to do things to a Direct Screen Access object in the wrong order
|
sl@0
|
2106 |
EWservPanicDuplicateHandle=60, // Client Handle already in use
|
sl@0
|
2107 |
EWservPanicNoCustomTextCursor=61, // The custom text cursor has not been set
|
sl@0
|
2108 |
EWservPanicCustomTextCursorAlign=62, // Illegal custom text cursor allignment used
|
sl@0
|
2109 |
EWservPanicNoSpriteMember=63, // Use of a sprite that does not have any member set.
|
sl@0
|
2110 |
EWservPanicTransparencyObjNotCreated=64,// Trying to set a transparency operation to a window that has not been enabled to be transparent.
|
sl@0
|
2111 |
EWservPanicScreenNumber=65, // Calling an multiple screen API function with an illegal screen number
|
sl@0
|
2112 |
EWservPanicPermissionDenied=66,
|
sl@0
|
2113 |
EWservPanicFunctionLeave=67, // A leave occured while processing command in the middle of the buffer
|
sl@0
|
2114 |
EWservPanicGroupWinScreenDeviceDeleted=68, //Trying to use a group window with a deleted Screen Device
|
sl@0
|
2115 |
EWservPanicDrawCommandsInvalidState=69, //Redraw storing cannot be disabled for transparent window
|
sl@0
|
2116 |
EWservPanicWsGraphic=70, // Bad internal state in CWsGraphic code
|
sl@0
|
2117 |
EWservPanicUninitialisedClient=71, // Tried to use an uninitialised CWsClient
|
sl@0
|
2118 |
EWservPanicNullMessageFromClient=72, // Client IPC message is NULL
|
sl@0
|
2119 |
EWservPanicTransparencyMisuse=73, // Incompatible use of window transparency and background surface
|
sl@0
|
2120 |
EWservPanic_Removed1=74, // Panic removed in CR1489, can be reused
|
sl@0
|
2121 |
EWservPanicInvalidSurface=75, // An incorrect surface type has been used
|
sl@0
|
2122 |
EWservPanicInvalidSurfaceConfiguration=76, // Use of a surface configuration without valid members
|
sl@0
|
2123 |
EWservPanic_Removed2=77, // Panic removed in CR1489, can be reused
|
sl@0
|
2124 |
EwservPanicIllegalDisplayMode=78, // Illegal display mode is used
|
sl@0
|
2125 |
EWservPanicWindowBeginRedrawNotCalled=79, // A draw operation was performed on the CWindowGc outside a RWindow::BeginRedraw() / EndRedraw() pair. Enable AutoFlush to debug.
|
sl@0
|
2126 |
EWservPanicInvalidParameter=80, // General invalid parameter code for invariant checking
|
sl@0
|
2127 |
EWservPanicDrawableSource=81, // Invalid drawable source handle
|
sl@0
|
2128 |
EWservPanicWrongScreen=82, // Child apps can only be constructed on the same screen as their parent. See RWindowGroup::ConstructChildApp
|
sl@0
|
2129 |
EWservPanicScreenCaptureInvalidRequest=83, // With Screen Capture disabled, an unexpected invalid request has been received
|
sl@0
|
2130 |
EWservPanicInvalidDisplayConfiguration=84, // Use of a display configuration without valid members
|
sl@0
|
2131 |
EWservPanicUnableToEnableAdvPointer=85, // Use when advanced pointers are enabled after an RWindow is activated
|
sl@0
|
2132 |
};
|
sl@0
|
2133 |
|
sl@0
|
2134 |
#if defined(__WINS__)
|
sl@0
|
2135 |
// Under WINS character code is passed in as HIWORD of the scan code,
|
sl@0
|
2136 |
// and will need to be removed in some situations
|
sl@0
|
2137 |
#define __REMOVE_WINS_CHARCODE &0x0000FFFF
|
sl@0
|
2138 |
#define __WINS_CHARCODE(c) ((c) & 0xFFFF0000)
|
sl@0
|
2139 |
#else
|
sl@0
|
2140 |
#define __REMOVE_WINS_CHARCODE
|
sl@0
|
2141 |
#endif
|
sl@0
|
2142 |
|
sl@0
|
2143 |
class CDebugLogBase: public CBase
|
sl@0
|
2144 |
{
|
sl@0
|
2145 |
public:
|
sl@0
|
2146 |
enum {EDummyConnectionId=0}; //This value is used to mean WSERV itself
|
sl@0
|
2147 |
enum
|
sl@0
|
2148 |
{
|
sl@0
|
2149 |
ELogEverything=1, // Gives the complete WSERV client server interaction along with client logging.
|
sl@0
|
2150 |
ELogIntermediate=5, // Gives the important WSERV client server interaction along with client logging.
|
sl@0
|
2151 |
ELogImportant=9, // Gives logging of panics and client logging.
|
sl@0
|
2152 |
};
|
sl@0
|
2153 |
public:
|
sl@0
|
2154 |
virtual void CommandBuf(TInt aApp)=0;
|
sl@0
|
2155 |
virtual void Command(TInt aClass, TInt aOpcode, const TAny *aCmdData, TInt aHandle)=0;
|
sl@0
|
2156 |
virtual void NewClient(TUint aConnectionHandle)=0;
|
sl@0
|
2157 |
virtual void Reply(TInt aData)=0;
|
sl@0
|
2158 |
virtual void ReplyBuf(const TDesC8 &aDes)=0;
|
sl@0
|
2159 |
virtual void ReplyBuf(const TDesC16 &aDes)=0;
|
sl@0
|
2160 |
virtual void SignalEvent(TInt aApp)=0;
|
sl@0
|
2161 |
virtual void Panic(TInt aApp, TInt aReason)=0;
|
sl@0
|
2162 |
virtual void MiscMessage(TInt aPriority,const TDesC &aFmt,TInt aParam=0)=0;
|
sl@0
|
2163 |
virtual void HeapDump()=0;
|
sl@0
|
2164 |
virtual void SetLoggingLevel(TInt aLevel)=0;
|
sl@0
|
2165 |
virtual void IniFileSettingRead(TInt aScreen, const TDesC& aVarName, TBool aFound, const TDesC& aResult)=0;
|
sl@0
|
2166 |
};
|
sl@0
|
2167 |
|
sl@0
|
2168 |
inline TUint WservEncoding::Encode8BitValues(TUint8 aFirst,TUint8 aSecond)
|
sl@0
|
2169 |
{return aSecond<<8|aFirst;}
|
sl@0
|
2170 |
inline TUint WservEncoding::Encode8BitValues(TUint8 aFirst,TUint8 aSecond,TUint8 aThird)
|
sl@0
|
2171 |
{return aThird<<16|Encode8BitValues(aFirst,aSecond);}
|
sl@0
|
2172 |
inline TUint8 WservEncoding::ExtractFirst8BitValue(TUint aUint)
|
sl@0
|
2173 |
{return STATIC_CAST(TUint8,aUint&KMaxTUint8);}
|
sl@0
|
2174 |
inline TUint8 WservEncoding::ExtractSecond8BitValue(TUint aUint)
|
sl@0
|
2175 |
{return STATIC_CAST(TUint8,aUint>>8&KMaxTUint8);}
|
sl@0
|
2176 |
inline TUint8 WservEncoding::ExtractThird8BitValue(TUint aUint)
|
sl@0
|
2177 |
{return STATIC_CAST(TUint8,aUint>>16);}
|
sl@0
|
2178 |
//
|
sl@0
|
2179 |
inline TWsClCmdCreateSprite::TWsClCmdCreateSprite(TInt aWindow, const TPoint &aPos, TUint aFlags) :
|
sl@0
|
2180 |
window(aWindow),pos(aPos),flags(aFlags)
|
sl@0
|
2181 |
{}
|
sl@0
|
2182 |
inline TWsClCmdSetWindowGroupOrdinalPosition::TWsClCmdSetWindowGroupOrdinalPosition(TInt aIdentifier, TInt aPosition) :
|
sl@0
|
2183 |
identifier(aIdentifier),position(aPosition)
|
sl@0
|
2184 |
{}
|
sl@0
|
2185 |
inline TWsClCmdSetKeyboardRepeatRate::TWsClCmdSetKeyboardRepeatRate(const TTimeIntervalMicroSeconds32 &aInitial,const TTimeIntervalMicroSeconds32 &aTime) :
|
sl@0
|
2186 |
initial(aInitial), time(aTime)
|
sl@0
|
2187 |
{}
|
sl@0
|
2188 |
inline TWsClCmdSetDoubleClick::TWsClCmdSetDoubleClick(const TTimeIntervalMicroSeconds32 &aInterval,TInt aDistance) :
|
sl@0
|
2189 |
interval(aInterval), distance(aDistance)
|
sl@0
|
2190 |
{}
|
sl@0
|
2191 |
inline TWsClCmdSendEventToWindowGroup::TWsClCmdSendEventToWindowGroup(TInt aParameter, const TWsEvent &aEvent) :
|
sl@0
|
2192 |
parameter(aParameter), event(aEvent)
|
sl@0
|
2193 |
{}
|
sl@0
|
2194 |
inline TWsClCmdFindWindowGroupIdentifier::TWsClCmdFindWindowGroupIdentifier(TInt aPreviousIdentifier,TInt aOffset,TInt aLength) :
|
sl@0
|
2195 |
identifier(aPreviousIdentifier),offset(aOffset),length(aLength)
|
sl@0
|
2196 |
{}
|
sl@0
|
2197 |
inline TWsClCmdSendMessageToWindowGroup::TWsClCmdSendMessageToWindowGroup(TInt aIdentifier, TUid aUid, TInt aDataLength, const TDesC8 *aPtr) :
|
sl@0
|
2198 |
identifierOrPriority(aIdentifier), uid(aUid), dataLength(aDataLength), ptr(aPtr)
|
sl@0
|
2199 |
{}
|
sl@0
|
2200 |
inline TWsClCmdFetchMessage::TWsClCmdFetchMessage(TInt aWindowGroupIdentifier) :
|
sl@0
|
2201 |
windowGroupIdentifier(aWindowGroupIdentifier)
|
sl@0
|
2202 |
{}
|
sl@0
|
2203 |
inline TWsClCmdFindWindowGroupIdentifierThread::TWsClCmdFindWindowGroupIdentifierThread(TInt aPreviousIdentifier,TThreadId aThreadId) :
|
sl@0
|
2204 |
identifier(aPreviousIdentifier),threadId(aThreadId)
|
sl@0
|
2205 |
{}
|
sl@0
|
2206 |
inline TWsClCmdGetWindowGroupNameFromIdentifier::TWsClCmdGetWindowGroupNameFromIdentifier(TInt aIdentifier,TInt aMaxLength) :
|
sl@0
|
2207 |
identifier(aIdentifier),maxLength(aMaxLength)
|
sl@0
|
2208 |
{}
|
sl@0
|
2209 |
inline TWsClCmdOffEventsToShell::TWsClCmdOffEventsToShell(TBool aOn,TUint32 aWindow) :
|
sl@0
|
2210 |
on(aOn),window(aWindow)
|
sl@0
|
2211 |
{}
|
sl@0
|
2212 |
inline TWsClCmdSetPointerCursorArea::TWsClCmdSetPointerCursorArea(TInt aMode,TRect aArea) :
|
sl@0
|
2213 |
mode(aMode),area(aArea)
|
sl@0
|
2214 |
{}
|
sl@0
|
2215 |
inline TWsClCmdSetSystemFaded::TWsClCmdSetSystemFaded(TBool aFaded, TBool aUseDefaults/*=ETrue*/, TUint8 aBlackMap/*=0*/, TUint8 aWhiteMap/*=0*/)
|
sl@0
|
2216 |
{params=WservEncoding::Encode8BitValues(aBlackMap,aWhiteMap
|
sl@0
|
2217 |
,STATIC_CAST(TUint8,(aFaded?EFaded:0)|(aUseDefaults?EUseDefaultMap:0)));}
|
sl@0
|
2218 |
inline TBool TWsClCmdSetSystemFaded::Faded() const
|
sl@0
|
2219 |
{return WservEncoding::ExtractThird8BitValue(params)&EFaded;}
|
sl@0
|
2220 |
inline TBool TWsClCmdSetSystemFaded::UseDefaultMap() const
|
sl@0
|
2221 |
{return WservEncoding::ExtractThird8BitValue(params)&EUseDefaultMap;}
|
sl@0
|
2222 |
inline void TWsClCmdSetSystemFaded::GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const
|
sl@0
|
2223 |
{aBlackMap=WservEncoding::ExtractFirst8BitValue(params);aWhiteMap=WservEncoding::ExtractSecond8BitValue(params);}
|
sl@0
|
2224 |
inline TWsClCmdDebugInfo::TWsClCmdDebugInfo(TInt aFunction, TInt aParam) : iFunction(aFunction), iParam(aParam)
|
sl@0
|
2225 |
{}
|
sl@0
|
2226 |
#if defined(SYMBIAN_GRAPHICS_GCE)
|
sl@0
|
2227 |
inline TWsClCmdCreateDrawableSource::TWsClCmdCreateDrawableSource(const TSgDrawableId& aDrawableId, TInt aScreenNumber)
|
sl@0
|
2228 |
: iDrawableId(aDrawableId), iScreenNumber(aScreenNumber)
|
sl@0
|
2229 |
{}
|
sl@0
|
2230 |
inline TWsClCmdSurfaceRegister::TWsClCmdSurfaceRegister(TInt aScreenNumber, const TSurfaceId& aSurface):
|
sl@0
|
2231 |
screenNumber(aScreenNumber), surfaceId(aSurface)
|
sl@0
|
2232 |
{}
|
sl@0
|
2233 |
#endif
|
sl@0
|
2234 |
inline TWsWinCmdSetExtent::TWsWinCmdSetExtent(const TPoint &aPos,const TSize &aSize) :
|
sl@0
|
2235 |
pos(aPos),size(aSize)
|
sl@0
|
2236 |
{}
|
sl@0
|
2237 |
inline TWsWinCmdCaptureLongKey::TWsWinCmdCaptureLongKey()
|
sl@0
|
2238 |
{}
|
sl@0
|
2239 |
inline TWsWinCmdCaptureLongKey::TWsWinCmdCaptureLongKey(TUint aModifiers,TUint aModifierMask,TUint aInputKey,TUint aOutputKey
|
sl@0
|
2240 |
,TTimeIntervalMicroSeconds32 aDelay,TInt aPriority,TUint aFlags) :
|
sl@0
|
2241 |
modifiers(aModifiers),modifierMask(aModifierMask),inputKey(aInputKey),outputKey(aOutputKey)
|
sl@0
|
2242 |
,delay(aDelay),priority(aPriority),flags(aFlags)
|
sl@0
|
2243 |
{}
|
sl@0
|
2244 |
inline TWsWinCmdScroll::TWsWinCmdScroll(const TRect &aClip,const TPoint &aOffset,const TRect &aRect) :
|
sl@0
|
2245 |
clip(aClip), offset(aOffset), rect(aRect)
|
sl@0
|
2246 |
{}
|
sl@0
|
2247 |
inline TWsWinCmdSetTextCursor::TWsWinCmdSetTextCursor(TUint32 aWindow, const TPoint &aPos, const TTextCursor &aCursor, const TRect &aRect) :
|
sl@0
|
2248 |
window(aWindow), pos(aPos), cursor(aCursor), rect(aRect)
|
sl@0
|
2249 |
{}
|
sl@0
|
2250 |
inline TWsWinCmdSetTextCursor::TWsWinCmdSetTextCursor(TUint32 aWindow, const TPoint &aPos, const TTextCursor &aCursor) :
|
sl@0
|
2251 |
window(aWindow), pos(aPos), cursor(aCursor)
|
sl@0
|
2252 |
{}
|
sl@0
|
2253 |
inline TWsWinCmdGrabControl::TWsWinCmdGrabControl(const TUint aGrabControlFlags)
|
sl@0
|
2254 |
: pointerNumber(KErrNotFound), flags(aGrabControlFlags)
|
sl@0
|
2255 |
{}
|
sl@0
|
2256 |
inline TWsWinCmdGrabControl::TWsWinCmdGrabControl(const TUint8 aPointerNumber, const TUint aGrabControlFlags)
|
sl@0
|
2257 |
: pointerNumber(aPointerNumber), flags(aGrabControlFlags)
|
sl@0
|
2258 |
{}
|
sl@0
|
2259 |
inline TBool TWsWinCmdGrabControl::CheckFlags(TUint aFlags) const
|
sl@0
|
2260 |
{return (flags&aFlags)==aFlags;}
|
sl@0
|
2261 |
inline TBool TWsWinCmdGrabControl::HasPointerNumber() const
|
sl@0
|
2262 |
{return KErrNotFound!=pointerNumber;}
|
sl@0
|
2263 |
|
sl@0
|
2264 |
inline TWsWinCmdCancelPointerRepeatEventRequest::TWsWinCmdCancelPointerRepeatEventRequest()
|
sl@0
|
2265 |
: pointerNumber(KErrNotFound), flags(TWsWinCmdCancelPointerRepeatEventRequest::ECancelRepeatFlagsNone)
|
sl@0
|
2266 |
{}
|
sl@0
|
2267 |
inline TWsWinCmdCancelPointerRepeatEventRequest::TWsWinCmdCancelPointerRepeatEventRequest(const TUint8 aPointerNumber)
|
sl@0
|
2268 |
: pointerNumber(aPointerNumber), flags(TWsWinCmdCancelPointerRepeatEventRequest::ECancelRepeatFlagsNone)
|
sl@0
|
2269 |
{}
|
sl@0
|
2270 |
inline TWsWinCmdCancelPointerRepeatEventRequest::TWsWinCmdCancelPointerRepeatEventRequest(const TUint8 aPointerNumber, const TUint aFlags)
|
sl@0
|
2271 |
: pointerNumber(aPointerNumber), flags(aFlags)
|
sl@0
|
2272 |
{}
|
sl@0
|
2273 |
inline TBool TWsWinCmdCancelPointerRepeatEventRequest::HasPointerNumber() const
|
sl@0
|
2274 |
{return KErrNotFound!=pointerNumber;}
|
sl@0
|
2275 |
inline TWsWinCmdRequestPointerRepeatEvent::TWsWinCmdRequestPointerRepeatEvent(const TTimeIntervalMicroSeconds32 &aTime,const TRect &aRect)
|
sl@0
|
2276 |
: time(aTime),rect(aRect),pointerNumber(KErrNotFound),repeatFlags(ERepeatFlagsNone)
|
sl@0
|
2277 |
{}
|
sl@0
|
2278 |
inline TWsWinCmdRequestPointerRepeatEvent::TWsWinCmdRequestPointerRepeatEvent(const TTimeIntervalMicroSeconds32 &aTime,const TRect &aRect,const TUint8 aPointerNumber, const TUint aRepeatFlags)
|
sl@0
|
2279 |
: time(aTime),rect(aRect),pointerNumber(aPointerNumber),repeatFlags(aRepeatFlags)
|
sl@0
|
2280 |
{}
|
sl@0
|
2281 |
inline TBool TWsWinCmdRequestPointerRepeatEvent::HasPointerNumber() const
|
sl@0
|
2282 |
{return KErrNotFound!=pointerNumber;}
|
sl@0
|
2283 |
inline TWsClCmdZThresholdPair::TWsClCmdZThresholdPair(const TInt aEnterThreshold, const TInt aExitThreshold)
|
sl@0
|
2284 |
: enterThreshold(aEnterThreshold),exitThreshold(aExitThreshold)
|
sl@0
|
2285 |
{}
|
sl@0
|
2286 |
inline TWsClCmdSendEffectCommand::TWsClCmdSendEffectCommand(TInt aTfxCmd,TInt aTfxCmdDataLength, TInt aWinHandle) :
|
sl@0
|
2287 |
tfxCmd(aTfxCmd), tfxCmdDataLength(aTfxCmdDataLength), windowHandle(aWinHandle)
|
sl@0
|
2288 |
{}
|
sl@0
|
2289 |
inline TWsClCmdRegisterEffect::TWsClCmdRegisterEffect(TInt aAction, TInt aPurpose, TInt aDirStrSize, TInt aPhase1StrSize, TInt aPhase2StrSize, TUint aAppUid, TBitFlags aFlags) :
|
sl@0
|
2290 |
tfxAction(aAction), tfxPurpose(aPurpose), tfxDirStrSize(aDirStrSize), tfxPhase1StrSize(aPhase1StrSize), tfxPhase2StrSize(aPhase2StrSize), tfxAppUid(aAppUid), tfxFlags(aFlags)
|
sl@0
|
2291 |
{}
|
sl@0
|
2292 |
inline TWsClCmdUnRegisterEffect::TWsClCmdUnRegisterEffect(TInt aAction, TInt aPurpose, TUint aAppUid) :
|
sl@0
|
2293 |
tfxAction(aAction), tfxPurpose(aPurpose), tfxAppUid(aAppUid)
|
sl@0
|
2294 |
{}
|
sl@0
|
2295 |
inline TWsClCmdOverrideEffect::TWsClCmdOverrideEffect(TInt aAction, TInt aPurpose, TInt aDirStrSize, TInt aPhase1StrSize, TInt aPhase2StrSize, TBitFlags aFlags) :
|
sl@0
|
2296 |
tfxAction(aAction), tfxPurpose(aPurpose), tfxDirStrSize(aDirStrSize), tfxPhase1StrSize(aPhase1StrSize), tfxPhase2StrSize(aPhase2StrSize), tfxFlags(aFlags)
|
sl@0
|
2297 |
{}
|
sl@0
|
2298 |
inline TWsWinCmdAddKeyRect::TWsWinCmdAddKeyRect(const TRect &aRect,TInt aScanCode, TBool aActivatedByPointerSwitchOn) :
|
sl@0
|
2299 |
rect(aRect), scanCode(aScanCode), activatedByPointerSwitchOn(aActivatedByPointerSwitchOn)
|
sl@0
|
2300 |
{}
|
sl@0
|
2301 |
#if defined(SYMBIAN_GRAPHICS_GCE)
|
sl@0
|
2302 |
inline TWsWinOpSetBackgroundSurfaceConfig::TWsWinOpSetBackgroundSurfaceConfig(const TSurfaceConfiguration& aConfiguration, TBool aTriggerRedraw) :
|
sl@0
|
2303 |
surfaceConfig(aConfiguration), triggerRedraw(aTriggerRedraw)
|
sl@0
|
2304 |
{}
|
sl@0
|
2305 |
#endif
|
sl@0
|
2306 |
inline TWsWinCmdEnableModifierChangedEvents::TWsWinCmdEnableModifierChangedEvents(TUint aModifierMask, TEventControl aCircumstances) :
|
sl@0
|
2307 |
modifierMask(aModifierMask), circumstances(aCircumstances)
|
sl@0
|
2308 |
{}
|
sl@0
|
2309 |
inline TWsWinCmdSetFaded::TWsWinCmdSetFaded(TBool aFaded, TBool aIncludeChildren, TBool aUseDefaults/*=ETrue*/, TUint8 aBlackMap/*=0*/, TUint8 aWhiteMap/*=0*/)
|
sl@0
|
2310 |
{params=WservEncoding::Encode8BitValues(aBlackMap,aWhiteMap
|
sl@0
|
2311 |
,STATIC_CAST(TUint8,(aFaded?EFaded:0)|(aIncludeChildren?EIncludeChildren:0)|(aUseDefaults?EUseDefaultMap:0)));}
|
sl@0
|
2312 |
inline TBool TWsWinCmdSetFaded::Faded() const
|
sl@0
|
2313 |
{return WservEncoding::ExtractThird8BitValue(params)&EFaded;}
|
sl@0
|
2314 |
inline TBool TWsWinCmdSetFaded::IncludeChildren() const
|
sl@0
|
2315 |
{return WservEncoding::ExtractThird8BitValue(params)&EIncludeChildren;}
|
sl@0
|
2316 |
inline TBool TWsWinCmdSetFaded::UseDefaultMap() const
|
sl@0
|
2317 |
{return WservEncoding::ExtractThird8BitValue(params)&EUseDefaultMap;}
|
sl@0
|
2318 |
inline void TWsWinCmdSetFaded::GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const
|
sl@0
|
2319 |
{aBlackMap=WservEncoding::ExtractFirst8BitValue(params);aWhiteMap=WservEncoding::ExtractSecond8BitValue(params);}
|
sl@0
|
2320 |
//
|
sl@0
|
2321 |
inline TWsGcCmdBoxTextVertical::TWsGcCmdBoxTextVertical(const TRect& aBox) : box(aBox)
|
sl@0
|
2322 |
{}
|
sl@0
|
2323 |
inline TWsGcCmdBoxTextLocal::TWsGcCmdBoxTextLocal(const TRect &aBox) : box(aBox)
|
sl@0
|
2324 |
{}
|
sl@0
|
2325 |
inline TWsGcCmdDrawTextLocal::TWsGcCmdDrawTextLocal(const TPoint &aPos,const TDesC *aDesc) :
|
sl@0
|
2326 |
pos(aPos), desc(aDesc)
|
sl@0
|
2327 |
{}
|
sl@0
|
2328 |
inline TWsGcCmdDrawLine::TWsGcCmdDrawLine(const TPoint &aPnt1,const TPoint &aPnt2) : pnt1(aPnt1),pnt2(aPnt2)
|
sl@0
|
2329 |
{}
|
sl@0
|
2330 |
inline TWsGcCmdDrawArcOrPie::TWsGcCmdDrawArcOrPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd) :
|
sl@0
|
2331 |
rect(aRect),start(aStart),end(aEnd)
|
sl@0
|
2332 |
{}
|
sl@0
|
2333 |
inline TWsGcCmdDrawText::TWsGcCmdDrawText(const TPoint &aPos, TInt aLength) :
|
sl@0
|
2334 |
pos(aPos),length(aLength)
|
sl@0
|
2335 |
{}
|
sl@0
|
2336 |
inline TWsGcCmdDrawTextVertical::TWsGcCmdDrawTextVertical(const TPoint &aPos, TInt aLength, TBool aUp) :
|
sl@0
|
2337 |
pos(aPos),length(aLength),up(aUp)
|
sl@0
|
2338 |
{}
|
sl@0
|
2339 |
inline TWsGcCmdBoxTextOptimised1::TWsGcCmdBoxTextOptimised1(const TRect &aRect, TInt aBaselineOffset,TInt aLength) :
|
sl@0
|
2340 |
box(aRect),baselineOffset(aBaselineOffset),length(aLength)
|
sl@0
|
2341 |
{}
|
sl@0
|
2342 |
inline TWsGcCmdBoxTextOptimised2::TWsGcCmdBoxTextOptimised2(const TRect &aRect,TInt aBaselineOffset,CGraphicsContext::TTextAlign aHoriz,TInt aLeftMrg,TInt aLength) :
|
sl@0
|
2343 |
box(aRect),baselineOffset(aBaselineOffset),horiz(aHoriz),leftMrg(aLeftMrg),length(aLength)
|
sl@0
|
2344 |
{}
|
sl@0
|
2345 |
inline TWsGcCmdBoxText::TWsGcCmdBoxText(const TRect &aRect,TInt aBaselineOffset,CGraphicsContext::TTextAlign aHoriz,TInt aLeftMrg,TInt aLength,TInt aWidth) :
|
sl@0
|
2346 |
box(aRect),baselineOffset(aBaselineOffset),horiz(aHoriz),leftMrg(aLeftMrg),length(aLength),width(aWidth)
|
sl@0
|
2347 |
{}
|
sl@0
|
2348 |
inline TWsGcCmdDrawRoundRect::TWsGcCmdDrawRoundRect(const TRect &aRect,const TSize &aEllipse) : rect(aRect), ellipse(aEllipse)
|
sl@0
|
2349 |
{}
|
sl@0
|
2350 |
inline TWsGcCmdDrawPolygonLocalBufLen::TWsGcCmdDrawPolygonLocalBufLen(const TPoint *aPointList,TInt aNumPoints, CGraphicsContext::TFillRule aFillRule) :
|
sl@0
|
2351 |
points(aPointList),length(aNumPoints),fillRule(aFillRule)
|
sl@0
|
2352 |
{}
|
sl@0
|
2353 |
inline TWsGcCmdDrawPolyLineLocalBufLen::TWsGcCmdDrawPolyLineLocalBufLen(const TPoint *aPointList,TInt aNumPoints) :
|
sl@0
|
2354 |
points(aPointList),length(aNumPoints)
|
sl@0
|
2355 |
{}
|
sl@0
|
2356 |
inline TWsGcCmdDrawBitmap::TWsGcCmdDrawBitmap(const TPoint &aPoint,TInt aHandle) : handle(aHandle), pos(aPoint)
|
sl@0
|
2357 |
{}
|
sl@0
|
2358 |
inline TWsGcCmdDrawBitmap2::TWsGcCmdDrawBitmap2(const TRect &aRect,TInt aHandle) : handle(aHandle), rect(aRect)
|
sl@0
|
2359 |
{}
|
sl@0
|
2360 |
inline TWsGcCmdDrawBitmap3::TWsGcCmdDrawBitmap3(const TRect &aRect,TInt aHandle,const TRect &aSrcRect) :
|
sl@0
|
2361 |
handle(aHandle), rect(aRect), srcRect(aSrcRect)
|
sl@0
|
2362 |
{}
|
sl@0
|
2363 |
inline TWsGcCmdDrawBitmapMasked::TWsGcCmdDrawBitmapMasked(const TRect &aDestRect,TInt aHandle,const TRect& aSrcRect,TInt aMaskHandle,TBool aInvertMask) :
|
sl@0
|
2364 |
iHandle(aHandle),iMaskHandle(aMaskHandle),iRect(aDestRect),iSrcRect(aSrcRect),iInvertMask(aInvertMask)
|
sl@0
|
2365 |
{}
|
sl@0
|
2366 |
inline TWsGcCmdDrawBitmapLocal::TWsGcCmdDrawBitmapLocal(const TPoint &aPos,const CFbsBitmap *aBitmap) :
|
sl@0
|
2367 |
bitmap(aBitmap), pos(aPos)
|
sl@0
|
2368 |
{}
|
sl@0
|
2369 |
inline TWsGcCmdDrawBitmap2Local::TWsGcCmdDrawBitmap2Local(const TRect &aRect,const CFbsBitmap *aBitmap) :
|
sl@0
|
2370 |
bitmap(aBitmap), rect(aRect)
|
sl@0
|
2371 |
{}
|
sl@0
|
2372 |
inline TWsGcCmdDrawBitmap3Local::TWsGcCmdDrawBitmap3Local(const TRect &aRect,const CFbsBitmap *aBitmap,const TRect &aSrcRect) :
|
sl@0
|
2373 |
bitmap(aBitmap), rect(aRect), srcRect(aSrcRect)
|
sl@0
|
2374 |
{}
|
sl@0
|
2375 |
inline TWsGcCmdDrawBitmapMaskedLocal::TWsGcCmdDrawBitmapMaskedLocal(const TRect &aDestRect,const CFbsBitmap* aBitmap,const TRect& aSrcRect,const CFbsBitmap* aMaskBitmap,TBool aInvertMask) :
|
sl@0
|
2376 |
iBitmap(aBitmap),iMaskBitmap(aMaskBitmap),iRect(aDestRect),iSrcRect(aSrcRect),iInvertMask(aInvertMask)
|
sl@0
|
2377 |
{}
|
sl@0
|
2378 |
inline TWsGcCmdCopyRect::TWsGcCmdCopyRect(const TPoint &anOffset,const TRect &aRect) :
|
sl@0
|
2379 |
rect(aRect),pos(anOffset)
|
sl@0
|
2380 |
{}
|
sl@0
|
2381 |
inline TWsGcCmdGdiBlt2::TWsGcCmdGdiBlt2(const TPoint &aPoint, TInt aHandle) :
|
sl@0
|
2382 |
handle(aHandle), pos(aPoint)
|
sl@0
|
2383 |
{}
|
sl@0
|
2384 |
inline TWsGcCmdGdiBlt3::TWsGcCmdGdiBlt3(const TPoint &aPoint, TInt aHandle, const TRect &aSrcRect) :
|
sl@0
|
2385 |
handle(aHandle),pos(aPoint),rect(aSrcRect)
|
sl@0
|
2386 |
{}
|
sl@0
|
2387 |
inline TWsGcCmdGdiBlt2Local::TWsGcCmdGdiBlt2Local(const TPoint &aPoint,const CFbsBitmap *aBitmap) :
|
sl@0
|
2388 |
bitmap(aBitmap), pos(aPoint)
|
sl@0
|
2389 |
{}
|
sl@0
|
2390 |
inline TWsGcCmdGdiBlt3Local::TWsGcCmdGdiBlt3Local(const TPoint &aDestination,const CFbsBitmap *aBitmap,const TRect &aSource) :
|
sl@0
|
2391 |
bitmap(aBitmap), pos(aDestination), rect(aSource)
|
sl@0
|
2392 |
{}
|
sl@0
|
2393 |
inline TWsGcCmdGdiBltMaskedLocal::TWsGcCmdGdiBltMaskedLocal(const TPoint& aPoint,const CFbsBitmap* aBitmap,const TRect &aSourceRect,const CFbsBitmap* aMaskBitmap,TBool aInvertMask) :
|
sl@0
|
2394 |
bitmap(aBitmap), maskBitmap(aMaskBitmap), invertMask(aInvertMask), pos(aPoint), rect(aSourceRect)
|
sl@0
|
2395 |
{}
|
sl@0
|
2396 |
inline TWsGcCmdBltMasked::TWsGcCmdBltMasked()
|
sl@0
|
2397 |
{}
|
sl@0
|
2398 |
inline TWsGcCmdBltMasked::TWsGcCmdBltMasked(const TPoint& aPoint,TInt aBitmap,const TRect& aSourceRect,TInt aMaskBitmap,TBool aInvertMask) :
|
sl@0
|
2399 |
destination(aPoint), handle(aBitmap), source(aSourceRect), maskHandle(aMaskBitmap), invertMask(aInvertMask)
|
sl@0
|
2400 |
{}
|
sl@0
|
2401 |
inline TWsGcCmdMapColors::TWsGcCmdMapColors(const TRect &aRect, TInt aNumPairs, TBool aMapForwards) :
|
sl@0
|
2402 |
rect(aRect), numPairs(aNumPairs), mapForwards(aMapForwards)
|
sl@0
|
2403 |
{}
|
sl@0
|
2404 |
inline TWsGcCmdMapColorsLocal::TWsGcCmdMapColorsLocal(const TRect &aRect, const TRgb *aColors, TInt aNumPairs, TBool aMapForwards) :
|
sl@0
|
2405 |
rect(aRect), colors(aColors), numPairs(aNumPairs), mapForwards(aMapForwards)
|
sl@0
|
2406 |
{}
|
sl@0
|
2407 |
inline TWsGcCmdAlphaBlendBitmaps::TWsGcCmdAlphaBlendBitmaps()
|
sl@0
|
2408 |
{}
|
sl@0
|
2409 |
inline TWsGcCmdAlphaBlendBitmaps::TWsGcCmdAlphaBlendBitmaps(const TPoint& aPoint, TInt aBitmap,const TRect& aSourceRect,TInt aAlpha,const TPoint& aAlphaPoint) :
|
sl@0
|
2410 |
point(aPoint), bitmapHandle(aBitmap), source(aSourceRect), alphaHandle(aAlpha), alphaPoint(aAlphaPoint)
|
sl@0
|
2411 |
{}
|
sl@0
|
2412 |
inline TWsGcCmdAlphaBlendBitmapsLocal::TWsGcCmdAlphaBlendBitmapsLocal(const TPoint& aPoint, const CFbsBitmap *aBitmap, const TRect& aSourceRect, const CFbsBitmap *aAlpha, const TPoint& aAlphaPoint) :
|
sl@0
|
2413 |
point(aPoint), iBitmap(aBitmap), source(aSourceRect), iAlpha(aAlpha), alphaPoint(aAlphaPoint)
|
sl@0
|
2414 |
{}
|
sl@0
|
2415 |
|
sl@0
|
2416 |
//
|
sl@0
|
2417 |
inline TWsSdCmdSetScreenRotation::TWsSdCmdSetScreenRotation(TInt aMode, CFbsBitGc::TGraphicsOrientation aRotation) :
|
sl@0
|
2418 |
mode(aMode), rotation(aRotation)
|
sl@0
|
2419 |
{}
|
sl@0
|
2420 |
inline TWsSdCmdGetScanLine::TWsSdCmdGetScanLine(const TPoint &aPos, TInt aLen, TDisplayMode aDispMode) :
|
sl@0
|
2421 |
pos(aPos), len(aLen), dispMode(aDispMode)
|
sl@0
|
2422 |
{}
|
sl@0
|
2423 |
inline TWsSdCmdRectCompare::TWsSdCmdRectCompare(const TRect &aRect1,const TRect &aRect2,TUint aFlags) :
|
sl@0
|
2424 |
rect1(aRect1), rect2(aRect2), flags(aFlags)
|
sl@0
|
2425 |
{}
|
sl@0
|
2426 |
inline TWsSdCmdCopyScreenToBitmap::TWsSdCmdCopyScreenToBitmap(TInt aHandle) :
|
sl@0
|
2427 |
handle(aHandle)
|
sl@0
|
2428 |
{}
|
sl@0
|
2429 |
inline TWsSdCmdCopyScreenToBitmap2::TWsSdCmdCopyScreenToBitmap2(const TRect &aRect, TInt aHandle) :
|
sl@0
|
2430 |
rect(aRect), handle(aHandle)
|
sl@0
|
2431 |
{}
|
sl@0
|
2432 |
inline TWsSdCmdSetPalette::TWsSdCmdSetPalette(TPtr8& aPtr) :
|
sl@0
|
2433 |
ptr(&aPtr), length(aPtr.Length())
|
sl@0
|
2434 |
{}
|
sl@0
|
2435 |
inline TWsSdCmdMapCoordinates::TWsSdCmdMapCoordinates(const TRect &aSource, TCoordinateSpace aSourceSpace, TCoordinateSpace aTargetSpace):
|
sl@0
|
2436 |
sourceRect(aSource), sourceSpace(aSourceSpace), targetSpace(aTargetSpace)
|
sl@0
|
2437 |
{}
|
sl@0
|
2438 |
//
|
sl@0
|
2439 |
inline TWsSpriteCmdUpdateMember::TWsSpriteCmdUpdateMember(TInt aIndex,const TSpriteMember &aData) :
|
sl@0
|
2440 |
index(aIndex), data(aData)
|
sl@0
|
2441 |
{}
|
sl@0
|
2442 |
//
|
sl@0
|
2443 |
inline TWsDirectCmdRequestReply::TWsDirectCmdRequestReply()
|
sl@0
|
2444 |
{}
|
sl@0
|
2445 |
inline TWsDirectCmdRequestReply::TWsDirectCmdRequestReply(TThreadId aId,TRequestStatus* aRequest) :
|
sl@0
|
2446 |
id(aId), request(aRequest)
|
sl@0
|
2447 |
{}
|
sl@0
|
2448 |
//
|
sl@0
|
2449 |
inline SKeyRepeatSettings::SKeyRepeatSettings()
|
sl@0
|
2450 |
{}
|
sl@0
|
2451 |
inline SDoubleClickSettings::SDoubleClickSettings()
|
sl@0
|
2452 |
{}
|
sl@0
|
2453 |
inline SDefModeMaxNumColors::SDefModeMaxNumColors()
|
sl@0
|
2454 |
{}
|
sl@0
|
2455 |
//
|
sl@0
|
2456 |
inline TCmdSpriteMember::TCmdSpriteMember()
|
sl@0
|
2457 |
{}
|
sl@0
|
2458 |
|
sl@0
|
2459 |
inline TWsGcCmdDrawTextVerticalPtr::TWsGcCmdDrawTextVerticalPtr(const TDesC *aDesc, const TPoint& aPos, const TBool aUp) : pos(aPos), up(aUp), text(const_cast<TDesC*>(aDesc))
|
sl@0
|
2460 |
{}
|
sl@0
|
2461 |
|
sl@0
|
2462 |
inline TWsGcCmdDrawWsGraphic::TWsGcCmdDrawWsGraphic(const TWsGraphicId& aId,const TRect& aRect):
|
sl@0
|
2463 |
iRect(aRect), iDataLen(0)
|
sl@0
|
2464 |
{
|
sl@0
|
2465 |
if(aId.IsUid())
|
sl@0
|
2466 |
{
|
sl@0
|
2467 |
iId = aId.Uid().iUid;
|
sl@0
|
2468 |
iFlags = EWsGraphicIdUid;
|
sl@0
|
2469 |
}
|
sl@0
|
2470 |
else
|
sl@0
|
2471 |
{
|
sl@0
|
2472 |
iId = aId.Id();
|
sl@0
|
2473 |
iFlags = EWsGraphicIdTransient;
|
sl@0
|
2474 |
}
|
sl@0
|
2475 |
}
|
sl@0
|
2476 |
inline TWsGcCmdDrawTextInContext::TWsGcCmdDrawTextInContext(const TPoint &aPos, TInt aLength, TInt aStart, TInt aEnd) :
|
sl@0
|
2477 |
pos(aPos),length(aLength),start(aStart),end(aEnd)
|
sl@0
|
2478 |
{}
|
sl@0
|
2479 |
inline TWsGcCmdDrawTextInContextVertical::TWsGcCmdDrawTextInContextVertical(const TPoint &aPos, TInt aLength, TBool aUp,TInt aStart,TInt aEnd) :
|
sl@0
|
2480 |
pos(aPos),length(aLength),up(aUp),start(aStart),end(aEnd)
|
sl@0
|
2481 |
{}
|
sl@0
|
2482 |
inline TWsGcCmdDrawTextInContextVerticalPtr::TWsGcCmdDrawTextInContextVerticalPtr(const TDesC *aDesc, const TPoint& aPos, const TBool aUp,TInt aStart,TInt aEnd) : pos(aPos), up(aUp), text(const_cast<TDesC*>(aDesc)),start(aStart),end(aEnd)
|
sl@0
|
2483 |
{}
|
sl@0
|
2484 |
inline TWsGcCmdBoxTextInContextLocal::TWsGcCmdBoxTextInContextLocal(const TRect &aBox,const TInt aStart,const TInt aEnd) : box(aBox),start(aStart),end(aEnd)
|
sl@0
|
2485 |
{}
|
sl@0
|
2486 |
inline TWsGcCmdBoxTextInContextOptimised1::TWsGcCmdBoxTextInContextOptimised1(const TRect &aRect, TInt aBaselineOffset,TInt aLength,TInt aStart,TInt aEnd) :
|
sl@0
|
2487 |
box(aRect),baselineOffset(aBaselineOffset),length(aLength),start(aStart),end(aEnd)
|
sl@0
|
2488 |
{}
|
sl@0
|
2489 |
inline TWsGcCmdBoxTextInContextOptimised2::TWsGcCmdBoxTextInContextOptimised2(const TRect &aRect,TInt aBaselineOffset,CGraphicsContext::TTextAlign aHoriz,TInt aLeftMrg,TInt aLength,TInt aStart,TInt aEnd) :
|
sl@0
|
2490 |
box(aRect),baselineOffset(aBaselineOffset),horiz(aHoriz),leftMrg(aLeftMrg),length(aLength),start(aStart),end(aEnd)
|
sl@0
|
2491 |
{}
|
sl@0
|
2492 |
inline TWsGcCmdBoxTextInContext::TWsGcCmdBoxTextInContext(const TRect &aRect,TInt aBaselineOffset,CGraphicsContext::TTextAlign aHoriz,TInt aLeftMrg,TInt aLength,TInt aWidth,TInt aStart,TInt aEnd) :
|
sl@0
|
2493 |
box(aRect),baselineOffset(aBaselineOffset),horiz(aHoriz),leftMrg(aLeftMrg),length(aLength),width(aWidth),start(aStart),end(aEnd)
|
sl@0
|
2494 |
{}
|
sl@0
|
2495 |
inline TWsGcCmdBoxTextInContextVertical::TWsGcCmdBoxTextInContextVertical(const TRect& aBox) : box(aBox)
|
sl@0
|
2496 |
{}
|
sl@0
|
2497 |
inline TWsGcCmdDrawTextInContextLocal::TWsGcCmdDrawTextInContextLocal(const TPoint &aPos,const TDesC *aDesc,TInt aStart,TInt aEnd) :
|
sl@0
|
2498 |
pos(aPos), desc(aDesc),start(aStart),end(aEnd)
|
sl@0
|
2499 |
{}
|
sl@0
|
2500 |
inline TWsGcCmdDrawResourceToPos::TWsGcCmdDrawResourceToPos(TInt aWsHandle, const TPoint &aPos, CWindowGc::TGraphicsRotation aRotation) :
|
sl@0
|
2501 |
wsHandle(aWsHandle), pos(aPos), rotation(aRotation)
|
sl@0
|
2502 |
{}
|
sl@0
|
2503 |
inline TWsGcCmdDrawResourceToRect::TWsGcCmdDrawResourceToRect(TInt aWsHandle, const TRect &aRect, CWindowGc::TGraphicsRotation aRotation) :
|
sl@0
|
2504 |
wsHandle(aWsHandle), rect(aRect), rotation(aRotation)
|
sl@0
|
2505 |
{}
|
sl@0
|
2506 |
inline TWsGcCmdDrawResourceFromRectToRect::TWsGcCmdDrawResourceFromRectToRect(TInt aWsHandle, const TRect &aRectDest, const TRect &aRectSrc, CWindowGc::TGraphicsRotation aRotation) :
|
sl@0
|
2507 |
wsHandle(aWsHandle), rectDest(aRectDest), rectSrc(aRectSrc), rotation(aRotation)
|
sl@0
|
2508 |
{}
|
sl@0
|
2509 |
inline TWsGcCmdDrawResourceWithData::TWsGcCmdDrawResourceWithData(TInt aWsHandle, const TRect &aRect, const TDesC8* aDesc) :
|
sl@0
|
2510 |
wsHandle(aWsHandle), rect(aRect), desc(aDesc)
|
sl@0
|
2511 |
{}
|
sl@0
|
2512 |
#endif
|