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_
19 // undefine conflicting symbols which were defined in windows.h
20 #include "wx/msw/winundef.h"
22 class WXDLLEXPORT wxFont
;
23 class WXDLLEXPORT wxWindow
;
25 // ---------------------------------------------------------------------------
27 // ---------------------------------------------------------------------------
30 static const double METRIC_CONVERSION_CONSTANT
= 0.0393700787;
32 // Scaling factors for various unit conversions
33 static const double mm2inches
= (METRIC_CONVERSION_CONSTANT
);
34 static const double inches2mm
= (1/METRIC_CONVERSION_CONSTANT
);
36 static const double mm2twips
= (METRIC_CONVERSION_CONSTANT
*1440);
37 static const double twips2mm
= (1/(METRIC_CONVERSION_CONSTANT
*1440));
39 static const double mm2pt
= (METRIC_CONVERSION_CONSTANT
*72);
40 static const double pt2mm
= (1/(METRIC_CONVERSION_CONSTANT
*72));
42 // ---------------------------------------------------------------------------
43 // standard icons from the resources
44 // ---------------------------------------------------------------------------
46 WXDLLEXPORT_DATA(extern HICON
) wxSTD_FRAME_ICON
;
47 WXDLLEXPORT_DATA(extern HICON
) wxSTD_MDIPARENTFRAME_ICON
;
48 WXDLLEXPORT_DATA(extern HICON
) wxSTD_MDICHILDFRAME_ICON
;
49 WXDLLEXPORT_DATA(extern HICON
) wxDEFAULT_FRAME_ICON
;
50 WXDLLEXPORT_DATA(extern HICON
) wxDEFAULT_MDIPARENTFRAME_ICON
;
51 WXDLLEXPORT_DATA(extern HICON
) wxDEFAULT_MDICHILDFRAME_ICON
;
52 WXDLLEXPORT_DATA(extern HFONT
) wxSTATUS_LINE_FONT
;
54 // ---------------------------------------------------------------------------
55 // this defines a CASTWNDPROC macro which casts a pointer to the type of a
57 // ---------------------------------------------------------------------------
59 #if defined(__GNUWIN32__) && !defined(__MINGW32__)
60 # define CASTWNDPROC (long unsigned)
67 typedef int (pascal * WndProcCast
) ();
68 # define CASTWNDPROC (WndProcCast)
72 # if defined (__WIN32__) && defined(STRICT)
73 typedef long (_stdcall
* WndProcCast
) (HWND
, unsigned int, unsigned int, long);
74 # define CASTWNDPROC (WndProcCast)
75 # elif defined(__WIN16__)
77 typedef int (pascal * WndProcCast
) ();
78 # define CASTWNDPROC (WndProcCast)
80 # if defined(__VISUALC__) && defined(STRICT)
81 # define CASTWNDPROC (WNDPROC)
83 typedef int (PASCAL
* WndProcCast
) ();
84 # define CASTWNDPROC (WndProcCast)
93 // ---------------------------------------------------------------------------
94 // some stuff for old Windows versions (FIXME: what does it do here??)
95 // ---------------------------------------------------------------------------
97 #if !defined(APIENTRY) // NT defines APIENTRY, 3.x not
98 #define APIENTRY FAR PASCAL
104 #define _EXPORT _export
108 typedef signed short int SHORT
;
111 #if !defined(__WIN32__) // 3.x uses FARPROC for dialogs
113 #define DLGPROC FARPROC
118 WXDLLEXPORT
void wxRegisterPenWin();
119 WXDLLEXPORT
void wxCleanUpPenWin();
120 WXDLLEXPORT
void wxEnablePenAppHooks (bool hook
);
121 #endif // wxUSE_PENWIN
124 #define IBS_HORZCAPTION 0x4000L
125 #define IBS_VERTCAPTION 0x8000L
127 UINT WINAPI
ibGetCaptionSize( HWND hWnd
) ;
128 UINT WINAPI
ibSetCaptionSize( HWND hWnd
, UINT nSize
) ;
129 LRESULT WINAPI
ibDefWindowProc( HWND hWnd
, UINT uiMsg
, WPARAM wParam
, LPARAM lParam
) ;
130 VOID WINAPI
ibAdjustWindowRect( HWND hWnd
, LPRECT lprc
) ;
131 #endif // wxUSE_ITSY_BITSY
134 #include "wx/msw/ctl3d/ctl3d.h"
135 #endif // wxUSE_CTL3D
138 * Decide what window classes we're going to use
139 * for this combination of CTl3D/FAFA settings
142 #define STATIC_CLASS _T("STATIC")
143 #define STATIC_FLAGS (SS_LEFT|WS_CHILD|WS_VISIBLE)
144 #define CHECK_CLASS _T("BUTTON")
145 #define CHECK_FLAGS (BS_AUTOCHECKBOX|WS_TABSTOP|WS_CHILD)
146 #define CHECK_IS_FAFA FALSE
147 #define RADIO_CLASS _T("BUTTON")
148 #define RADIO_FLAGS (BS_AUTORADIOBUTTON|WS_CHILD|WS_VISIBLE)
149 #define RADIO_SIZE 20
150 #define RADIO_IS_FAFA FALSE
152 #define GROUP_CLASS _T("BUTTON")
153 #define GROUP_FLAGS (BS_GROUPBOX|WS_CHILD|WS_VISIBLE)
156 #define BITCHECK_FLAGS (FB_BITMAP|FC_BUTTONDRAW|FC_DEFAULT|WS_VISIBLE)
157 #define BITRADIO_FLAGS (FC_BUTTONDRAW|FB_BITMAP|FC_RADIO|WS_CHILD|WS_VISIBLE)
160 // ---------------------------------------------------------------------------
162 // ---------------------------------------------------------------------------
164 #define MEANING_CHARACTER '0'
165 #define DEFAULT_ITEM_WIDTH 200
166 #define DEFAULT_ITEM_HEIGHT 80
168 // Scale font to get edit control height
169 #define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (3*(cy)/2)
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 // ---------------------------------------------------------------------------
194 // ---------------------------------------------------------------------------
195 #if defined(__WIN95__) && defined(__WXDEBUG__) && wxUSE_DBWIN32
198 #ifdef OutputDebugString
199 #undef OutputDebugString
202 #define OutputDebugString OutputDebugStringW95
205 extern void OutputDebugStringW95(const wxChar
*, ...);
206 #endif // USE_DBWIN32
208 // ---------------------------------------------------------------------------
209 // macros to make casting between WXFOO and FOO a bit easier: the GetFoo()
210 // returns Foo cast to the Windows type for oruselves, while GetFoosFoo() takes
211 // an argument which should be a pointer to wxFoo (is this really clear?)
212 // ---------------------------------------------------------------------------
214 #define GetHwnd() ((HWND)GetHWND())
215 #define GetWinHwnd(win) ((HWND)((win)->GetHWND()))
217 #define GetHdc() ((HDC)GetHDC())
219 #define GetHicon() ((HICON)GetHICON())
220 #define GetIconHicon(icon) ((HICON)(icon).GetHICON())
222 #define GetHaccel() ((HACCEL)GetHACCEL())
223 #define GetTableHaccel(table) ((HACCEL)((table).GetHACCEL()))
225 // ---------------------------------------------------------------------------
227 // ---------------------------------------------------------------------------
229 // The MakeProcInstance version of the function wxSubclassedGenericControlProc
230 WXDLLEXPORT_DATA(extern FARPROC
) wxGenericControlSubClassProc
;
231 WXDLLEXPORT_DATA(extern wxChar
*) wxBuffer
;
232 WXDLLEXPORT_DATA(extern HINSTANCE
) wxhInstance
;
234 // ---------------------------------------------------------------------------
236 // ---------------------------------------------------------------------------
238 WXDLLEXPORT HINSTANCE
wxGetInstance();
239 WXDLLEXPORT
void wxSetInstance(HINSTANCE hInst
);
241 WXDLLEXPORT wxWindow
* wxFindWinFromHandle(WXHWND hWnd
);
243 WXDLLEXPORT
void wxGetCharSize(WXHWND wnd
, int *x
, int *y
,wxFont
*the_font
);
244 WXDLLEXPORT
void wxFillLogFont(LOGFONT
*logFont
, wxFont
*font
);
245 WXDLLEXPORT wxFont
wxCreateFontFromLogFont(LOGFONT
*logFont
);
247 WXDLLEXPORT
void wxSliderEvent(WXHWND control
, WXWORD wParam
, WXWORD pos
);
248 WXDLLEXPORT
void wxScrollBarEvent(WXHWND hbar
, WXWORD wParam
, WXWORD pos
);
250 // Find maximum size of window/rectangle
251 WXDLLEXPORT
extern void wxFindMaxSize(WXHWND hwnd
, RECT
*rect
);
253 WXDLLEXPORT wxWindow
* wxFindControlFromHandle(WXHWND hWnd
);
254 WXDLLEXPORT
void wxAddControlHandle(WXHWND hWnd
, wxWindow
*item
);
256 // Safely get the window text (i.e. without using fixed size buffer)
257 WXDLLEXPORT
extern wxString
wxGetWindowText(WXHWND hWnd
);
259 // get the window class name
260 WXDLLEXPORT
extern wxString
wxGetWindowClass(WXHWND hWnd
);
262 // get the window id (should be unsigned, hence this is not wxWindowID which
263 // is, for mainly historical reasons, signed)
264 WXDLLEXPORT
extern WXWORD
wxGetWindowId(WXHWND hWnd
);
266 // Does this window style specify any border?
267 inline bool wxStyleHasBorder(long style
)
269 return (style
& (wxSIMPLE_BORDER
| wxRAISED_BORDER
|
270 wxSUNKEN_BORDER
| wxDOUBLE_BORDER
)) != 0;