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