1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Private declarations: as this header is only included by
4 // wxWindows 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_
24 // Extra prototypes and symbols not defined by MicroWindows
25 #include "wx/msw/microwin.h"
28 // undefine conflicting symbols which were defined in windows.h
29 #include "wx/msw/winundef.h"
31 // Include fixes for MSLU:
32 #include "wx/msw/mslu.h"
36 class WXDLLEXPORT wxFont
;
37 class WXDLLEXPORT wxWindow
;
39 // ---------------------------------------------------------------------------
41 // ---------------------------------------------------------------------------
44 static const double METRIC_CONVERSION_CONSTANT
= 0.0393700787;
46 // Scaling factors for various unit conversions
47 static const double mm2inches
= (METRIC_CONVERSION_CONSTANT
);
48 static const double inches2mm
= (1/METRIC_CONVERSION_CONSTANT
);
50 static const double mm2twips
= (METRIC_CONVERSION_CONSTANT
*1440);
51 static const double twips2mm
= (1/(METRIC_CONVERSION_CONSTANT
*1440));
53 static const double mm2pt
= (METRIC_CONVERSION_CONSTANT
*72);
54 static const double pt2mm
= (1/(METRIC_CONVERSION_CONSTANT
*72));
56 // ---------------------------------------------------------------------------
57 // standard icons from the resources
58 // ---------------------------------------------------------------------------
62 WXDLLEXPORT_DATA(extern HICON
) wxSTD_FRAME_ICON
;
63 WXDLLEXPORT_DATA(extern HICON
) wxSTD_MDIPARENTFRAME_ICON
;
64 WXDLLEXPORT_DATA(extern HICON
) wxSTD_MDICHILDFRAME_ICON
;
65 WXDLLEXPORT_DATA(extern HICON
) wxDEFAULT_FRAME_ICON
;
66 WXDLLEXPORT_DATA(extern HICON
) wxDEFAULT_MDIPARENTFRAME_ICON
;
67 WXDLLEXPORT_DATA(extern HICON
) wxDEFAULT_MDICHILDFRAME_ICON
;
68 WXDLLEXPORT_DATA(extern HFONT
) wxSTATUS_LINE_FONT
;
72 // ---------------------------------------------------------------------------
73 // define things missing from some compilers' headers
74 // ---------------------------------------------------------------------------
76 #if defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS
78 inline void ZeroMemory(void *buf
, size_t len
) { memset(buf
, 0, len
); }
82 // this defines a CASTWNDPROC macro which casts a pointer to the type of a
84 #if defined(STRICT) || defined(__GNUC__)
85 typedef WNDPROC WndProcCast
;
87 typedef FARPROC WndProcCast
;
90 #define CASTWNDPROC (WndProcCast)
92 // ---------------------------------------------------------------------------
93 // some stuff for old Windows versions (FIXME: what does it do here??)
94 // ---------------------------------------------------------------------------
96 #if !defined(APIENTRY) // NT defines APIENTRY, 3.x not
97 #define APIENTRY FAR PASCAL
103 #define _EXPORT _export
107 typedef signed short int SHORT
;
110 #if !defined(__WIN32__) // 3.x uses FARPROC for dialogs
112 #define DLGPROC FARPROC
117 WXDLLEXPORT
void wxRegisterPenWin();
118 WXDLLEXPORT
void wxCleanUpPenWin();
119 WXDLLEXPORT
void wxEnablePenAppHooks (bool hook
);
120 #endif // wxUSE_PENWIN
123 #define IBS_HORZCAPTION 0x4000L
124 #define IBS_VERTCAPTION 0x8000L
126 UINT WINAPI
ibGetCaptionSize( HWND hWnd
) ;
127 UINT WINAPI
ibSetCaptionSize( HWND hWnd
, UINT nSize
) ;
128 LRESULT WINAPI
ibDefWindowProc( HWND hWnd
, UINT uiMsg
, WPARAM wParam
, LPARAM lParam
) ;
129 VOID WINAPI
ibAdjustWindowRect( HWND hWnd
, LPRECT lprc
) ;
130 #endif // wxUSE_ITSY_BITSY
133 #include "wx/msw/ctl3d/ctl3d.h"
134 #endif // wxUSE_CTL3D
137 * Decide what window classes we're going to use
138 * for this combination of CTl3D/FAFA settings
141 #define STATIC_CLASS wxT("STATIC")
142 #define STATIC_FLAGS (SS_LEFT|WS_CHILD|WS_VISIBLE)
143 #define CHECK_CLASS wxT("BUTTON")
144 #define CHECK_FLAGS (BS_AUTOCHECKBOX|WS_TABSTOP|WS_CHILD)
145 #define CHECK_IS_FAFA FALSE
146 #define RADIO_CLASS wxT("BUTTON")
147 #define RADIO_FLAGS (BS_AUTORADIOBUTTON|WS_CHILD|WS_VISIBLE)
148 #define RADIO_SIZE 20
149 #define RADIO_IS_FAFA FALSE
151 #define GROUP_CLASS wxT("BUTTON")
152 #define GROUP_FLAGS (BS_GROUPBOX|WS_CHILD|WS_VISIBLE)
155 #define BITCHECK_FLAGS (FB_BITMAP|FC_BUTTONDRAW|FC_DEFAULT|WS_VISIBLE)
156 #define BITRADIO_FLAGS (FC_BUTTONDRAW|FB_BITMAP|FC_RADIO|WS_CHILD|WS_VISIBLE)
159 // ---------------------------------------------------------------------------
161 // ---------------------------------------------------------------------------
163 #define MEANING_CHARACTER '0'
164 #define DEFAULT_ITEM_WIDTH 100
165 #define DEFAULT_ITEM_HEIGHT 80
167 // Scale font to get edit control height
168 //#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (3*(cy)/2)
169 #define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (cy+8)
171 // Generic subclass proc, for panel item moving/sizing and intercept
172 // EDIT control VK_RETURN messages
173 extern LONG APIENTRY _EXPORT
174 wxSubclassedGenericControlProc(WXHWND hWnd
, WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
176 // ---------------------------------------------------------------------------
177 // constants which might miss from some compilers' headers
178 // ---------------------------------------------------------------------------
180 #if !defined(__WIN32__) && !defined(WS_EX_CLIENTEDGE)
181 #define WS_EX_CLIENTEDGE 0
184 #if defined(__WIN32__) && !defined(WS_EX_CLIENTEDGE)
185 #define WS_EX_CLIENTEDGE 0x00000200L
188 #ifndef ENDSESSION_LOGOFF
189 #define ENDSESSION_LOGOFF 0x80000000
192 // ---------------------------------------------------------------------------
193 // useful macros and functions
194 // ---------------------------------------------------------------------------
196 // a wrapper macro for ZeroMemory()
197 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
198 #define wxZeroMemory(obj) ::ZeroMemory(&obj, sizeof(obj))
200 #define wxZeroMemory(obj) memset((void*) & obj, 0, sizeof(obj))
205 #include <wx/gdicmn.h>
207 // make conversion from wxColour and COLORREF a bit less painful
208 inline COLORREF
wxColourToRGB(const wxColour
& c
)
210 return PALETTERGB(c
.Red(), c
.Green(), c
.Blue());
213 inline wxColour
wxRGBToColour(COLORREF rgb
)
215 return wxColour(GetRValue(rgb
), GetGValue(rgb
), GetBValue(rgb
));
218 inline void wxRGBToColour(wxColour
& c
, COLORREF rgb
)
220 c
.Set(GetRValue(rgb
), GetGValue(rgb
), GetBValue(rgb
));
223 // get the standard colour map for some standard colours - see comment in this
224 // function to understand why is it needed and when should it be used
226 // it returns a wxCOLORMAP (can't use COLORMAP itself here as comctl32.dll
227 // might be not included/available) array of size wxSTD_COLOUR_MAX
229 // NB: if you change these colours, update wxBITMAP_STD_COLOURS in the
230 // resources as well: it must have the same number of pixels!
236 wxSTD_COL_BTNHIGHLIGHT
,
240 struct WXDLLEXPORT wxCOLORMAP
245 // this function is implemented in src/msw/window.cpp
246 extern wxCOLORMAP
*wxGetStdColourMap();
248 // copy Windows RECT to our wxRect
249 inline void wxCopyRECTToRect(const RECT
& r
, wxRect
& rect
)
253 rect
.width
= r
.right
- r
.left
;
254 rect
.height
= r
.bottom
- r
.top
;
257 // translations between HIMETRIC units (which OLE likes) and pixels (which are
258 // liked by all the others) - implemented in msw/utilsexc.cpp
259 extern void HIMETRICToPixel(LONG
*x
, LONG
*y
);
260 extern void PixelToHIMETRIC(LONG
*x
, LONG
*y
);
262 // Windows convention of the mask is opposed to the wxWindows one, so we need
263 // to invert the mask each time we pass one/get one to/from Windows
264 extern HBITMAP
wxInvertMask(HBITMAP hbmpMask
, int w
= 0, int h
= 0);
266 // get (x, y) from DWORD - notice that HI/LOWORD can *not* be used because they
267 // will fail on system with multiple monitors where the coords may be negative
269 // these macros are standard now (Win98) but some older headers don't have them
271 #define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp))
272 #define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp))
273 #endif // GET_X_LPARAM
275 // get the current state of SHIFT/CTRL keys
276 inline bool wxIsShiftDown()
278 return (::GetKeyState(VK_SHIFT
) & 0x100) != 0;
281 inline bool wxIsCtrlDown()
283 return (::GetKeyState(VK_CONTROL
) & 0x100) != 0;
286 // wrapper around GetWindowRect() and GetClientRect() APIs doing error checking
288 inline RECT
wxGetWindowRect(HWND hwnd
)
292 ::GetWindowRect(hwnd
, &rect
);
294 if ( !::GetWindowRect(hwnd
, &rect
) )
296 wxLogLastError(_T("GetWindowRect"));
303 inline RECT
wxGetClientRect(HWND hwnd
)
307 ::GetClientRect(hwnd
, &rect
);
309 if ( !::GetClientRect(hwnd
, &rect
) )
311 wxLogLastError(_T("GetClientRect"));
318 // ---------------------------------------------------------------------------
319 // small helper classes
320 // ---------------------------------------------------------------------------
322 // create an instance of this class and use it as the HDC for screen, will
323 // automatically release the DC going out of scope
327 ScreenHDC() { m_hdc
= ::GetDC(NULL
); }
328 ~ScreenHDC() { ::ReleaseDC(NULL
, m_hdc
); }
330 operator HDC() const { return m_hdc
; }
336 // the same as ScreenHDC but for memory DCs: creates the HDC in ctor and
337 // destroys it in dtor
341 MemoryHDC() { m_hdc
= ::CreateCompatibleDC(NULL
); }
342 ~MemoryHDC() { ::DeleteObject(m_hdc
); }
344 operator HDC() const { return m_hdc
; }
350 // a class which selects a GDI object into a DC in its ctor and deselects in
355 SelectInHDC(HDC hdc
, HGDIOBJ hgdiobj
) : m_hdc(hdc
)
356 { m_hgdiobj
= ::SelectObject(hdc
, hgdiobj
); }
358 ~SelectInHDC() { ::SelectObject(m_hdc
, m_hgdiobj
); }
360 // return true if the object was successfully selected
361 operator bool() const { return m_hgdiobj
!= 0; }
368 // ---------------------------------------------------------------------------
369 // macros to make casting between WXFOO and FOO a bit easier: the GetFoo()
370 // returns Foo cast to the Windows type for oruselves, while GetFooOf() takes
371 // an argument which should be a pointer or reference to the object of the
372 // corresponding class (this depends on the macro)
373 // ---------------------------------------------------------------------------
375 #define GetHwnd() ((HWND)GetHWND())
376 #define GetHwndOf(win) ((HWND)((win)->GetHWND()))
378 #define GetWinHwnd GetHwndOf
380 #define GetHdc() ((HDC)GetHDC())
381 #define GetHdcOf(dc) ((HDC)(dc).GetHDC())
383 #define GetHbitmap() ((HBITMAP)GetHBITMAP())
384 #define GetHbitmapOf(bmp) ((HBITMAP)(bmp).GetHBITMAP())
386 #define GetHicon() ((HICON)GetHICON())
387 #define GetHiconOf(icon) ((HICON)(icon).GetHICON())
389 #define GetHaccel() ((HACCEL)GetHACCEL())
390 #define GetHaccelOf(table) ((HACCEL)((table).GetHACCEL()))
392 #define GetHmenu() ((HMENU)GetHMenu())
393 #define GetHmenuOf(menu) ((HMENU)menu->GetHMenu())
395 #define GetHcursor() ((HCURSOR)GetHCURSOR())
396 #define GetHcursorOf(cursor) ((HCURSOR)(cursor).GetHCURSOR())
398 #define GetHfont() ((HFONT)GetHFONT())
399 #define GetHfontOf(font) ((HFONT)(font).GetHFONT())
401 #define GetHpalette() ((HPALETTE)GetHPALETTE())
402 #define GetHpaletteOf(pal) ((HPALETTE)(pal).GetHPALETTE())
404 #define GetHrgn() ((HRGN)GetHRGN())
405 #define GetHrgnOf(rgn) ((HRGN)(rgn).GetHRGN())
409 // ---------------------------------------------------------------------------
411 // ---------------------------------------------------------------------------
413 WXDLLEXPORT_DATA(extern wxChar
*) wxBuffer
;
415 WXDLLEXPORT_DATA(extern HINSTANCE
) wxhInstance
;
417 // ---------------------------------------------------------------------------
419 // ---------------------------------------------------------------------------
423 WXDLLEXPORT HINSTANCE
wxGetInstance();
426 WXDLLEXPORT
void wxSetInstance(HINSTANCE hInst
);
431 extern HCURSOR
wxGetCurrentBusyCursor(); // from msw/utils.cpp
432 extern const wxCursor
*wxGetGlobalCursor(); // from msw/cursor.cpp
434 WXDLLEXPORT wxWindow
* wxFindWinFromHandle(WXHWND hWnd
);
436 WXDLLEXPORT
void wxGetCharSize(WXHWND wnd
, int *x
, int *y
, const wxFont
*the_font
);
437 WXDLLEXPORT
void wxFillLogFont(LOGFONT
*logFont
, const wxFont
*font
);
438 WXDLLEXPORT wxFont
wxCreateFontFromLogFont(const LOGFONT
*logFont
);
439 WXDLLEXPORT wxFontEncoding
wxGetFontEncFromCharSet(int charset
);
441 WXDLLEXPORT
void wxSliderEvent(WXHWND control
, WXWORD wParam
, WXWORD pos
);
442 WXDLLEXPORT
void wxScrollBarEvent(WXHWND hbar
, WXWORD wParam
, WXWORD pos
);
444 // Find maximum size of window/rectangle
445 WXDLLEXPORT
extern void wxFindMaxSize(WXHWND hwnd
, RECT
*rect
);
447 WXDLLEXPORT wxWindow
* wxFindControlFromHandle(WXHWND hWnd
);
448 WXDLLEXPORT
void wxAddControlHandle(WXHWND hWnd
, wxWindow
*item
);
450 // Safely get the window text (i.e. without using fixed size buffer)
451 WXDLLEXPORT
extern wxString
wxGetWindowText(WXHWND hWnd
);
453 // get the window class name
454 WXDLLEXPORT
extern wxString
wxGetWindowClass(WXHWND hWnd
);
456 // get the window id (should be unsigned, hence this is not wxWindowID which
457 // is, for mainly historical reasons, signed)
458 WXDLLEXPORT
extern WXWORD
wxGetWindowId(WXHWND hWnd
);
460 // check if hWnd's WNDPROC is wndProc. Return true if yes, false if they are different
461 extern bool wxCheckWindowWndProc(WXHWND hWnd
, WXFARPROC wndProc
);
463 // Does this window style specify any border?
464 inline bool wxStyleHasBorder(long style
)
466 return (style
& (wxSIMPLE_BORDER
| wxRAISED_BORDER
|
467 wxSUNKEN_BORDER
| wxDOUBLE_BORDER
)) != 0;
470 // find the window for HWND which is part of some wxWindow, returns just the
471 // corresponding wxWindow for HWND which just is one
474 extern wxWindow
*wxGetWindowFromHWND(WXHWND hwnd
);