1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/missing.h
3 // Purpose: Declarations for parts of the Win32 SDK that are missing in
4 // the versions that come with some compilers
7 // Copyright: (c) 2002 Mattia Barbon
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_MISSING_H_
12 #define _WX_MISSING_H_
15 * The following are required for VC++ 6.
18 // Needed by cursor.cpp
20 #define IDC_HAND MAKEINTRESOURCE(32649)
23 // Needed by strconv.cpp
24 #ifndef WC_NO_BEST_FIT_CHARS
25 #define WC_NO_BEST_FIT_CHARS 0x400
28 #ifndef WM_CONTEXTMENU
29 #define WM_CONTEXTMENU 0x007B
32 // Needed by toplevel.cpp
33 #ifndef WM_UPDATEUISTATE
34 #define WM_UPDATEUISTATE 0x0128
37 #ifndef WM_CHANGEUISTATE
38 #define WM_CHANGEUISTATE 0x0127
41 #ifndef WM_PRINTCLIENT
42 #define WM_PRINTCLIENT 0x318
45 // Needed by toplevel.cpp
49 #define UIS_INITIALIZE 3
52 #ifndef UISF_HIDEFOCUS
53 #define UISF_HIDEFOCUS 1
56 #ifndef UISF_HIDEACCEL
57 #define UISF_HIDEACCEL 2
61 #define OFN_EXPLORER 0x00080000
64 #ifndef OFN_ENABLESIZING
65 #define OFN_ENABLESIZING 0x00800000
68 // Needed by window.cpp
71 #define WM_MOUSEWHEEL 0x020A
74 #define WHEEL_DELTA 120
76 #ifndef SPI_GETWHEELSCROLLLINES
77 #define SPI_GETWHEELSCROLLLINES 104
79 #endif // wxUSE_MOUSEWHEEL
81 // Needed by window.cpp
93 #define VK_OEM_PLUS 0xBB
94 #define VK_OEM_COMMA 0xBC
95 #define VK_OEM_MINUS 0xBD
96 #define VK_OEM_PERIOD 0xBE
100 #define SM_TABLETPC 86
103 #ifndef INKEDIT_CLASS
104 # define INKEDIT_CLASSW L"INKEDIT"
106 # define INKEDIT_CLASS INKEDIT_CLASSW
108 # define INKEDIT_CLASS "INKEDIT"
112 #ifndef EM_SETINKINSERTMODE
113 # define EM_SETINKINSERTMODE (WM_USER + 0x0204)
116 #ifndef EM_SETUSEMOUSEFORINPUT
117 #define EM_SETUSEMOUSEFORINPUT (WM_USER + 0x224)
121 #define TPM_RECURSE 1
125 #ifndef WS_EX_LAYOUTRTL
126 #define WS_EX_LAYOUTRTL 0x00400000
129 #ifndef WS_EX_COMPOSITED
130 #define WS_EX_COMPOSITED 0x02000000L
133 #ifndef WS_EX_LAYERED
134 #define WS_EX_LAYERED 0x00080000
141 #ifndef QS_ALLPOSTMESSAGE
142 #define QS_ALLPOSTMESSAGE 0
146 * The following are required for VC++ 5 when the PSDK is not available.
149 #if defined __VISUALC__ && __VISUALC__ <= 1100
151 #ifndef VER_NT_WORKSTATION
153 typedef struct _OSVERSIONINFOEXA
{
154 DWORD dwOSVersionInfoSize
;
155 DWORD dwMajorVersion
;
156 DWORD dwMinorVersion
;
159 CHAR szCSDVersion
[128];
160 WORD wServicePackMajor
;
161 WORD wServicePackMinor
;
165 } OSVERSIONINFOEXA
, *POSVERSIONINFOEXA
, *LPOSVERSIONINFOEXA
;
166 typedef struct _OSVERSIONINFOEXW
{
167 DWORD dwOSVersionInfoSize
;
168 DWORD dwMajorVersion
;
169 DWORD dwMinorVersion
;
172 WCHAR szCSDVersion
[128];
173 WORD wServicePackMajor
;
174 WORD wServicePackMinor
;
178 } OSVERSIONINFOEXW
, *POSVERSIONINFOEXW
, *LPOSVERSIONINFOEXW
;
181 typedef OSVERSIONINFOW OSVERSIONINFO
,*POSVERSIONINFO
,*LPOSVERSIONINFO
;
182 typedef OSVERSIONINFOEXW OSVERSIONINFOEX
,*POSVERSIONINFOEX
,*LPOSVERSIONINFOEX
;
184 typedef OSVERSIONINFOA OSVERSIONINFO
,*POSVERSIONINFO
,*LPOSVERSIONINFO
;
185 typedef OSVERSIONINFOEXA OSVERSIONINFOEX
,*POSVERSIONINFOEX
,*LPOSVERSIONINFOEX
;
188 #endif // defined VER_NT_WORKSTATION
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 :-(.
199 typedef struct wxtagNMLVCUSTOMDRAW_
{
204 } wxNMLVCUSTOMDRAW_
, *wxLPNMLVCUSTOMDRAW_
;
206 #define NMLVCUSTOMDRAW wxNMLVCUSTOMDRAW_
207 #define LPNMLVCUSTOMDRAW wxLPNMLVCUSTOMDRAW_
209 #endif // defined IPN_FIRST
211 #endif // defined __VISUALC__ && __VISUALC__ <= 1100
213 // ----------------------------------------------------------------------------
214 // ListView common control
215 // Needed by listctrl.cpp
216 // ----------------------------------------------------------------------------
218 #ifndef LVS_EX_FULLROWSELECT
219 #define LVS_EX_FULLROWSELECT 0x00000020
222 // LVS_EX_LABELTIP is not supported by Windows CE, don't define it there
223 #if !defined(LVS_EX_LABELTIP) && !defined(__WXWINCE__)
224 #define LVS_EX_LABELTIP 0x00004000
227 #ifndef LVS_EX_SUBITEMIMAGES
228 #define LVS_EX_SUBITEMIMAGES 0x00000002
231 #ifndef HDN_GETDISPINFOW
232 #define HDN_GETDISPINFOW (HDN_FIRST-29)
236 #define HDS_HOTTRACK 4
239 #define HDS_FLAT 0x0200
243 #define HDF_SORTUP 0x0400
244 #define HDF_SORTDOWN 0x0200
248 * In addition to the above, the following are required for several compilers.
251 #if !defined(CCS_VERT)
252 #define CCS_VERT 0x00000080L
255 #if !defined(CCS_RIGHT)
256 #define CCS_RIGHT (CCS_VERT|CCS_BOTTOM)
259 #if !defined(TB_SETDISABLEDIMAGELIST)
260 #define TB_SETDISABLEDIMAGELIST (WM_USER + 54)
261 #endif // !defined(TB_SETDISABLEDIMAGELIST)
263 #ifndef CFM_BACKCOLOR
264 #define CFM_BACKCOLOR 0x04000000
267 #ifndef HANGUL_CHARSET
268 #define HANGUL_CHARSET 129
271 #ifndef CCM_SETUNICODEFORMAT
272 #define CCM_SETUNICODEFORMAT 8197
275 // ----------------------------------------------------------------------------
277 // ----------------------------------------------------------------------------
280 #define TV_FIRST 0x1100
283 #ifndef TVS_FULLROWSELECT
284 #define TVS_FULLROWSELECT 0x1000
287 #ifndef TVM_SETBKCOLOR
288 #define TVM_SETBKCOLOR (TV_FIRST + 29)
289 #define TVM_SETTEXTCOLOR (TV_FIRST + 30)
293 * The following are required for BC++ 5.5 (none at present.)
297 * The following are specifically required for Digital Mars C++
302 typedef struct _OSVERSIONINFOEX
{
303 DWORD dwOSVersionInfoSize
;
304 DWORD dwMajorVersion
;
305 DWORD dwMinorVersion
;
308 TCHAR szCSDVersion
[ 128 ];
309 WORD wServicePackMajor
;
310 WORD wServicePackMinor
;
316 #ifndef _TrackMouseEvent
317 #define _TrackMouseEvent TrackMouseEvent
320 #ifndef LVM_SETEXTENDEDLISTVIEWSTYLE
321 #define LVM_SETEXTENDEDLISTVIEWSTYLE (0x1000 + 54)
324 #ifndef LVM_GETSUBITEMRECT
325 #define LVM_GETSUBITEMRECT (0x1000 + 56)
329 #define LVCF_IMAGE 0x0010
332 #ifndef Header_GetItemRect
333 #define Header_GetItemRect(w,i,r) \
334 (BOOL)SendMessage((w),HDM_GETITEMRECT,(WPARAM)(i),(LPARAM)(r))
337 #ifndef HDM_GETITEMRECT
338 #define HDM_GETITEMRECT (HDM_FIRST+7)
341 #ifndef ListView_GetHeader
342 #define ListView_GetHeader(w) (HWND)SendMessage((w),LVM_GETHEADER,0,0)
345 #ifndef ListView_GetSubItemRect
346 #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))
349 #ifndef LVM_GETHEADER
350 #define LVM_GETHEADER (LVM_FIRST+31)
354 #define HDLAYOUT HD_LAYOUT
358 #define HDITEM HD_ITEM
362 #define NMHEADER HD_NOTIFY
366 #define HDS_DRAGDROP 0x0040
369 #define HDS_FULLDRAG 0x0080
373 #ifndef HDN_BEGINDRAG
374 #define HDN_BEGINDRAG (HDN_FIRST - 11)
378 #define HDN_ENDDRAG (HDN_FIRST - 10)
381 #ifndef LVSICF_NOSCROLL
382 #define LVSICF_NOINVALIDATEALL 0x0001
383 #define LVSICF_NOSCROLL 0x0002
390 // ----------------------------------------------------------------------------
392 // ----------------------------------------------------------------------------
394 // The windows headers with Digital Mars lack some typedefs.
395 // typedef them as my_XXX and then #define to rename to XXX in case
396 // a newer version of Digital Mars fixes the headers
397 // (or up to date PSDK is in use with older version)
398 // also we use any required definition (MONITOR_DEFAULTTONULL) to recognize
399 // whether whole missing block needs to be included
401 #ifndef MONITOR_DEFAULTTONULL
403 #define HMONITOR_DECLARED
404 DECLARE_HANDLE(HMONITOR
);
405 typedef BOOL(CALLBACK
* my_MONITORENUMPROC
)(HMONITOR
,HDC
,LPRECT
,LPARAM
);
406 #define MONITORENUMPROC my_MONITORENUMPROC
407 typedef struct my_tagMONITORINFO
{
412 } my_MONITORINFO
,*my_LPMONITORINFO
;
413 #define MONITORINFO my_MONITORINFO
414 #define LPMONITORINFO my_LPMONITORINFO
416 typedef struct my_MONITORINFOEX
: public my_tagMONITORINFO
418 TCHAR szDevice
[CCHDEVICENAME
];
419 } my_MONITORINFOEX
, *my_LPMONITORINFOEX
;
420 #define MONITORINFOEX my_MONITORINFOEX
421 #define LPMONITORINFOEX my_LPMONITORINFOEX
423 #ifndef MONITOR_DEFAULTTONULL
424 #define MONITOR_DEFAULTTONULL 0
425 #endif // MONITOR_DEFAULTTONULL
427 #ifndef MONITORINFOF_PRIMARY
428 #define MONITORINFOF_PRIMARY 1
429 #endif // MONITORINFOF_PRIMARY
431 #ifndef DDENUM_ATTACHEDSECONDARYDEVICES
432 #define DDENUM_ATTACHEDSECONDARYDEVICES 1
435 #endif // MONITOR_DEFAULTTONULL
437 // ----------------------------------------------------------------------------
439 // ----------------------------------------------------------------------------
442 #define TVIS_FOCUSED 0x0001
445 #ifndef TVS_CHECKBOXES
446 #define TVS_CHECKBOXES 0x0100
450 #define TVITEM TV_ITEM
457 * The following are specifically required for OpenWatcom C++ (none at present)
460 #if defined(__WATCOMC__)
464 * The following are specifically required for MinGW (none at present)
467 #if defined (__MINGW32__)
469 #if !wxCHECK_W32API_VERSION(3,1)
472 #include "wx/msw/winundef.h"
478 } NCCALCSIZE_PARAMS
, *LPNCCALCSIZE_PARAMS
;
485 * In addition to the declarations for VC++, the following are required for WinCE
489 #include "wx/msw/wince/missing.h"
493 * The following are specifically required for Wine
497 #ifndef ENUM_CURRENT_SETTINGS
498 #define ENUM_CURRENT_SETTINGS ((DWORD)-1)
500 #ifndef BROADCAST_QUERY_DENY
501 #define BROADCAST_QUERY_DENY 1112363332
503 #endif // defined __WINE__