]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/missing.h
Make wxImageList not copiable (fixes #10503), replace wxList with wxObjectList
[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
33f4afdb
VZ
213// ----------------------------------------------------------------------------
214// menu stuff
215// ----------------------------------------------------------------------------
216
217#ifndef MIIM_BITMAP
218 #define MIIM_STRING 0x00000040
219 #define MIIM_BITMAP 0x00000080
220 #define MIIM_FTYPE 0x00000100
221 #define HBMMENU_CALLBACK ((HBITMAP) -1)
222
223 typedef struct tagMENUINFO
224 {
225 DWORD cbSize;
226 DWORD fMask;
227 DWORD dwStyle;
228 UINT cyMax;
229 HBRUSH hbrBack;
230 DWORD dwContextHelpID;
231 DWORD dwMenuData;
232 } MENUINFO, FAR *LPMENUINFO;
233#endif // MIIM_BITMAP &c
234
e2478fde 235// ----------------------------------------------------------------------------
659d0ee8
VZ
236// definitions related to ListView and Header common controls, needed by
237// msw/listctrl.cpp and msw/headerctrl.cpp
e2478fde
VZ
238// ----------------------------------------------------------------------------
239
659d0ee8
VZ
240#ifndef I_IMAGENONE
241 #define I_IMAGENONE (-2)
242#endif
243
aec26358
WS
244#ifndef LVS_EX_FULLROWSELECT
245 #define LVS_EX_FULLROWSELECT 0x00000020
246#endif
247
2036bdd3
VZ
248// LVS_EX_LABELTIP is not supported by Windows CE, don't define it there
249#if !defined(LVS_EX_LABELTIP) && !defined(__WXWINCE__)
90a752c2 250 #define LVS_EX_LABELTIP 0x00004000
e2478fde
VZ
251#endif
252
05886ed3
RD
253#ifndef LVS_EX_SUBITEMIMAGES
254 #define LVS_EX_SUBITEMIMAGES 0x00000002
255#endif
256
06525673
JS
257#ifndef HDN_GETDISPINFOW
258 #define HDN_GETDISPINFOW (HDN_FIRST-29)
259#endif
260
a58c5d3e
VZ
261#ifndef HDS_HOTTRACK
262 #define HDS_HOTTRACK 4
263#endif
8eb4d1a1
VZ
264#ifndef HDS_FLAT
265 #define HDS_FLAT 0x0200
266#endif
a58c5d3e 267
9e06a15f
VZ
268#ifndef HDF_SORTUP
269 #define HDF_SORTUP 0x0400
270 #define HDF_SORTDOWN 0x0200
271#endif
272
90a752c2 273 /*
c6c2445d
JS
274 * In addition to the above, the following are required for several compilers.
275 */
276
277#if !defined(CCS_VERT)
278#define CCS_VERT 0x00000080L
279#endif
280
664f15dc
JS
281#if !defined(CCS_RIGHT)
282#define CCS_RIGHT (CCS_VERT|CCS_BOTTOM)
283#endif
284
c6c2445d
JS
285#if !defined(TB_SETDISABLEDIMAGELIST)
286 #define TB_SETDISABLEDIMAGELIST (WM_USER + 54)
287#endif // !defined(TB_SETDISABLEDIMAGELIST)
288
289#ifndef CFM_BACKCOLOR
290 #define CFM_BACKCOLOR 0x04000000
291#endif
292
8b5d41cc
MW
293#ifndef HANGUL_CHARSET
294 #define HANGUL_CHARSET 129
295#endif
296
297#ifndef CCM_SETUNICODEFORMAT
298 #define CCM_SETUNICODEFORMAT 8197
299#endif
300
301// ----------------------------------------------------------------------------
302// Tree control
303// ----------------------------------------------------------------------------
304
305#ifndef TV_FIRST
306 #define TV_FIRST 0x1100
307#endif
308
309#ifndef TVS_FULLROWSELECT
310 #define TVS_FULLROWSELECT 0x1000
311#endif
312
313#ifndef TVM_SETBKCOLOR
314 #define TVM_SETBKCOLOR (TV_FIRST + 29)
315 #define TVM_SETTEXTCOLOR (TV_FIRST + 30)
316#endif
317
c6c2445d
JS
318 /*
319 * The following are required for BC++ 5.5 (none at present.)
90a752c2 320 */
e2478fde 321
90a752c2 322 /*
c6c2445d 323 * The following are specifically required for Digital Mars C++
90a752c2 324 */
e2478fde 325
90a752c2 326#ifdef __DMC__
e2478fde 327
1c7ae45a 328#ifndef VER_NT_WORKSTATION
4aa14001
WS
329typedef struct _OSVERSIONINFOEX {
330 DWORD dwOSVersionInfoSize;
331 DWORD dwMajorVersion;
332 DWORD dwMinorVersion;
333 DWORD dwBuildNumber;
334 DWORD dwPlatformId;
335 TCHAR szCSDVersion[ 128 ];
336 WORD wServicePackMajor;
337 WORD wServicePackMinor;
338 WORD wSuiteMask;
339 BYTE wProductType;
340 BYTE wReserved;
341} OSVERSIONINFOEX;
1c7ae45a 342#endif // !defined(VER_NT_WORKSTATION)
4aa14001
WS
343
344#ifndef _TrackMouseEvent
345 #define _TrackMouseEvent TrackMouseEvent
e2478fde
VZ
346#endif
347
90a752c2
JS
348#ifndef LVM_SETEXTENDEDLISTVIEWSTYLE
349 #define LVM_SETEXTENDEDLISTVIEWSTYLE (0x1000 + 54)
e2478fde
VZ
350#endif
351
a6f7daee
WS
352#ifndef LVM_GETSUBITEMRECT
353 #define LVM_GETSUBITEMRECT (0x1000 + 56)
354#endif
355
90a752c2
JS
356#ifndef LVCF_IMAGE
357 #define LVCF_IMAGE 0x0010
e2478fde
VZ
358#endif
359
90a752c2
JS
360#ifndef Header_GetItemRect
361 #define Header_GetItemRect(w,i,r) \
362 (BOOL)SendMessage((w),HDM_GETITEMRECT,(WPARAM)(i),(LPARAM)(r))
3ec4107d
MB
363#endif
364
90a752c2
JS
365#ifndef HDM_GETITEMRECT
366 #define HDM_GETITEMRECT (HDM_FIRST+7)
3ec4107d
MB
367#endif
368
90a752c2
JS
369#ifndef ListView_GetHeader
370 #define ListView_GetHeader(w) (HWND)SendMessage((w),LVM_GETHEADER,0,0)
3ec4107d
MB
371#endif
372
a6f7daee
WS
373#ifndef ListView_GetSubItemRect
374 #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))
375#endif
376
90a752c2
JS
377#ifndef LVM_GETHEADER
378 #define LVM_GETHEADER (LVM_FIRST+31)
3ec4107d
MB
379#endif
380
e229d82e
VS
381#ifndef HDLAYOUT
382 #define HDLAYOUT HD_LAYOUT
383#endif
384
385#ifndef HDITEM
386 #define HDITEM HD_ITEM
387#endif
388
389#ifndef NMHEADER
390 #define NMHEADER HD_NOTIFY
391#endif
392
56873923
VZ
393#ifndef HDS_DRAGDROP
394 #define HDS_DRAGDROP 0x0040
395#endif
e229d82e 396#ifndef HDS_FULLDRAG
56873923 397 #define HDS_FULLDRAG 0x0080
e229d82e
VS
398#endif
399
56873923 400
e229d82e
VS
401#ifndef HDN_BEGINDRAG
402 #define HDN_BEGINDRAG (HDN_FIRST - 11)
403#endif
404
405#ifndef HDN_ENDDRAG
406 #define HDN_ENDDRAG (HDN_FIRST - 10)
407#endif
408
90a752c2
JS
409#ifndef LVSICF_NOSCROLL
410 #define LVSICF_NOINVALIDATEALL 0x0001
411 #define LVSICF_NOSCROLL 0x0002
3ec4107d
MB
412#endif
413
4aa14001
WS
414#ifndef CP_SYMBOL
415 #define CP_SYMBOL 42
416#endif
417
3ea19afd
WS
418// ----------------------------------------------------------------------------
419// wxDisplay
420// ----------------------------------------------------------------------------
421
422// The windows headers with Digital Mars lack some typedefs.
423// typedef them as my_XXX and then #define to rename to XXX in case
424// a newer version of Digital Mars fixes the headers
425// (or up to date PSDK is in use with older version)
426// also we use any required definition (MONITOR_DEFAULTTONULL) to recognize
427// whether whole missing block needs to be included
428
429#ifndef MONITOR_DEFAULTTONULL
430
431 #define HMONITOR_DECLARED
432 DECLARE_HANDLE(HMONITOR);
433 typedef BOOL(CALLBACK* my_MONITORENUMPROC)(HMONITOR,HDC,LPRECT,LPARAM);
434 #define MONITORENUMPROC my_MONITORENUMPROC
435 typedef struct my_tagMONITORINFO {
436 DWORD cbSize;
437 RECT rcMonitor;
438 RECT rcWork;
439 DWORD dwFlags;
440 } my_MONITORINFO,*my_LPMONITORINFO;
441 #define MONITORINFO my_MONITORINFO
442 #define LPMONITORINFO my_LPMONITORINFO
443
444 typedef struct my_MONITORINFOEX : public my_tagMONITORINFO
445 {
446 TCHAR szDevice[CCHDEVICENAME];
447 } my_MONITORINFOEX, *my_LPMONITORINFOEX;
448 #define MONITORINFOEX my_MONITORINFOEX
449 #define LPMONITORINFOEX my_LPMONITORINFOEX
450
451 #ifndef MONITOR_DEFAULTTONULL
452 #define MONITOR_DEFAULTTONULL 0
453 #endif // MONITOR_DEFAULTTONULL
454
455 #ifndef MONITORINFOF_PRIMARY
456 #define MONITORINFOF_PRIMARY 1
457 #endif // MONITORINFOF_PRIMARY
458
459 #ifndef DDENUM_ATTACHEDSECONDARYDEVICES
460 #define DDENUM_ATTACHEDSECONDARYDEVICES 1
461 #endif
462
463#endif // MONITOR_DEFAULTTONULL
464
05e3a383
VZ
465// ----------------------------------------------------------------------------
466// Tree control
467// ----------------------------------------------------------------------------
468
469#ifndef TVIS_FOCUSED
470 #define TVIS_FOCUSED 0x0001
471#endif
472
05e3a383
VZ
473#ifndef TVS_CHECKBOXES
474 #define TVS_CHECKBOXES 0x0100
475#endif
476
03de0ad4
WS
477#ifndef TVITEM
478 #define TVITEM TV_ITEM
479#endif
480
446ea107 481#endif
90a752c2 482 // DMC++
446ea107 483
90a752c2 484 /*
c6c2445d 485 * The following are specifically required for OpenWatcom C++ (none at present)
90a752c2 486 */
446ea107 487
90a752c2 488#if defined(__WATCOMC__)
4a6619bb 489#endif
ae54422d 490
90a752c2 491 /*
c6c2445d 492 * The following are specifically required for MinGW (none at present)
90a752c2 493 */
23fbd31a 494
90a752c2 495#if defined (__MINGW32__)
aad7e71c
JS
496
497#if !wxCHECK_W32API_VERSION(3,1)
498
499#include <windows.h>
500#include "wx/msw/winundef.h"
501
502typedef struct
503{
504 RECT rgrc[3];
505 WINDOWPOS *lppos;
506} NCCALCSIZE_PARAMS, *LPNCCALCSIZE_PARAMS;
507
508#endif
509
41b8fe99
WS
510#endif
511
90a752c2
JS
512 /*
513 * In addition to the declarations for VC++, the following are required for WinCE
514 */
1a838ff5 515
fe5c9b3e
VZ
516#ifdef __WXWINCE__
517 #include "wx/msw/wince/missing.h"
d61c1a6f
JS
518#endif
519
24aab8e8
MW
520 /*
521 * The following are specifically required for Wine
522 */
523
524#ifdef __WINE__
525 #ifndef ENUM_CURRENT_SETTINGS
526 #define ENUM_CURRENT_SETTINGS ((DWORD)-1)
527 #endif
528 #ifndef BROADCAST_QUERY_DENY
529 #define BROADCAST_QUERY_DENY 1112363332
530 #endif
531#endif // defined __WINE__
532
7391216e
VS
533#endif
534 // _WX_MISSING_H_