1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/private.h
3 // Purpose: Private declarations: as this header is only included by
4 // wxWidgets itself, it may contain identifiers which don't start
6 // Author: Julian Smart
10 // Copyright: (c) Julian Smart
11 // Licence: wxWindows licence
12 /////////////////////////////////////////////////////////////////////////////
14 #ifndef _WX_PRIVATE_H_
15 #define _WX_PRIVATE_H_
17 #include "wx/msw/wrapwin.h"
20 // Extra prototypes and symbols not defined by MicroWindows
21 #include "wx/msw/microwin.h"
24 // Include fixes for MSLU:
25 #include "wx/msw/mslu.h"
29 class WXDLLEXPORT wxFont
;
30 class WXDLLEXPORT wxWindow
;
31 class WXDLLEXPORT wxWindowBase
;
33 // ---------------------------------------------------------------------------
35 // ---------------------------------------------------------------------------
37 // 260 was taken from windef.h
42 // ---------------------------------------------------------------------------
43 // standard icons from the resources
44 // ---------------------------------------------------------------------------
48 extern WXDLLEXPORT_DATA(HICON
) wxSTD_FRAME_ICON
;
49 extern WXDLLEXPORT_DATA(HICON
) wxSTD_MDIPARENTFRAME_ICON
;
50 extern WXDLLEXPORT_DATA(HICON
) wxSTD_MDICHILDFRAME_ICON
;
51 extern WXDLLEXPORT_DATA(HICON
) wxDEFAULT_FRAME_ICON
;
52 extern WXDLLEXPORT_DATA(HICON
) wxDEFAULT_MDIPARENTFRAME_ICON
;
53 extern WXDLLEXPORT_DATA(HICON
) wxDEFAULT_MDICHILDFRAME_ICON
;
54 extern WXDLLEXPORT_DATA(HFONT
) wxSTATUS_LINE_FONT
;
58 // ---------------------------------------------------------------------------
60 // ---------------------------------------------------------------------------
62 extern WXDLLIMPEXP_DATA_BASE(HINSTANCE
) wxhInstance
;
64 // ---------------------------------------------------------------------------
65 // define things missing from some compilers' headers
66 // ---------------------------------------------------------------------------
68 #if defined(__WXWINCE__) || (defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS)
70 inline void ZeroMemory(void *buf
, size_t len
) { memset(buf
, 0, len
); }
74 // this defines a CASTWNDPROC macro which casts a pointer to the type of a
76 #if defined(STRICT) || defined(__GNUC__)
77 typedef WNDPROC WndProcCast
;
79 typedef FARPROC WndProcCast
;
83 #define CASTWNDPROC (WndProcCast)
87 // ---------------------------------------------------------------------------
88 // some stuff for old Windows versions (FIXME: what does it do here??)
89 // ---------------------------------------------------------------------------
91 #if !defined(APIENTRY) // NT defines APIENTRY, 3.x not
92 #define APIENTRY FAR PASCAL
98 #define _EXPORT _export
102 typedef signed short int SHORT
;
105 #if !defined(__WIN32__) // 3.x uses FARPROC for dialogs
107 #define DLGPROC FARPROC
112 * Decide what window classes we're going to use
113 * for this combination of CTl3D/FAFA settings
116 #define STATIC_CLASS wxT("STATIC")
117 #define STATIC_FLAGS (SS_LEFT|WS_CHILD|WS_VISIBLE)
118 #define CHECK_CLASS wxT("BUTTON")
119 #define CHECK_FLAGS (BS_AUTOCHECKBOX|WS_TABSTOP|WS_CHILD)
120 #define CHECK_IS_FAFA FALSE
121 #define RADIO_CLASS wxT("BUTTON")
122 #define RADIO_FLAGS (BS_AUTORADIOBUTTON|WS_CHILD|WS_VISIBLE)
123 #define RADIO_SIZE 20
124 #define RADIO_IS_FAFA FALSE
126 #define GROUP_CLASS wxT("BUTTON")
127 #define GROUP_FLAGS (BS_GROUPBOX|WS_CHILD|WS_VISIBLE)
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)
134 // ---------------------------------------------------------------------------
136 // ---------------------------------------------------------------------------
138 #define MEANING_CHARACTER '0'
139 #define DEFAULT_ITEM_WIDTH 100
140 #define DEFAULT_ITEM_HEIGHT 80
142 // Scale font to get edit control height
143 //#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (3*(cy)/2)
144 #define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (cy+8)
146 // Generic subclass proc, for panel item moving/sizing and intercept
147 // EDIT control VK_RETURN messages
148 extern LONG APIENTRY _EXPORT
149 wxSubclassedGenericControlProc(WXHWND hWnd
, WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
151 // ---------------------------------------------------------------------------
152 // useful macros and functions
153 // ---------------------------------------------------------------------------
155 // a wrapper macro for ZeroMemory()
156 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
157 #define wxZeroMemory(obj) ::ZeroMemory(&obj, sizeof(obj))
159 #define wxZeroMemory(obj) memset((void*) & obj, 0, sizeof(obj))
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 #define wxOpenOSFHandle(h, flags) ((int)wxPtrToUInt(h))
170 #elif defined(__CYGWIN__)
171 #define wxGetOSFHandle(fd) ((HANDLE)get_osfhandle(fd))
172 #elif defined(__VISUALC__) \
173 || defined(__BORLANDC__) \
174 || defined(__DMC__) \
175 || defined(__WATCOMC__) \
176 || defined(__MINGW32__) \
177 || (defined(__MWERKS__) && defined(__MSL__))
178 #define wxGetOSFHandle(fd) ((HANDLE)_get_osfhandle(fd))
179 #define wxOpenOSFHandle(h, flags) (_open_osfhandle(wxPtrToUInt(h), flags))
180 #define wx_fdopen _fdopen
183 // close the handle in the class dtor
187 wxEXPLICIT
AutoHANDLE(HANDLE handle
) : m_handle(handle
) { }
189 bool IsOk() const { return m_handle
!= INVALID_HANDLE_VALUE
; }
190 operator HANDLE() const { return m_handle
; }
192 ~AutoHANDLE() { if ( IsOk() ) ::CloseHandle(m_handle
); }
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...)
202 struct WinStruct
: public T
206 ::ZeroMemory(this, sizeof(T
));
208 // explicit qualification is required here for this to be valid C++
209 this->cbSize
= sizeof(T
);
216 #include "wx/gdicmn.h"
217 #include "wx/colour.h"
219 // make conversion from wxColour and COLORREF a bit less painful
220 inline COLORREF
wxColourToRGB(const wxColour
& c
)
222 return RGB(c
.Red(), c
.Green(), c
.Blue());
225 inline COLORREF
wxColourToPalRGB(const wxColour
& c
)
227 return PALETTERGB(c
.Red(), c
.Green(), c
.Blue());
230 inline wxColour
wxRGBToColour(COLORREF rgb
)
232 return wxColour(GetRValue(rgb
), GetGValue(rgb
), GetBValue(rgb
));
235 inline void wxRGBToColour(wxColour
& c
, COLORREF rgb
)
237 c
.Set(GetRValue(rgb
), GetGValue(rgb
), GetBValue(rgb
));
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
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
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!
253 wxSTD_COL_BTNHIGHLIGHT
,
257 struct WXDLLEXPORT wxCOLORMAP
262 // this function is implemented in src/msw/window.cpp
263 extern wxCOLORMAP
*wxGetStdColourMap();
265 // create a wxRect from Windows RECT
266 inline wxRect
wxRectFromRECT(const RECT
& rc
)
268 return wxRect(rc
.left
, rc
.top
, rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
271 // copy Windows RECT to our wxRect
272 inline void wxCopyRECTToRect(const RECT
& rc
, wxRect
& rect
)
274 rect
= wxRectFromRECT(rc
);
278 inline void wxCopyRectToRECT(const wxRect
& rect
, RECT
& rc
)
280 // note that we don't use wxRect::GetRight() as it is one of compared to
281 // wxRectFromRECT() above
284 rc
.right
= rect
.x
+ rect
.width
;
285 rc
.bottom
= rect
.y
+ rect
.height
;
288 // translations between HIMETRIC units (which OLE likes) and pixels (which are
289 // liked by all the others) - implemented in msw/utilsexc.cpp
290 extern void HIMETRICToPixel(LONG
*x
, LONG
*y
);
291 extern void PixelToHIMETRIC(LONG
*x
, LONG
*y
);
293 // Windows convention of the mask is opposed to the wxWidgets one, so we need
294 // to invert the mask each time we pass one/get one to/from Windows
295 extern HBITMAP
wxInvertMask(HBITMAP hbmpMask
, int w
= 0, int h
= 0);
297 // Creates an icon or cursor depending from a bitmap
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.
301 extern HICON
wxBitmapToHICON(const wxBitmap
& bmp
);
303 // Same requirments as above apply and the bitmap must also have the correct
306 HCURSOR
wxBitmapToHCURSOR(const wxBitmap
& bmp
, int hotSpotX
, int hotSpotY
);
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
311 // these macros are standard now (Win98) but some older headers don't have them
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
317 // get the current state of SHIFT/CTRL keys
318 inline bool wxIsShiftDown()
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;
326 inline bool wxIsCtrlDown()
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;
334 // wrapper around GetWindowRect() and GetClientRect() APIs doing error checking
336 inline RECT
wxGetWindowRect(HWND hwnd
)
340 if ( !::GetWindowRect(hwnd
, &rect
) )
341 wxLogLastError(_T("GetWindowRect"));
346 inline RECT
wxGetClientRect(HWND hwnd
)
350 if ( !::GetClientRect(hwnd
, &rect
) )
351 wxLogLastError(_T("GetClientRect"));
356 // ---------------------------------------------------------------------------
357 // small helper classes
358 // ---------------------------------------------------------------------------
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
365 ScreenHDC() { m_hdc
= ::GetDC(NULL
); }
366 ~ScreenHDC() { ::ReleaseDC(NULL
, m_hdc
); }
368 operator HDC() const { return m_hdc
; }
373 DECLARE_NO_COPY_CLASS(ScreenHDC
)
376 // the same as ScreenHDC but for window DCs
380 WindowHDC(HWND hwnd
) { m_hdc
= ::GetDC(m_hwnd
= hwnd
); }
381 ~WindowHDC() { ::ReleaseDC(m_hwnd
, m_hdc
); }
383 operator HDC() const { return m_hdc
; }
389 DECLARE_NO_COPY_CLASS(WindowHDC
)
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
397 MemoryHDC(HDC hdc
= 0) { m_hdc
= ::CreateCompatibleDC(hdc
); }
398 ~MemoryHDC() { ::DeleteDC(m_hdc
); }
400 operator HDC() const { return m_hdc
; }
405 DECLARE_NO_COPY_CLASS(MemoryHDC
)
408 // a class which selects a GDI object into a DC in its ctor and deselects in
413 SelectInHDC(HDC hdc
, HGDIOBJ hgdiobj
) : m_hdc(hdc
)
414 { m_hgdiobj
= ::SelectObject(hdc
, hgdiobj
); }
416 ~SelectInHDC() { ::SelectObject(m_hdc
, m_hgdiobj
); }
418 // return true if the object was successfully selected
419 operator bool() const { return m_hgdiobj
!= 0; }
425 DECLARE_NO_COPY_CLASS(SelectInHDC
)
428 // a class which cleans up any GDI object
432 AutoGDIObject(HGDIOBJ gdiobj
) : m_gdiobj(gdiobj
) { }
433 ~AutoGDIObject() { if ( m_gdiobj
) ::DeleteObject(m_gdiobj
); }
435 HGDIOBJ
GetObject() const { return m_gdiobj
; }
441 // TODO: all this asks for using a AutoHandler<T, CreateFunc> template...
443 // a class for temporary pens
444 class AutoHBRUSH
: private AutoGDIObject
447 AutoHBRUSH(COLORREF col
)
448 : AutoGDIObject(::CreateSolidBrush(col
)) { }
450 operator HBRUSH() const { return (HBRUSH
)GetObject(); }
453 // a class for temporary pens
454 class AutoHPEN
: private AutoGDIObject
457 AutoHPEN(COLORREF col
)
458 : AutoGDIObject(::CreatePen(PS_SOLID
, 0, col
)) { }
460 operator HPEN() const { return (HPEN
)GetObject(); }
463 // classes for temporary bitmaps
464 class AutoHBITMAP
: private AutoGDIObject
467 AutoHBITMAP(HBITMAP hbmp
) : AutoGDIObject(hbmp
) { }
469 operator HBITMAP() const { return (HBITMAP
)GetObject(); }
472 class CompatibleBitmap
: public AutoHBITMAP
475 CompatibleBitmap(HDC hdc
, int w
, int h
)
476 : AutoHBITMAP(::CreateCompatibleBitmap(hdc
, w
, h
))
481 class MonoBitmap
: public AutoHBITMAP
484 MonoBitmap(int w
, int h
)
485 : AutoHBITMAP(::CreateBitmap(w
, h
, 1, 1, 0))
490 // class automatically destroys the region object
491 class AutoHRGN
: private AutoGDIObject
494 AutoHRGN(HRGN hrgn
) : AutoGDIObject(hrgn
) { }
496 operator HRGN() const { return (HRGN
)GetObject(); }
499 // class sets the specified clipping region during its life time
503 HDCClipper(HDC hdc
, HRGN hrgn
)
506 if ( !::SelectClipRgn(hdc
, hrgn
) )
507 wxLogLastError(_T("SelectClipRgn"));
512 ::SelectClipRgn(m_hdc
, NULL
);
518 DECLARE_NO_COPY_CLASS(HDCClipper
)
521 // set the given map mode for the life time of this object
523 // NB: SetMapMode() is not supported by CE so we also define a helper macro
524 // to avoid using it there
526 #define wxCHANGE_HDC_MAP_MODE(hdc, mm)
527 #else // !__WXWINCE__
528 class HDCMapModeChanger
531 HDCMapModeChanger(HDC hdc
, int mm
)
534 m_modeOld
= ::SetMapMode(hdc
, mm
);
536 wxLogLastError(_T("SelectClipRgn"));
542 ::SetMapMode(m_hdc
, m_modeOld
);
549 DECLARE_NO_COPY_CLASS(HDCMapModeChanger
)
552 #define wxCHANGE_HDC_MAP_MODE(hdc, mm) \
553 HDCMapModeChanger wxMAKE_UNIQUE_NAME(wxHDCMapModeChanger)(hdc, mm)
554 #endif // __WXWINCE__/!__WXWINCE__
556 // smart buffeer using GlobalAlloc/GlobalFree()
560 // allocates a block of given size
561 GlobalPtr(size_t size
, unsigned flags
= GMEM_MOVEABLE
)
563 m_hGlobal
= ::GlobalAlloc(flags
, size
);
565 wxLogLastError(_T("GlobalAlloc"));
570 if ( m_hGlobal
&& ::GlobalFree(m_hGlobal
) )
571 wxLogLastError(_T("GlobalFree"));
574 // implicit conversion
575 operator HGLOBAL() const { return m_hGlobal
; }
580 DECLARE_NO_COPY_CLASS(GlobalPtr
)
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
589 GlobalPtrLock(HGLOBAL hGlobal
) : m_hGlobal(hGlobal
)
591 m_ptr
= GlobalLock(hGlobal
);
593 wxLogLastError(_T("GlobalLock"));
598 if ( !GlobalUnlock(m_hGlobal
) )
601 // this might happen simply because the block became unlocked
602 DWORD dwLastError
= ::GetLastError();
603 if ( dwLastError
!= NO_ERROR
)
605 wxLogApiError(_T("GlobalUnlock"), dwLastError
);
607 #endif // __WXDEBUG__
611 operator void *() const { return m_ptr
; }
617 DECLARE_NO_COPY_CLASS(GlobalPtrLock
)
620 // register the class when it is first needed and unregister it in dtor
624 // ctor doesn't register the class, call Initialize() for this
625 ClassRegistrar() { m_registered
= -1; }
627 // return true if the class is already registered
628 bool IsInitialized() const { return m_registered
!= -1; }
630 // return true if the class had been already registered
631 bool IsRegistered() const { return m_registered
== 1; }
633 // try to register the class if not done yet, return true on success
634 bool Register(const WNDCLASS
& wc
)
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?") );
640 m_registered
= ::RegisterClass(&wc
) ? 1 : 0;
641 if ( !IsRegistered() )
643 wxLogLastError(_T("RegisterClassEx()"));
647 m_clsname
= wc
.lpszClassName
;
650 return m_registered
== 1;
653 // get the name of the registered class (returns empty string if not
655 const wxString
& GetName() const { return m_clsname
; }
657 // unregister the class if it had been registered
660 if ( IsRegistered() )
662 if ( !::UnregisterClass(m_clsname
, wxhInstance
) )
664 wxLogLastError(_T("UnregisterClass"));
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
674 // the name of the class, only non empty if it had been registered
678 // ---------------------------------------------------------------------------
679 // macros to make casting between WXFOO and FOO a bit easier: the GetFoo()
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)
683 // ---------------------------------------------------------------------------
685 #define GetHwnd() ((HWND)GetHWND())
686 #define GetHwndOf(win) ((HWND)((win)->GetHWND()))
688 #define GetWinHwnd GetHwndOf
690 #define GetHdc() ((HDC)GetHDC())
691 #define GetHdcOf(dc) ((HDC)(dc).GetHDC())
693 #define GetHbitmap() ((HBITMAP)GetHBITMAP())
694 #define GetHbitmapOf(bmp) ((HBITMAP)(bmp).GetHBITMAP())
696 #define GetHicon() ((HICON)GetHICON())
697 #define GetHiconOf(icon) ((HICON)(icon).GetHICON())
699 #define GetHaccel() ((HACCEL)GetHACCEL())
700 #define GetHaccelOf(table) ((HACCEL)((table).GetHACCEL()))
702 #define GetHbrush() ((HBRUSH)GetResourceHandle())
703 #define GetHbrushOf(brush) ((HBRUSH)(brush).GetResourceHandle())
705 #define GetHmenu() ((HMENU)GetHMenu())
706 #define GetHmenuOf(menu) ((HMENU)menu->GetHMenu())
708 #define GetHcursor() ((HCURSOR)GetHCURSOR())
709 #define GetHcursorOf(cursor) ((HCURSOR)(cursor).GetHCURSOR())
711 #define GetHfont() ((HFONT)GetHFONT())
712 #define GetHfontOf(font) ((HFONT)(font).GetHFONT())
714 #define GetHimagelist() ((HIMAGELIST)GetHIMAGELIST())
715 #define GetHimagelistOf(imgl) ((HIMAGELIST)imgl->GetHIMAGELIST())
717 #define GetHpalette() ((HPALETTE)GetHPALETTE())
718 #define GetHpaletteOf(pal) ((HPALETTE)(pal).GetHPALETTE())
720 #define GetHpen() ((HPEN)GetResourceHandle())
721 #define GetHpenOf(pen) ((HPEN)(pen).GetResourceHandle())
723 #define GetHrgn() ((HRGN)GetHRGN())
724 #define GetHrgnOf(rgn) ((HRGN)(rgn).GetHRGN())
728 // ---------------------------------------------------------------------------
730 // ---------------------------------------------------------------------------
734 WXDLLIMPEXP_BASE HINSTANCE
wxGetInstance();
737 WXDLLIMPEXP_BASE
void wxSetInstance(HINSTANCE hInst
);
739 // return the full path of the given module
740 inline wxString
wxGetFullModuleName(HMODULE hmod
)
743 if ( !::GetModuleFileName
746 wxStringBuffer(fullname
, MAX_PATH
),
750 wxLogLastError(_T("GetModuleFileName"));
756 // return the full path of the program file
757 inline wxString
wxGetFullModuleName()
759 return wxGetFullModuleName((HMODULE
)wxGetInstance());
762 // return the run-time version of the OS in a format similar to
763 // WINVER/_WIN32_WINNT compile-time macros:
765 // 0x0300 Windows NT 3.51
766 // 0x0400 Windows 95, NT4
768 // 0x0500 Windows ME, 2000
770 // 0x0502 Windows 2003
773 // for the other Windows versions 0 is currently returned
776 wxWinVersion_Unknown
= 0,
778 wxWinVersion_3
= 0x0300,
779 wxWinVersion_NT3
= wxWinVersion_3
,
781 wxWinVersion_4
= 0x0400,
782 wxWinVersion_95
= wxWinVersion_4
,
783 wxWinVersion_NT4
= wxWinVersion_4
,
784 wxWinVersion_98
= 0x0410,
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,
793 wxWinVersion_6
= 0x0600,
794 wxWinVersion_NT6
= 0x0600
797 WXDLLIMPEXP_BASE wxWinVersion
wxGetWinVersion();
802 extern HCURSOR
wxGetCurrentBusyCursor(); // from msw/utils.cpp
803 extern const wxCursor
*wxGetGlobalCursor(); // from msw/cursor.cpp
805 WXDLLEXPORT
void wxGetCharSize(WXHWND wnd
, int *x
, int *y
, const wxFont
& the_font
);
806 WXDLLEXPORT
void wxFillLogFont(LOGFONT
*logFont
, const wxFont
*font
);
807 WXDLLEXPORT wxFont
wxCreateFontFromLogFont(const LOGFONT
*logFont
);
808 WXDLLEXPORT wxFontEncoding
wxGetFontEncFromCharSet(int charset
);
810 WXDLLEXPORT
void wxSliderEvent(WXHWND control
, WXWORD wParam
, WXWORD pos
);
811 WXDLLEXPORT
void wxScrollBarEvent(WXHWND hbar
, WXWORD wParam
, WXWORD pos
);
813 // Find maximum size of window/rectangle
814 extern WXDLLEXPORT
void wxFindMaxSize(WXHWND hwnd
, RECT
*rect
);
816 // Safely get the window text (i.e. without using fixed size buffer)
817 extern WXDLLEXPORT wxString
wxGetWindowText(WXHWND hWnd
);
819 // get the window class name
820 extern WXDLLEXPORT wxString
wxGetWindowClass(WXHWND hWnd
);
822 // get the window id (should be unsigned, hence this is not wxWindowID which
823 // is, for mainly historical reasons, signed)
824 extern WXDLLEXPORT WXWORD
wxGetWindowId(WXHWND hWnd
);
826 // check if hWnd's WNDPROC is wndProc. Return true if yes, false if they are
828 extern WXDLLEXPORT
bool wxCheckWindowWndProc(WXHWND hWnd
, WXFARPROC wndProc
);
830 // Does this window style specify any border?
831 inline bool wxStyleHasBorder(long style
)
833 return (style
& (wxSIMPLE_BORDER
| wxRAISED_BORDER
|
834 wxSUNKEN_BORDER
| wxDOUBLE_BORDER
)) != 0;
837 // ----------------------------------------------------------------------------
838 // functions mapping HWND to wxWindow
839 // ----------------------------------------------------------------------------
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
843 extern WXDLLEXPORT wxWindow
* wxFindWinFromHandle(WXHWND hWnd
);
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
849 // returns the wxWindow corresponding to the given HWND or NULL.
850 extern WXDLLEXPORT wxWindow
*wxGetWindowFromHWND(WXHWND hwnd
);
852 // Get the size of an icon
853 extern WXDLLEXPORT wxSize
wxGetHiconSize(HICON hicon
);
855 // Lines are drawn differently for WinCE and regular WIN32
856 WXDLLEXPORT
void wxDrawLine(HDC hdc
, int x1
, int y1
, int x2
, int y2
);
858 // fill the client rect of the given window on the provided dc using this brush
859 inline void wxFillRect(HWND hwnd
, HDC hdc
, HBRUSH hbr
)
862 ::GetClientRect(hwnd
, &rc
);
863 ::FillRect(hdc
, &rc
, hbr
);
866 // ----------------------------------------------------------------------------
868 // ----------------------------------------------------------------------------
872 inline void *wxGetWindowProc(HWND hwnd
)
874 return (void *)::GetWindowLongPtr(hwnd
, GWLP_WNDPROC
);
877 inline void *wxGetWindowUserData(HWND hwnd
)
879 return (void *)::GetWindowLongPtr(hwnd
, GWLP_USERDATA
);
882 inline WNDPROC
wxSetWindowProc(HWND hwnd
, WNDPROC func
)
884 return (WNDPROC
)::SetWindowLongPtr(hwnd
, GWLP_WNDPROC
, (LONG_PTR
)func
);
887 inline void *wxSetWindowUserData(HWND hwnd
, void *data
)
889 return (void *)::SetWindowLongPtr(hwnd
, GWLP_USERDATA
, (LONG_PTR
)data
);
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)
896 inline WNDPROC
wxGetWindowProc(HWND hwnd
)
898 return (WNDPROC
)(LONG_PTR
)::GetWindowLong(hwnd
, GWL_WNDPROC
);
901 inline void *wxGetWindowUserData(HWND hwnd
)
903 return (void *)(LONG_PTR
)::GetWindowLong(hwnd
, GWL_USERDATA
);
906 inline WNDPROC
wxSetWindowProc(HWND hwnd
, WNDPROC func
)
908 return (WNDPROC
)(LONG_PTR
)::SetWindowLong(hwnd
, GWL_WNDPROC
, (LONG_PTR
)func
);
911 inline void *wxSetWindowUserData(HWND hwnd
, void *data
)
913 return (void *)(LONG_PTR
)::SetWindowLong(hwnd
, GWL_USERDATA
, (LONG_PTR
)data
);
916 #endif // __WIN64__/__WIN32__
920 #endif // _WX_PRIVATE_H_