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