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
124 // ----------------------------------------------------------------------------
125 // ListView common control
126 // Needed by listctrl.cpp
127 // ----------------------------------------------------------------------------
129 #ifndef LVS_EX_FULLROWSELECT
130 #define LVS_EX_FULLROWSELECT 0x00000020
133 #ifndef LVS_EX_LABELTIP
134 #define LVS_EX_LABELTIP 0x00004000
137 #ifndef LVS_EX_SUBITEMIMAGES
138 #define LVS_EX_SUBITEMIMAGES 0x00000002
141 #ifndef HDN_GETDISPINFOW
142 #define HDN_GETDISPINFOW (HDN_FIRST-29)
146 * In addition to the above, the following are required for several compilers.
149 #if !defined(CCS_VERT)
150 #define CCS_VERT 0x00000080L
153 #if !defined(TB_SETDISABLEDIMAGELIST)
154 #define TB_SETDISABLEDIMAGELIST (WM_USER + 54)
155 #endif // !defined(TB_SETDISABLEDIMAGELIST)
157 #ifndef CFM_BACKCOLOR
158 #define CFM_BACKCOLOR 0x04000000
161 #ifndef HANGUL_CHARSET
162 #define HANGUL_CHARSET 129
165 #ifndef CCM_SETUNICODEFORMAT
166 #define CCM_SETUNICODEFORMAT 8197
169 // ----------------------------------------------------------------------------
171 // ----------------------------------------------------------------------------
174 #define TV_FIRST 0x1100
177 #ifndef TVS_FULLROWSELECT
178 #define TVS_FULLROWSELECT 0x1000
181 #ifndef TVM_SETBKCOLOR
182 #define TVM_SETBKCOLOR (TV_FIRST + 29)
183 #define TVM_SETTEXTCOLOR (TV_FIRST + 30)
187 * The following are required for BC++ 5.5 (none at present.)
191 * The following are specifically required for Digital Mars C++
196 typedef struct _OSVERSIONINFOEX
{
197 DWORD dwOSVersionInfoSize
;
198 DWORD dwMajorVersion
;
199 DWORD dwMinorVersion
;
202 TCHAR szCSDVersion
[ 128 ];
203 WORD wServicePackMajor
;
204 WORD wServicePackMinor
;
210 #ifndef _TrackMouseEvent
211 #define _TrackMouseEvent TrackMouseEvent
214 #ifndef LVM_SETEXTENDEDLISTVIEWSTYLE
215 #define LVM_SETEXTENDEDLISTVIEWSTYLE (0x1000 + 54)
218 #ifndef LVM_GETSUBITEMRECT
219 #define LVM_GETSUBITEMRECT (0x1000 + 56)
223 #define LVCF_IMAGE 0x0010
226 #ifndef Header_GetItemRect
227 #define Header_GetItemRect(w,i,r) \
228 (BOOL)SendMessage((w),HDM_GETITEMRECT,(WPARAM)(i),(LPARAM)(r))
231 #ifndef HDM_GETITEMRECT
232 #define HDM_GETITEMRECT (HDM_FIRST+7)
235 #ifndef ListView_GetHeader
236 #define ListView_GetHeader(w) (HWND)SendMessage((w),LVM_GETHEADER,0,0)
239 #ifndef ListView_GetSubItemRect
240 #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))
243 #ifndef LVM_GETHEADER
244 #define LVM_GETHEADER (LVM_FIRST+31)
247 #ifndef LVSICF_NOSCROLL
248 #define LVSICF_NOINVALIDATEALL 0x0001
249 #define LVSICF_NOSCROLL 0x0002
256 // ----------------------------------------------------------------------------
258 // ----------------------------------------------------------------------------
260 // The windows headers with Digital Mars lack some typedefs.
261 // typedef them as my_XXX and then #define to rename to XXX in case
262 // a newer version of Digital Mars fixes the headers
263 // (or up to date PSDK is in use with older version)
264 // also we use any required definition (MONITOR_DEFAULTTONULL) to recognize
265 // whether whole missing block needs to be included
267 #ifndef MONITOR_DEFAULTTONULL
269 #define HMONITOR_DECLARED
270 DECLARE_HANDLE(HMONITOR
);
271 typedef BOOL(CALLBACK
* my_MONITORENUMPROC
)(HMONITOR
,HDC
,LPRECT
,LPARAM
);
272 #define MONITORENUMPROC my_MONITORENUMPROC
273 typedef struct my_tagMONITORINFO
{
278 } my_MONITORINFO
,*my_LPMONITORINFO
;
279 #define MONITORINFO my_MONITORINFO
280 #define LPMONITORINFO my_LPMONITORINFO
282 typedef struct my_MONITORINFOEX
: public my_tagMONITORINFO
284 TCHAR szDevice
[CCHDEVICENAME
];
285 } my_MONITORINFOEX
, *my_LPMONITORINFOEX
;
286 #define MONITORINFOEX my_MONITORINFOEX
287 #define LPMONITORINFOEX my_LPMONITORINFOEX
289 #ifndef MONITOR_DEFAULTTONULL
290 #define MONITOR_DEFAULTTONULL 0
291 #endif // MONITOR_DEFAULTTONULL
293 #ifndef MONITORINFOF_PRIMARY
294 #define MONITORINFOF_PRIMARY 1
295 #endif // MONITORINFOF_PRIMARY
297 #ifndef DDENUM_ATTACHEDSECONDARYDEVICES
298 #define DDENUM_ATTACHEDSECONDARYDEVICES 1
301 #endif // MONITOR_DEFAULTTONULL
303 // ----------------------------------------------------------------------------
305 // ----------------------------------------------------------------------------
308 #define TVIS_FOCUSED 0x0001
311 #ifndef TVS_CHECKBOXES
312 #define TVS_CHECKBOXES 0x0100
316 #define TVITEM TV_ITEM
323 * The following are specifically required for OpenWatcom C++ (none at present)
326 #if defined(__WATCOMC__)
330 * The following are specifically required for MinGW (none at present)
333 #if defined (__MINGW32__)
337 * In addition to the declarations for VC++, the following are required for WinCE
341 #include "wx/msw/wince/missing.h"