]>
Commit | Line | Data |
---|---|---|
7391216e | 1 | ///////////////////////////////////////////////////////////////////////////// |
05e3a383 | 2 | // Name: wx/msw/missing.h |
7391216e | 3 | // Purpose: Declarations for parts of the Win32 SDK that are missing in |
05e3a383 | 4 | // the versions that come with some compilers |
7391216e VS |
5 | // Created: 2002/04/23 |
6 | // RCS-ID: $Id$ | |
05e3a383 | 7 | // Copyright: (c) 2002 Mattia Barbon |
65571936 | 8 | // Licence: wxWindows licence |
7391216e VS |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | #ifndef _WX_MISSING_H_ | |
12 | #define _WX_MISSING_H_ | |
13 | ||
90a752c2 JS |
14 | /* |
15 | * The following are required for VC++ 6. | |
16 | */ | |
7391216e | 17 | |
8003f8de DS |
18 | // Needed by cursor.cpp |
19 | #ifndef IDC_HAND | |
20 | #define IDC_HAND MAKEINTRESOURCE(32649) | |
21 | #endif | |
22 | ||
90a752c2 JS |
23 | // Needed by strconv.cpp |
24 | #ifndef WC_NO_BEST_FIT_CHARS | |
25 | #define WC_NO_BEST_FIT_CHARS 0x400 | |
7391216e VS |
26 | #endif |
27 | ||
90a752c2 JS |
28 | #ifndef WM_CONTEXTMENU |
29 | #define WM_CONTEXTMENU 0x007B | |
3bce6687 JS |
30 | #endif |
31 | ||
90a752c2 JS |
32 | // Needed by toplevel.cpp |
33 | #ifndef WM_UPDATEUISTATE | |
34 | #define WM_UPDATEUISTATE 0x0128 | |
3bce6687 JS |
35 | #endif |
36 | ||
1ca78aa1 JS |
37 | #ifndef WM_CHANGEUISTATE |
38 | #define WM_CHANGEUISTATE 0x0127 | |
39 | #endif | |
40 | ||
90a752c2 JS |
41 | #ifndef WM_PRINTCLIENT |
42 | #define WM_PRINTCLIENT 0x318 | |
3bce6687 JS |
43 | #endif |
44 | ||
90a752c2 | 45 | // Needed by toplevel.cpp |
3ef092d6 VZ |
46 | #ifndef UIS_SET |
47 | #define UIS_SET 1 | |
48 | #define UIS_CLEAR 2 | |
90a752c2 | 49 | #define UIS_INITIALIZE 3 |
3bce6687 JS |
50 | #endif |
51 | ||
90a752c2 JS |
52 | #ifndef UISF_HIDEFOCUS |
53 | #define UISF_HIDEFOCUS 1 | |
7391216e VS |
54 | #endif |
55 | ||
90a752c2 JS |
56 | #ifndef UISF_HIDEACCEL |
57 | #define UISF_HIDEACCEL 2 | |
49bbd59b | 58 | #endif |
2b5f62a0 | 59 | |
90a752c2 JS |
60 | #ifndef OFN_EXPLORER |
61 | #define OFN_EXPLORER 0x00080000 | |
521e585f VZ |
62 | #endif |
63 | ||
90a752c2 JS |
64 | #ifndef OFN_ENABLESIZING |
65 | #define OFN_ENABLESIZING 0x00800000 | |
8318f30f CE |
66 | #endif |
67 | ||
90a752c2 JS |
68 | // Needed by window.cpp |
69 | #if wxUSE_MOUSEWHEEL | |
70 | #ifndef WM_MOUSEWHEEL | |
71 | #define WM_MOUSEWHEEL 0x020A | |
72 | #endif | |
73 | #ifndef WHEEL_DELTA | |
74 | #define WHEEL_DELTA 120 | |
75 | #endif | |
76 | #ifndef SPI_GETWHEELSCROLLLINES | |
77 | #define SPI_GETWHEELSCROLLLINES 104 | |
78 | #endif | |
79 | #endif // wxUSE_MOUSEWHEEL | |
8318f30f | 80 | |
90a752c2 JS |
81 | // Needed by window.cpp |
82 | #ifndef VK_OEM_1 | |
83 | #define VK_OEM_1 0xBA | |
84 | #define VK_OEM_2 0xBF | |
85 | #define VK_OEM_3 0xC0 | |
86 | #define VK_OEM_4 0xDB | |
87 | #define VK_OEM_5 0xDC | |
88 | #define VK_OEM_6 0xDD | |
89 | #define VK_OEM_7 0xDE | |
8318f30f CE |
90 | #endif |
91 | ||
90a752c2 JS |
92 | #ifndef VK_OEM_COMMA |
93 | #define VK_OEM_PLUS 0xBB | |
94 | #define VK_OEM_COMMA 0xBC | |
95 | #define VK_OEM_MINUS 0xBD | |
96 | #define VK_OEM_PERIOD 0xBE | |
dd54f5d3 | 97 | #endif |
7391216e | 98 | |
ddec9f1e JS |
99 | #ifndef SM_TABLETPC |
100 | #define SM_TABLETPC 86 | |
101 | #endif | |
102 | ||
103 | #ifndef INKEDIT_CLASS | |
104 | # define INKEDIT_CLASSW L"INKEDIT" | |
105 | # ifdef UNICODE | |
106 | # define INKEDIT_CLASS INKEDIT_CLASSW | |
107 | # else | |
108 | # define INKEDIT_CLASS "INKEDIT" | |
109 | # endif | |
110 | #endif | |
111 | ||
112 | #ifndef EM_SETINKINSERTMODE | |
113 | # define EM_SETINKINSERTMODE (WM_USER + 0x0204) | |
114 | #endif | |
115 | ||
116 | #ifndef EM_SETUSEMOUSEFORINPUT | |
117 | #define EM_SETUSEMOUSEFORINPUT (WM_USER + 0x224) | |
118 | #endif | |
119 | ||
e7b8da22 JS |
120 | #ifndef TPM_RECURSE |
121 | #define TPM_RECURSE 1 | |
122 | #endif | |
123 | ||
50f3c41d RD |
124 | |
125 | #ifndef WS_EX_LAYERED | |
126 | #define WS_EX_LAYERED 0x80000 | |
127 | #endif | |
128 | ||
129 | #ifndef LWA_ALPHA | |
130 | #define LWA_ALPHA 2 | |
131 | #endif | |
132 | ||
a87f2821 MW |
133 | /* |
134 | * The following are required for VC++ 5 when the PSDK is not available. | |
135 | */ | |
136 | ||
137 | #if defined __VISUALC__ && __VISUALC__ <= 1100 | |
138 | ||
139 | #ifndef VER_NT_WORKSTATION | |
140 | ||
141 | typedef struct _OSVERSIONINFOEXA { | |
142 | DWORD dwOSVersionInfoSize; | |
143 | DWORD dwMajorVersion; | |
144 | DWORD dwMinorVersion; | |
145 | DWORD dwBuildNumber; | |
146 | DWORD dwPlatformId; | |
147 | CHAR szCSDVersion[128]; | |
148 | WORD wServicePackMajor; | |
149 | WORD wServicePackMinor; | |
150 | WORD wSuiteMask; | |
151 | BYTE wProductType; | |
152 | BYTE wReserved; | |
153 | } OSVERSIONINFOEXA, *POSVERSIONINFOEXA, *LPOSVERSIONINFOEXA; | |
154 | typedef struct _OSVERSIONINFOEXW { | |
155 | DWORD dwOSVersionInfoSize; | |
156 | DWORD dwMajorVersion; | |
157 | DWORD dwMinorVersion; | |
158 | DWORD dwBuildNumber; | |
159 | DWORD dwPlatformId; | |
160 | WCHAR szCSDVersion[128]; | |
161 | WORD wServicePackMajor; | |
162 | WORD wServicePackMinor; | |
163 | WORD wSuiteMask; | |
164 | BYTE wProductType; | |
165 | BYTE wReserved; | |
166 | } OSVERSIONINFOEXW, *POSVERSIONINFOEXW, *LPOSVERSIONINFOEXW; | |
167 | ||
168 | #ifdef UNICODE | |
169 | typedef OSVERSIONINFOW OSVERSIONINFO,*POSVERSIONINFO,*LPOSVERSIONINFO; | |
170 | typedef OSVERSIONINFOEXW OSVERSIONINFOEX,*POSVERSIONINFOEX,*LPOSVERSIONINFOEX; | |
171 | #else | |
172 | typedef OSVERSIONINFOA OSVERSIONINFO,*POSVERSIONINFO,*LPOSVERSIONINFO; | |
173 | typedef OSVERSIONINFOEXA OSVERSIONINFOEX,*POSVERSIONINFOEX,*LPOSVERSIONINFOEX; | |
174 | #endif | |
175 | ||
176 | #endif // defined VER_NT_WORKSTATION | |
177 | ||
178 | #ifndef CP_SYMBOL | |
179 | #define CP_SYMBOL 42 | |
180 | #endif | |
181 | ||
182 | // NMLVCUSTOMDRAW originally didn't have the iSubItem member. It was added | |
183 | // with IE4, as was IPN_FIRST which is used as a test :-(. | |
184 | // | |
185 | #ifndef IPN_FIRST | |
186 | ||
187 | typedef struct wxtagNMLVCUSTOMDRAW_ { | |
188 | NMCUSTOMDRAW nmcd; | |
189 | COLORREF clrText; | |
190 | COLORREF clrTextBk; | |
191 | int iSubItem; | |
192 | } wxNMLVCUSTOMDRAW_, *wxLPNMLVCUSTOMDRAW_; | |
193 | ||
194 | #define NMLVCUSTOMDRAW wxNMLVCUSTOMDRAW_ | |
195 | #define LPNMLVCUSTOMDRAW wxLPNMLVCUSTOMDRAW_ | |
196 | ||
197 | #endif // defined IPN_FIRST | |
198 | ||
199 | #endif // defined __VISUALC__ && __VISUALC__ <= 1100 | |
200 | ||
e2478fde | 201 | // ---------------------------------------------------------------------------- |
90a752c2 JS |
202 | // ListView common control |
203 | // Needed by listctrl.cpp | |
e2478fde VZ |
204 | // ---------------------------------------------------------------------------- |
205 | ||
aec26358 WS |
206 | #ifndef LVS_EX_FULLROWSELECT |
207 | #define LVS_EX_FULLROWSELECT 0x00000020 | |
208 | #endif | |
209 | ||
90a752c2 JS |
210 | #ifndef LVS_EX_LABELTIP |
211 | #define LVS_EX_LABELTIP 0x00004000 | |
e2478fde VZ |
212 | #endif |
213 | ||
05886ed3 RD |
214 | #ifndef LVS_EX_SUBITEMIMAGES |
215 | #define LVS_EX_SUBITEMIMAGES 0x00000002 | |
216 | #endif | |
217 | ||
06525673 JS |
218 | #ifndef HDN_GETDISPINFOW |
219 | #define HDN_GETDISPINFOW (HDN_FIRST-29) | |
220 | #endif | |
221 | ||
90a752c2 | 222 | /* |
c6c2445d JS |
223 | * In addition to the above, the following are required for several compilers. |
224 | */ | |
225 | ||
226 | #if !defined(CCS_VERT) | |
227 | #define CCS_VERT 0x00000080L | |
228 | #endif | |
229 | ||
230 | #if !defined(TB_SETDISABLEDIMAGELIST) | |
231 | #define TB_SETDISABLEDIMAGELIST (WM_USER + 54) | |
232 | #endif // !defined(TB_SETDISABLEDIMAGELIST) | |
233 | ||
234 | #ifndef CFM_BACKCOLOR | |
235 | #define CFM_BACKCOLOR 0x04000000 | |
236 | #endif | |
237 | ||
8b5d41cc MW |
238 | #ifndef HANGUL_CHARSET |
239 | #define HANGUL_CHARSET 129 | |
240 | #endif | |
241 | ||
242 | #ifndef CCM_SETUNICODEFORMAT | |
243 | #define CCM_SETUNICODEFORMAT 8197 | |
244 | #endif | |
245 | ||
246 | // ---------------------------------------------------------------------------- | |
247 | // Tree control | |
248 | // ---------------------------------------------------------------------------- | |
249 | ||
250 | #ifndef TV_FIRST | |
251 | #define TV_FIRST 0x1100 | |
252 | #endif | |
253 | ||
254 | #ifndef TVS_FULLROWSELECT | |
255 | #define TVS_FULLROWSELECT 0x1000 | |
256 | #endif | |
257 | ||
258 | #ifndef TVM_SETBKCOLOR | |
259 | #define TVM_SETBKCOLOR (TV_FIRST + 29) | |
260 | #define TVM_SETTEXTCOLOR (TV_FIRST + 30) | |
261 | #endif | |
262 | ||
c6c2445d JS |
263 | /* |
264 | * The following are required for BC++ 5.5 (none at present.) | |
90a752c2 | 265 | */ |
e2478fde | 266 | |
90a752c2 | 267 | /* |
c6c2445d | 268 | * The following are specifically required for Digital Mars C++ |
90a752c2 | 269 | */ |
e2478fde | 270 | |
90a752c2 | 271 | #ifdef __DMC__ |
e2478fde | 272 | |
4aa14001 WS |
273 | typedef struct _OSVERSIONINFOEX { |
274 | DWORD dwOSVersionInfoSize; | |
275 | DWORD dwMajorVersion; | |
276 | DWORD dwMinorVersion; | |
277 | DWORD dwBuildNumber; | |
278 | DWORD dwPlatformId; | |
279 | TCHAR szCSDVersion[ 128 ]; | |
280 | WORD wServicePackMajor; | |
281 | WORD wServicePackMinor; | |
282 | WORD wSuiteMask; | |
283 | BYTE wProductType; | |
284 | BYTE wReserved; | |
285 | } OSVERSIONINFOEX; | |
286 | ||
287 | #ifndef _TrackMouseEvent | |
288 | #define _TrackMouseEvent TrackMouseEvent | |
e2478fde VZ |
289 | #endif |
290 | ||
90a752c2 JS |
291 | #ifndef LVM_SETEXTENDEDLISTVIEWSTYLE |
292 | #define LVM_SETEXTENDEDLISTVIEWSTYLE (0x1000 + 54) | |
e2478fde VZ |
293 | #endif |
294 | ||
a6f7daee WS |
295 | #ifndef LVM_GETSUBITEMRECT |
296 | #define LVM_GETSUBITEMRECT (0x1000 + 56) | |
297 | #endif | |
298 | ||
90a752c2 JS |
299 | #ifndef LVCF_IMAGE |
300 | #define LVCF_IMAGE 0x0010 | |
e2478fde VZ |
301 | #endif |
302 | ||
90a752c2 JS |
303 | #ifndef Header_GetItemRect |
304 | #define Header_GetItemRect(w,i,r) \ | |
305 | (BOOL)SendMessage((w),HDM_GETITEMRECT,(WPARAM)(i),(LPARAM)(r)) | |
3ec4107d MB |
306 | #endif |
307 | ||
90a752c2 JS |
308 | #ifndef HDM_GETITEMRECT |
309 | #define HDM_GETITEMRECT (HDM_FIRST+7) | |
3ec4107d MB |
310 | #endif |
311 | ||
90a752c2 JS |
312 | #ifndef ListView_GetHeader |
313 | #define ListView_GetHeader(w) (HWND)SendMessage((w),LVM_GETHEADER,0,0) | |
3ec4107d MB |
314 | #endif |
315 | ||
a6f7daee WS |
316 | #ifndef ListView_GetSubItemRect |
317 | #define ListView_GetSubItemRect(w, i, s, c, p) (HWND)SendMessage(w,LVM_GETSUBITEMRECT,i, ((p) ? ((((LPRECT)(p))->top = s), (((LPRECT)(p))->left = c), (LPARAM)(p)) : (LPARAM)(LPRECT)NULL)) | |
318 | #endif | |
319 | ||
90a752c2 JS |
320 | #ifndef LVM_GETHEADER |
321 | #define LVM_GETHEADER (LVM_FIRST+31) | |
3ec4107d MB |
322 | #endif |
323 | ||
90a752c2 JS |
324 | #ifndef LVSICF_NOSCROLL |
325 | #define LVSICF_NOINVALIDATEALL 0x0001 | |
326 | #define LVSICF_NOSCROLL 0x0002 | |
3ec4107d MB |
327 | #endif |
328 | ||
4aa14001 WS |
329 | #ifndef CP_SYMBOL |
330 | #define CP_SYMBOL 42 | |
331 | #endif | |
332 | ||
3ea19afd WS |
333 | // ---------------------------------------------------------------------------- |
334 | // wxDisplay | |
335 | // ---------------------------------------------------------------------------- | |
336 | ||
337 | // The windows headers with Digital Mars lack some typedefs. | |
338 | // typedef them as my_XXX and then #define to rename to XXX in case | |
339 | // a newer version of Digital Mars fixes the headers | |
340 | // (or up to date PSDK is in use with older version) | |
341 | // also we use any required definition (MONITOR_DEFAULTTONULL) to recognize | |
342 | // whether whole missing block needs to be included | |
343 | ||
344 | #ifndef MONITOR_DEFAULTTONULL | |
345 | ||
346 | #define HMONITOR_DECLARED | |
347 | DECLARE_HANDLE(HMONITOR); | |
348 | typedef BOOL(CALLBACK* my_MONITORENUMPROC)(HMONITOR,HDC,LPRECT,LPARAM); | |
349 | #define MONITORENUMPROC my_MONITORENUMPROC | |
350 | typedef struct my_tagMONITORINFO { | |
351 | DWORD cbSize; | |
352 | RECT rcMonitor; | |
353 | RECT rcWork; | |
354 | DWORD dwFlags; | |
355 | } my_MONITORINFO,*my_LPMONITORINFO; | |
356 | #define MONITORINFO my_MONITORINFO | |
357 | #define LPMONITORINFO my_LPMONITORINFO | |
358 | ||
359 | typedef struct my_MONITORINFOEX : public my_tagMONITORINFO | |
360 | { | |
361 | TCHAR szDevice[CCHDEVICENAME]; | |
362 | } my_MONITORINFOEX, *my_LPMONITORINFOEX; | |
363 | #define MONITORINFOEX my_MONITORINFOEX | |
364 | #define LPMONITORINFOEX my_LPMONITORINFOEX | |
365 | ||
366 | #ifndef MONITOR_DEFAULTTONULL | |
367 | #define MONITOR_DEFAULTTONULL 0 | |
368 | #endif // MONITOR_DEFAULTTONULL | |
369 | ||
370 | #ifndef MONITORINFOF_PRIMARY | |
371 | #define MONITORINFOF_PRIMARY 1 | |
372 | #endif // MONITORINFOF_PRIMARY | |
373 | ||
374 | #ifndef DDENUM_ATTACHEDSECONDARYDEVICES | |
375 | #define DDENUM_ATTACHEDSECONDARYDEVICES 1 | |
376 | #endif | |
377 | ||
378 | #endif // MONITOR_DEFAULTTONULL | |
379 | ||
05e3a383 VZ |
380 | // ---------------------------------------------------------------------------- |
381 | // Tree control | |
382 | // ---------------------------------------------------------------------------- | |
383 | ||
384 | #ifndef TVIS_FOCUSED | |
385 | #define TVIS_FOCUSED 0x0001 | |
386 | #endif | |
387 | ||
05e3a383 VZ |
388 | #ifndef TVS_CHECKBOXES |
389 | #define TVS_CHECKBOXES 0x0100 | |
390 | #endif | |
391 | ||
03de0ad4 WS |
392 | #ifndef TVITEM |
393 | #define TVITEM TV_ITEM | |
394 | #endif | |
395 | ||
446ea107 | 396 | #endif |
90a752c2 | 397 | // DMC++ |
446ea107 | 398 | |
90a752c2 | 399 | /* |
c6c2445d | 400 | * The following are specifically required for OpenWatcom C++ (none at present) |
90a752c2 | 401 | */ |
446ea107 | 402 | |
90a752c2 | 403 | #if defined(__WATCOMC__) |
4a6619bb | 404 | #endif |
ae54422d | 405 | |
90a752c2 | 406 | /* |
c6c2445d | 407 | * The following are specifically required for MinGW (none at present) |
90a752c2 | 408 | */ |
23fbd31a | 409 | |
90a752c2 | 410 | #if defined (__MINGW32__) |
41b8fe99 WS |
411 | #endif |
412 | ||
90a752c2 JS |
413 | /* |
414 | * In addition to the declarations for VC++, the following are required for WinCE | |
415 | */ | |
1a838ff5 | 416 | |
fe5c9b3e VZ |
417 | #ifdef __WXWINCE__ |
418 | #include "wx/msw/wince/missing.h" | |
d61c1a6f JS |
419 | #endif |
420 | ||
24aab8e8 MW |
421 | /* |
422 | * The following are specifically required for Wine | |
423 | */ | |
424 | ||
425 | #ifdef __WINE__ | |
426 | #ifndef ENUM_CURRENT_SETTINGS | |
427 | #define ENUM_CURRENT_SETTINGS ((DWORD)-1) | |
428 | #endif | |
429 | #ifndef BROADCAST_QUERY_DENY | |
430 | #define BROADCAST_QUERY_DENY 1112363332 | |
431 | #endif | |
432 | #endif // defined __WINE__ | |
433 | ||
7391216e VS |
434 | #endif |
435 | // _WX_MISSING_H_ |