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
30 #include "wintab_internal.h"
31 #include "wine/gdi_driver.h"
32 #include "wine/debug.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(wintab32);
36 HWND hwndDefault = NULL;
38 WC_TABLETCLASSNAME[] = {'W','i','n','e','T','a','b','l','e','t','C','l','a','s','s',0};
39 static CRITICAL_SECTION_DEBUG csTablet_debug =
42 { &csTablet_debug.ProcessLocksList, &csTablet_debug.ProcessLocksList },
43 0, 0, { (DWORD_PTR)(__FILE__ ": csTablet") }
45 CRITICAL_SECTION csTablet = { &csTablet_debug, -1, 0, 0, 0, 0 };
47 int (CDECL *pLoadTabletInfo)(HWND hwnddefault) = NULL;
48 int (CDECL *pGetCurrentPacket)(LPWTPACKET packet) = NULL;
49 int (CDECL *pAttachEventQueueToTablet)(HWND hOwner) = NULL;
50 UINT (CDECL *pWTInfoW)(UINT wCategory, UINT nIndex, LPVOID lpOutput) = NULL;
52 static LRESULT WINAPI TABLET_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
55 static VOID TABLET_Register(void)
58 ZeroMemory(&wndClass, sizeof(WNDCLASSW));
59 wndClass.style = CS_GLOBALCLASS;
60 wndClass.lpfnWndProc = TABLET_WindowProc;
61 wndClass.cbClsExtra = 0;
62 wndClass.cbWndExtra = 0;
63 wndClass.hCursor = NULL;
64 wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW +1);
65 wndClass.lpszClassName = WC_TABLETCLASSNAME;
66 RegisterClassW(&wndClass);
69 static VOID TABLET_Unregister(void)
71 UnregisterClassW(WC_TABLETCLASSNAME, NULL);
74 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpReserved)
76 static const WCHAR name[] = {'T','a','b','l','e','t',0};
78 TRACE("%p, %x, %p\n",hInstDLL,fdwReason,lpReserved);
81 case DLL_PROCESS_ATTACH:
82 TRACE("Initialization\n");
83 DisableThreadLibraryCalls(hInstDLL);
85 hwndDefault = CreateWindowW(WC_TABLETCLASSNAME, name,
86 WS_POPUPWINDOW,0,0,0,0,0,0,hInstDLL,0);
89 HDC hdc = GetDC( hwndDefault );
90 HMODULE module = __wine_get_driver_module( hdc );
92 pLoadTabletInfo = (void *)GetProcAddress(module, "LoadTabletInfo");
93 pAttachEventQueueToTablet = (void *)GetProcAddress(module, "AttachEventQueueToTablet");
94 pGetCurrentPacket = (void *)GetProcAddress(module, "GetCurrentPacket");
95 pWTInfoW = (void *)GetProcAddress(module, "WTInfoW");
96 ReleaseDC( hwndDefault, hdc );
101 case DLL_PROCESS_DETACH:
102 TRACE("Detaching\n");
105 DestroyWindow(hwndDefault);
109 DeleteCriticalSection(&csTablet);
117 * The window proc for the default TABLET window
119 static LRESULT WINAPI TABLET_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
122 TRACE("Incoming Message 0x%x (0x%08x, 0x%08x)\n", uMsg, (UINT)wParam,
133 LPOPENCONTEXT handler;
134 if (pGetCurrentPacket)
136 pGetCurrentPacket(&packet);
137 handler = AddPacketToContextQueue(&packet,(HWND)lParam);
138 if (handler && handler->context.lcOptions & CXO_MESSAGES)
139 TABLET_PostTabletMessage(handler, _WT_PACKET(handler->context.lcMsgBase),
140 (WPARAM)packet.pkSerialNumber,
141 (LPARAM)handler->handle, FALSE);
148 LPOPENCONTEXT handler;
149 if (pGetCurrentPacket)
151 pGetCurrentPacket(&packet);
152 handler = AddPacketToContextQueue(&packet,(HWND)wParam);
154 TABLET_PostTabletMessage(handler, WT_PROXIMITY,
155 (WPARAM)handler->handle, lParam, TRUE);