]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: private.h | |
a23fd0e1 VZ |
3 | // Purpose: Private declarations: as this header is only included by |
4 | // wxWindows itself, it may contain identifiers which don't start | |
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 |
c085e333 | 11 | // Licence: wxWindows licence |
2bda0e17 KB |
12 | ///////////////////////////////////////////////////////////////////////////// |
13 | ||
bbcdf8bc JS |
14 | #ifndef _WX_PRIVATE_H_ |
15 | #define _WX_PRIVATE_H_ | |
2bda0e17 | 16 | |
5438a566 VZ |
17 | #ifndef STRICT |
18 | #define STRICT 1 | |
19 | #endif | |
20 | ||
2bda0e17 KB |
21 | #include <windows.h> |
22 | ||
04ef50df JS |
23 | #ifdef __WXMICROWIN__ |
24 | /* Extra prototypes and symbols not defined by MicroWindows */ | |
25 | #include "wx/msw/microwin.h" | |
26 | #endif | |
27 | ||
42e69d6b VZ |
28 | // undefine conflicting symbols which were defined in windows.h |
29 | #include "wx/msw/winundef.h" | |
30 | ||
a23fd0e1 | 31 | class WXDLLEXPORT wxFont; |
d427503c | 32 | class WXDLLEXPORT wxWindow; |
2bda0e17 | 33 | |
42e69d6b VZ |
34 | // --------------------------------------------------------------------------- |
35 | // private constants | |
36 | // --------------------------------------------------------------------------- | |
37 | ||
38 | // Conversion | |
39 | static const double METRIC_CONVERSION_CONSTANT = 0.0393700787; | |
40 | ||
41 | // Scaling factors for various unit conversions | |
42 | static const double mm2inches = (METRIC_CONVERSION_CONSTANT); | |
43 | static const double inches2mm = (1/METRIC_CONVERSION_CONSTANT); | |
44 | ||
45 | static const double mm2twips = (METRIC_CONVERSION_CONSTANT*1440); | |
46 | static const double twips2mm = (1/(METRIC_CONVERSION_CONSTANT*1440)); | |
47 | ||
48 | static const double mm2pt = (METRIC_CONVERSION_CONSTANT*72); | |
49 | static const double pt2mm = (1/(METRIC_CONVERSION_CONSTANT*72)); | |
50 | ||
a23fd0e1 VZ |
51 | // --------------------------------------------------------------------------- |
52 | // standard icons from the resources | |
53 | // --------------------------------------------------------------------------- | |
2bda0e17 | 54 | |
b568d04f VZ |
55 | #if wxUSE_GUI |
56 | ||
2bda0e17 KB |
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; | |
64 | ||
b568d04f VZ |
65 | #endif // wxUSE_GUI |
66 | ||
a23fd0e1 | 67 | // --------------------------------------------------------------------------- |
11c7d5b6 | 68 | // define things missing from some compilers' headers |
a23fd0e1 | 69 | // --------------------------------------------------------------------------- |
c455ab93 | 70 | |
b64f0a5f | 71 | #if defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS |
01dba85a | 72 | #ifndef ZeroMemory |
11c7d5b6 | 73 | inline void ZeroMemory(void *buf, size_t len) { memset(buf, 0, len); } |
01dba85a | 74 | #endif |
11c7d5b6 VZ |
75 | #endif // old mingw32 |
76 | ||
77 | // this defines a CASTWNDPROC macro which casts a pointer to the type of a | |
78 | // window proc | |
62448488 | 79 | |
ae090fdb | 80 | #if defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__) |
f6bcfd97 | 81 | #define CASTWNDPROC (long unsigned) |
c3b177ae | 82 | #else |
f6bcfd97 BP |
83 | #if defined(STRICT) || defined(__GNUC__) |
84 | typedef WNDPROC WndProcCast; | |
85 | #else | |
86 | typedef FARPROC WndProcCast; | |
87 | #endif | |
88 | #define CASTWNDPROC (WndProcCast) | |
89 | #endif // __GNUWIN32_OLD__ | |
2bda0e17 | 90 | |
a23fd0e1 VZ |
91 | // --------------------------------------------------------------------------- |
92 | // some stuff for old Windows versions (FIXME: what does it do here??) | |
93 | // --------------------------------------------------------------------------- | |
94 | ||
c085e333 | 95 | #if !defined(APIENTRY) // NT defines APIENTRY, 3.x not |
a23fd0e1 | 96 | #define APIENTRY FAR PASCAL |
2bda0e17 | 97 | #endif |
c085e333 | 98 | |
2bda0e17 | 99 | #ifdef __WIN32__ |
a23fd0e1 | 100 | #define _EXPORT |
2bda0e17 | 101 | #else |
a23fd0e1 VZ |
102 | #define _EXPORT _export |
103 | #endif | |
104 | ||
105 | #ifndef __WIN32__ | |
106 | typedef signed short int SHORT; | |
2bda0e17 | 107 | #endif |
c085e333 VZ |
108 | |
109 | #if !defined(__WIN32__) // 3.x uses FARPROC for dialogs | |
27a9bd48 | 110 | #ifndef STRICT |
a23fd0e1 | 111 | #define DLGPROC FARPROC |
2bda0e17 | 112 | #endif |
27a9bd48 | 113 | #endif |
2bda0e17 | 114 | |
47d67540 | 115 | #if wxUSE_PENWIN |
cc2b7472 VZ |
116 | WXDLLEXPORT void wxRegisterPenWin(); |
117 | WXDLLEXPORT void wxCleanUpPenWin(); | |
118 | WXDLLEXPORT void wxEnablePenAppHooks (bool hook); | |
119 | #endif // wxUSE_PENWIN | |
2bda0e17 | 120 | |
47d67540 | 121 | #if wxUSE_ITSY_BITSY |
a23fd0e1 VZ |
122 | #define IBS_HORZCAPTION 0x4000L |
123 | #define IBS_VERTCAPTION 0x8000L | |
2bda0e17 | 124 | |
a23fd0e1 VZ |
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 | |
2bda0e17 | 130 | |
1f112209 | 131 | #if wxUSE_CTL3D |
a23fd0e1 VZ |
132 | #include "wx/msw/ctl3d/ctl3d.h" |
133 | #endif // wxUSE_CTL3D | |
2bda0e17 KB |
134 | |
135 | /* | |
136 | * Decide what window classes we're going to use | |
137 | * for this combination of CTl3D/FAFA settings | |
138 | */ | |
c085e333 | 139 | |
223d09f6 | 140 | #define STATIC_CLASS wxT("STATIC") |
2bda0e17 | 141 | #define STATIC_FLAGS (SS_LEFT|WS_CHILD|WS_VISIBLE) |
223d09f6 | 142 | #define CHECK_CLASS wxT("BUTTON") |
2bda0e17 KB |
143 | #define CHECK_FLAGS (BS_AUTOCHECKBOX|WS_TABSTOP|WS_CHILD) |
144 | #define CHECK_IS_FAFA FALSE | |
223d09f6 | 145 | #define RADIO_CLASS wxT("BUTTON") |
2bda0e17 KB |
146 | #define RADIO_FLAGS (BS_AUTORADIOBUTTON|WS_CHILD|WS_VISIBLE) |
147 | #define RADIO_SIZE 20 | |
148 | #define RADIO_IS_FAFA FALSE | |
149 | #define PURE_WINDOWS | |
223d09f6 | 150 | #define GROUP_CLASS wxT("BUTTON") |
2bda0e17 KB |
151 | #define GROUP_FLAGS (BS_GROUPBOX|WS_CHILD|WS_VISIBLE) |
152 | ||
153 | /* | |
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) | |
156 | */ | |
157 | ||
a23fd0e1 VZ |
158 | // --------------------------------------------------------------------------- |
159 | // misc macros | |
160 | // --------------------------------------------------------------------------- | |
161 | ||
2bda0e17 | 162 | #define MEANING_CHARACTER '0' |
5d368213 | 163 | #define DEFAULT_ITEM_WIDTH 100 |
2bda0e17 | 164 | #define DEFAULT_ITEM_HEIGHT 80 |
1c4a764c VZ |
165 | |
166 | // Scale font to get edit control height | |
f6bcfd97 BP |
167 | //#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (3*(cy)/2) |
168 | #define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (cy+8) | |
2bda0e17 KB |
169 | |
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); | |
174 | ||
a23fd0e1 VZ |
175 | // --------------------------------------------------------------------------- |
176 | // constants which might miss from some compilers' headers | |
177 | // --------------------------------------------------------------------------- | |
178 | ||
179 | #if !defined(__WIN32__) && !defined(WS_EX_CLIENTEDGE) | |
180 | #define WS_EX_CLIENTEDGE 0 | |
181 | #endif | |
182 | ||
183 | #if defined(__WIN32__) && !defined(WS_EX_CLIENTEDGE) | |
184 | #define WS_EX_CLIENTEDGE 0x00000200L | |
185 | #endif | |
186 | ||
187 | #ifndef ENDSESSION_LOGOFF | |
188 | #define ENDSESSION_LOGOFF 0x80000000 | |
189 | #endif | |
190 | ||
11c7d5b6 VZ |
191 | // --------------------------------------------------------------------------- |
192 | // useful macros and functions | |
193 | // --------------------------------------------------------------------------- | |
194 | ||
195 | // a wrapper macro for ZeroMemory() | |
04ef50df | 196 | #if defined(__WIN32__) && !defined(__WXMICROWIN__) |
11c7d5b6 | 197 | #define wxZeroMemory(obj) ::ZeroMemory(&obj, sizeof(obj)) |
0e528b99 JS |
198 | #else |
199 | #define wxZeroMemory(obj) memset((void*) & obj, 0, sizeof(obj)) | |
200 | #endif | |
11c7d5b6 | 201 | |
f6bcfd97 BP |
202 | #if wxUSE_GUI |
203 | ||
01dba85a JS |
204 | #include <wx/gdicmn.h> |
205 | ||
11c7d5b6 VZ |
206 | // make conversion from wxColour and COLORREF a bit less painful |
207 | inline COLORREF wxColourToRGB(const wxColour& c) | |
208 | { | |
209 | return RGB(c.Red(), c.Green(), c.Blue()); | |
210 | } | |
211 | ||
212 | inline void wxRGBToColour(wxColour& c, COLORREF rgb) | |
213 | { | |
214 | c.Set(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb)); | |
215 | } | |
216 | ||
ed791986 VZ |
217 | // copy Windows RECT to our wxRect |
218 | inline void wxCopyRECTToRect(const RECT& r, wxRect& rect) | |
219 | { | |
220 | rect.y = r.top; | |
221 | rect.x = r.left; | |
222 | rect.width = r.right - r.left; | |
223 | rect.height = r.bottom - r.top; | |
224 | } | |
225 | ||
d9317fd4 VZ |
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); | |
230 | ||
4b7f2165 VZ |
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); | |
234 | ||
8614c467 VZ |
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 | |
237 | // | |
238 | // these macros are standard now (Win98) but some older headers don't have them | |
239 | #ifndef GET_X_LPARAM | |
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 | |
243 | ||
a95e38c0 | 244 | // get the current state of SHIFT/CTRL keys |
1f80a703 | 245 | inline bool wxIsShiftDown() |
a95e38c0 VZ |
246 | { |
247 | return (::GetKeyState(VK_SHIFT) & 0x100) != 0; | |
248 | } | |
249 | ||
1f80a703 | 250 | inline bool wxIsCtrlDown() |
a95e38c0 VZ |
251 | { |
252 | return (::GetKeyState(VK_CONTROL) & 0x100) != 0; | |
253 | } | |
254 | ||
6d167489 VZ |
255 | // --------------------------------------------------------------------------- |
256 | // small helper classes | |
257 | // --------------------------------------------------------------------------- | |
258 | ||
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 | |
261 | class ScreenHDC | |
262 | { | |
263 | public: | |
264 | ScreenHDC() { m_hdc = GetDC(NULL); } | |
265 | ~ScreenHDC() { ReleaseDC(NULL, m_hdc); } | |
266 | operator HDC() const { return m_hdc; } | |
267 | ||
268 | private: | |
269 | HDC m_hdc; | |
270 | }; | |
271 | ||
a23fd0e1 | 272 | // --------------------------------------------------------------------------- |
42e69d6b | 273 | // macros to make casting between WXFOO and FOO a bit easier: the GetFoo() |
c50f1fb9 VZ |
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) | |
a23fd0e1 VZ |
277 | // --------------------------------------------------------------------------- |
278 | ||
279 | #define GetHwnd() ((HWND)GetHWND()) | |
c50f1fb9 VZ |
280 | #define GetHwndOf(win) ((HWND)((win)->GetHWND())) |
281 | // old name | |
282 | #define GetWinHwnd GetHwndOf | |
a23fd0e1 VZ |
283 | |
284 | #define GetHdc() ((HDC)GetHDC()) | |
c50f1fb9 | 285 | #define GetHdcOf(dc) ((HDC)(dc).GetHDC()) |
a23fd0e1 | 286 | |
11c7d5b6 VZ |
287 | #define GetHbitmap() ((HBITMAP)GetHBITMAP()) |
288 | #define GetHbitmapOf(bmp) ((HBITMAP)(bmp).GetHBITMAP()) | |
289 | ||
42e69d6b | 290 | #define GetHicon() ((HICON)GetHICON()) |
c50f1fb9 | 291 | #define GetHiconOf(icon) ((HICON)(icon).GetHICON()) |
42e69d6b | 292 | |
a23fd0e1 | 293 | #define GetHaccel() ((HACCEL)GetHACCEL()) |
c50f1fb9 VZ |
294 | #define GetHaccelOf(table) ((HACCEL)((table).GetHACCEL())) |
295 | ||
296 | #define GetHmenu() ((HMENU)GetHMenu()) | |
297 | #define GetHmenuOf(menu) ((HMENU)menu->GetHMenu()) | |
a23fd0e1 | 298 | |
bfbd6dc1 VZ |
299 | #define GetHcursor() ((HCURSOR)GetHCURSOR()) |
300 | #define GetHcursorOf(cursor) ((HCURSOR)(cursor).GetHCURSOR()) | |
301 | ||
f6bcfd97 BP |
302 | #define GetHfont() ((HFONT)GetHFONT()) |
303 | #define GetHfontOf(font) ((HFONT)(font).GetHFONT()) | |
304 | ||
1e6feb95 VZ |
305 | #define GetHrgn() ((HRGN)GetHRGN()) |
306 | #define GetHrgnOf(rgn) ((HRGN)(rgn).GetHRGN()) | |
307 | ||
f6bcfd97 BP |
308 | #endif // wxUSE_GUI |
309 | ||
a23fd0e1 VZ |
310 | // --------------------------------------------------------------------------- |
311 | // global data | |
312 | // --------------------------------------------------------------------------- | |
2bda0e17 | 313 | |
621ae68a | 314 | WXDLLEXPORT_DATA(extern wxChar*) wxBuffer; |
b568d04f | 315 | |
2bda0e17 KB |
316 | WXDLLEXPORT_DATA(extern HINSTANCE) wxhInstance; |
317 | ||
a23fd0e1 VZ |
318 | // --------------------------------------------------------------------------- |
319 | // global functions | |
320 | // --------------------------------------------------------------------------- | |
321 | ||
18600546 GRG |
322 | extern "C" |
323 | { | |
b568d04f | 324 | WXDLLEXPORT HINSTANCE wxGetInstance(); |
18600546 GRG |
325 | } |
326 | ||
a23fd0e1 VZ |
327 | WXDLLEXPORT void wxSetInstance(HINSTANCE hInst); |
328 | ||
b568d04f VZ |
329 | #if wxUSE_GUI |
330 | ||
bfbd6dc1 VZ |
331 | // cursor stuff |
332 | extern HCURSOR wxGetCurrentBusyCursor(); // from msw/utils.cpp | |
333 | extern const wxCursor *wxGetGlobalCursor(); // from msw/cursor.cpp | |
334 | ||
a23fd0e1 VZ |
335 | WXDLLEXPORT wxWindow* wxFindWinFromHandle(WXHWND hWnd); |
336 | ||
f68586e5 | 337 | WXDLLEXPORT void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont *the_font); |
11c7d5b6 VZ |
338 | WXDLLEXPORT void wxFillLogFont(LOGFONT *logFont, const wxFont *font); |
339 | WXDLLEXPORT wxFont wxCreateFontFromLogFont(const LOGFONT *logFont); | |
f6bcfd97 | 340 | WXDLLEXPORT wxFontEncoding wxGetFontEncFromCharSet(int charset); |
a23fd0e1 VZ |
341 | |
342 | WXDLLEXPORT void wxSliderEvent(WXHWND control, WXWORD wParam, WXWORD pos); | |
343 | WXDLLEXPORT void wxScrollBarEvent(WXHWND hbar, WXWORD wParam, WXWORD pos); | |
344 | ||
345 | // Find maximum size of window/rectangle | |
346 | WXDLLEXPORT extern void wxFindMaxSize(WXHWND hwnd, RECT *rect); | |
347 | ||
184b5d99 JS |
348 | WXDLLEXPORT wxWindow* wxFindControlFromHandle(WXHWND hWnd); |
349 | WXDLLEXPORT void wxAddControlHandle(WXHWND hWnd, wxWindow *item); | |
2bda0e17 | 350 | |
1c4a764c | 351 | // Safely get the window text (i.e. without using fixed size buffer) |
184b5d99 | 352 | WXDLLEXPORT extern wxString wxGetWindowText(WXHWND hWnd); |
1c4a764c | 353 | |
cc2b7472 VZ |
354 | // get the window class name |
355 | WXDLLEXPORT extern wxString wxGetWindowClass(WXHWND hWnd); | |
356 | ||
42e69d6b VZ |
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); | |
cc2b7472 | 360 | |
c085e333 | 361 | // Does this window style specify any border? |
184b5d99 | 362 | inline bool wxStyleHasBorder(long style) |
c085e333 VZ |
363 | { |
364 | return (style & (wxSIMPLE_BORDER | wxRAISED_BORDER | | |
365 | wxSUNKEN_BORDER | wxDOUBLE_BORDER)) != 0; | |
366 | } | |
367 | ||
8614c467 VZ |
368 | // find the window for HWND which is part of some wxWindow, returns just the |
369 | // corresponding wxWindow for HWND which just is one | |
370 | // | |
371 | // may return NULL | |
372 | extern wxWindow *wxGetWindowFromHWND(WXHWND hwnd); | |
373 | ||
b568d04f VZ |
374 | #endif // wxUSE_GUI |
375 | ||
2bda0e17 | 376 | #endif |
bbcdf8bc | 377 | // _WX_PRIVATE_H_ |