Removed all non-standard common control headers from the include
[wine/hacks.git] / dlls / comctl32 / nativefont.c
blob7ef53afba905052f4b3e13e199a754922401c089
1 /*
2 * Native Font control
4 * Copyright 1998, 1999 Eric Kohl
6 * NOTES
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>
11 * TODO:
12 * - All messages.
13 * - All notifications.
16 #include "winbase.h"
17 #include "commctrl.h"
18 #include "debugtools.h"
20 DEFAULT_DEBUG_CHANNEL(nativefont);
22 typedef struct
24 DWORD dwDummy; /* just to keep the compiler happy ;-) */
25 } NATIVEFONT_INFO;
27 #define NATIVEFONT_GetInfoPtr(hwnd) ((NATIVEFONT_INFO *)GetWindowLongA (hwnd, 0))
30 static LRESULT
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 */
43 return 0;
47 static LRESULT
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);
58 return 0;
63 static LRESULT WINAPI
64 NATIVEFONT_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
66 switch (uMsg)
69 case WM_CREATE:
70 return NATIVEFONT_Create (hwnd, wParam, lParam);
72 case WM_DESTROY:
73 return NATIVEFONT_Destroy (hwnd, wParam, lParam);
75 default:
76 ERR("unknown msg %04x wp=%08x lp=%08lx\n",
77 uMsg, wParam, lParam);
78 return DefWindowProcA (hwnd, uMsg, wParam, lParam);
80 return 0;
84 VOID
85 NATIVEFONT_Register (void)
87 WNDCLASSA wndClass;
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);
102 VOID
103 NATIVEFONT_Unregister (void)
105 UnregisterClassA (WC_NATIVEFONTCTLA, (HINSTANCE)NULL);