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