4 * Copyright 2003 CodeWeavers, Aric Stewart
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #include "wintab_internal.h"
30 #include "wine/debug.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(wintab32
);
34 HWND hwndDefault
= NULL
;
36 WC_TABLETCLASSNAME
[] = {'W','i','n','e','T','a','b','l','e','t','C','l','a','s','s',0};
37 static CRITICAL_SECTION_DEBUG csTablet_debug
=
40 { &csTablet_debug
.ProcessLocksList
, &csTablet_debug
.ProcessLocksList
},
41 0, 0, { (DWORD_PTR
)(__FILE__
": csTablet") }
43 CRITICAL_SECTION csTablet
= { &csTablet_debug
, -1, 0, 0, 0, 0 };
45 int (CDECL
*pLoadTabletInfo
)(HWND hwnddefault
) = NULL
;
46 int (CDECL
*pGetCurrentPacket
)(LPWTPACKET packet
) = NULL
;
47 int (CDECL
*pAttachEventQueueToTablet
)(HWND hOwner
) = NULL
;
48 UINT (CDECL
*pWTInfoW
)(UINT wCategory
, UINT nIndex
, LPVOID lpOutput
) = NULL
;
50 static LRESULT WINAPI
TABLET_WindowProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
,
53 static VOID
TABLET_Register(void)
56 ZeroMemory(&wndClass
, sizeof(WNDCLASSW
));
57 wndClass
.style
= CS_GLOBALCLASS
;
58 wndClass
.lpfnWndProc
= TABLET_WindowProc
;
59 wndClass
.cbClsExtra
= 0;
60 wndClass
.cbWndExtra
= 0;
61 wndClass
.hCursor
= NULL
;
62 wndClass
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+1);
63 wndClass
.lpszClassName
= WC_TABLETCLASSNAME
;
64 RegisterClassW(&wndClass
);
67 static VOID
TABLET_Unregister(void)
69 UnregisterClassW(WC_TABLETCLASSNAME
, NULL
);
72 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpReserved
)
74 static const WCHAR name
[] = {'T','a','b','l','e','t',0};
77 TRACE("%p, %x, %p\n",hInstDLL
,fdwReason
,lpReserved
);
80 case DLL_PROCESS_ATTACH
:
81 TRACE("Initialization\n");
82 DisableThreadLibraryCalls(hInstDLL
);
83 hx11drv
= GetModuleHandleA("winex11.drv");
86 pLoadTabletInfo
= (void *)GetProcAddress(hx11drv
, "LoadTabletInfo");
87 pAttachEventQueueToTablet
= (void *)GetProcAddress(hx11drv
, "AttachEventQueueToTablet");
88 pGetCurrentPacket
= (void *)GetProcAddress(hx11drv
, "GetCurrentPacket");
89 pWTInfoW
= (void *)GetProcAddress(hx11drv
, "WTInfoW");
91 hwndDefault
= CreateWindowW(WC_TABLETCLASSNAME
, name
,
92 WS_POPUPWINDOW
,0,0,0,0,0,0,hInstDLL
,0);
97 case DLL_PROCESS_DETACH
:
101 DestroyWindow(hwndDefault
);
105 DeleteCriticalSection(&csTablet
);
113 * The window proc for the default TABLET window
115 static LRESULT WINAPI
TABLET_WindowProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
,
118 TRACE("Incoming Message 0x%x (0x%08x, 0x%08x)\n", uMsg
, (UINT
)wParam
,
129 LPOPENCONTEXT handler
;
130 if (pGetCurrentPacket
)
132 pGetCurrentPacket(&packet
);
133 handler
= AddPacketToContextQueue(&packet
,(HWND
)lParam
);
134 if (handler
&& handler
->context
.lcOptions
& CXO_MESSAGES
)
135 TABLET_PostTabletMessage(handler
, _WT_PACKET(handler
->context
.lcMsgBase
),
136 (WPARAM
)packet
.pkSerialNumber
,
137 (LPARAM
)handler
->handle
, FALSE
);
144 LPOPENCONTEXT handler
;
145 if (pGetCurrentPacket
)
147 pGetCurrentPacket(&packet
);
148 handler
= AddPacketToContextQueue(&packet
,(HWND
)wParam
);
150 TABLET_PostTabletMessage(handler
, WT_PROXIMITY
,
151 (WPARAM
)handler
->handle
, lParam
, TRUE
);