]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/missing.h
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_PRINTCLIENT
38 #define WM_PRINTCLIENT 0x318
41 // Needed by toplevel.cpp
45 #define UIS_INITIALIZE 3
48 #ifndef UISF_HIDEFOCUS
49 #define UISF_HIDEFOCUS 1
52 #ifndef UISF_HIDEACCEL
53 #define UISF_HIDEACCEL 2
57 #define OFN_EXPLORER 0x00080000
60 #ifndef OFN_ENABLESIZING
61 #define OFN_ENABLESIZING 0x00800000
64 // Needed by window.cpp
67 #define WM_MOUSEWHEEL 0x020A
70 #define WHEEL_DELTA 120
72 #ifndef SPI_GETWHEELSCROLLLINES
73 #define SPI_GETWHEELSCROLLLINES 104
75 #endif // wxUSE_MOUSEWHEEL
77 // Needed by window.cpp
89 #define VK_OEM_PLUS 0xBB
90 #define VK_OEM_COMMA 0xBC
91 #define VK_OEM_MINUS 0xBD
92 #define VK_OEM_PERIOD 0xBE
95 // ----------------------------------------------------------------------------
96 // ListView common control
97 // Needed by listctrl.cpp
98 // ----------------------------------------------------------------------------
100 #ifndef LVS_EX_FULLROWSELECT
101 #define LVS_EX_FULLROWSELECT 0x00000020
104 #ifndef LVS_EX_LABELTIP
105 #define LVS_EX_LABELTIP 0x00004000
109 * In addition to the above, the following are required for several compilers.
112 #if !defined(CCS_VERT)
113 #define CCS_VERT 0x00000080L
116 #if !defined(TB_SETDISABLEDIMAGELIST)
117 #define TB_SETDISABLEDIMAGELIST (WM_USER + 54)
118 #endif // !defined(TB_SETDISABLEDIMAGELIST)
120 #ifndef CFM_BACKCOLOR
121 #define CFM_BACKCOLOR 0x04000000
124 #ifndef HANGUL_CHARSET
125 #define HANGUL_CHARSET 129
128 #ifndef CCM_SETUNICODEFORMAT
129 #define CCM_SETUNICODEFORMAT 8197
132 // ----------------------------------------------------------------------------
134 // ----------------------------------------------------------------------------
137 #define TV_FIRST 0x1100
140 #ifndef TVS_FULLROWSELECT
141 #define TVS_FULLROWSELECT 0x1000
144 #ifndef TVM_SETBKCOLOR
145 #define TVM_SETBKCOLOR (TV_FIRST + 29)
146 #define TVM_SETTEXTCOLOR (TV_FIRST + 30)
150 * The following are required for BC++ 5.5 (none at present.)
154 * The following are specifically required for Digital Mars C++
160 #ifndef _TrackMouseEvent
161 #define _TrackMouseEvent TrackMouseEvent
165 #ifndef LVM_SETEXTENDEDLISTVIEWSTYLE
166 #define LVM_SETEXTENDEDLISTVIEWSTYLE (0x1000 + 54)
170 #define LVCF_IMAGE 0x0010
173 #ifndef Header_GetItemRect
174 #define Header_GetItemRect(w,i,r) \
175 (BOOL)SendMessage((w),HDM_GETITEMRECT,(WPARAM)(i),(LPARAM)(r))
178 #ifndef HDM_GETITEMRECT
179 #define HDM_GETITEMRECT (HDM_FIRST+7)
182 #ifndef HDN_GETDISPINFOW
183 #define HDN_GETDISPINFOW (HDN_FIRST-29)
186 #ifndef ListView_GetHeader
187 #define ListView_GetHeader(w) (HWND)SendMessage((w),LVM_GETHEADER,0,0)
190 #ifndef LVM_GETHEADER
191 #define LVM_GETHEADER (LVM_FIRST+31)
194 #ifndef LVSICF_NOSCROLL
195 #define LVSICF_NOINVALIDATEALL 0x0001
196 #define LVSICF_NOSCROLL 0x0002
199 // ----------------------------------------------------------------------------
201 // ----------------------------------------------------------------------------
204 #define TVIS_FOCUSED 0x0001
207 #ifndef TVS_CHECKBOXES
208 #define TVS_CHECKBOXES 0x0100
212 #define TVITEM TV_ITEM
219 * The following are specifically required for OpenWatcom C++ (none at present)
222 #if defined(__WATCOMC__)
226 * The following are specifically required for MinGW (none at present)
229 #if defined (__MINGW32__)
233 * In addition to the declarations for VC++, the following are required for WinCE
237 #include "wx/msw/wince/missing.h"