]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/missing.h
Theme fix for Mac
[wxWidgets.git] / include / wx / msw / missing.h
CommitLineData
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 124
801a5441
VZ
125#ifndef WS_EX_LAYOUTRTL
126#define WS_EX_LAYOUTRTL 0x00400000
127#endif
128
2e992e06
VZ
129#ifndef WS_EX_COMPOSITED
130#define WS_EX_COMPOSITED 0x02000000L
131#endif
132
50f3c41d 133#ifndef WS_EX_LAYERED
801a5441 134#define WS_EX_LAYERED 0x00080000
50f3c41d
RD
135#endif
136
137#ifndef LWA_ALPHA
138#define LWA_ALPHA 2
139#endif
140
a87f2821
MW
141/*
142 * The following are required for VC++ 5 when the PSDK is not available.
143 */
144
145#if defined __VISUALC__ && __VISUALC__ <= 1100
146
147#ifndef VER_NT_WORKSTATION
148
149typedef struct _OSVERSIONINFOEXA {
150 DWORD dwOSVersionInfoSize;
151 DWORD dwMajorVersion;
152 DWORD dwMinorVersion;
153 DWORD dwBuildNumber;
154 DWORD dwPlatformId;
155 CHAR szCSDVersion[128];
156 WORD wServicePackMajor;
157 WORD wServicePackMinor;
158 WORD wSuiteMask;
159 BYTE wProductType;
160 BYTE wReserved;
161} OSVERSIONINFOEXA, *POSVERSIONINFOEXA, *LPOSVERSIONINFOEXA;
162typedef struct _OSVERSIONINFOEXW {
163 DWORD dwOSVersionInfoSize;
164 DWORD dwMajorVersion;
165 DWORD dwMinorVersion;
166 DWORD dwBuildNumber;
167 DWORD dwPlatformId;
168 WCHAR szCSDVersion[128];
169 WORD wServicePackMajor;
170 WORD wServicePackMinor;
171 WORD wSuiteMask;
172 BYTE wProductType;
173 BYTE wReserved;
174} OSVERSIONINFOEXW, *POSVERSIONINFOEXW, *LPOSVERSIONINFOEXW;
175
176#ifdef UNICODE
177typedef OSVERSIONINFOW OSVERSIONINFO,*POSVERSIONINFO,*LPOSVERSIONINFO;
178typedef OSVERSIONINFOEXW OSVERSIONINFOEX,*POSVERSIONINFOEX,*LPOSVERSIONINFOEX;
179#else
180typedef OSVERSIONINFOA OSVERSIONINFO,*POSVERSIONINFO,*LPOSVERSIONINFO;
181typedef OSVERSIONINFOEXA OSVERSIONINFOEX,*POSVERSIONINFOEX,*LPOSVERSIONINFOEX;
182#endif
183
184#endif // defined VER_NT_WORKSTATION
185
186#ifndef CP_SYMBOL
187 #define CP_SYMBOL 42
188#endif
189
190// NMLVCUSTOMDRAW originally didn't have the iSubItem member. It was added
191// with IE4, as was IPN_FIRST which is used as a test :-(.
192//
1b88201f 193#ifndef IPN_FIRST
a87f2821
MW
194
195typedef struct wxtagNMLVCUSTOMDRAW_ {
196 NMCUSTOMDRAW nmcd;
197 COLORREF clrText;
198 COLORREF clrTextBk;
199 int iSubItem;
200} wxNMLVCUSTOMDRAW_, *wxLPNMLVCUSTOMDRAW_;
201
202#define NMLVCUSTOMDRAW wxNMLVCUSTOMDRAW_
203#define LPNMLVCUSTOMDRAW wxLPNMLVCUSTOMDRAW_
204
1b88201f 205#endif // defined IPN_FIRST
a87f2821
MW
206
207#endif // defined __VISUALC__ && __VISUALC__ <= 1100
208
e2478fde 209// ----------------------------------------------------------------------------
90a752c2
JS
210// ListView common control
211// Needed by listctrl.cpp
e2478fde
VZ
212// ----------------------------------------------------------------------------
213
aec26358
WS
214#ifndef LVS_EX_FULLROWSELECT
215 #define LVS_EX_FULLROWSELECT 0x00000020
216#endif
217
90a752c2
JS
218#ifndef LVS_EX_LABELTIP
219 #define LVS_EX_LABELTIP 0x00004000
e2478fde
VZ
220#endif
221
05886ed3
RD
222#ifndef LVS_EX_SUBITEMIMAGES
223 #define LVS_EX_SUBITEMIMAGES 0x00000002
224#endif
225
06525673
JS
226#ifndef HDN_GETDISPINFOW
227 #define HDN_GETDISPINFOW (HDN_FIRST-29)
228#endif
229
90a752c2 230 /*
c6c2445d
JS
231 * In addition to the above, the following are required for several compilers.
232 */
233
234#if !defined(CCS_VERT)
235#define CCS_VERT 0x00000080L
236#endif
237
664f15dc
JS
238#if !defined(CCS_RIGHT)
239#define CCS_RIGHT (CCS_VERT|CCS_BOTTOM)
240#endif
241
c6c2445d
JS
242#if !defined(TB_SETDISABLEDIMAGELIST)
243 #define TB_SETDISABLEDIMAGELIST (WM_USER + 54)
244#endif // !defined(TB_SETDISABLEDIMAGELIST)
245
246#ifndef CFM_BACKCOLOR
247 #define CFM_BACKCOLOR 0x04000000
248#endif
249
8b5d41cc
MW
250#ifndef HANGUL_CHARSET
251 #define HANGUL_CHARSET 129
252#endif
253
254#ifndef CCM_SETUNICODEFORMAT
255 #define CCM_SETUNICODEFORMAT 8197
256#endif
257
258// ----------------------------------------------------------------------------
259// Tree control
260// ----------------------------------------------------------------------------
261
262#ifndef TV_FIRST
263 #define TV_FIRST 0x1100
264#endif
265
266#ifndef TVS_FULLROWSELECT
267 #define TVS_FULLROWSELECT 0x1000
268#endif
269
270#ifndef TVM_SETBKCOLOR
271 #define TVM_SETBKCOLOR (TV_FIRST + 29)
272 #define TVM_SETTEXTCOLOR (TV_FIRST + 30)
273#endif
274
c6c2445d
JS
275 /*
276 * The following are required for BC++ 5.5 (none at present.)
90a752c2 277 */
e2478fde 278
90a752c2 279 /*
c6c2445d 280 * The following are specifically required for Digital Mars C++
90a752c2 281 */
e2478fde 282
90a752c2 283#ifdef __DMC__
e2478fde 284
4aa14001
WS
285typedef struct _OSVERSIONINFOEX {
286 DWORD dwOSVersionInfoSize;
287 DWORD dwMajorVersion;
288 DWORD dwMinorVersion;
289 DWORD dwBuildNumber;
290 DWORD dwPlatformId;
291 TCHAR szCSDVersion[ 128 ];
292 WORD wServicePackMajor;
293 WORD wServicePackMinor;
294 WORD wSuiteMask;
295 BYTE wProductType;
296 BYTE wReserved;
297} OSVERSIONINFOEX;
298
299#ifndef _TrackMouseEvent
300 #define _TrackMouseEvent TrackMouseEvent
e2478fde
VZ
301#endif
302
90a752c2
JS
303#ifndef LVM_SETEXTENDEDLISTVIEWSTYLE
304 #define LVM_SETEXTENDEDLISTVIEWSTYLE (0x1000 + 54)
e2478fde
VZ
305#endif
306
a6f7daee
WS
307#ifndef LVM_GETSUBITEMRECT
308 #define LVM_GETSUBITEMRECT (0x1000 + 56)
309#endif
310
90a752c2
JS
311#ifndef LVCF_IMAGE
312 #define LVCF_IMAGE 0x0010
e2478fde
VZ
313#endif
314
90a752c2
JS
315#ifndef Header_GetItemRect
316 #define Header_GetItemRect(w,i,r) \
317 (BOOL)SendMessage((w),HDM_GETITEMRECT,(WPARAM)(i),(LPARAM)(r))
3ec4107d
MB
318#endif
319
90a752c2
JS
320#ifndef HDM_GETITEMRECT
321 #define HDM_GETITEMRECT (HDM_FIRST+7)
3ec4107d
MB
322#endif
323
90a752c2
JS
324#ifndef ListView_GetHeader
325 #define ListView_GetHeader(w) (HWND)SendMessage((w),LVM_GETHEADER,0,0)
3ec4107d
MB
326#endif
327
a6f7daee
WS
328#ifndef ListView_GetSubItemRect
329 #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))
330#endif
331
90a752c2
JS
332#ifndef LVM_GETHEADER
333 #define LVM_GETHEADER (LVM_FIRST+31)
3ec4107d
MB
334#endif
335
90a752c2
JS
336#ifndef LVSICF_NOSCROLL
337 #define LVSICF_NOINVALIDATEALL 0x0001
338 #define LVSICF_NOSCROLL 0x0002
3ec4107d
MB
339#endif
340
4aa14001
WS
341#ifndef CP_SYMBOL
342 #define CP_SYMBOL 42
343#endif
344
3ea19afd
WS
345// ----------------------------------------------------------------------------
346// wxDisplay
347// ----------------------------------------------------------------------------
348
349// The windows headers with Digital Mars lack some typedefs.
350// typedef them as my_XXX and then #define to rename to XXX in case
351// a newer version of Digital Mars fixes the headers
352// (or up to date PSDK is in use with older version)
353// also we use any required definition (MONITOR_DEFAULTTONULL) to recognize
354// whether whole missing block needs to be included
355
356#ifndef MONITOR_DEFAULTTONULL
357
358 #define HMONITOR_DECLARED
359 DECLARE_HANDLE(HMONITOR);
360 typedef BOOL(CALLBACK* my_MONITORENUMPROC)(HMONITOR,HDC,LPRECT,LPARAM);
361 #define MONITORENUMPROC my_MONITORENUMPROC
362 typedef struct my_tagMONITORINFO {
363 DWORD cbSize;
364 RECT rcMonitor;
365 RECT rcWork;
366 DWORD dwFlags;
367 } my_MONITORINFO,*my_LPMONITORINFO;
368 #define MONITORINFO my_MONITORINFO
369 #define LPMONITORINFO my_LPMONITORINFO
370
371 typedef struct my_MONITORINFOEX : public my_tagMONITORINFO
372 {
373 TCHAR szDevice[CCHDEVICENAME];
374 } my_MONITORINFOEX, *my_LPMONITORINFOEX;
375 #define MONITORINFOEX my_MONITORINFOEX
376 #define LPMONITORINFOEX my_LPMONITORINFOEX
377
378 #ifndef MONITOR_DEFAULTTONULL
379 #define MONITOR_DEFAULTTONULL 0
380 #endif // MONITOR_DEFAULTTONULL
381
382 #ifndef MONITORINFOF_PRIMARY
383 #define MONITORINFOF_PRIMARY 1
384 #endif // MONITORINFOF_PRIMARY
385
386 #ifndef DDENUM_ATTACHEDSECONDARYDEVICES
387 #define DDENUM_ATTACHEDSECONDARYDEVICES 1
388 #endif
389
390#endif // MONITOR_DEFAULTTONULL
391
05e3a383
VZ
392// ----------------------------------------------------------------------------
393// Tree control
394// ----------------------------------------------------------------------------
395
396#ifndef TVIS_FOCUSED
397 #define TVIS_FOCUSED 0x0001
398#endif
399
05e3a383
VZ
400#ifndef TVS_CHECKBOXES
401 #define TVS_CHECKBOXES 0x0100
402#endif
403
03de0ad4
WS
404#ifndef TVITEM
405 #define TVITEM TV_ITEM
406#endif
407
446ea107 408#endif
90a752c2 409 // DMC++
446ea107 410
90a752c2 411 /*
c6c2445d 412 * The following are specifically required for OpenWatcom C++ (none at present)
90a752c2 413 */
446ea107 414
90a752c2 415#if defined(__WATCOMC__)
4a6619bb 416#endif
ae54422d 417
90a752c2 418 /*
c6c2445d 419 * The following are specifically required for MinGW (none at present)
90a752c2 420 */
23fbd31a 421
90a752c2 422#if defined (__MINGW32__)
41b8fe99
WS
423#endif
424
90a752c2
JS
425 /*
426 * In addition to the declarations for VC++, the following are required for WinCE
427 */
1a838ff5 428
fe5c9b3e
VZ
429#ifdef __WXWINCE__
430 #include "wx/msw/wince/missing.h"
d61c1a6f
JS
431#endif
432
24aab8e8
MW
433 /*
434 * The following are specifically required for Wine
435 */
436
437#ifdef __WINE__
438 #ifndef ENUM_CURRENT_SETTINGS
439 #define ENUM_CURRENT_SETTINGS ((DWORD)-1)
440 #endif
441 #ifndef BROADCAST_QUERY_DENY
442 #define BROADCAST_QUERY_DENY 1112363332
443 #endif
444#endif // defined __WINE__
445
7391216e
VS
446#endif
447 // _WX_MISSING_H_