]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: private.h | |
a23fd0e1 | 3 | // Purpose: Private declarations: as this header is only included by |
77ffb593 | 4 | // wxWidgets itself, it may contain identifiers which don't start |
a23fd0e1 | 5 | // with "wx". |
2bda0e17 KB |
6 | // Author: Julian Smart |
7 | // Modified by: | |
8 | // Created: 01/02/97 | |
9 | // RCS-ID: $Id$ | |
bbcdf8bc | 10 | // Copyright: (c) Julian Smart |
65571936 | 11 | // Licence: wxWindows licence |
2bda0e17 KB |
12 | ///////////////////////////////////////////////////////////////////////////// |
13 | ||
bbcdf8bc JS |
14 | #ifndef _WX_PRIVATE_H_ |
15 | #define _WX_PRIVATE_H_ | |
2bda0e17 | 16 | |
9ed0d735 | 17 | #include "wx/msw/wrapwin.h" |
2bda0e17 | 18 | |
04ef50df | 19 | #ifdef __WXMICROWIN__ |
b225f659 VZ |
20 | // Extra prototypes and symbols not defined by MicroWindows |
21 | #include "wx/msw/microwin.h" | |
04ef50df JS |
22 | #endif |
23 | ||
3d5231db VS |
24 | // Include fixes for MSLU: |
25 | #include "wx/msw/mslu.h" | |
26 | ||
3a922bb4 RL |
27 | #include "wx/log.h" |
28 | ||
a23fd0e1 | 29 | class WXDLLEXPORT wxFont; |
d427503c | 30 | class WXDLLEXPORT wxWindow; |
2bda0e17 | 31 | |
42e69d6b VZ |
32 | // --------------------------------------------------------------------------- |
33 | // private constants | |
34 | // --------------------------------------------------------------------------- | |
35 | ||
36 | // Conversion | |
37 | static const double METRIC_CONVERSION_CONSTANT = 0.0393700787; | |
38 | ||
39 | // Scaling factors for various unit conversions | |
40 | static const double mm2inches = (METRIC_CONVERSION_CONSTANT); | |
41 | static const double inches2mm = (1/METRIC_CONVERSION_CONSTANT); | |
42 | ||
43 | static const double mm2twips = (METRIC_CONVERSION_CONSTANT*1440); | |
44 | static const double twips2mm = (1/(METRIC_CONVERSION_CONSTANT*1440)); | |
45 | ||
46 | static const double mm2pt = (METRIC_CONVERSION_CONSTANT*72); | |
47 | static const double pt2mm = (1/(METRIC_CONVERSION_CONSTANT*72)); | |
48 | ||
a23fd0e1 VZ |
49 | // --------------------------------------------------------------------------- |
50 | // standard icons from the resources | |
51 | // --------------------------------------------------------------------------- | |
2bda0e17 | 52 | |
b568d04f VZ |
53 | #if wxUSE_GUI |
54 | ||
2bda0e17 KB |
55 | WXDLLEXPORT_DATA(extern HICON) wxSTD_FRAME_ICON; |
56 | WXDLLEXPORT_DATA(extern HICON) wxSTD_MDIPARENTFRAME_ICON; | |
57 | WXDLLEXPORT_DATA(extern HICON) wxSTD_MDICHILDFRAME_ICON; | |
58 | WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_FRAME_ICON; | |
59 | WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDIPARENTFRAME_ICON; | |
60 | WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDICHILDFRAME_ICON; | |
61 | WXDLLEXPORT_DATA(extern HFONT) wxSTATUS_LINE_FONT; | |
62 | ||
b568d04f VZ |
63 | #endif // wxUSE_GUI |
64 | ||
a23fd0e1 | 65 | // --------------------------------------------------------------------------- |
11c7d5b6 | 66 | // define things missing from some compilers' headers |
a23fd0e1 | 67 | // --------------------------------------------------------------------------- |
c455ab93 | 68 | |
7f0586ef | 69 | #if defined(__WXWINCE__) || (defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS) |
01dba85a | 70 | #ifndef ZeroMemory |
11c7d5b6 | 71 | inline void ZeroMemory(void *buf, size_t len) { memset(buf, 0, len); } |
01dba85a | 72 | #endif |
11c7d5b6 VZ |
73 | #endif // old mingw32 |
74 | ||
75 | // this defines a CASTWNDPROC macro which casts a pointer to the type of a | |
76 | // window proc | |
7f0586ef | 77 | #if defined(STRICT) || defined(__GNUC__) |
ebb0781f | 78 | typedef WNDPROC WndProcCast; |
c3b177ae | 79 | #else |
ebb0781f VZ |
80 | typedef FARPROC WndProcCast; |
81 | #endif | |
82 | ||
552a0ebd | 83 | |
ebb0781f | 84 | #define CASTWNDPROC (WndProcCast) |
2bda0e17 | 85 | |
dd54f5d3 | 86 | |
50165591 | 87 | |
a23fd0e1 VZ |
88 | // --------------------------------------------------------------------------- |
89 | // some stuff for old Windows versions (FIXME: what does it do here??) | |
90 | // --------------------------------------------------------------------------- | |
91 | ||
c085e333 | 92 | #if !defined(APIENTRY) // NT defines APIENTRY, 3.x not |
a23fd0e1 | 93 | #define APIENTRY FAR PASCAL |
2bda0e17 | 94 | #endif |
c085e333 | 95 | |
2bda0e17 | 96 | #ifdef __WIN32__ |
a23fd0e1 | 97 | #define _EXPORT |
2bda0e17 | 98 | #else |
a23fd0e1 VZ |
99 | #define _EXPORT _export |
100 | #endif | |
101 | ||
102 | #ifndef __WIN32__ | |
103 | typedef signed short int SHORT; | |
2bda0e17 | 104 | #endif |
c085e333 VZ |
105 | |
106 | #if !defined(__WIN32__) // 3.x uses FARPROC for dialogs | |
27a9bd48 | 107 | #ifndef STRICT |
a23fd0e1 | 108 | #define DLGPROC FARPROC |
2bda0e17 | 109 | #endif |
27a9bd48 | 110 | #endif |
2bda0e17 | 111 | |
47d67540 | 112 | #if wxUSE_PENWIN |
cc2b7472 VZ |
113 | WXDLLEXPORT void wxRegisterPenWin(); |
114 | WXDLLEXPORT void wxCleanUpPenWin(); | |
115 | WXDLLEXPORT void wxEnablePenAppHooks (bool hook); | |
116 | #endif // wxUSE_PENWIN | |
2bda0e17 | 117 | |
47d67540 | 118 | #if wxUSE_ITSY_BITSY |
a23fd0e1 VZ |
119 | #define IBS_HORZCAPTION 0x4000L |
120 | #define IBS_VERTCAPTION 0x8000L | |
2bda0e17 | 121 | |
a23fd0e1 VZ |
122 | UINT WINAPI ibGetCaptionSize( HWND hWnd ) ; |
123 | UINT WINAPI ibSetCaptionSize( HWND hWnd, UINT nSize ) ; | |
124 | LRESULT WINAPI ibDefWindowProc( HWND hWnd, UINT uiMsg, WPARAM wParam, LPARAM lParam ) ; | |
125 | VOID WINAPI ibAdjustWindowRect( HWND hWnd, LPRECT lprc ) ; | |
126 | #endif // wxUSE_ITSY_BITSY | |
2bda0e17 | 127 | |
1f112209 | 128 | #if wxUSE_CTL3D |
a23fd0e1 VZ |
129 | #include "wx/msw/ctl3d/ctl3d.h" |
130 | #endif // wxUSE_CTL3D | |
2bda0e17 KB |
131 | |
132 | /* | |
133 | * Decide what window classes we're going to use | |
134 | * for this combination of CTl3D/FAFA settings | |
135 | */ | |
c085e333 | 136 | |
223d09f6 | 137 | #define STATIC_CLASS wxT("STATIC") |
2bda0e17 | 138 | #define STATIC_FLAGS (SS_LEFT|WS_CHILD|WS_VISIBLE) |
223d09f6 | 139 | #define CHECK_CLASS wxT("BUTTON") |
2bda0e17 KB |
140 | #define CHECK_FLAGS (BS_AUTOCHECKBOX|WS_TABSTOP|WS_CHILD) |
141 | #define CHECK_IS_FAFA FALSE | |
223d09f6 | 142 | #define RADIO_CLASS wxT("BUTTON") |
2bda0e17 KB |
143 | #define RADIO_FLAGS (BS_AUTORADIOBUTTON|WS_CHILD|WS_VISIBLE) |
144 | #define RADIO_SIZE 20 | |
145 | #define RADIO_IS_FAFA FALSE | |
146 | #define PURE_WINDOWS | |
223d09f6 | 147 | #define GROUP_CLASS wxT("BUTTON") |
2bda0e17 KB |
148 | #define GROUP_FLAGS (BS_GROUPBOX|WS_CHILD|WS_VISIBLE) |
149 | ||
150 | /* | |
151 | #define BITCHECK_FLAGS (FB_BITMAP|FC_BUTTONDRAW|FC_DEFAULT|WS_VISIBLE) | |
152 | #define BITRADIO_FLAGS (FC_BUTTONDRAW|FB_BITMAP|FC_RADIO|WS_CHILD|WS_VISIBLE) | |
153 | */ | |
154 | ||
a23fd0e1 VZ |
155 | // --------------------------------------------------------------------------- |
156 | // misc macros | |
157 | // --------------------------------------------------------------------------- | |
158 | ||
2bda0e17 | 159 | #define MEANING_CHARACTER '0' |
5d368213 | 160 | #define DEFAULT_ITEM_WIDTH 100 |
2bda0e17 | 161 | #define DEFAULT_ITEM_HEIGHT 80 |
1c4a764c VZ |
162 | |
163 | // Scale font to get edit control height | |
f6bcfd97 BP |
164 | //#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (3*(cy)/2) |
165 | #define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (cy+8) | |
2bda0e17 KB |
166 | |
167 | // Generic subclass proc, for panel item moving/sizing and intercept | |
168 | // EDIT control VK_RETURN messages | |
169 | extern LONG APIENTRY _EXPORT | |
170 | wxSubclassedGenericControlProc(WXHWND hWnd, WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
171 | ||
11c7d5b6 VZ |
172 | // --------------------------------------------------------------------------- |
173 | // useful macros and functions | |
174 | // --------------------------------------------------------------------------- | |
175 | ||
176 | // a wrapper macro for ZeroMemory() | |
04ef50df | 177 | #if defined(__WIN32__) && !defined(__WXMICROWIN__) |
11c7d5b6 | 178 | #define wxZeroMemory(obj) ::ZeroMemory(&obj, sizeof(obj)) |
0e528b99 JS |
179 | #else |
180 | #define wxZeroMemory(obj) memset((void*) & obj, 0, sizeof(obj)) | |
181 | #endif | |
11c7d5b6 | 182 | |
f6bcfd97 BP |
183 | #if wxUSE_GUI |
184 | ||
01dba85a | 185 | #include <wx/gdicmn.h> |
ed39ff57 | 186 | #include <wx/colour.h> |
01dba85a | 187 | |
11c7d5b6 VZ |
188 | // make conversion from wxColour and COLORREF a bit less painful |
189 | inline COLORREF wxColourToRGB(const wxColour& c) | |
4ab861e5 VZ |
190 | { |
191 | return RGB(c.Red(), c.Green(), c.Blue()); | |
192 | } | |
193 | ||
194 | inline COLORREF wxColourToPalRGB(const wxColour& c) | |
11c7d5b6 | 195 | { |
19193a2c | 196 | return PALETTERGB(c.Red(), c.Green(), c.Blue()); |
11c7d5b6 VZ |
197 | } |
198 | ||
d23c8ba2 VZ |
199 | inline wxColour wxRGBToColour(COLORREF rgb) |
200 | { | |
201 | return wxColour(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb)); | |
202 | } | |
203 | ||
11c7d5b6 VZ |
204 | inline void wxRGBToColour(wxColour& c, COLORREF rgb) |
205 | { | |
206 | c.Set(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb)); | |
207 | } | |
208 | ||
90c1530a VZ |
209 | // get the standard colour map for some standard colours - see comment in this |
210 | // function to understand why is it needed and when should it be used | |
211 | // | |
212 | // it returns a wxCOLORMAP (can't use COLORMAP itself here as comctl32.dll | |
213 | // might be not included/available) array of size wxSTD_COLOUR_MAX | |
214 | // | |
215 | // NB: if you change these colours, update wxBITMAP_STD_COLOURS in the | |
216 | // resources as well: it must have the same number of pixels! | |
217 | enum wxSTD_COLOUR | |
218 | { | |
219 | wxSTD_COL_BTNTEXT, | |
220 | wxSTD_COL_BTNSHADOW, | |
221 | wxSTD_COL_BTNFACE, | |
222 | wxSTD_COL_BTNHIGHLIGHT, | |
223 | wxSTD_COL_MAX, | |
224 | }; | |
225 | ||
226 | struct WXDLLEXPORT wxCOLORMAP | |
227 | { | |
228 | COLORREF from, to; | |
229 | }; | |
230 | ||
231 | // this function is implemented in src/msw/window.cpp | |
232 | extern wxCOLORMAP *wxGetStdColourMap(); | |
233 | ||
ed791986 VZ |
234 | // copy Windows RECT to our wxRect |
235 | inline void wxCopyRECTToRect(const RECT& r, wxRect& rect) | |
236 | { | |
237 | rect.y = r.top; | |
238 | rect.x = r.left; | |
239 | rect.width = r.right - r.left; | |
240 | rect.height = r.bottom - r.top; | |
241 | } | |
242 | ||
d9317fd4 VZ |
243 | // translations between HIMETRIC units (which OLE likes) and pixels (which are |
244 | // liked by all the others) - implemented in msw/utilsexc.cpp | |
245 | extern void HIMETRICToPixel(LONG *x, LONG *y); | |
246 | extern void PixelToHIMETRIC(LONG *x, LONG *y); | |
247 | ||
77ffb593 | 248 | // Windows convention of the mask is opposed to the wxWidgets one, so we need |
4b7f2165 VZ |
249 | // to invert the mask each time we pass one/get one to/from Windows |
250 | extern HBITMAP wxInvertMask(HBITMAP hbmpMask, int w = 0, int h = 0); | |
251 | ||
211b54b1 VZ |
252 | // Creates an icon or cursor depending from a bitmap |
253 | // | |
254 | // The bitmap must be valid and it should have a mask. If it doesn't, a default | |
255 | // mask is created using light grey as the transparent colour. | |
256 | extern HICON wxBitmapToHICON(const wxBitmap& bmp); | |
257 | ||
258 | // Same requirments as above apply and the bitmap must also have the correct | |
259 | // size. | |
260 | extern | |
261 | HCURSOR wxBitmapToHCURSOR(const wxBitmap& bmp, int hotSpotX, int hotSpotY); | |
262 | ||
8614c467 VZ |
263 | // get (x, y) from DWORD - notice that HI/LOWORD can *not* be used because they |
264 | // will fail on system with multiple monitors where the coords may be negative | |
265 | // | |
266 | // these macros are standard now (Win98) but some older headers don't have them | |
267 | #ifndef GET_X_LPARAM | |
268 | #define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp)) | |
269 | #define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp)) | |
270 | #endif // GET_X_LPARAM | |
271 | ||
a95e38c0 | 272 | // get the current state of SHIFT/CTRL keys |
1f80a703 | 273 | inline bool wxIsShiftDown() |
a95e38c0 | 274 | { |
1fdf858b JS |
275 | // return (::GetKeyState(VK_SHIFT) & 0x100) != 0; |
276 | // Returns different negative values on WinME and WinNT, | |
277 | // so simply test for negative value. | |
278 | return ::GetKeyState(VK_SHIFT) < 0; | |
a95e38c0 VZ |
279 | } |
280 | ||
1f80a703 | 281 | inline bool wxIsCtrlDown() |
a95e38c0 | 282 | { |
1fdf858b JS |
283 | // return (::GetKeyState(VK_CONTROL) & 0x100) != 0; |
284 | // Returns different negative values on WinME and WinNT, | |
285 | // so simply test for negative value. | |
286 | return ::GetKeyState(VK_CONTROL) < 0; | |
a95e38c0 VZ |
287 | } |
288 | ||
82c9f85c VZ |
289 | // wrapper around GetWindowRect() and GetClientRect() APIs doing error checking |
290 | // for Win32 | |
291 | inline RECT wxGetWindowRect(HWND hwnd) | |
292 | { | |
293 | RECT rect; | |
3a5bcc4d | 294 | |
82c9f85c VZ |
295 | if ( !::GetWindowRect(hwnd, &rect) ) |
296 | { | |
297 | wxLogLastError(_T("GetWindowRect")); | |
298 | } | |
82c9f85c VZ |
299 | |
300 | return rect; | |
301 | } | |
302 | ||
303 | inline RECT wxGetClientRect(HWND hwnd) | |
304 | { | |
305 | RECT rect; | |
3a5bcc4d | 306 | |
82c9f85c VZ |
307 | if ( !::GetClientRect(hwnd, &rect) ) |
308 | { | |
309 | wxLogLastError(_T("GetClientRect")); | |
310 | } | |
82c9f85c VZ |
311 | |
312 | return rect; | |
313 | } | |
314 | ||
6d167489 VZ |
315 | // --------------------------------------------------------------------------- |
316 | // small helper classes | |
317 | // --------------------------------------------------------------------------- | |
318 | ||
bffa02ff VZ |
319 | // a template to make initializing Windows styructs less painful: it zeroes all |
320 | // the struct fields and also sets cbSize member to the correct value (and so | |
321 | // can be only used with structures which have this member...) | |
322 | template <class T> | |
323 | struct WinStruct : public T | |
324 | { | |
325 | WinStruct() | |
326 | { | |
5eae641d | 327 | ::ZeroMemory(this, sizeof(T)); |
329ac7da VZ |
328 | |
329 | // explicit qualification is required here for this to be valid C++ | |
a7d174bf | 330 | this->cbSize = sizeof(T); |
bffa02ff VZ |
331 | } |
332 | }; | |
333 | ||
334 | ||
6d167489 VZ |
335 | // create an instance of this class and use it as the HDC for screen, will |
336 | // automatically release the DC going out of scope | |
337 | class ScreenHDC | |
338 | { | |
339 | public: | |
091225b4 VZ |
340 | ScreenHDC() { m_hdc = ::GetDC(NULL); } |
341 | ~ScreenHDC() { ::ReleaseDC(NULL, m_hdc); } | |
342 | ||
343 | operator HDC() const { return m_hdc; } | |
344 | ||
345 | private: | |
346 | HDC m_hdc; | |
22f3361e VZ |
347 | |
348 | DECLARE_NO_COPY_CLASS(ScreenHDC) | |
091225b4 VZ |
349 | }; |
350 | ||
2ff56383 VZ |
351 | // the same as ScreenHDC but for window DCs |
352 | class WindowHDC | |
353 | { | |
354 | public: | |
355 | WindowHDC(HWND hwnd) { m_hdc = ::GetDC(m_hwnd = hwnd); } | |
356 | ~WindowHDC() { ::ReleaseDC(m_hwnd, m_hdc); } | |
357 | ||
358 | operator HDC() const { return m_hdc; } | |
359 | ||
360 | private: | |
361 | HWND m_hwnd; | |
362 | HDC m_hdc; | |
363 | ||
364 | DECLARE_NO_COPY_CLASS(WindowHDC) | |
365 | }; | |
366 | ||
697b08a8 VZ |
367 | // the same as ScreenHDC but for memory DCs: creates the HDC compatible with |
368 | // the given one (screen by default) in ctor and destroys it in dtor | |
091225b4 VZ |
369 | class MemoryHDC |
370 | { | |
371 | public: | |
9cf743aa | 372 | MemoryHDC(HDC hdc = 0) { m_hdc = ::CreateCompatibleDC(hdc); } |
697b08a8 | 373 | ~MemoryHDC() { ::DeleteDC(m_hdc); } |
091225b4 VZ |
374 | |
375 | operator HDC() const { return m_hdc; } | |
6d167489 VZ |
376 | |
377 | private: | |
378 | HDC m_hdc; | |
22f3361e VZ |
379 | |
380 | DECLARE_NO_COPY_CLASS(MemoryHDC) | |
6d167489 VZ |
381 | }; |
382 | ||
091225b4 VZ |
383 | // a class which selects a GDI object into a DC in its ctor and deselects in |
384 | // dtor | |
385 | class SelectInHDC | |
386 | { | |
387 | public: | |
388 | SelectInHDC(HDC hdc, HGDIOBJ hgdiobj) : m_hdc(hdc) | |
389 | { m_hgdiobj = ::SelectObject(hdc, hgdiobj); } | |
390 | ||
391 | ~SelectInHDC() { ::SelectObject(m_hdc, m_hgdiobj); } | |
392 | ||
393 | // return true if the object was successfully selected | |
394 | operator bool() const { return m_hgdiobj != 0; } | |
395 | ||
396 | private: | |
397 | HDC m_hdc; | |
398 | HGDIOBJ m_hgdiobj; | |
22f3361e | 399 | |
51a2a728 VZ |
400 | DECLARE_NO_COPY_CLASS(SelectInHDC) |
401 | }; | |
402 | ||
403 | // when working with global pointers (which is unfortunately still necessary | |
404 | // sometimes, e.g. for clipboard) it is important to unlock them exactly as | |
405 | // many times as we lock them which just asks for using a "smart lock" class | |
06d09389 | 406 | class GlobalPtr |
51a2a728 VZ |
407 | { |
408 | public: | |
06d09389 | 409 | GlobalPtr(HGLOBAL hGlobal) : m_hGlobal(hGlobal) |
51a2a728 | 410 | { |
2aaf17c2 | 411 | m_ptr = GlobalLock(hGlobal); |
51a2a728 VZ |
412 | if ( !m_ptr ) |
413 | { | |
414 | wxLogLastError(_T("GlobalLock")); | |
415 | } | |
416 | } | |
417 | ||
06d09389 | 418 | ~GlobalPtr() |
51a2a728 | 419 | { |
2aaf17c2 | 420 | if ( !GlobalUnlock(m_hGlobal) ) |
51a2a728 VZ |
421 | { |
422 | #ifdef __WXDEBUG__ | |
423 | // this might happen simply because the block became unlocked | |
424 | DWORD dwLastError = ::GetLastError(); | |
425 | if ( dwLastError != NO_ERROR ) | |
426 | { | |
427 | wxLogApiError(_T("GlobalUnlock"), dwLastError); | |
428 | } | |
429 | #endif // __WXDEBUG__ | |
430 | } | |
431 | } | |
432 | ||
433 | operator void *() const { return m_ptr; } | |
434 | ||
435 | private: | |
436 | HGLOBAL m_hGlobal; | |
437 | void *m_ptr; | |
438 | ||
06d09389 | 439 | DECLARE_NO_COPY_CLASS(GlobalPtr) |
091225b4 VZ |
440 | }; |
441 | ||
a23fd0e1 | 442 | // --------------------------------------------------------------------------- |
42e69d6b | 443 | // macros to make casting between WXFOO and FOO a bit easier: the GetFoo() |
c50f1fb9 VZ |
444 | // returns Foo cast to the Windows type for oruselves, while GetFooOf() takes |
445 | // an argument which should be a pointer or reference to the object of the | |
446 | // corresponding class (this depends on the macro) | |
a23fd0e1 VZ |
447 | // --------------------------------------------------------------------------- |
448 | ||
449 | #define GetHwnd() ((HWND)GetHWND()) | |
c50f1fb9 VZ |
450 | #define GetHwndOf(win) ((HWND)((win)->GetHWND())) |
451 | // old name | |
452 | #define GetWinHwnd GetHwndOf | |
a23fd0e1 VZ |
453 | |
454 | #define GetHdc() ((HDC)GetHDC()) | |
c50f1fb9 | 455 | #define GetHdcOf(dc) ((HDC)(dc).GetHDC()) |
a23fd0e1 | 456 | |
11c7d5b6 VZ |
457 | #define GetHbitmap() ((HBITMAP)GetHBITMAP()) |
458 | #define GetHbitmapOf(bmp) ((HBITMAP)(bmp).GetHBITMAP()) | |
459 | ||
42e69d6b | 460 | #define GetHicon() ((HICON)GetHICON()) |
c50f1fb9 | 461 | #define GetHiconOf(icon) ((HICON)(icon).GetHICON()) |
42e69d6b | 462 | |
a23fd0e1 | 463 | #define GetHaccel() ((HACCEL)GetHACCEL()) |
c50f1fb9 VZ |
464 | #define GetHaccelOf(table) ((HACCEL)((table).GetHACCEL())) |
465 | ||
ee50eab8 VZ |
466 | #define GetHbrush() ((HPEN)GetResourceHandle()) |
467 | #define GetHbrushOf(brush) ((HPEN)(brush).GetResourceHandle()) | |
468 | ||
c50f1fb9 VZ |
469 | #define GetHmenu() ((HMENU)GetHMenu()) |
470 | #define GetHmenuOf(menu) ((HMENU)menu->GetHMenu()) | |
a23fd0e1 | 471 | |
bfbd6dc1 VZ |
472 | #define GetHcursor() ((HCURSOR)GetHCURSOR()) |
473 | #define GetHcursorOf(cursor) ((HCURSOR)(cursor).GetHCURSOR()) | |
474 | ||
f6bcfd97 BP |
475 | #define GetHfont() ((HFONT)GetHFONT()) |
476 | #define GetHfontOf(font) ((HFONT)(font).GetHFONT()) | |
477 | ||
1816a070 | 478 | #define GetHpalette() ((HPALETTE)GetHPALETTE()) |
b95edd47 | 479 | #define GetHpaletteOf(pal) ((HPALETTE)(pal).GetHPALETTE()) |
1816a070 | 480 | |
75776373 VZ |
481 | #define GetHpen() ((HPEN)GetResourceHandle()) |
482 | #define GetHpenOf(pen) ((HPEN)(pen).GetResourceHandle()) | |
483 | ||
1e6feb95 VZ |
484 | #define GetHrgn() ((HRGN)GetHRGN()) |
485 | #define GetHrgnOf(rgn) ((HRGN)(rgn).GetHRGN()) | |
486 | ||
f6bcfd97 BP |
487 | #endif // wxUSE_GUI |
488 | ||
a23fd0e1 VZ |
489 | // --------------------------------------------------------------------------- |
490 | // global data | |
491 | // --------------------------------------------------------------------------- | |
2bda0e17 | 492 | |
bddd7a8d | 493 | WXDLLIMPEXP_DATA_BASE(extern HINSTANCE) wxhInstance; |
2bda0e17 | 494 | |
a23fd0e1 VZ |
495 | // --------------------------------------------------------------------------- |
496 | // global functions | |
497 | // --------------------------------------------------------------------------- | |
498 | ||
18600546 GRG |
499 | extern "C" |
500 | { | |
bb24c68f | 501 | WXDLLIMPEXP_BASE HINSTANCE wxGetInstance(); |
18600546 GRG |
502 | } |
503 | ||
bb24c68f | 504 | WXDLLIMPEXP_BASE void wxSetInstance(HINSTANCE hInst); |
a23fd0e1 | 505 | |
b568d04f VZ |
506 | #if wxUSE_GUI |
507 | ||
bfbd6dc1 VZ |
508 | // cursor stuff |
509 | extern HCURSOR wxGetCurrentBusyCursor(); // from msw/utils.cpp | |
510 | extern const wxCursor *wxGetGlobalCursor(); // from msw/cursor.cpp | |
511 | ||
7a5e53ab | 512 | WXDLLEXPORT void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont& the_font); |
11c7d5b6 VZ |
513 | WXDLLEXPORT void wxFillLogFont(LOGFONT *logFont, const wxFont *font); |
514 | WXDLLEXPORT wxFont wxCreateFontFromLogFont(const LOGFONT *logFont); | |
f6bcfd97 | 515 | WXDLLEXPORT wxFontEncoding wxGetFontEncFromCharSet(int charset); |
a23fd0e1 VZ |
516 | |
517 | WXDLLEXPORT void wxSliderEvent(WXHWND control, WXWORD wParam, WXWORD pos); | |
518 | WXDLLEXPORT void wxScrollBarEvent(WXHWND hbar, WXWORD wParam, WXWORD pos); | |
519 | ||
520 | // Find maximum size of window/rectangle | |
521 | WXDLLEXPORT extern void wxFindMaxSize(WXHWND hwnd, RECT *rect); | |
522 | ||
1c4a764c | 523 | // Safely get the window text (i.e. without using fixed size buffer) |
184b5d99 | 524 | WXDLLEXPORT extern wxString wxGetWindowText(WXHWND hWnd); |
1c4a764c | 525 | |
cc2b7472 VZ |
526 | // get the window class name |
527 | WXDLLEXPORT extern wxString wxGetWindowClass(WXHWND hWnd); | |
528 | ||
42e69d6b VZ |
529 | // get the window id (should be unsigned, hence this is not wxWindowID which |
530 | // is, for mainly historical reasons, signed) | |
531 | WXDLLEXPORT extern WXWORD wxGetWindowId(WXHWND hWnd); | |
cc2b7472 | 532 | |
ae304744 VZ |
533 | // check if hWnd's WNDPROC is wndProc. Return true if yes, false if they are |
534 | // different | |
535 | WXDLLEXPORT extern bool wxCheckWindowWndProc(WXHWND hWnd, WXFARPROC wndProc); | |
eb5e4d9a | 536 | |
c085e333 | 537 | // Does this window style specify any border? |
184b5d99 | 538 | inline bool wxStyleHasBorder(long style) |
c085e333 | 539 | { |
82c9f85c VZ |
540 | return (style & (wxSIMPLE_BORDER | wxRAISED_BORDER | |
541 | wxSUNKEN_BORDER | wxDOUBLE_BORDER)) != 0; | |
c085e333 VZ |
542 | } |
543 | ||
ae304744 VZ |
544 | // ---------------------------------------------------------------------------- |
545 | // functions mapping HWND to wxWindow | |
546 | // ---------------------------------------------------------------------------- | |
547 | ||
548 | // this function simply checks whether the given hWnd corresponds to a wxWindow | |
549 | // and returns either that window if it does or NULL otherwise | |
550 | WXDLLEXPORT extern wxWindow* wxFindWinFromHandle(WXHWND hWnd); | |
551 | ||
552 | // find the window for HWND which is part of some wxWindow, i.e. unlike | |
553 | // wxFindWinFromHandle() above it will also work for "sub controls" of a | |
554 | // wxWindow. | |
8614c467 | 555 | // |
ae304744 VZ |
556 | // returns the wxWindow corresponding to the given HWND or NULL. |
557 | WXDLLEXPORT extern wxWindow *wxGetWindowFromHWND(WXHWND hwnd); | |
8614c467 | 558 | |
6bad4c32 | 559 | // Get the size of an icon |
ae304744 | 560 | WXDLLEXPORT extern wxSize wxGetHiconSize(HICON hicon); |
6bad4c32 | 561 | |
086b3a5b JS |
562 | // Lines are drawn differently for WinCE and regular WIN32 |
563 | WXDLLEXPORT void wxDrawLine(HDC hdc, int x1, int y1, int x2, int y2); | |
564 | ||
5171ea0e VZ |
565 | // ---------------------------------------------------------------------------- |
566 | // 32/64 bit helpers | |
567 | // ---------------------------------------------------------------------------- | |
568 | ||
569 | #ifdef __WIN64__ | |
570 | ||
571 | inline void *wxGetWindowProc(HWND hwnd) | |
572 | { | |
573 | return (void *)::GetWindowLongPtr(hwnd, GWLP_WNDPROC); | |
574 | } | |
575 | ||
576 | inline void *wxGetWindowUserData(HWND hwnd) | |
577 | { | |
578 | return (void *)::GetWindowLongPtr(hwnd, GWLP_USERDATA); | |
579 | } | |
580 | ||
581 | inline WNDPROC wxSetWindowProc(HWND hwnd, WNDPROC func) | |
582 | { | |
583 | return (WNDPROC)::SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR)func); | |
584 | } | |
585 | ||
586 | inline void *wxSetWindowUserData(HWND hwnd, void *data) | |
587 | { | |
588 | return (void *)::SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR)data); | |
589 | } | |
590 | ||
591 | #else // __WIN32__ | |
592 | ||
593 | inline void *wxGetWindowProc(HWND hwnd) | |
594 | { | |
595 | return (void *)::GetWindowLong(hwnd, GWL_WNDPROC); | |
596 | } | |
597 | ||
598 | inline void *wxGetWindowUserData(HWND hwnd) | |
599 | { | |
600 | return (void *)::GetWindowLong(hwnd, GWL_USERDATA); | |
601 | } | |
602 | ||
603 | inline WNDPROC wxSetWindowProc(HWND hwnd, WNDPROC func) | |
604 | { | |
605 | return (WNDPROC)::SetWindowLong(hwnd, GWL_WNDPROC, (LONG)func); | |
606 | } | |
607 | ||
608 | inline void *wxSetWindowUserData(HWND hwnd, void *data) | |
609 | { | |
610 | return (void *)::SetWindowLong(hwnd, GWL_USERDATA, (LONG)data); | |
611 | } | |
612 | ||
613 | #endif // __WIN64__/__WIN32__ | |
614 | ||
b568d04f VZ |
615 | #endif // wxUSE_GUI |
616 | ||
2bda0e17 | 617 | #endif |
bbcdf8bc | 618 | // _WX_PRIVATE_H_ |