4 * Copyright 2002 Patrik Stridvall
5 * Copyright 2003 CodeWeavers, Aric Stewart
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
33 #include "wintab_internal.h"
35 #include "wine/debug.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(wintab32
);
40 * Documentation found at
41 * http://www.csl.sony.co.jp/projects/ar/restricted/wintabl.html
44 static LPOPENCONTEXT gOpenContexts
;
45 static HCTX gTopContext
= (HCTX
)0xc00;
47 static void LOGCONTEXTAtoW(const LOGCONTEXTA
*in
, LOGCONTEXTW
*out
)
49 MultiByteToWideChar(CP_ACP
, 0, in
->lcName
, -1, out
->lcName
, LCNAMELEN
);
50 out
->lcName
[LCNAMELEN
- 1] = 0;
51 /* we use the fact that the fields after lcName are the same in LOGCONTEXTA and W */
52 memcpy(&out
->lcOptions
, &in
->lcOptions
, sizeof(LOGCONTEXTA
) - FIELD_OFFSET(LOGCONTEXTA
, lcOptions
));
55 static void LOGCONTEXTWtoA(const LOGCONTEXTW
*in
, LOGCONTEXTA
*out
)
57 WideCharToMultiByte(CP_ACP
, 0, in
->lcName
, LCNAMELEN
, out
->lcName
, LCNAMELEN
, NULL
, NULL
);
58 out
->lcName
[LCNAMELEN
- 1] = 0;
59 /* we use the fact that the fields after lcName are the same in LOGCONTEXTA and W */
60 memcpy(&out
->lcOptions
, &in
->lcOptions
, sizeof(LOGCONTEXTW
) - FIELD_OFFSET(LOGCONTEXTW
, lcOptions
));
63 static BOOL
is_logcontext_category(UINT wCategory
)
65 return wCategory
== WTI_DEFSYSCTX
|| wCategory
== WTI_DEFCONTEXT
|| wCategory
== WTI_DDCTXS
;
68 static BOOL
is_string_field(UINT wCategory
, UINT nIndex
)
70 if (wCategory
== WTI_INTERFACE
&& nIndex
== IFC_WINTABID
)
72 if (is_logcontext_category(wCategory
) && nIndex
== CTX_NAME
)
74 if ((wCategory
>= WTI_CURSORS
&& wCategory
<= WTI_CURSORS
+ 9) &&
75 (nIndex
== CSR_NAME
|| nIndex
== CSR_BTNNAMES
))
77 if (wCategory
== WTI_DEVICES
&& (nIndex
== DVC_NAME
|| nIndex
== DVC_PNPID
))
82 static const char* DUMPBITS(int x
)
86 if (x
&PK_CONTEXT
) strcat(buf
,"PK_CONTEXT ");
87 if (x
&PK_STATUS
) strcat(buf
, "PK_STATUS ");
88 if (x
&PK_TIME
) strcat(buf
, "PK_TIME ");
89 if (x
&PK_CHANGED
) strcat(buf
, "PK_CHANGED ");
90 if (x
&PK_SERIAL_NUMBER
) strcat(buf
, "PK_SERIAL_NUMBER ");
91 if (x
&PK_CURSOR
) strcat(buf
, "PK_CURSOR ");
92 if (x
&PK_BUTTONS
) strcat(buf
, "PK_BUTTONS ");
93 if (x
&PK_X
) strcat(buf
, "PK_X ");
94 if (x
&PK_Y
) strcat(buf
, "PK_Y ");
95 if (x
&PK_Z
) strcat(buf
, "PK_Z ");
96 if (x
&PK_NORMAL_PRESSURE
) strcat(buf
, "PK_NORMAL_PRESSURE ");
97 if (x
&PK_TANGENT_PRESSURE
) strcat(buf
, "PK_TANGENT_PRESSURE ");
98 if (x
&PK_ORIENTATION
) strcat(buf
, "PK_ORIENTATION ");
99 if (x
&PK_ROTATION
) strcat(buf
, "PK_ROTATION ");
100 return wine_dbg_sprintf("{%s}",buf
);
103 static inline void DUMPPACKET(WTPACKET packet
)
105 TRACE("pkContext: %p pkStatus: 0x%x pkTime : 0x%x pkChanged: 0x%x pkSerialNumber: 0x%x pkCursor : %i pkButtons: %x pkX: %i pkY: %i pkZ: %i pkNormalPressure: %i pkTangentPressure: %i pkOrientation: (%i,%i,%i) pkRotation: (%i,%i,%i)\n",
106 packet
.pkContext
, packet
.pkStatus
, packet
.pkTime
, packet
.pkChanged
, packet
.pkSerialNumber
,
107 packet
.pkCursor
, packet
.pkButtons
, packet
.pkX
, packet
.pkY
, packet
.pkZ
,
108 packet
.pkNormalPressure
, packet
.pkTangentPressure
,
109 packet
.pkOrientation
.orAzimuth
, packet
.pkOrientation
.orAltitude
, packet
.pkOrientation
.orTwist
,
110 packet
.pkRotation
.roPitch
, packet
.pkRotation
.roRoll
, packet
.pkRotation
.roYaw
);
113 static inline void DUMPCONTEXT(LOGCONTEXTW lc
)
115 TRACE("Name: %s, Options: %x, Status: %x, Locks: %x, MsgBase: %x, Device: %x\n",
116 wine_dbgstr_w(lc
.lcName
), lc
.lcOptions
, lc
.lcStatus
, lc
.lcLocks
, lc
.lcMsgBase
, lc
.lcDevice
);
117 TRACE("PktRate %x\n", lc
.lcPktRate
);
118 TRACE("PktData 0x%04x %s\n", lc
.lcPktData
, DUMPBITS(lc
.lcPktData
));
119 TRACE("PktMode 0x%04x %s\n", lc
.lcPktMode
, DUMPBITS(lc
.lcPktMode
));
120 TRACE("MovMask 0x%04x %s\n", lc
.lcMoveMask
, DUMPBITS(lc
.lcMoveMask
));
121 TRACE("BtnDnMask: %x, BtnUpMask: %x\n", lc
.lcBtnDnMask
, lc
.lcBtnUpMask
);
122 TRACE("InOrgX: %i, InOrgY: %i, InOrgZ: %i\n", lc
.lcInOrgX
, lc
.lcInOrgY
, lc
.lcInOrgZ
);
123 TRACE("InExtX: %i, InExtY: %i, InExtZ: %i\n", lc
.lcInExtX
, lc
.lcInExtY
, lc
.lcInExtZ
);
124 TRACE("OutOrgX: %i, OutOrgY: %i, OutOrgZ: %i\n", lc
.lcOutOrgX
, lc
.lcOutOrgY
, lc
.lcOutOrgZ
);
125 TRACE("OutExtX: %i, OutExtY: %i, OutExtZ: %i\n", lc
.lcOutExtX
, lc
.lcOutExtY
, lc
.lcOutExtZ
);
126 TRACE("SensX: %i, SensY: %i, SensZ: %i\n", lc
.lcSensX
, lc
.lcSensY
, lc
.lcSensZ
);
127 TRACE("SysMode: %i\n", lc
.lcSysMode
);
128 TRACE("SysOrgX: %i, SysOrgY: %i\n", lc
.lcSysOrgX
, lc
.lcSysOrgY
);
129 TRACE("SysExtX: %i, SysExtY: %i\n", lc
.lcSysExtX
, lc
.lcSysExtY
);
130 TRACE("SysSensX: %i, SysSensY: %i\n", lc
.lcSysSensX
, lc
.lcSysSensY
);
134 /* Find an open context given the handle */
135 static LPOPENCONTEXT
TABLET_FindOpenContext(HCTX hCtx
)
137 LPOPENCONTEXT ptr
= gOpenContexts
;
140 if (ptr
->handle
== hCtx
) return ptr
;
146 static inline BOOL
LoadTablet(void)
148 static enum {TI_START
= 0, TI_OK
, TI_FAIL
} loaded
= TI_START
;
150 if (loaded
== TI_START
)
152 if (pLoadTabletInfo
&& pLoadTabletInfo(hwndDefault
))
154 TRACE("Initialized the tablet to hwnd %p\n", hwndDefault
);
159 TRACE("Failed to initialize the tablet to hwnd %p\n", hwndDefault
);
164 return loaded
== TI_OK
;
167 int TABLET_PostTabletMessage(LPOPENCONTEXT newcontext
, UINT msg
, WPARAM wParam
,
168 LPARAM lParam
, BOOL send_always
)
170 if ((send_always
) || (newcontext
->context
.lcOptions
& CXO_MESSAGES
))
172 TRACE("Posting message %x to %p\n",msg
, newcontext
->hwndOwner
);
173 return PostMessageA(newcontext
->hwndOwner
, msg
, wParam
, lParam
);
178 static inline DWORD
ScaleForContext(DWORD In
, LONG InOrg
, LONG InExt
, LONG OutOrg
, LONG OutExt
)
180 if (((InExt
> 0 )&&(OutExt
> 0)) || ((InExt
<0) && (OutExt
< 0)))
181 return MulDiv(In
- InOrg
, abs(OutExt
), abs(InExt
)) + OutOrg
;
183 return MulDiv(abs(InExt
) - (In
- InOrg
), abs(OutExt
), abs(InExt
)) + OutOrg
;
186 LPOPENCONTEXT
AddPacketToContextQueue(LPWTPACKET packet
, HWND hwnd
)
188 LPOPENCONTEXT ptr
=NULL
;
190 EnterCriticalSection(&csTablet
);
195 TRACE("Trying Queue %p (%p %p)\n", ptr
->handle
, hwnd
, ptr
->hwndOwner
);
197 if (ptr
->hwndOwner
== hwnd
)
206 tgt
= ptr
->PacketsQueued
;
208 packet
->pkContext
= ptr
->handle
;
210 /* translate packet data to the context */
211 packet
->pkChanged
= packet
->pkChanged
& ptr
->context
.lcPktData
;
213 /* Scale as per documentation */
214 packet
->pkY
= ScaleForContext(packet
->pkY
, ptr
->context
.lcInOrgY
,
215 ptr
->context
.lcInExtY
, ptr
->context
.lcOutOrgY
,
216 ptr
->context
.lcOutExtY
);
218 packet
->pkX
= ScaleForContext(packet
->pkX
, ptr
->context
.lcInOrgX
,
219 ptr
->context
.lcInExtX
, ptr
->context
.lcOutOrgX
,
220 ptr
->context
.lcOutExtX
);
222 /* flip the Y axis */
223 if (ptr
->context
.lcOutExtY
> 0)
224 packet
->pkY
= ptr
->context
.lcOutExtY
- packet
->pkY
;
225 else if (ptr
->context
.lcOutExtY
< 0)
227 int y
= ptr
->context
.lcOutExtY
+ packet
->pkY
;
228 packet
->pkY
= abs(y
);
233 if (tgt
== ptr
->QueueSize
)
235 TRACE("Queue Overflow %p\n",ptr
->handle
);
236 ptr
->PacketQueue
[tgt
-1].pkStatus
|= TPS_QUEUE_ERR
;
240 TRACE("Placed in queue %p index %i\n",ptr
->handle
,tgt
);
241 ptr
->PacketQueue
[tgt
] = *packet
;
242 ptr
->PacketsQueued
++;
244 if (ptr
->ActiveCursor
!= packet
->pkCursor
)
246 ptr
->ActiveCursor
= packet
->pkCursor
;
247 if (ptr
->context
.lcOptions
& CXO_CSRMESSAGES
)
248 TABLET_PostTabletMessage(ptr
, _WT_CSRCHANGE(ptr
->context
.lcMsgBase
),
249 (WPARAM
)packet
->pkSerialNumber
, (LPARAM
)ptr
->handle
,
257 LeaveCriticalSection(&csTablet
);
258 TRACE("Done (%p)\n",ptr
);
263 * Flushes all packets from the queue.
265 static inline void TABLET_FlushQueue(LPOPENCONTEXT context
)
267 context
->PacketsQueued
= 0;
270 static inline int CopyTabletData(LPVOID target
, LPVOID src
, INT size
)
272 memcpy(target
,src
,size
);
276 static INT
TABLET_FindPacket(LPOPENCONTEXT context
, UINT wSerial
,
281 for (loop
= 0; loop
< context
->PacketsQueued
; loop
++)
282 if (context
->PacketQueue
[loop
].pkSerialNumber
== wSerial
)
285 *pkt
= &context
->PacketQueue
[loop
];
289 TRACE("%i .. %i\n",context
->PacketsQueued
,index
);
295 static LPVOID
TABLET_CopyPacketData(LPOPENCONTEXT context
, LPVOID lpPkt
,
301 TRACE("Packet Bits %s\n",DUMPBITS(context
->context
.lcPktData
));
303 if (context
->context
.lcPktData
& PK_CONTEXT
)
304 ptr
+=CopyTabletData(ptr
,&wtp
->pkContext
,sizeof(HCTX
));
305 if (context
->context
.lcPktData
& PK_STATUS
)
306 ptr
+=CopyTabletData(ptr
,&wtp
->pkStatus
,sizeof(UINT
));
307 if (context
->context
.lcPktData
& PK_TIME
)
308 ptr
+=CopyTabletData(ptr
,&wtp
->pkTime
,sizeof(LONG
));
309 if (context
->context
.lcPktData
& PK_CHANGED
)
310 ptr
+=CopyTabletData(ptr
,&wtp
->pkChanged
,sizeof(WTPKT
));
311 if (context
->context
.lcPktData
& PK_SERIAL_NUMBER
)
312 ptr
+=CopyTabletData(ptr
,&wtp
->pkSerialNumber
,sizeof(UINT
));
313 if (context
->context
.lcPktData
& PK_CURSOR
)
314 ptr
+=CopyTabletData(ptr
,&wtp
->pkCursor
,sizeof(UINT
));
315 if (context
->context
.lcPktData
& PK_BUTTONS
)
316 ptr
+=CopyTabletData(ptr
,&wtp
->pkButtons
,sizeof(DWORD
));
317 if (context
->context
.lcPktData
& PK_X
)
318 ptr
+=CopyTabletData(ptr
,&wtp
->pkX
,sizeof(DWORD
));
319 if (context
->context
.lcPktData
& PK_Y
)
320 ptr
+=CopyTabletData(ptr
,&wtp
->pkY
,sizeof(DWORD
));
321 if (context
->context
.lcPktData
& PK_Z
)
322 ptr
+=CopyTabletData(ptr
,&wtp
->pkZ
,sizeof(DWORD
));
323 if (context
->context
.lcPktData
& PK_NORMAL_PRESSURE
)
324 ptr
+=CopyTabletData(ptr
,&wtp
->pkNormalPressure
,sizeof(UINT
));
325 if (context
->context
.lcPktData
& PK_TANGENT_PRESSURE
)
326 ptr
+=CopyTabletData(ptr
,&wtp
->pkTangentPressure
,sizeof(UINT
));
327 if (context
->context
.lcPktData
& PK_ORIENTATION
)
328 ptr
+=CopyTabletData(ptr
,&wtp
->pkOrientation
,sizeof(ORIENTATION
));
329 if (context
->context
.lcPktData
& PK_ROTATION
)
330 ptr
+=CopyTabletData(ptr
,&wtp
->pkRotation
,sizeof(ROTATION
));
332 /*TRACE("Copied %i bytes\n",(INT)ptr - (INT)lpPkt); */
336 static VOID
TABLET_BlankPacketData(LPOPENCONTEXT context
, LPVOID lpPkt
, INT n
)
340 if (context
->context
.lcPktData
& PK_CONTEXT
)
342 if (context
->context
.lcPktData
& PK_STATUS
)
344 if (context
->context
.lcPktData
& PK_TIME
)
346 if (context
->context
.lcPktData
& PK_CHANGED
)
348 if (context
->context
.lcPktData
& PK_SERIAL_NUMBER
)
350 if (context
->context
.lcPktData
& PK_CURSOR
)
352 if (context
->context
.lcPktData
& PK_BUTTONS
)
354 if (context
->context
.lcPktData
& PK_X
)
356 if (context
->context
.lcPktData
& PK_Y
)
358 if (context
->context
.lcPktData
& PK_Z
)
360 if (context
->context
.lcPktData
& PK_NORMAL_PRESSURE
)
362 if (context
->context
.lcPktData
& PK_TANGENT_PRESSURE
)
364 if (context
->context
.lcPktData
& PK_ORIENTATION
)
365 rc
+= sizeof(ORIENTATION
);
366 if (context
->context
.lcPktData
& PK_ROTATION
)
367 rc
+= sizeof(ROTATION
);
374 static UINT
WTInfoT(UINT wCategory
, UINT nIndex
, LPVOID lpOutput
, BOOL bUnicode
)
378 if (!LoadTablet()) return 0;
380 TRACE("(%d, %d, %p, %d)\n", wCategory
, nIndex
, lpOutput
, bUnicode
);
383 * Handle system extents here, as we can use user32.dll code to set them.
385 if(wCategory
== WTI_DEFSYSCTX
)
391 *(LONG
*)lpOutput
= GetSystemMetrics(SM_CXSCREEN
);
395 *(LONG
*)lpOutput
= GetSystemMetrics(SM_CYSCREEN
);
397 /* No action, delegate to X11Drv */
401 if (is_logcontext_category(wCategory
) && nIndex
== 0)
406 pWTInfoW(wCategory
, nIndex
, &buf
);
408 /* Handle system extents here, as we can use user32.dll code to set them */
409 if(wCategory
== WTI_DEFSYSCTX
)
411 buf
.lcSysExtX
= GetSystemMetrics(SM_CXSCREEN
);
412 buf
.lcSysExtY
= GetSystemMetrics(SM_CYSCREEN
);
416 memcpy(lpOutput
, &buf
, sizeof(buf
));
418 LOGCONTEXTWtoA(&buf
, lpOutput
);
421 result
= bUnicode
? sizeof(LOGCONTEXTW
) : sizeof(LOGCONTEXTA
);
423 else if (is_string_field(wCategory
, nIndex
) && !bUnicode
)
425 int size
= pWTInfoW(wCategory
, nIndex
, NULL
);
426 WCHAR
*buf
= HeapAlloc(GetProcessHeap(), 0, size
);
427 pWTInfoW(wCategory
, nIndex
, buf
);
428 result
= WideCharToMultiByte(CP_ACP
, 0, buf
, size
/sizeof(WCHAR
), lpOutput
, lpOutput
? 2*size
: 0, NULL
, NULL
);
429 HeapFree(GetProcessHeap(), 0, buf
);
432 result
= pWTInfoW(wCategory
, nIndex
, lpOutput
);
434 TRACE("returns %d\n", result
);
438 /***********************************************************************
439 * WTInfoA (WINTAB32.20)
441 UINT WINAPI
WTInfoA(UINT wCategory
, UINT nIndex
, LPVOID lpOutput
)
443 return WTInfoT(wCategory
, nIndex
, lpOutput
, FALSE
);
447 /***********************************************************************
448 * WTInfoW (WINTAB32.1020)
450 UINT WINAPI
WTInfoW(UINT wCategory
, UINT nIndex
, LPVOID lpOutput
)
452 return WTInfoT(wCategory
, nIndex
, lpOutput
, TRUE
);
455 /***********************************************************************
456 * WTOpenW (WINTAB32.1021)
458 HCTX WINAPI
WTOpenW(HWND hWnd
, LPLOGCONTEXTW lpLogCtx
, BOOL fEnable
)
460 LPOPENCONTEXT newcontext
;
462 if (!LoadTablet()) return 0;
464 TRACE("hWnd=%p, lpLogCtx=%p, fEnable=%u\n", hWnd
, lpLogCtx
, fEnable
);
465 DUMPCONTEXT(*lpLogCtx
);
467 newcontext
= HeapAlloc(GetProcessHeap(), 0 , sizeof(OPENCONTEXT
));
468 newcontext
->context
= *lpLogCtx
;
469 newcontext
->hwndOwner
= hWnd
;
470 newcontext
->ActiveCursor
= -1;
471 newcontext
->QueueSize
= 10;
472 newcontext
->PacketsQueued
= 0;
473 newcontext
->PacketQueue
=HeapAlloc(GetProcessHeap(),0,sizeof(WTPACKET
)*10);
475 EnterCriticalSection(&csTablet
);
476 newcontext
->handle
= gTopContext
++;
477 newcontext
->next
= gOpenContexts
;
478 gOpenContexts
= newcontext
;
479 LeaveCriticalSection(&csTablet
);
481 pAttachEventQueueToTablet(hWnd
);
483 TABLET_PostTabletMessage(newcontext
, _WT_CTXOPEN(newcontext
->context
.lcMsgBase
), (WPARAM
)newcontext
->handle
,
484 newcontext
->context
.lcStatus
, TRUE
);
488 newcontext
->enabled
= TRUE
;
489 /* TODO: Add to top of overlap order */
490 newcontext
->context
.lcStatus
= CXS_ONTOP
;
494 newcontext
->enabled
= FALSE
;
495 newcontext
->context
.lcStatus
= CXS_DISABLED
;
498 TABLET_PostTabletMessage(newcontext
, _WT_CTXOVERLAP(newcontext
->context
.lcMsgBase
),
499 (WPARAM
)newcontext
->handle
,
500 newcontext
->context
.lcStatus
, TRUE
);
502 return newcontext
->handle
;
505 /***********************************************************************
506 * WTOpenA (WINTAB32.21)
508 HCTX WINAPI
WTOpenA(HWND hWnd
, LPLOGCONTEXTA lpLogCtx
, BOOL fEnable
)
512 LOGCONTEXTAtoW(lpLogCtx
, &logCtxW
);
513 return WTOpenW(hWnd
, &logCtxW
, fEnable
);
516 /***********************************************************************
517 * WTClose (WINTAB32.22)
519 BOOL WINAPI
WTClose(HCTX hCtx
)
521 LPOPENCONTEXT context
,ptr
;
523 TRACE("(%p)\n", hCtx
);
525 EnterCriticalSection(&csTablet
);
527 ptr
= context
= gOpenContexts
;
529 while (context
&& (context
->handle
!= hCtx
))
532 context
= context
->next
;
536 LeaveCriticalSection(&csTablet
);
540 if (context
== gOpenContexts
)
541 gOpenContexts
= context
->next
;
543 ptr
->next
= context
->next
;
545 LeaveCriticalSection(&csTablet
);
547 TABLET_PostTabletMessage(context
, _WT_CTXCLOSE(context
->context
.lcMsgBase
), (WPARAM
)context
->handle
,
548 context
->context
.lcStatus
,TRUE
);
550 HeapFree(GetProcessHeap(),0,context
->PacketQueue
);
551 HeapFree(GetProcessHeap(),0,context
);
556 /***********************************************************************
557 * WTPacketsGet (WINTAB32.23)
559 int WINAPI
WTPacketsGet(HCTX hCtx
, int cMaxPkts
, LPVOID lpPkts
)
562 LPOPENCONTEXT context
;
565 TRACE("(%p, %d, %p)\n", hCtx
, cMaxPkts
, lpPkts
);
570 EnterCriticalSection(&csTablet
);
572 context
= TABLET_FindOpenContext(hCtx
);
575 LeaveCriticalSection(&csTablet
);
580 TABLET_BlankPacketData(context
,lpPkts
,cMaxPkts
);
582 if (context
->PacketsQueued
== 0)
584 LeaveCriticalSection(&csTablet
);
588 limit
= min(cMaxPkts
,context
->PacketsQueued
);
593 for(i
= 0; i
< limit
; i
++)
594 ptr
=TABLET_CopyPacketData(context
,ptr
, &context
->PacketQueue
[i
]);
598 if (limit
< context
->PacketsQueued
)
600 memmove(context
->PacketQueue
, &context
->PacketQueue
[limit
],
601 (context
->PacketsQueued
- (limit
))*sizeof(WTPACKET
));
603 context
->PacketsQueued
-= limit
;
604 LeaveCriticalSection(&csTablet
);
606 TRACE("Copied %i packets\n",limit
);
611 /***********************************************************************
612 * WTPacket (WINTAB32.24)
614 BOOL WINAPI
WTPacket(HCTX hCtx
, UINT wSerial
, LPVOID lpPkt
)
617 LPOPENCONTEXT context
;
618 LPWTPACKET wtp
= NULL
;
620 TRACE("(%p, %d, %p)\n", hCtx
, wSerial
, lpPkt
);
625 EnterCriticalSection(&csTablet
);
627 context
= TABLET_FindOpenContext(hCtx
);
630 LeaveCriticalSection(&csTablet
);
634 rc
= TABLET_FindPacket(context
,wSerial
, &wtp
);
639 TABLET_CopyPacketData(context
,lpPkt
, wtp
);
641 if ((rc
+1) < context
->QueueSize
)
643 memmove(context
->PacketQueue
, &context
->PacketQueue
[rc
+1],
644 (context
->PacketsQueued
- (rc
+1))*sizeof(WTPACKET
));
646 context
->PacketsQueued
-= (rc
+1);
648 LeaveCriticalSection(&csTablet
);
650 TRACE("Returning %i\n",rc
+1);
654 /***********************************************************************
655 * WTEnable (WINTAB32.40)
657 BOOL WINAPI
WTEnable(HCTX hCtx
, BOOL fEnable
)
659 LPOPENCONTEXT context
;
661 TRACE("hCtx=%p, fEnable=%u\n", hCtx
, fEnable
);
663 if (!hCtx
) return FALSE
;
665 EnterCriticalSection(&csTablet
);
666 context
= TABLET_FindOpenContext(hCtx
);
669 LeaveCriticalSection(&csTablet
);
673 /* if we want to enable and it is not enabled then */
674 if(fEnable
&& !context
->enabled
)
676 context
->enabled
= TRUE
;
677 /* TODO: Add to top of overlap order */
678 context
->context
.lcStatus
= CXS_ONTOP
;
679 TABLET_PostTabletMessage(context
,
680 _WT_CTXOVERLAP(context
->context
.lcMsgBase
),
681 (WPARAM
)context
->handle
,
682 context
->context
.lcStatus
, TRUE
);
684 /* if we want to disable and it is not disabled then */
685 else if (!fEnable
&& context
->enabled
)
687 context
->enabled
= FALSE
;
688 /* TODO: Remove from overlap order?? needs a test */
689 context
->context
.lcStatus
= CXS_DISABLED
;
690 TABLET_FlushQueue(context
);
691 TABLET_PostTabletMessage(context
,
692 _WT_CTXOVERLAP(context
->context
.lcMsgBase
),
693 (WPARAM
)context
->handle
,
694 context
->context
.lcStatus
, TRUE
);
696 LeaveCriticalSection(&csTablet
);
701 /***********************************************************************
702 * WTOverlap (WINTAB32.41)
704 * Move context to top or bottom of overlap order
706 BOOL WINAPI
WTOverlap(HCTX hCtx
, BOOL fToTop
)
708 LPOPENCONTEXT context
;
710 TRACE("hCtx=%p, fToTop=%u\n", hCtx
, fToTop
);
712 if (!hCtx
) return FALSE
;
714 EnterCriticalSection(&csTablet
);
715 context
= TABLET_FindOpenContext(hCtx
);
718 LeaveCriticalSection(&csTablet
);
722 /* if we want to send to top and it's not already there */
723 if (fToTop
&& context
->context
.lcStatus
!= CXS_ONTOP
)
725 /* TODO: Move context to top of overlap order */
726 FIXME("Not moving context to top of overlap order\n");
727 context
->context
.lcStatus
= CXS_ONTOP
;
728 TABLET_PostTabletMessage(context
,
729 _WT_CTXOVERLAP(context
->context
.lcMsgBase
),
730 (WPARAM
)context
->handle
,
731 context
->context
.lcStatus
, TRUE
);
735 /* TODO: Move context to bottom of overlap order */
736 FIXME("Not moving context to bottom of overlap order\n");
737 context
->context
.lcStatus
= CXS_OBSCURED
;
738 TABLET_PostTabletMessage(context
,
739 _WT_CTXOVERLAP(context
->context
.lcMsgBase
),
740 (WPARAM
)context
->handle
,
741 context
->context
.lcStatus
, TRUE
);
743 LeaveCriticalSection(&csTablet
);
748 /***********************************************************************
749 * WTConfig (WINTAB32.60)
751 BOOL WINAPI
WTConfig(HCTX hCtx
, HWND hWnd
)
753 FIXME("(%p, %p): stub\n", hCtx
, hWnd
);
755 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
760 /***********************************************************************
761 * WTGetA (WINTAB32.61)
763 BOOL WINAPI
WTGetA(HCTX hCtx
, LPLOGCONTEXTA lpLogCtx
)
765 LPOPENCONTEXT context
;
767 TRACE("(%p, %p)\n", hCtx
, lpLogCtx
);
769 if (!hCtx
) return FALSE
;
771 EnterCriticalSection(&csTablet
);
772 context
= TABLET_FindOpenContext(hCtx
);
775 LeaveCriticalSection(&csTablet
);
779 LOGCONTEXTWtoA(&context
->context
, lpLogCtx
);
780 LeaveCriticalSection(&csTablet
);
785 /***********************************************************************
786 * WTGetW (WINTAB32.1061)
788 BOOL WINAPI
WTGetW(HCTX hCtx
, LPLOGCONTEXTW lpLogCtx
)
790 LPOPENCONTEXT context
;
792 TRACE("(%p, %p)\n", hCtx
, lpLogCtx
);
794 if (!hCtx
) return FALSE
;
796 EnterCriticalSection(&csTablet
);
797 context
= TABLET_FindOpenContext(hCtx
);
800 LeaveCriticalSection(&csTablet
);
804 memmove(lpLogCtx
,&context
->context
,sizeof(LOGCONTEXTW
));
805 LeaveCriticalSection(&csTablet
);
810 /***********************************************************************
811 * WTSetA (WINTAB32.62)
813 BOOL WINAPI
WTSetA(HCTX hCtx
, LPLOGCONTEXTA lpLogCtx
)
815 LPOPENCONTEXT context
;
817 TRACE("hCtx=%p, lpLogCtx=%p\n", hCtx
, lpLogCtx
);
819 if (!hCtx
|| !lpLogCtx
) return FALSE
;
821 /* TODO: if cur process not owner of hCtx only modify
822 * attribs not locked by owner */
824 EnterCriticalSection(&csTablet
);
825 context
= TABLET_FindOpenContext(hCtx
);
828 LeaveCriticalSection(&csTablet
);
832 LOGCONTEXTAtoW(lpLogCtx
, &context
->context
);
833 LeaveCriticalSection(&csTablet
);
838 /***********************************************************************
839 * WTSetW (WINTAB32.1062)
841 BOOL WINAPI
WTSetW(HCTX hCtx
, LPLOGCONTEXTW lpLogCtx
)
843 LPOPENCONTEXT context
;
845 TRACE("hCtx=%p, lpLogCtx=%p\n", hCtx
, lpLogCtx
);
847 if (!hCtx
|| !lpLogCtx
) return FALSE
;
849 /* TODO: if cur process not hCtx owner only modify
850 * attribs not locked by owner */
852 EnterCriticalSection(&csTablet
);
853 context
= TABLET_FindOpenContext(hCtx
);
856 LeaveCriticalSection(&csTablet
);
860 memmove(&context
->context
, lpLogCtx
, sizeof(LOGCONTEXTW
));
861 LeaveCriticalSection(&csTablet
);
866 /***********************************************************************
867 * WTExtGet (WINTAB32.63)
869 BOOL WINAPI
WTExtGet(HCTX hCtx
, UINT wExt
, LPVOID lpData
)
871 FIXME("(%p, %u, %p): stub\n", hCtx
, wExt
, lpData
);
873 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
878 /***********************************************************************
879 * WTExtSet (WINTAB32.64)
881 BOOL WINAPI
WTExtSet(HCTX hCtx
, UINT wExt
, LPVOID lpData
)
883 FIXME("(%p, %u, %p): stub\n", hCtx
, wExt
, lpData
);
885 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
890 /***********************************************************************
891 * WTSave (WINTAB32.65)
893 BOOL WINAPI
WTSave(HCTX hCtx
, LPVOID lpSaveInfo
)
895 FIXME("(%p, %p): stub\n", hCtx
, lpSaveInfo
);
897 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
902 /***********************************************************************
903 * WTRestore (WINTAB32.66)
905 HCTX WINAPI
WTRestore(HWND hWnd
, LPVOID lpSaveInfo
, BOOL fEnable
)
907 FIXME("(%p, %p, %u): stub\n", hWnd
, lpSaveInfo
, fEnable
);
909 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
914 /***********************************************************************
915 * WTPacketsPeek (WINTAB32.80)
917 int WINAPI
WTPacketsPeek(HCTX hCtx
, int cMaxPkts
, LPVOID lpPkts
)
920 LPOPENCONTEXT context
;
923 TRACE("(%p, %d, %p)\n", hCtx
, cMaxPkts
, lpPkts
);
925 if (!hCtx
|| !lpPkts
) return 0;
927 EnterCriticalSection(&csTablet
);
929 context
= TABLET_FindOpenContext(hCtx
);
931 if (!context
|| context
->PacketsQueued
== 0)
933 LeaveCriticalSection(&csTablet
);
937 for (limit
= 0; limit
< cMaxPkts
&& limit
< context
->PacketsQueued
; limit
++)
938 ptr
= TABLET_CopyPacketData(context
,ptr
, &context
->PacketQueue
[limit
]);
940 LeaveCriticalSection(&csTablet
);
941 TRACE("Copied %i packets\n",limit
);
945 /***********************************************************************
946 * WTDataGet (WINTAB32.81)
948 int WINAPI
WTDataGet(HCTX hCtx
, UINT wBegin
, UINT wEnd
,
949 int cMaxPkts
, LPVOID lpPkts
, LPINT lpNPkts
)
951 LPOPENCONTEXT context
;
957 TRACE("(%p, %u, %u, %d, %p, %p)\n",
958 hCtx
, wBegin
, wEnd
, cMaxPkts
, lpPkts
, lpNPkts
);
962 EnterCriticalSection(&csTablet
);
964 context
= TABLET_FindOpenContext(hCtx
);
966 if (!context
|| context
->PacketsQueued
== 0)
968 LeaveCriticalSection(&csTablet
);
972 while (bgn
< context
->PacketsQueued
&&
973 context
->PacketQueue
[bgn
].pkSerialNumber
!= wBegin
)
977 while (end
< context
->PacketsQueued
&&
978 context
->PacketQueue
[end
].pkSerialNumber
!= wEnd
)
981 if ((bgn
== end
) && (end
== context
->PacketsQueued
))
983 LeaveCriticalSection(&csTablet
);
987 for (num
= bgn
; num
<= end
; num
++)
988 ptr
= TABLET_CopyPacketData(context
,ptr
, &context
->PacketQueue
[num
]);
990 /* remove read packets */
991 if ((end
+1) < context
->PacketsQueued
)
992 memmove( &context
->PacketQueue
[bgn
], &context
->PacketQueue
[end
+1],
993 (context
->PacketsQueued
- (end
+1)) * sizeof (WTPACKET
));
995 context
->PacketsQueued
-= ((end
-bgn
)+1);
996 *lpNPkts
= ((end
-bgn
)+1);
998 LeaveCriticalSection(&csTablet
);
999 TRACE("Copied %i packets\n",*lpNPkts
);
1000 return (end
- bgn
)+1;
1003 /***********************************************************************
1004 * WTDataPeek (WINTAB32.82)
1006 int WINAPI
WTDataPeek(HCTX hCtx
, UINT wBegin
, UINT wEnd
,
1007 int cMaxPkts
, LPVOID lpPkts
, LPINT lpNPkts
)
1009 LPOPENCONTEXT context
;
1010 LPVOID ptr
= lpPkts
;
1015 TRACE("(%p, %u, %u, %d, %p, %p)\n",
1016 hCtx
, wBegin
, wEnd
, cMaxPkts
, lpPkts
, lpNPkts
);
1018 if (!hCtx
|| !lpPkts
) return 0;
1020 EnterCriticalSection(&csTablet
);
1022 context
= TABLET_FindOpenContext(hCtx
);
1024 if (!context
|| context
->PacketsQueued
== 0)
1026 LeaveCriticalSection(&csTablet
);
1030 while (bgn
< context
->PacketsQueued
&&
1031 context
->PacketQueue
[bgn
].pkSerialNumber
!= wBegin
)
1035 while (end
< context
->PacketsQueued
&&
1036 context
->PacketQueue
[end
].pkSerialNumber
!= wEnd
)
1039 if (bgn
== context
->PacketsQueued
|| end
== context
->PacketsQueued
)
1041 TRACE("%i %i %i\n", bgn
, end
, context
->PacketsQueued
);
1042 LeaveCriticalSection(&csTablet
);
1046 for (num
= bgn
; num
<= end
; num
++)
1047 ptr
= TABLET_CopyPacketData(context
,ptr
, &context
->PacketQueue
[num
]);
1049 *lpNPkts
= ((end
-bgn
)+1);
1050 LeaveCriticalSection(&csTablet
);
1052 TRACE("Copied %i packets\n",*lpNPkts
);
1053 return (end
- bgn
)+1;
1056 /***********************************************************************
1057 * WTQueuePacketsEx (WINTAB32.200)
1059 BOOL WINAPI
WTQueuePacketsEx(HCTX hCtx
, UINT
*lpOld
, UINT
*lpNew
)
1061 LPOPENCONTEXT context
;
1063 TRACE("(%p, %p, %p)\n", hCtx
, lpOld
, lpNew
);
1065 if (!hCtx
) return FALSE
;
1067 EnterCriticalSection(&csTablet
);
1069 context
= TABLET_FindOpenContext(hCtx
);
1071 if (context
&& context
->PacketsQueued
)
1073 *lpOld
= context
->PacketQueue
[0].pkSerialNumber
;
1074 *lpNew
= context
->PacketQueue
[context
->PacketsQueued
-1].pkSerialNumber
;
1078 TRACE("No packets\n");
1079 LeaveCriticalSection(&csTablet
);
1082 LeaveCriticalSection(&csTablet
);
1087 /***********************************************************************
1088 * WTQueueSizeGet (WINTAB32.84)
1090 int WINAPI
WTQueueSizeGet(HCTX hCtx
)
1092 LPOPENCONTEXT context
;
1095 TRACE("(%p)\n", hCtx
);
1097 if (!hCtx
) return 0;
1099 EnterCriticalSection(&csTablet
);
1100 context
= TABLET_FindOpenContext(hCtx
);
1102 queueSize
= context
->QueueSize
;
1103 LeaveCriticalSection(&csTablet
);
1107 /***********************************************************************
1108 * WTQueueSizeSet (WINTAB32.85)
1110 BOOL WINAPI
WTQueueSizeSet(HCTX hCtx
, int nPkts
)
1112 LPOPENCONTEXT context
;
1114 TRACE("(%p, %d)\n", hCtx
, nPkts
);
1116 if (!hCtx
) return FALSE
;
1118 EnterCriticalSection(&csTablet
);
1120 context
= TABLET_FindOpenContext(hCtx
);
1123 LeaveCriticalSection(&csTablet
);
1127 context
->PacketQueue
= HeapReAlloc(GetProcessHeap(), 0,
1128 context
->PacketQueue
, sizeof(WTPACKET
)*nPkts
);
1130 context
->QueueSize
= nPkts
;
1131 LeaveCriticalSection(&csTablet
);