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