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