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 class WXDLLEXPORT wxFont
;
32 class WXDLLEXPORT wxWindow
;
34 // ---------------------------------------------------------------------------
36 // ---------------------------------------------------------------------------
39 static const double METRIC_CONVERSION_CONSTANT
= 0.0393700787;
41 // Scaling factors for various unit conversions
42 static const double mm2inches
= (METRIC_CONVERSION_CONSTANT
);
43 static const double inches2mm
= (1/METRIC_CONVERSION_CONSTANT
);
45 static const double mm2twips
= (METRIC_CONVERSION_CONSTANT
*1440);
46 static const double twips2mm
= (1/(METRIC_CONVERSION_CONSTANT
*1440));
48 static const double mm2pt
= (METRIC_CONVERSION_CONSTANT
*72);
49 static const double pt2mm
= (1/(METRIC_CONVERSION_CONSTANT
*72));
51 // ---------------------------------------------------------------------------
52 // standard icons from the resources
53 // ---------------------------------------------------------------------------
57 WXDLLEXPORT_DATA(extern HICON
) wxSTD_FRAME_ICON
;
58 WXDLLEXPORT_DATA(extern HICON
) wxSTD_MDIPARENTFRAME_ICON
;
59 WXDLLEXPORT_DATA(extern HICON
) wxSTD_MDICHILDFRAME_ICON
;
60 WXDLLEXPORT_DATA(extern HICON
) wxDEFAULT_FRAME_ICON
;
61 WXDLLEXPORT_DATA(extern HICON
) wxDEFAULT_MDIPARENTFRAME_ICON
;
62 WXDLLEXPORT_DATA(extern HICON
) wxDEFAULT_MDICHILDFRAME_ICON
;
63 WXDLLEXPORT_DATA(extern HFONT
) wxSTATUS_LINE_FONT
;
67 // ---------------------------------------------------------------------------
68 // define things missing from some compilers' headers
69 // ---------------------------------------------------------------------------
71 #if defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS
73 inline void ZeroMemory(void *buf
, size_t len
) { memset(buf
, 0, len
); }
77 // this defines a CASTWNDPROC macro which casts a pointer to the type of a
80 #if defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__)
81 #define CASTWNDPROC (long unsigned)
83 #if defined(STRICT) || defined(__GNUC__)
84 typedef WNDPROC WndProcCast
;
86 typedef FARPROC WndProcCast
;
88 #define CASTWNDPROC (WndProcCast)
89 #endif // __GNUWIN32_OLD__
91 // ---------------------------------------------------------------------------
92 // some stuff for old Windows versions (FIXME: what does it do here??)
93 // ---------------------------------------------------------------------------
95 #if !defined(APIENTRY) // NT defines APIENTRY, 3.x not
96 #define APIENTRY FAR PASCAL
102 #define _EXPORT _export
106 typedef signed short int SHORT
;
109 #if !defined(__WIN32__) // 3.x uses FARPROC for dialogs
111 #define DLGPROC FARPROC
116 WXDLLEXPORT
void wxRegisterPenWin();
117 WXDLLEXPORT
void wxCleanUpPenWin();
118 WXDLLEXPORT
void wxEnablePenAppHooks (bool hook
);
119 #endif // wxUSE_PENWIN
122 #define IBS_HORZCAPTION 0x4000L
123 #define IBS_VERTCAPTION 0x8000L
125 UINT WINAPI
ibGetCaptionSize( HWND hWnd
) ;
126 UINT WINAPI
ibSetCaptionSize( HWND hWnd
, UINT nSize
) ;
127 LRESULT WINAPI
ibDefWindowProc( HWND hWnd
, UINT uiMsg
, WPARAM wParam
, LPARAM lParam
) ;
128 VOID WINAPI
ibAdjustWindowRect( HWND hWnd
, LPRECT lprc
) ;
129 #endif // wxUSE_ITSY_BITSY
132 #include "wx/msw/ctl3d/ctl3d.h"
133 #endif // wxUSE_CTL3D
136 * Decide what window classes we're going to use
137 * for this combination of CTl3D/FAFA settings
140 #define STATIC_CLASS wxT("STATIC")
141 #define STATIC_FLAGS (SS_LEFT|WS_CHILD|WS_VISIBLE)
142 #define CHECK_CLASS wxT("BUTTON")
143 #define CHECK_FLAGS (BS_AUTOCHECKBOX|WS_TABSTOP|WS_CHILD)
144 #define CHECK_IS_FAFA FALSE
145 #define RADIO_CLASS wxT("BUTTON")
146 #define RADIO_FLAGS (BS_AUTORADIOBUTTON|WS_CHILD|WS_VISIBLE)
147 #define RADIO_SIZE 20
148 #define RADIO_IS_FAFA FALSE
150 #define GROUP_CLASS wxT("BUTTON")
151 #define GROUP_FLAGS (BS_GROUPBOX|WS_CHILD|WS_VISIBLE)
154 #define BITCHECK_FLAGS (FB_BITMAP|FC_BUTTONDRAW|FC_DEFAULT|WS_VISIBLE)
155 #define BITRADIO_FLAGS (FC_BUTTONDRAW|FB_BITMAP|FC_RADIO|WS_CHILD|WS_VISIBLE)
158 // ---------------------------------------------------------------------------
160 // ---------------------------------------------------------------------------
162 #define MEANING_CHARACTER '0'
163 #define DEFAULT_ITEM_WIDTH 100
164 #define DEFAULT_ITEM_HEIGHT 80
166 // Scale font to get edit control height
167 //#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (3*(cy)/2)
168 #define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (cy+8)
170 // Generic subclass proc, for panel item moving/sizing and intercept
171 // EDIT control VK_RETURN messages
172 extern LONG APIENTRY _EXPORT
173 wxSubclassedGenericControlProc(WXHWND hWnd
, WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
175 // ---------------------------------------------------------------------------
176 // constants which might miss from some compilers' headers
177 // ---------------------------------------------------------------------------
179 #if !defined(__WIN32__) && !defined(WS_EX_CLIENTEDGE)
180 #define WS_EX_CLIENTEDGE 0
183 #if defined(__WIN32__) && !defined(WS_EX_CLIENTEDGE)
184 #define WS_EX_CLIENTEDGE 0x00000200L
187 #ifndef ENDSESSION_LOGOFF
188 #define ENDSESSION_LOGOFF 0x80000000
191 // ---------------------------------------------------------------------------
192 // useful macros and functions
193 // ---------------------------------------------------------------------------
195 // a wrapper macro for ZeroMemory()
196 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
197 #define wxZeroMemory(obj) ::ZeroMemory(&obj, sizeof(obj))
199 #define wxZeroMemory(obj) memset((void*) & obj, 0, sizeof(obj))
204 #include <wx/gdicmn.h>
206 // make conversion from wxColour and COLORREF a bit less painful
207 inline COLORREF
wxColourToRGB(const wxColour
& c
)
209 return RGB(c
.Red(), c
.Green(), c
.Blue());
212 inline void wxRGBToColour(wxColour
& c
, COLORREF rgb
)
214 c
.Set(GetRValue(rgb
), GetGValue(rgb
), GetBValue(rgb
));
217 // copy Windows RECT to our wxRect
218 inline void wxCopyRECTToRect(const RECT
& r
, wxRect
& rect
)
222 rect
.width
= r
.right
- r
.left
;
223 rect
.height
= r
.bottom
- r
.top
;
226 // translations between HIMETRIC units (which OLE likes) and pixels (which are
227 // liked by all the others) - implemented in msw/utilsexc.cpp
228 extern void HIMETRICToPixel(LONG
*x
, LONG
*y
);
229 extern void PixelToHIMETRIC(LONG
*x
, LONG
*y
);
231 // Windows convention of the mask is opposed to the wxWindows one, so we need
232 // to invert the mask each time we pass one/get one to/from Windows
233 extern HBITMAP
wxInvertMask(HBITMAP hbmpMask
, int w
= 0, int h
= 0);
235 // get (x, y) from DWORD - notice that HI/LOWORD can *not* be used because they
236 // will fail on system with multiple monitors where the coords may be negative
238 // these macros are standard now (Win98) but some older headers don't have them
240 #define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp))
241 #define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp))
242 #endif // GET_X_LPARAM
244 // get the current state of SHIFT/CTRL keys
245 inline bool wxIsShiftDown()
247 return (::GetKeyState(VK_SHIFT
) & 0x100) != 0;
250 inline bool wxIsCtrlDown()
252 return (::GetKeyState(VK_CONTROL
) & 0x100) != 0;
255 // ---------------------------------------------------------------------------
256 // small helper classes
257 // ---------------------------------------------------------------------------
259 // create an instance of this class and use it as the HDC for screen, will
260 // automatically release the DC going out of scope
264 ScreenHDC() { m_hdc
= GetDC(NULL
); }
265 ~ScreenHDC() { ReleaseDC(NULL
, m_hdc
); }
266 operator HDC() const { return m_hdc
; }
272 // ---------------------------------------------------------------------------
273 // macros to make casting between WXFOO and FOO a bit easier: the GetFoo()
274 // returns Foo cast to the Windows type for oruselves, while GetFooOf() takes
275 // an argument which should be a pointer or reference to the object of the
276 // corresponding class (this depends on the macro)
277 // ---------------------------------------------------------------------------
279 #define GetHwnd() ((HWND)GetHWND())
280 #define GetHwndOf(win) ((HWND)((win)->GetHWND()))
282 #define GetWinHwnd GetHwndOf
284 #define GetHdc() ((HDC)GetHDC())
285 #define GetHdcOf(dc) ((HDC)(dc).GetHDC())
287 #define GetHbitmap() ((HBITMAP)GetHBITMAP())
288 #define GetHbitmapOf(bmp) ((HBITMAP)(bmp).GetHBITMAP())
290 #define GetHicon() ((HICON)GetHICON())
291 #define GetHiconOf(icon) ((HICON)(icon).GetHICON())
293 #define GetHaccel() ((HACCEL)GetHACCEL())
294 #define GetHaccelOf(table) ((HACCEL)((table).GetHACCEL()))
296 #define GetHmenu() ((HMENU)GetHMenu())
297 #define GetHmenuOf(menu) ((HMENU)menu->GetHMenu())
299 #define GetHcursor() ((HCURSOR)GetHCURSOR())
300 #define GetHcursorOf(cursor) ((HCURSOR)(cursor).GetHCURSOR())
302 #define GetHfont() ((HFONT)GetHFONT())
303 #define GetHfontOf(font) ((HFONT)(font).GetHFONT())
305 #define GetHrgn() ((HRGN)GetHRGN())
306 #define GetHrgnOf(rgn) ((HRGN)(rgn).GetHRGN())
310 // ---------------------------------------------------------------------------
312 // ---------------------------------------------------------------------------
314 WXDLLEXPORT_DATA(extern wxChar
*) wxBuffer
;
316 WXDLLEXPORT_DATA(extern HINSTANCE
) wxhInstance
;
318 // ---------------------------------------------------------------------------
320 // ---------------------------------------------------------------------------
324 WXDLLEXPORT HINSTANCE
wxGetInstance();
327 WXDLLEXPORT
void wxSetInstance(HINSTANCE hInst
);
332 extern HCURSOR
wxGetCurrentBusyCursor(); // from msw/utils.cpp
333 extern const wxCursor
*wxGetGlobalCursor(); // from msw/cursor.cpp
335 WXDLLEXPORT wxWindow
* wxFindWinFromHandle(WXHWND hWnd
);
337 WXDLLEXPORT
void wxGetCharSize(WXHWND wnd
, int *x
, int *y
, const wxFont
*the_font
);
338 WXDLLEXPORT
void wxFillLogFont(LOGFONT
*logFont
, const wxFont
*font
);
339 WXDLLEXPORT wxFont
wxCreateFontFromLogFont(const LOGFONT
*logFont
);
340 WXDLLEXPORT wxFontEncoding
wxGetFontEncFromCharSet(int charset
);
342 WXDLLEXPORT
void wxSliderEvent(WXHWND control
, WXWORD wParam
, WXWORD pos
);
343 WXDLLEXPORT
void wxScrollBarEvent(WXHWND hbar
, WXWORD wParam
, WXWORD pos
);
345 // Find maximum size of window/rectangle
346 WXDLLEXPORT
extern void wxFindMaxSize(WXHWND hwnd
, RECT
*rect
);
348 WXDLLEXPORT wxWindow
* wxFindControlFromHandle(WXHWND hWnd
);
349 WXDLLEXPORT
void wxAddControlHandle(WXHWND hWnd
, wxWindow
*item
);
351 // Safely get the window text (i.e. without using fixed size buffer)
352 WXDLLEXPORT
extern wxString
wxGetWindowText(WXHWND hWnd
);
354 // get the window class name
355 WXDLLEXPORT
extern wxString
wxGetWindowClass(WXHWND hWnd
);
357 // get the window id (should be unsigned, hence this is not wxWindowID which
358 // is, for mainly historical reasons, signed)
359 WXDLLEXPORT
extern WXWORD
wxGetWindowId(WXHWND hWnd
);
361 // Does this window style specify any border?
362 inline bool wxStyleHasBorder(long style
)
364 return (style
& (wxSIMPLE_BORDER
| wxRAISED_BORDER
|
365 wxSUNKEN_BORDER
| wxDOUBLE_BORDER
)) != 0;
368 // find the window for HWND which is part of some wxWindow, returns just the
369 // corresponding wxWindow for HWND which just is one
372 extern wxWindow
*wxGetWindowFromHWND(WXHWND hwnd
);