]>
Commit | Line | Data |
---|---|---|
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 RD |
124 | |
125 | #ifndef WS_EX_LAYERED | |
126 | #define WS_EX_LAYERED 0x80000 | |
127 | #endif | |
128 | ||
129 | #ifndef LWA_ALPHA | |
130 | #define LWA_ALPHA 2 | |
131 | #endif | |
132 | ||
e2478fde | 133 | // ---------------------------------------------------------------------------- |
90a752c2 JS |
134 | // ListView common control |
135 | // Needed by listctrl.cpp | |
e2478fde VZ |
136 | // ---------------------------------------------------------------------------- |
137 | ||
aec26358 WS |
138 | #ifndef LVS_EX_FULLROWSELECT |
139 | #define LVS_EX_FULLROWSELECT 0x00000020 | |
140 | #endif | |
141 | ||
90a752c2 JS |
142 | #ifndef LVS_EX_LABELTIP |
143 | #define LVS_EX_LABELTIP 0x00004000 | |
e2478fde VZ |
144 | #endif |
145 | ||
05886ed3 RD |
146 | #ifndef LVS_EX_SUBITEMIMAGES |
147 | #define LVS_EX_SUBITEMIMAGES 0x00000002 | |
148 | #endif | |
149 | ||
06525673 JS |
150 | #ifndef HDN_GETDISPINFOW |
151 | #define HDN_GETDISPINFOW (HDN_FIRST-29) | |
152 | #endif | |
153 | ||
90a752c2 | 154 | /* |
c6c2445d JS |
155 | * In addition to the above, the following are required for several compilers. |
156 | */ | |
157 | ||
158 | #if !defined(CCS_VERT) | |
159 | #define CCS_VERT 0x00000080L | |
160 | #endif | |
161 | ||
162 | #if !defined(TB_SETDISABLEDIMAGELIST) | |
163 | #define TB_SETDISABLEDIMAGELIST (WM_USER + 54) | |
164 | #endif // !defined(TB_SETDISABLEDIMAGELIST) | |
165 | ||
166 | #ifndef CFM_BACKCOLOR | |
167 | #define CFM_BACKCOLOR 0x04000000 | |
168 | #endif | |
169 | ||
8b5d41cc MW |
170 | #ifndef HANGUL_CHARSET |
171 | #define HANGUL_CHARSET 129 | |
172 | #endif | |
173 | ||
174 | #ifndef CCM_SETUNICODEFORMAT | |
175 | #define CCM_SETUNICODEFORMAT 8197 | |
176 | #endif | |
177 | ||
178 | // ---------------------------------------------------------------------------- | |
179 | // Tree control | |
180 | // ---------------------------------------------------------------------------- | |
181 | ||
182 | #ifndef TV_FIRST | |
183 | #define TV_FIRST 0x1100 | |
184 | #endif | |
185 | ||
186 | #ifndef TVS_FULLROWSELECT | |
187 | #define TVS_FULLROWSELECT 0x1000 | |
188 | #endif | |
189 | ||
190 | #ifndef TVM_SETBKCOLOR | |
191 | #define TVM_SETBKCOLOR (TV_FIRST + 29) | |
192 | #define TVM_SETTEXTCOLOR (TV_FIRST + 30) | |
193 | #endif | |
194 | ||
c6c2445d JS |
195 | /* |
196 | * The following are required for BC++ 5.5 (none at present.) | |
90a752c2 | 197 | */ |
e2478fde | 198 | |
90a752c2 | 199 | /* |
c6c2445d | 200 | * The following are specifically required for Digital Mars C++ |
90a752c2 | 201 | */ |
e2478fde | 202 | |
90a752c2 | 203 | #ifdef __DMC__ |
e2478fde | 204 | |
4aa14001 WS |
205 | typedef struct _OSVERSIONINFOEX { |
206 | DWORD dwOSVersionInfoSize; | |
207 | DWORD dwMajorVersion; | |
208 | DWORD dwMinorVersion; | |
209 | DWORD dwBuildNumber; | |
210 | DWORD dwPlatformId; | |
211 | TCHAR szCSDVersion[ 128 ]; | |
212 | WORD wServicePackMajor; | |
213 | WORD wServicePackMinor; | |
214 | WORD wSuiteMask; | |
215 | BYTE wProductType; | |
216 | BYTE wReserved; | |
217 | } OSVERSIONINFOEX; | |
218 | ||
219 | #ifndef _TrackMouseEvent | |
220 | #define _TrackMouseEvent TrackMouseEvent | |
e2478fde VZ |
221 | #endif |
222 | ||
90a752c2 JS |
223 | #ifndef LVM_SETEXTENDEDLISTVIEWSTYLE |
224 | #define LVM_SETEXTENDEDLISTVIEWSTYLE (0x1000 + 54) | |
e2478fde VZ |
225 | #endif |
226 | ||
a6f7daee WS |
227 | #ifndef LVM_GETSUBITEMRECT |
228 | #define LVM_GETSUBITEMRECT (0x1000 + 56) | |
229 | #endif | |
230 | ||
90a752c2 JS |
231 | #ifndef LVCF_IMAGE |
232 | #define LVCF_IMAGE 0x0010 | |
e2478fde VZ |
233 | #endif |
234 | ||
90a752c2 JS |
235 | #ifndef Header_GetItemRect |
236 | #define Header_GetItemRect(w,i,r) \ | |
237 | (BOOL)SendMessage((w),HDM_GETITEMRECT,(WPARAM)(i),(LPARAM)(r)) | |
3ec4107d MB |
238 | #endif |
239 | ||
90a752c2 JS |
240 | #ifndef HDM_GETITEMRECT |
241 | #define HDM_GETITEMRECT (HDM_FIRST+7) | |
3ec4107d MB |
242 | #endif |
243 | ||
90a752c2 JS |
244 | #ifndef ListView_GetHeader |
245 | #define ListView_GetHeader(w) (HWND)SendMessage((w),LVM_GETHEADER,0,0) | |
3ec4107d MB |
246 | #endif |
247 | ||
a6f7daee WS |
248 | #ifndef ListView_GetSubItemRect |
249 | #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)) | |
250 | #endif | |
251 | ||
90a752c2 JS |
252 | #ifndef LVM_GETHEADER |
253 | #define LVM_GETHEADER (LVM_FIRST+31) | |
3ec4107d MB |
254 | #endif |
255 | ||
90a752c2 JS |
256 | #ifndef LVSICF_NOSCROLL |
257 | #define LVSICF_NOINVALIDATEALL 0x0001 | |
258 | #define LVSICF_NOSCROLL 0x0002 | |
3ec4107d MB |
259 | #endif |
260 | ||
4aa14001 WS |
261 | #ifndef CP_SYMBOL |
262 | #define CP_SYMBOL 42 | |
263 | #endif | |
264 | ||
3ea19afd WS |
265 | // ---------------------------------------------------------------------------- |
266 | // wxDisplay | |
267 | // ---------------------------------------------------------------------------- | |
268 | ||
269 | // The windows headers with Digital Mars lack some typedefs. | |
270 | // typedef them as my_XXX and then #define to rename to XXX in case | |
271 | // a newer version of Digital Mars fixes the headers | |
272 | // (or up to date PSDK is in use with older version) | |
273 | // also we use any required definition (MONITOR_DEFAULTTONULL) to recognize | |
274 | // whether whole missing block needs to be included | |
275 | ||
276 | #ifndef MONITOR_DEFAULTTONULL | |
277 | ||
278 | #define HMONITOR_DECLARED | |
279 | DECLARE_HANDLE(HMONITOR); | |
280 | typedef BOOL(CALLBACK* my_MONITORENUMPROC)(HMONITOR,HDC,LPRECT,LPARAM); | |
281 | #define MONITORENUMPROC my_MONITORENUMPROC | |
282 | typedef struct my_tagMONITORINFO { | |
283 | DWORD cbSize; | |
284 | RECT rcMonitor; | |
285 | RECT rcWork; | |
286 | DWORD dwFlags; | |
287 | } my_MONITORINFO,*my_LPMONITORINFO; | |
288 | #define MONITORINFO my_MONITORINFO | |
289 | #define LPMONITORINFO my_LPMONITORINFO | |
290 | ||
291 | typedef struct my_MONITORINFOEX : public my_tagMONITORINFO | |
292 | { | |
293 | TCHAR szDevice[CCHDEVICENAME]; | |
294 | } my_MONITORINFOEX, *my_LPMONITORINFOEX; | |
295 | #define MONITORINFOEX my_MONITORINFOEX | |
296 | #define LPMONITORINFOEX my_LPMONITORINFOEX | |
297 | ||
298 | #ifndef MONITOR_DEFAULTTONULL | |
299 | #define MONITOR_DEFAULTTONULL 0 | |
300 | #endif // MONITOR_DEFAULTTONULL | |
301 | ||
302 | #ifndef MONITORINFOF_PRIMARY | |
303 | #define MONITORINFOF_PRIMARY 1 | |
304 | #endif // MONITORINFOF_PRIMARY | |
305 | ||
306 | #ifndef DDENUM_ATTACHEDSECONDARYDEVICES | |
307 | #define DDENUM_ATTACHEDSECONDARYDEVICES 1 | |
308 | #endif | |
309 | ||
310 | #endif // MONITOR_DEFAULTTONULL | |
311 | ||
05e3a383 VZ |
312 | // ---------------------------------------------------------------------------- |
313 | // Tree control | |
314 | // ---------------------------------------------------------------------------- | |
315 | ||
316 | #ifndef TVIS_FOCUSED | |
317 | #define TVIS_FOCUSED 0x0001 | |
318 | #endif | |
319 | ||
05e3a383 VZ |
320 | #ifndef TVS_CHECKBOXES |
321 | #define TVS_CHECKBOXES 0x0100 | |
322 | #endif | |
323 | ||
03de0ad4 WS |
324 | #ifndef TVITEM |
325 | #define TVITEM TV_ITEM | |
326 | #endif | |
327 | ||
446ea107 | 328 | #endif |
90a752c2 | 329 | // DMC++ |
446ea107 | 330 | |
90a752c2 | 331 | /* |
c6c2445d | 332 | * The following are specifically required for OpenWatcom C++ (none at present) |
90a752c2 | 333 | */ |
446ea107 | 334 | |
90a752c2 | 335 | #if defined(__WATCOMC__) |
4a6619bb | 336 | #endif |
ae54422d | 337 | |
90a752c2 | 338 | /* |
c6c2445d | 339 | * The following are specifically required for MinGW (none at present) |
90a752c2 | 340 | */ |
23fbd31a | 341 | |
90a752c2 | 342 | #if defined (__MINGW32__) |
41b8fe99 WS |
343 | #endif |
344 | ||
90a752c2 JS |
345 | /* |
346 | * In addition to the declarations for VC++, the following are required for WinCE | |
347 | */ | |
1a838ff5 | 348 | |
fe5c9b3e VZ |
349 | #ifdef __WXWINCE__ |
350 | #include "wx/msw/wince/missing.h" | |
d61c1a6f JS |
351 | #endif |
352 | ||
7391216e VS |
353 | #endif |
354 | // _WX_MISSING_H_ |