4 * Copyright 1998, 1999 Eric Kohl
7 * This is just a dummy control. An author is needed! Any volunteers?
8 * I will only improve this control once in a while.
9 * Eric <ekohl@abo.rhein-zeitung.de>
13 * - All notifications.
18 #include "debugtools.h"
20 DEFAULT_DEBUG_CHANNEL(nativefont);
24 DWORD dwDummy; /* just to keep the compiler happy ;-) */
27 #define NATIVEFONT_GetInfoPtr(hwnd) ((NATIVEFONT_INFO *)GetWindowLongA (hwnd, 0))
31 NATIVEFONT_Create (HWND hwnd, WPARAM wParam, LPARAM lParam)
33 NATIVEFONT_INFO *infoPtr;
35 /* allocate memory for info structure */
36 infoPtr = (NATIVEFONT_INFO *)COMCTL32_Alloc (sizeof(NATIVEFONT_INFO));
37 SetWindowLongA (hwnd, 0, (DWORD)infoPtr);
40 /* initialize info structure */
48 NATIVEFONT_Destroy (HWND hwnd, WPARAM wParam, LPARAM lParam)
50 NATIVEFONT_INFO *infoPtr = NATIVEFONT_GetInfoPtr (hwnd);
55 /* free comboex info data */
56 COMCTL32_Free (infoPtr);
64 NATIVEFONT_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
70 return NATIVEFONT_Create (hwnd, wParam, lParam);
73 return NATIVEFONT_Destroy (hwnd, wParam, lParam);
76 ERR("unknown msg %04x wp=%08x lp=%08lx\n",
77 uMsg, wParam, lParam);
78 return DefWindowProcA (hwnd, uMsg, wParam, lParam);
85 NATIVEFONT_Register (void)
89 ZeroMemory (&wndClass, sizeof(WNDCLASSA));
90 wndClass.style = CS_GLOBALCLASS;
91 wndClass.lpfnWndProc = (WNDPROC)NATIVEFONT_WindowProc;
92 wndClass.cbClsExtra = 0;
93 wndClass.cbWndExtra = sizeof(NATIVEFONT_INFO *);
94 wndClass.hCursor = LoadCursorA (0, IDC_ARROWA);
95 wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
96 wndClass.lpszClassName = WC_NATIVEFONTCTLA;
98 RegisterClassA (&wndClass);
103 NATIVEFONT_Unregister (void)
105 UnregisterClassA (WC_NATIVEFONTCTLA, (HINSTANCE)NULL);