]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/private.h
added wxBookCtrl::ChangeSelection() which is the same as SetSelection() but doesn...
[wxWidgets.git] / include / wx / msw / private.h
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
c0089c96 2// Name: wx/msw/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 29class WXDLLEXPORT wxFont;
d427503c 30class WXDLLEXPORT wxWindow;
c282a7a1 31class WXDLLEXPORT wxWindowBase;
2bda0e17 32
42e69d6b
VZ
33// ---------------------------------------------------------------------------
34// private constants
35// ---------------------------------------------------------------------------
36
77d8d6cd
VZ
37// 260 was taken from windef.h
38#ifndef MAX_PATH
39 #define MAX_PATH 260
40#endif
41
a23fd0e1
VZ
42// ---------------------------------------------------------------------------
43// standard icons from the resources
44// ---------------------------------------------------------------------------
2bda0e17 45
b568d04f
VZ
46#if wxUSE_GUI
47
ef359b43
WS
48extern WXDLLEXPORT_DATA(HICON) wxSTD_FRAME_ICON;
49extern WXDLLEXPORT_DATA(HICON) wxSTD_MDIPARENTFRAME_ICON;
50extern WXDLLEXPORT_DATA(HICON) wxSTD_MDICHILDFRAME_ICON;
51extern WXDLLEXPORT_DATA(HICON) wxDEFAULT_FRAME_ICON;
52extern WXDLLEXPORT_DATA(HICON) wxDEFAULT_MDIPARENTFRAME_ICON;
53extern WXDLLEXPORT_DATA(HICON) wxDEFAULT_MDICHILDFRAME_ICON;
54extern WXDLLEXPORT_DATA(HFONT) wxSTATUS_LINE_FONT;
2bda0e17 55
b568d04f
VZ
56#endif // wxUSE_GUI
57
77ec05d4
VZ
58// ---------------------------------------------------------------------------
59// global data
60// ---------------------------------------------------------------------------
61
62extern WXDLLIMPEXP_DATA_BASE(HINSTANCE) wxhInstance;
63
a23fd0e1 64// ---------------------------------------------------------------------------
11c7d5b6 65// define things missing from some compilers' headers
a23fd0e1 66// ---------------------------------------------------------------------------
c455ab93 67
7f0586ef 68#if defined(__WXWINCE__) || (defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS)
01dba85a 69#ifndef ZeroMemory
11c7d5b6 70 inline void ZeroMemory(void *buf, size_t len) { memset(buf, 0, len); }
01dba85a 71#endif
11c7d5b6
VZ
72#endif // old mingw32
73
74// this defines a CASTWNDPROC macro which casts a pointer to the type of a
75// window proc
7f0586ef 76#if defined(STRICT) || defined(__GNUC__)
ebb0781f 77 typedef WNDPROC WndProcCast;
c3b177ae 78#else
ebb0781f
VZ
79 typedef FARPROC WndProcCast;
80#endif
81
552a0ebd 82
ebb0781f 83#define CASTWNDPROC (WndProcCast)
2bda0e17 84
dd54f5d3 85
50165591 86
a23fd0e1
VZ
87// ---------------------------------------------------------------------------
88// some stuff for old Windows versions (FIXME: what does it do here??)
89// ---------------------------------------------------------------------------
90
c085e333 91#if !defined(APIENTRY) // NT defines APIENTRY, 3.x not
a23fd0e1 92 #define APIENTRY FAR PASCAL
2bda0e17 93#endif
c085e333 94
2bda0e17 95#ifdef __WIN32__
a23fd0e1 96 #define _EXPORT
2bda0e17 97#else
a23fd0e1
VZ
98 #define _EXPORT _export
99#endif
100
101#ifndef __WIN32__
102 typedef signed short int SHORT;
2bda0e17 103#endif
c085e333
VZ
104
105#if !defined(__WIN32__) // 3.x uses FARPROC for dialogs
27a9bd48 106#ifndef STRICT
a23fd0e1 107 #define DLGPROC FARPROC
2bda0e17 108#endif
27a9bd48 109#endif
2bda0e17 110
2bda0e17
KB
111/*
112 * Decide what window classes we're going to use
113 * for this combination of CTl3D/FAFA settings
114 */
c085e333 115
223d09f6 116#define STATIC_CLASS wxT("STATIC")
2bda0e17 117#define STATIC_FLAGS (SS_LEFT|WS_CHILD|WS_VISIBLE)
223d09f6 118#define CHECK_CLASS wxT("BUTTON")
2bda0e17 119#define CHECK_FLAGS (BS_AUTOCHECKBOX|WS_TABSTOP|WS_CHILD)
078cf5cb 120#define CHECK_IS_FAFA FALSE
223d09f6 121#define RADIO_CLASS wxT("BUTTON")
2bda0e17
KB
122#define RADIO_FLAGS (BS_AUTORADIOBUTTON|WS_CHILD|WS_VISIBLE)
123#define RADIO_SIZE 20
078cf5cb 124#define RADIO_IS_FAFA FALSE
2bda0e17 125#define PURE_WINDOWS
223d09f6 126#define GROUP_CLASS wxT("BUTTON")
2bda0e17
KB
127#define GROUP_FLAGS (BS_GROUPBOX|WS_CHILD|WS_VISIBLE)
128
129/*
130#define BITCHECK_FLAGS (FB_BITMAP|FC_BUTTONDRAW|FC_DEFAULT|WS_VISIBLE)
131#define BITRADIO_FLAGS (FC_BUTTONDRAW|FB_BITMAP|FC_RADIO|WS_CHILD|WS_VISIBLE)
132*/
133
a23fd0e1
VZ
134// ---------------------------------------------------------------------------
135// misc macros
136// ---------------------------------------------------------------------------
137
2bda0e17 138#define MEANING_CHARACTER '0'
5d368213 139#define DEFAULT_ITEM_WIDTH 100
2bda0e17 140#define DEFAULT_ITEM_HEIGHT 80
1c4a764c
VZ
141
142// Scale font to get edit control height
f6bcfd97
BP
143//#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (3*(cy)/2)
144#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (cy+8)
2bda0e17
KB
145
146// Generic subclass proc, for panel item moving/sizing and intercept
147// EDIT control VK_RETURN messages
148extern LONG APIENTRY _EXPORT
149 wxSubclassedGenericControlProc(WXHWND hWnd, WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
150
11c7d5b6
VZ
151// ---------------------------------------------------------------------------
152// useful macros and functions
153// ---------------------------------------------------------------------------
154
155// a wrapper macro for ZeroMemory()
04ef50df 156#if defined(__WIN32__) && !defined(__WXMICROWIN__)
11c7d5b6 157#define wxZeroMemory(obj) ::ZeroMemory(&obj, sizeof(obj))
0e528b99
JS
158#else
159#define wxZeroMemory(obj) memset((void*) & obj, 0, sizeof(obj))
160#endif
11c7d5b6 161
18a1516c
MW
162// This one is a macro so that it can be tested with #ifdef, it will be
163// undefined if it cannot be implemented for a given compiler.
164// Vc++, bcc, dmc, ow, mingw, codewarrior (and rsxnt) have _get_osfhandle.
165// Cygwin has get_osfhandle. Others are currently unknown, e.g. Salford,
166// Intel, Visual Age.
167#if defined(__WXWINCE__)
168 #define wxGetOSFHandle(fd) ((HANDLE)fd)
169#elif defined(__CYGWIN__)
170 #define wxGetOSFHandle(fd) ((HANDLE)get_osfhandle(fd))
171#elif defined(__VISUALC__) \
172 || defined(__BORLANDC__) \
18a1516c 173 || defined(__DMC__) \
74fe6751 174 || defined(__WATCOMC__) \
8df9a8a0 175 || defined(__MINGW32__) \
18a1516c
MW
176 || (defined(__MWERKS__) && defined(__MSL__))
177 #define wxGetOSFHandle(fd) ((HANDLE)_get_osfhandle(fd))
178#endif
179
0cdd4e19
VZ
180// close the handle in the class dtor
181class AutoHANDLE
182{
183public:
184 wxEXPLICIT AutoHANDLE(HANDLE handle) : m_handle(handle) { }
185
186 bool IsOk() const { return m_handle != INVALID_HANDLE_VALUE; }
187 operator HANDLE() const { return m_handle; }
188
189 ~AutoHANDLE() { if ( IsOk() ) ::CloseHandle(m_handle); }
190
191protected:
192 HANDLE m_handle;
193};
194
d1e4a818
VZ
195// a template to make initializing Windows styructs less painful: it zeroes all
196// the struct fields and also sets cbSize member to the correct value (and so
197// can be only used with structures which have this member...)
198template <class T>
199struct WinStruct : public T
200{
201 WinStruct()
202 {
203 ::ZeroMemory(this, sizeof(T));
204
205 // explicit qualification is required here for this to be valid C++
206 this->cbSize = sizeof(T);
207 }
208};
209
210
f6bcfd97
BP
211#if wxUSE_GUI
212
c0089c96
WS
213#include "wx/gdicmn.h"
214#include "wx/colour.h"
01dba85a 215
11c7d5b6
VZ
216// make conversion from wxColour and COLORREF a bit less painful
217inline COLORREF wxColourToRGB(const wxColour& c)
4ab861e5
VZ
218{
219 return RGB(c.Red(), c.Green(), c.Blue());
220}
221
222inline COLORREF wxColourToPalRGB(const wxColour& c)
11c7d5b6 223{
19193a2c 224 return PALETTERGB(c.Red(), c.Green(), c.Blue());
11c7d5b6
VZ
225}
226
d23c8ba2
VZ
227inline wxColour wxRGBToColour(COLORREF rgb)
228{
229 return wxColour(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb));
230}
231
11c7d5b6
VZ
232inline void wxRGBToColour(wxColour& c, COLORREF rgb)
233{
234 c.Set(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb));
235}
236
90c1530a
VZ
237// get the standard colour map for some standard colours - see comment in this
238// function to understand why is it needed and when should it be used
239//
240// it returns a wxCOLORMAP (can't use COLORMAP itself here as comctl32.dll
241// might be not included/available) array of size wxSTD_COLOUR_MAX
242//
243// NB: if you change these colours, update wxBITMAP_STD_COLOURS in the
244// resources as well: it must have the same number of pixels!
245enum wxSTD_COLOUR
246{
247 wxSTD_COL_BTNTEXT,
248 wxSTD_COL_BTNSHADOW,
249 wxSTD_COL_BTNFACE,
250 wxSTD_COL_BTNHIGHLIGHT,
57e075e9 251 wxSTD_COL_MAX
90c1530a
VZ
252};
253
254struct WXDLLEXPORT wxCOLORMAP
255{
256 COLORREF from, to;
257};
258
259// this function is implemented in src/msw/window.cpp
260extern wxCOLORMAP *wxGetStdColourMap();
261
9688700c 262// create a wxRect from Windows RECT
8704b366 263inline wxRect wxRectFromRECT(const RECT& rc)
9688700c 264{
8704b366 265 return wxRect(rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top);
9688700c
VZ
266}
267
ed791986 268// copy Windows RECT to our wxRect
8704b366 269inline void wxCopyRECTToRect(const RECT& rc, wxRect& rect)
ed791986 270{
8704b366
VZ
271 rect = wxRectFromRECT(rc);
272}
273
274// and vice versa
275inline void wxCopyRectToRECT(const wxRect& rect, RECT& rc)
276{
277 // note that we don't use wxRect::GetRight() as it is one of compared to
278 // wxRectFromRECT() above
279 rc.top = rect.y;
280 rc.left = rect.x;
281 rc.right = rect.x + rect.width;
282 rc.bottom = rect.y + rect.height;
ed791986
VZ
283}
284
d9317fd4
VZ
285// translations between HIMETRIC units (which OLE likes) and pixels (which are
286// liked by all the others) - implemented in msw/utilsexc.cpp
287extern void HIMETRICToPixel(LONG *x, LONG *y);
288extern void PixelToHIMETRIC(LONG *x, LONG *y);
289
77ffb593 290// Windows convention of the mask is opposed to the wxWidgets one, so we need
4b7f2165
VZ
291// to invert the mask each time we pass one/get one to/from Windows
292extern HBITMAP wxInvertMask(HBITMAP hbmpMask, int w = 0, int h = 0);
293
211b54b1
VZ
294// Creates an icon or cursor depending from a bitmap
295//
296// The bitmap must be valid and it should have a mask. If it doesn't, a default
297// mask is created using light grey as the transparent colour.
298extern HICON wxBitmapToHICON(const wxBitmap& bmp);
299
300// Same requirments as above apply and the bitmap must also have the correct
301// size.
302extern
303HCURSOR wxBitmapToHCURSOR(const wxBitmap& bmp, int hotSpotX, int hotSpotY);
304
8614c467
VZ
305// get (x, y) from DWORD - notice that HI/LOWORD can *not* be used because they
306// will fail on system with multiple monitors where the coords may be negative
307//
308// these macros are standard now (Win98) but some older headers don't have them
309#ifndef GET_X_LPARAM
310 #define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp))
311 #define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp))
312#endif // GET_X_LPARAM
313
a95e38c0 314// get the current state of SHIFT/CTRL keys
1f80a703 315inline bool wxIsShiftDown()
a95e38c0 316{
1fdf858b
JS
317// return (::GetKeyState(VK_SHIFT) & 0x100) != 0;
318 // Returns different negative values on WinME and WinNT,
319 // so simply test for negative value.
320 return ::GetKeyState(VK_SHIFT) < 0;
a95e38c0
VZ
321}
322
1f80a703 323inline bool wxIsCtrlDown()
a95e38c0 324{
1fdf858b
JS
325// return (::GetKeyState(VK_CONTROL) & 0x100) != 0;
326 // Returns different negative values on WinME and WinNT,
327 // so simply test for negative value.
328 return ::GetKeyState(VK_CONTROL) < 0;
a95e38c0
VZ
329}
330
82c9f85c
VZ
331// wrapper around GetWindowRect() and GetClientRect() APIs doing error checking
332// for Win32
333inline RECT wxGetWindowRect(HWND hwnd)
334{
335 RECT rect;
3a5bcc4d 336
82c9f85c 337 if ( !::GetWindowRect(hwnd, &rect) )
82c9f85c 338 wxLogLastError(_T("GetWindowRect"));
82c9f85c
VZ
339
340 return rect;
341}
342
343inline RECT wxGetClientRect(HWND hwnd)
344{
345 RECT rect;
3a5bcc4d 346
82c9f85c 347 if ( !::GetClientRect(hwnd, &rect) )
82c9f85c 348 wxLogLastError(_T("GetClientRect"));
82c9f85c
VZ
349
350 return rect;
351}
352
6d167489
VZ
353// ---------------------------------------------------------------------------
354// small helper classes
355// ---------------------------------------------------------------------------
356
357// create an instance of this class and use it as the HDC for screen, will
358// automatically release the DC going out of scope
359class ScreenHDC
360{
361public:
091225b4
VZ
362 ScreenHDC() { m_hdc = ::GetDC(NULL); }
363 ~ScreenHDC() { ::ReleaseDC(NULL, m_hdc); }
364
365 operator HDC() const { return m_hdc; }
366
367private:
368 HDC m_hdc;
22f3361e
VZ
369
370 DECLARE_NO_COPY_CLASS(ScreenHDC)
091225b4
VZ
371};
372
2ff56383
VZ
373// the same as ScreenHDC but for window DCs
374class WindowHDC
375{
376public:
377 WindowHDC(HWND hwnd) { m_hdc = ::GetDC(m_hwnd = hwnd); }
378 ~WindowHDC() { ::ReleaseDC(m_hwnd, m_hdc); }
379
380 operator HDC() const { return m_hdc; }
381
382private:
383 HWND m_hwnd;
384 HDC m_hdc;
385
386 DECLARE_NO_COPY_CLASS(WindowHDC)
387};
388
697b08a8
VZ
389// the same as ScreenHDC but for memory DCs: creates the HDC compatible with
390// the given one (screen by default) in ctor and destroys it in dtor
091225b4
VZ
391class MemoryHDC
392{
393public:
9cf743aa 394 MemoryHDC(HDC hdc = 0) { m_hdc = ::CreateCompatibleDC(hdc); }
697b08a8 395 ~MemoryHDC() { ::DeleteDC(m_hdc); }
091225b4
VZ
396
397 operator HDC() const { return m_hdc; }
6d167489
VZ
398
399private:
400 HDC m_hdc;
22f3361e
VZ
401
402 DECLARE_NO_COPY_CLASS(MemoryHDC)
6d167489
VZ
403};
404
091225b4
VZ
405// a class which selects a GDI object into a DC in its ctor and deselects in
406// dtor
407class SelectInHDC
408{
409public:
410 SelectInHDC(HDC hdc, HGDIOBJ hgdiobj) : m_hdc(hdc)
411 { m_hgdiobj = ::SelectObject(hdc, hgdiobj); }
412
413 ~SelectInHDC() { ::SelectObject(m_hdc, m_hgdiobj); }
414
415 // return true if the object was successfully selected
416 operator bool() const { return m_hgdiobj != 0; }
417
418private:
419 HDC m_hdc;
420 HGDIOBJ m_hgdiobj;
22f3361e 421
51a2a728
VZ
422 DECLARE_NO_COPY_CLASS(SelectInHDC)
423};
424
a27cbf44
VZ
425// a class which cleans up any GDI object
426class AutoGDIObject
427{
428protected:
429 AutoGDIObject(HGDIOBJ gdiobj) : m_gdiobj(gdiobj) { }
430 ~AutoGDIObject() { if ( m_gdiobj ) ::DeleteObject(m_gdiobj); }
431
432 HGDIOBJ GetObject() const { return m_gdiobj; }
433
434private:
435 HGDIOBJ m_gdiobj;
436};
437
cf831d8e
VZ
438// TODO: all this asks for using a AutoHandler<T, CreateFunc> template...
439
440// a class for temporary pens
441class AutoHBRUSH : private AutoGDIObject
442{
443public:
444 AutoHBRUSH(COLORREF col)
445 : AutoGDIObject(::CreateSolidBrush(col)) { }
446
447 operator HBRUSH() const { return (HBRUSH)GetObject(); }
448};
449
450// a class for temporary pens
451class AutoHPEN : private AutoGDIObject
452{
453public:
454 AutoHPEN(COLORREF col)
455 : AutoGDIObject(::CreatePen(PS_SOLID, 0, col)) { }
456
457 operator HPEN() const { return (HPEN)GetObject(); }
458};
459
460// classes for temporary bitmaps
461class AutoHBITMAP : private AutoGDIObject
462{
463public:
464 AutoHBITMAP(HBITMAP hbmp) : AutoGDIObject(hbmp) { }
465
466 operator HBITMAP() const { return (HBITMAP)GetObject(); }
467};
468
469class CompatibleBitmap : public AutoHBITMAP
978bb48f
VZ
470{
471public:
472 CompatibleBitmap(HDC hdc, int w, int h)
cf831d8e 473 : AutoHBITMAP(::CreateCompatibleBitmap(hdc, w, h))
978bb48f 474 {
978bb48f 475 }
cf831d8e 476};
978bb48f 477
cf831d8e
VZ
478class MonoBitmap : public AutoHBITMAP
479{
480public:
481 MonoBitmap(int w, int h)
482 : AutoHBITMAP(::CreateBitmap(w, h, 1, 1, 0))
483 {
484 }
a27cbf44 485};
978bb48f 486
a27cbf44
VZ
487// class automatically destroys the region object
488class AutoHRGN : private AutoGDIObject
489{
490public:
491 AutoHRGN(HRGN hrgn) : AutoGDIObject(hrgn) { }
978bb48f 492
a27cbf44 493 operator HRGN() const { return (HRGN)GetObject(); }
978bb48f
VZ
494};
495
a1372ae2
VZ
496// class sets the specified clipping region during its life time
497class HDCClipper
498{
499public:
500 HDCClipper(HDC hdc, HRGN hrgn)
501 : m_hdc(hdc)
502 {
503 if ( !::SelectClipRgn(hdc, hrgn) )
504 wxLogLastError(_T("SelectClipRgn"));
505 }
506
507 ~HDCClipper()
508 {
509 ::SelectClipRgn(m_hdc, NULL);
510 }
511
512private:
513 HDC m_hdc;
514
515 DECLARE_NO_COPY_CLASS(HDCClipper)
516};
517
566b7f7b
VZ
518// set the given map mode for the life time of this object
519//
520// NB: SetMapMode() is not supported by CE so we also define a helper macro
521// to avoid using it there
522#ifdef __WXWINCE__
523 #define wxCHANGE_HDC_MAP_MODE(hdc, mm)
524#else // !__WXWINCE__
525 class HDCMapModeChanger
526 {
527 public:
528 HDCMapModeChanger(HDC hdc, int mm)
529 : m_hdc(hdc)
530 {
531 m_modeOld = ::SetMapMode(hdc, mm);
532 if ( !m_modeOld )
533 wxLogLastError(_T("SelectClipRgn"));
534 }
535
536 ~HDCMapModeChanger()
537 {
538 if ( m_modeOld )
539 ::SetMapMode(m_hdc, m_modeOld);
540 }
541
542 private:
543 HDC m_hdc;
544 int m_modeOld;
545
546 DECLARE_NO_COPY_CLASS(HDCMapModeChanger)
547 };
548
549 #define wxCHANGE_HDC_MAP_MODE(hdc, mm) \
550 HDCMapModeChanger wxMAKE_UNIQUE_NAME(wxHDCMapModeChanger)(hdc, mm)
551#endif // __WXWINCE__/!__WXWINCE__
552
2be57a51
VZ
553// smart buffeer using GlobalAlloc/GlobalFree()
554class GlobalPtr
555{
556public:
557 // allocates a block of given size
558 GlobalPtr(size_t size, unsigned flags = GMEM_MOVEABLE)
559 {
560 m_hGlobal = ::GlobalAlloc(flags, size);
561 if ( !m_hGlobal )
562 wxLogLastError(_T("GlobalAlloc"));
563 }
564
565 ~GlobalPtr()
566 {
567 if ( m_hGlobal && ::GlobalFree(m_hGlobal) )
568 wxLogLastError(_T("GlobalFree"));
569 }
570
571 // implicit conversion
572 operator HGLOBAL() const { return m_hGlobal; }
573
574private:
575 HGLOBAL m_hGlobal;
576
577 DECLARE_NO_COPY_CLASS(GlobalPtr)
578};
579
51a2a728
VZ
580// when working with global pointers (which is unfortunately still necessary
581// sometimes, e.g. for clipboard) it is important to unlock them exactly as
582// many times as we lock them which just asks for using a "smart lock" class
0645e2b9 583class GlobalPtrLock
51a2a728
VZ
584{
585public:
0645e2b9 586 GlobalPtrLock(HGLOBAL hGlobal) : m_hGlobal(hGlobal)
51a2a728 587 {
2aaf17c2 588 m_ptr = GlobalLock(hGlobal);
51a2a728 589 if ( !m_ptr )
51a2a728 590 wxLogLastError(_T("GlobalLock"));
51a2a728
VZ
591 }
592
0645e2b9 593 ~GlobalPtrLock()
51a2a728 594 {
2aaf17c2 595 if ( !GlobalUnlock(m_hGlobal) )
51a2a728
VZ
596 {
597#ifdef __WXDEBUG__
598 // this might happen simply because the block became unlocked
599 DWORD dwLastError = ::GetLastError();
600 if ( dwLastError != NO_ERROR )
601 {
602 wxLogApiError(_T("GlobalUnlock"), dwLastError);
603 }
604#endif // __WXDEBUG__
605 }
606 }
607
608 operator void *() const { return m_ptr; }
609
610private:
611 HGLOBAL m_hGlobal;
612 void *m_ptr;
613
0645e2b9 614 DECLARE_NO_COPY_CLASS(GlobalPtrLock)
091225b4
VZ
615};
616
77ec05d4
VZ
617// register the class when it is first needed and unregister it in dtor
618class ClassRegistrar
619{
620public:
621 // ctor doesn't register the class, call Initialize() for this
622 ClassRegistrar() { m_registered = -1; }
623
624 // return true if the class is already registered
625 bool IsInitialized() const { return m_registered != -1; }
626
627 // return true if the class had been already registered
628 bool IsRegistered() const { return m_registered == 1; }
629
630 // try to register the class if not done yet, return true on success
631 bool Register(const WNDCLASS& wc)
632 {
633 // we should only be called if we hadn't been initialized yet
634 wxASSERT_MSG( m_registered == -1,
635 _T("calling ClassRegistrar::Register() twice?") );
636
637 m_registered = ::RegisterClass(&wc) ? 1 : 0;
638 if ( !IsRegistered() )
639 {
640 wxLogLastError(_T("RegisterClassEx()"));
641 }
642 else
643 {
644 m_clsname = wc.lpszClassName;
645 }
646
647 return m_registered == 1;
648 }
649
650 // get the name of the registered class (returns empty string if not
651 // registered)
652 const wxString& GetName() const { return m_clsname; }
653
654 // unregister the class if it had been registered
655 ~ClassRegistrar()
656 {
657 if ( IsRegistered() )
658 {
659 if ( !::UnregisterClass(m_clsname, wxhInstance) )
660 {
661 wxLogLastError(_T("UnregisterClass"));
662 }
663 }
664 }
665
666private:
667 // initial value is -1 which means that we hadn't tried registering the
668 // class yet, it becomes true or false (1 or 0) when Initialize() is called
669 int m_registered;
670
671 // the name of the class, only non empty if it had been registered
672 wxString m_clsname;
673};
674
a23fd0e1 675// ---------------------------------------------------------------------------
42e69d6b 676// macros to make casting between WXFOO and FOO a bit easier: the GetFoo()
c50f1fb9
VZ
677// returns Foo cast to the Windows type for oruselves, while GetFooOf() takes
678// an argument which should be a pointer or reference to the object of the
679// corresponding class (this depends on the macro)
a23fd0e1
VZ
680// ---------------------------------------------------------------------------
681
682#define GetHwnd() ((HWND)GetHWND())
c50f1fb9
VZ
683#define GetHwndOf(win) ((HWND)((win)->GetHWND()))
684// old name
685#define GetWinHwnd GetHwndOf
a23fd0e1
VZ
686
687#define GetHdc() ((HDC)GetHDC())
c50f1fb9 688#define GetHdcOf(dc) ((HDC)(dc).GetHDC())
a23fd0e1 689
11c7d5b6
VZ
690#define GetHbitmap() ((HBITMAP)GetHBITMAP())
691#define GetHbitmapOf(bmp) ((HBITMAP)(bmp).GetHBITMAP())
692
42e69d6b 693#define GetHicon() ((HICON)GetHICON())
c50f1fb9 694#define GetHiconOf(icon) ((HICON)(icon).GetHICON())
42e69d6b 695
a23fd0e1 696#define GetHaccel() ((HACCEL)GetHACCEL())
c50f1fb9
VZ
697#define GetHaccelOf(table) ((HACCEL)((table).GetHACCEL()))
698
a27cbf44
VZ
699#define GetHbrush() ((HBRUSH)GetResourceHandle())
700#define GetHbrushOf(brush) ((HBRUSH)(brush).GetResourceHandle())
ee50eab8 701
c50f1fb9
VZ
702#define GetHmenu() ((HMENU)GetHMenu())
703#define GetHmenuOf(menu) ((HMENU)menu->GetHMenu())
a23fd0e1 704
bfbd6dc1
VZ
705#define GetHcursor() ((HCURSOR)GetHCURSOR())
706#define GetHcursorOf(cursor) ((HCURSOR)(cursor).GetHCURSOR())
707
f6bcfd97
BP
708#define GetHfont() ((HFONT)GetHFONT())
709#define GetHfontOf(font) ((HFONT)(font).GetHFONT())
710
f6840be6
VZ
711#define GetHimagelist() ((HIMAGELIST)GetHIMAGELIST())
712#define GetHimagelistOf(imgl) ((HIMAGELIST)imgl->GetHIMAGELIST())
713
1816a070 714#define GetHpalette() ((HPALETTE)GetHPALETTE())
b95edd47 715#define GetHpaletteOf(pal) ((HPALETTE)(pal).GetHPALETTE())
1816a070 716
75776373
VZ
717#define GetHpen() ((HPEN)GetResourceHandle())
718#define GetHpenOf(pen) ((HPEN)(pen).GetResourceHandle())
719
1e6feb95
VZ
720#define GetHrgn() ((HRGN)GetHRGN())
721#define GetHrgnOf(rgn) ((HRGN)(rgn).GetHRGN())
722
f6bcfd97
BP
723#endif // wxUSE_GUI
724
a23fd0e1
VZ
725// ---------------------------------------------------------------------------
726// global functions
727// ---------------------------------------------------------------------------
728
18600546
GRG
729extern "C"
730{
bb24c68f 731 WXDLLIMPEXP_BASE HINSTANCE wxGetInstance();
18600546
GRG
732}
733
bb24c68f 734WXDLLIMPEXP_BASE void wxSetInstance(HINSTANCE hInst);
a23fd0e1 735
25b0e7c8
VZ
736// return the full path of the given module
737inline wxString wxGetFullModuleName(HMODULE hmod)
77d8d6cd
VZ
738{
739 wxString fullname;
740 if ( !::GetModuleFileName
741 (
25b0e7c8 742 hmod,
77d8d6cd
VZ
743 wxStringBuffer(fullname, MAX_PATH),
744 MAX_PATH
745 ) )
746 {
747 wxLogLastError(_T("GetModuleFileName"));
748 }
749
750 return fullname;
751}
752
25b0e7c8
VZ
753// return the full path of the program file
754inline wxString wxGetFullModuleName()
755{
756 return wxGetFullModuleName((HMODULE)wxGetInstance());
757}
758
4c5da5e4
VZ
759// return the run-time version of the OS in a format similar to
760// WINVER/_WIN32_WINNT compile-time macros:
761//
762// 0x0300 Windows NT 3.51
763// 0x0400 Windows 95, NT4
764// 0x0410 Windows 98
765// 0x0500 Windows ME, 2000
766// 0x0501 Windows XP
767// 0x0502 Windows 2003
768// 0x0600 Longhorn
769//
770// for the other Windows versions 0 is currently returned
771enum wxWinVersion
772{
773 wxWinVersion_Unknown = 0,
774
775 wxWinVersion_3 = 0x0300,
776 wxWinVersion_NT3 = wxWinVersion_3,
777
778 wxWinVersion_4 = 0x0400,
779 wxWinVersion_95 = wxWinVersion_4,
780 wxWinVersion_NT4 = wxWinVersion_4,
781 wxWinVersion_98 = 0x0410,
782
783 wxWinVersion_5 = 0x0500,
784 wxWinVersion_ME = wxWinVersion_5,
785 wxWinVersion_NT5 = wxWinVersion_5,
786 wxWinVersion_2000 = wxWinVersion_5,
787 wxWinVersion_XP = 0x0501,
788 wxWinVersion_2003 = 0x0502,
789
790 wxWinVersion_6 = 0x0600,
791 wxWinVersion_NT6 = 0x0600
792};
793
be2572a3 794WXDLLIMPEXP_BASE wxWinVersion wxGetWinVersion();
4c5da5e4 795
b568d04f
VZ
796#if wxUSE_GUI
797
bfbd6dc1
VZ
798// cursor stuff
799extern HCURSOR wxGetCurrentBusyCursor(); // from msw/utils.cpp
800extern const wxCursor *wxGetGlobalCursor(); // from msw/cursor.cpp
801
7a5e53ab 802WXDLLEXPORT void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont& the_font);
11c7d5b6
VZ
803WXDLLEXPORT void wxFillLogFont(LOGFONT *logFont, const wxFont *font);
804WXDLLEXPORT wxFont wxCreateFontFromLogFont(const LOGFONT *logFont);
f6bcfd97 805WXDLLEXPORT wxFontEncoding wxGetFontEncFromCharSet(int charset);
a23fd0e1
VZ
806
807WXDLLEXPORT void wxSliderEvent(WXHWND control, WXWORD wParam, WXWORD pos);
808WXDLLEXPORT void wxScrollBarEvent(WXHWND hbar, WXWORD wParam, WXWORD pos);
809
810// Find maximum size of window/rectangle
ef359b43 811extern WXDLLEXPORT void wxFindMaxSize(WXHWND hwnd, RECT *rect);
a23fd0e1 812
1c4a764c 813// Safely get the window text (i.e. without using fixed size buffer)
ef359b43 814extern WXDLLEXPORT wxString wxGetWindowText(WXHWND hWnd);
1c4a764c 815
cc2b7472 816// get the window class name
ef359b43 817extern WXDLLEXPORT wxString wxGetWindowClass(WXHWND hWnd);
cc2b7472 818
42e69d6b
VZ
819// get the window id (should be unsigned, hence this is not wxWindowID which
820// is, for mainly historical reasons, signed)
ef359b43 821extern WXDLLEXPORT WXWORD wxGetWindowId(WXHWND hWnd);
cc2b7472 822
ae304744
VZ
823// check if hWnd's WNDPROC is wndProc. Return true if yes, false if they are
824// different
ef359b43 825extern WXDLLEXPORT bool wxCheckWindowWndProc(WXHWND hWnd, WXFARPROC wndProc);
eb5e4d9a 826
c085e333 827// Does this window style specify any border?
184b5d99 828inline bool wxStyleHasBorder(long style)
c085e333 829{
82c9f85c
VZ
830 return (style & (wxSIMPLE_BORDER | wxRAISED_BORDER |
831 wxSUNKEN_BORDER | wxDOUBLE_BORDER)) != 0;
c085e333
VZ
832}
833
ae304744
VZ
834// ----------------------------------------------------------------------------
835// functions mapping HWND to wxWindow
836// ----------------------------------------------------------------------------
837
838// this function simply checks whether the given hWnd corresponds to a wxWindow
839// and returns either that window if it does or NULL otherwise
ef359b43 840extern WXDLLEXPORT wxWindow* wxFindWinFromHandle(WXHWND hWnd);
ae304744
VZ
841
842// find the window for HWND which is part of some wxWindow, i.e. unlike
843// wxFindWinFromHandle() above it will also work for "sub controls" of a
844// wxWindow.
8614c467 845//
ae304744 846// returns the wxWindow corresponding to the given HWND or NULL.
ef359b43 847extern WXDLLEXPORT wxWindow *wxGetWindowFromHWND(WXHWND hwnd);
8614c467 848
6bad4c32 849// Get the size of an icon
ef359b43 850extern WXDLLEXPORT wxSize wxGetHiconSize(HICON hicon);
6bad4c32 851
086b3a5b
JS
852// Lines are drawn differently for WinCE and regular WIN32
853WXDLLEXPORT void wxDrawLine(HDC hdc, int x1, int y1, int x2, int y2);
854
c3732409
VZ
855// fill the client rect of the given window on the provided dc using this brush
856inline void wxFillRect(HWND hwnd, HDC hdc, HBRUSH hbr)
857{
858 RECT rc;
859 ::GetClientRect(hwnd, &rc);
860 ::FillRect(hdc, &rc, hbr);
861}
862
5171ea0e
VZ
863// ----------------------------------------------------------------------------
864// 32/64 bit helpers
865// ----------------------------------------------------------------------------
866
867#ifdef __WIN64__
868
869inline void *wxGetWindowProc(HWND hwnd)
870{
871 return (void *)::GetWindowLongPtr(hwnd, GWLP_WNDPROC);
872}
873
874inline void *wxGetWindowUserData(HWND hwnd)
875{
876 return (void *)::GetWindowLongPtr(hwnd, GWLP_USERDATA);
877}
878
879inline WNDPROC wxSetWindowProc(HWND hwnd, WNDPROC func)
880{
881 return (WNDPROC)::SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR)func);
882}
883
884inline void *wxSetWindowUserData(HWND hwnd, void *data)
885{
886 return (void *)::SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR)data);
887}
888
889#else // __WIN32__
890
54892273
VZ
891// note that the casts to LONG_PTR here are required even on 32-bit machines
892// for the 64-bit warning mode of later versions of MSVC (C4311/4312)
315a49a1 893inline WNDPROC wxGetWindowProc(HWND hwnd)
5171ea0e 894{
315a49a1 895 return (WNDPROC)(LONG_PTR)::GetWindowLong(hwnd, GWL_WNDPROC);
5171ea0e
VZ
896}
897
898inline void *wxGetWindowUserData(HWND hwnd)
899{
54892273 900 return (void *)(LONG_PTR)::GetWindowLong(hwnd, GWL_USERDATA);
5171ea0e
VZ
901}
902
903inline WNDPROC wxSetWindowProc(HWND hwnd, WNDPROC func)
904{
54892273 905 return (WNDPROC)(LONG_PTR)::SetWindowLong(hwnd, GWL_WNDPROC, (LONG_PTR)func);
5171ea0e
VZ
906}
907
908inline void *wxSetWindowUserData(HWND hwnd, void *data)
909{
54892273 910 return (void *)(LONG_PTR)::SetWindowLong(hwnd, GWL_USERDATA, (LONG_PTR)data);
5171ea0e
VZ
911}
912
913#endif // __WIN64__/__WIN32__
914
b568d04f
VZ
915#endif // wxUSE_GUI
916
a27cbf44 917#endif // _WX_PRIVATE_H_