]>
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 | ||
368c9c6d JS |
23 | |
24 | #if defined (__WXWINCE__) | |
25 | #include <wingdi.h> // RGB, COLORREF | |
26 | #include <winuser.h> // Global Namespaces ::GetKeyState, ::GetWindowRect | |
27 | #endif | |
28 | ||
29 | ||
04ef50df | 30 | #ifdef __WXMICROWIN__ |
b225f659 VZ |
31 | // Extra prototypes and symbols not defined by MicroWindows |
32 | #include "wx/msw/microwin.h" | |
04ef50df JS |
33 | #endif |
34 | ||
42e69d6b VZ |
35 | // undefine conflicting symbols which were defined in windows.h |
36 | #include "wx/msw/winundef.h" | |
37 | ||
3d5231db VS |
38 | // Include fixes for MSLU: |
39 | #include "wx/msw/mslu.h" | |
40 | ||
3a922bb4 RL |
41 | #include "wx/log.h" |
42 | ||
a23fd0e1 | 43 | class WXDLLEXPORT wxFont; |
d427503c | 44 | class WXDLLEXPORT wxWindow; |
2bda0e17 | 45 | |
42e69d6b VZ |
46 | // --------------------------------------------------------------------------- |
47 | // private constants | |
48 | // --------------------------------------------------------------------------- | |
49 | ||
50 | // Conversion | |
51 | static const double METRIC_CONVERSION_CONSTANT = 0.0393700787; | |
52 | ||
53 | // Scaling factors for various unit conversions | |
54 | static const double mm2inches = (METRIC_CONVERSION_CONSTANT); | |
55 | static const double inches2mm = (1/METRIC_CONVERSION_CONSTANT); | |
56 | ||
57 | static const double mm2twips = (METRIC_CONVERSION_CONSTANT*1440); | |
58 | static const double twips2mm = (1/(METRIC_CONVERSION_CONSTANT*1440)); | |
59 | ||
60 | static const double mm2pt = (METRIC_CONVERSION_CONSTANT*72); | |
61 | static const double pt2mm = (1/(METRIC_CONVERSION_CONSTANT*72)); | |
62 | ||
a23fd0e1 VZ |
63 | // --------------------------------------------------------------------------- |
64 | // standard icons from the resources | |
65 | // --------------------------------------------------------------------------- | |
2bda0e17 | 66 | |
b568d04f VZ |
67 | #if wxUSE_GUI |
68 | ||
2bda0e17 KB |
69 | WXDLLEXPORT_DATA(extern HICON) wxSTD_FRAME_ICON; |
70 | WXDLLEXPORT_DATA(extern HICON) wxSTD_MDIPARENTFRAME_ICON; | |
71 | WXDLLEXPORT_DATA(extern HICON) wxSTD_MDICHILDFRAME_ICON; | |
72 | WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_FRAME_ICON; | |
73 | WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDIPARENTFRAME_ICON; | |
74 | WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDICHILDFRAME_ICON; | |
75 | WXDLLEXPORT_DATA(extern HFONT) wxSTATUS_LINE_FONT; | |
76 | ||
b568d04f VZ |
77 | #endif // wxUSE_GUI |
78 | ||
a23fd0e1 | 79 | // --------------------------------------------------------------------------- |
11c7d5b6 | 80 | // define things missing from some compilers' headers |
a23fd0e1 | 81 | // --------------------------------------------------------------------------- |
c455ab93 | 82 | |
b64f0a5f | 83 | #if defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS |
01dba85a | 84 | #ifndef ZeroMemory |
11c7d5b6 | 85 | inline void ZeroMemory(void *buf, size_t len) { memset(buf, 0, len); } |
01dba85a | 86 | #endif |
11c7d5b6 VZ |
87 | #endif // old mingw32 |
88 | ||
89 | // this defines a CASTWNDPROC macro which casts a pointer to the type of a | |
90 | // window proc | |
552a0ebd JS |
91 | #if defined(__WXWINCE__) |
92 | typedef FARPROC WndProcCast; | |
93 | #elif defined(STRICT) || defined(__GNUC__) | |
ebb0781f | 94 | typedef WNDPROC WndProcCast; |
c3b177ae | 95 | #else |
ebb0781f VZ |
96 | typedef FARPROC WndProcCast; |
97 | #endif | |
98 | ||
552a0ebd | 99 | |
ebb0781f | 100 | #define CASTWNDPROC (WndProcCast) |
2bda0e17 | 101 | |
a23fd0e1 VZ |
102 | // --------------------------------------------------------------------------- |
103 | // some stuff for old Windows versions (FIXME: what does it do here??) | |
104 | // --------------------------------------------------------------------------- | |
105 | ||
c085e333 | 106 | #if !defined(APIENTRY) // NT defines APIENTRY, 3.x not |
a23fd0e1 | 107 | #define APIENTRY FAR PASCAL |
2bda0e17 | 108 | #endif |
c085e333 | 109 | |
2bda0e17 | 110 | #ifdef __WIN32__ |
a23fd0e1 | 111 | #define _EXPORT |
2bda0e17 | 112 | #else |
a23fd0e1 VZ |
113 | #define _EXPORT _export |
114 | #endif | |
115 | ||
116 | #ifndef __WIN32__ | |
117 | typedef signed short int SHORT; | |
2bda0e17 | 118 | #endif |
c085e333 VZ |
119 | |
120 | #if !defined(__WIN32__) // 3.x uses FARPROC for dialogs | |
27a9bd48 | 121 | #ifndef STRICT |
a23fd0e1 | 122 | #define DLGPROC FARPROC |
2bda0e17 | 123 | #endif |
27a9bd48 | 124 | #endif |
2bda0e17 | 125 | |
47d67540 | 126 | #if wxUSE_PENWIN |
cc2b7472 VZ |
127 | WXDLLEXPORT void wxRegisterPenWin(); |
128 | WXDLLEXPORT void wxCleanUpPenWin(); | |
129 | WXDLLEXPORT void wxEnablePenAppHooks (bool hook); | |
130 | #endif // wxUSE_PENWIN | |
2bda0e17 | 131 | |
47d67540 | 132 | #if wxUSE_ITSY_BITSY |
a23fd0e1 VZ |
133 | #define IBS_HORZCAPTION 0x4000L |
134 | #define IBS_VERTCAPTION 0x8000L | |
2bda0e17 | 135 | |
a23fd0e1 VZ |
136 | UINT WINAPI ibGetCaptionSize( HWND hWnd ) ; |
137 | UINT WINAPI ibSetCaptionSize( HWND hWnd, UINT nSize ) ; | |
138 | LRESULT WINAPI ibDefWindowProc( HWND hWnd, UINT uiMsg, WPARAM wParam, LPARAM lParam ) ; | |
139 | VOID WINAPI ibAdjustWindowRect( HWND hWnd, LPRECT lprc ) ; | |
140 | #endif // wxUSE_ITSY_BITSY | |
2bda0e17 | 141 | |
1f112209 | 142 | #if wxUSE_CTL3D |
a23fd0e1 VZ |
143 | #include "wx/msw/ctl3d/ctl3d.h" |
144 | #endif // wxUSE_CTL3D | |
2bda0e17 KB |
145 | |
146 | /* | |
147 | * Decide what window classes we're going to use | |
148 | * for this combination of CTl3D/FAFA settings | |
149 | */ | |
c085e333 | 150 | |
223d09f6 | 151 | #define STATIC_CLASS wxT("STATIC") |
2bda0e17 | 152 | #define STATIC_FLAGS (SS_LEFT|WS_CHILD|WS_VISIBLE) |
223d09f6 | 153 | #define CHECK_CLASS wxT("BUTTON") |
2bda0e17 KB |
154 | #define CHECK_FLAGS (BS_AUTOCHECKBOX|WS_TABSTOP|WS_CHILD) |
155 | #define CHECK_IS_FAFA FALSE | |
223d09f6 | 156 | #define RADIO_CLASS wxT("BUTTON") |
2bda0e17 KB |
157 | #define RADIO_FLAGS (BS_AUTORADIOBUTTON|WS_CHILD|WS_VISIBLE) |
158 | #define RADIO_SIZE 20 | |
159 | #define RADIO_IS_FAFA FALSE | |
160 | #define PURE_WINDOWS | |
223d09f6 | 161 | #define GROUP_CLASS wxT("BUTTON") |
2bda0e17 KB |
162 | #define GROUP_FLAGS (BS_GROUPBOX|WS_CHILD|WS_VISIBLE) |
163 | ||
164 | /* | |
165 | #define BITCHECK_FLAGS (FB_BITMAP|FC_BUTTONDRAW|FC_DEFAULT|WS_VISIBLE) | |
166 | #define BITRADIO_FLAGS (FC_BUTTONDRAW|FB_BITMAP|FC_RADIO|WS_CHILD|WS_VISIBLE) | |
167 | */ | |
168 | ||
a23fd0e1 VZ |
169 | // --------------------------------------------------------------------------- |
170 | // misc macros | |
171 | // --------------------------------------------------------------------------- | |
172 | ||
2bda0e17 | 173 | #define MEANING_CHARACTER '0' |
5d368213 | 174 | #define DEFAULT_ITEM_WIDTH 100 |
2bda0e17 | 175 | #define DEFAULT_ITEM_HEIGHT 80 |
1c4a764c VZ |
176 | |
177 | // Scale font to get edit control height | |
f6bcfd97 BP |
178 | //#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (3*(cy)/2) |
179 | #define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (cy+8) | |
2bda0e17 KB |
180 | |
181 | // Generic subclass proc, for panel item moving/sizing and intercept | |
182 | // EDIT control VK_RETURN messages | |
183 | extern LONG APIENTRY _EXPORT | |
184 | wxSubclassedGenericControlProc(WXHWND hWnd, WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
185 | ||
a23fd0e1 VZ |
186 | // --------------------------------------------------------------------------- |
187 | // constants which might miss from some compilers' headers | |
188 | // --------------------------------------------------------------------------- | |
189 | ||
190 | #if !defined(__WIN32__) && !defined(WS_EX_CLIENTEDGE) | |
191 | #define WS_EX_CLIENTEDGE 0 | |
192 | #endif | |
193 | ||
194 | #if defined(__WIN32__) && !defined(WS_EX_CLIENTEDGE) | |
195 | #define WS_EX_CLIENTEDGE 0x00000200L | |
196 | #endif | |
197 | ||
198 | #ifndef ENDSESSION_LOGOFF | |
199 | #define ENDSESSION_LOGOFF 0x80000000 | |
200 | #endif | |
201 | ||
11c7d5b6 VZ |
202 | // --------------------------------------------------------------------------- |
203 | // useful macros and functions | |
204 | // --------------------------------------------------------------------------- | |
205 | ||
206 | // a wrapper macro for ZeroMemory() | |
04ef50df | 207 | #if defined(__WIN32__) && !defined(__WXMICROWIN__) |
11c7d5b6 | 208 | #define wxZeroMemory(obj) ::ZeroMemory(&obj, sizeof(obj)) |
0e528b99 JS |
209 | #else |
210 | #define wxZeroMemory(obj) memset((void*) & obj, 0, sizeof(obj)) | |
211 | #endif | |
11c7d5b6 | 212 | |
f6bcfd97 BP |
213 | #if wxUSE_GUI |
214 | ||
01dba85a | 215 | #include <wx/gdicmn.h> |
ed39ff57 | 216 | #include <wx/colour.h> |
01dba85a | 217 | |
11c7d5b6 VZ |
218 | // make conversion from wxColour and COLORREF a bit less painful |
219 | inline COLORREF wxColourToRGB(const wxColour& c) | |
4ab861e5 VZ |
220 | { |
221 | return RGB(c.Red(), c.Green(), c.Blue()); | |
222 | } | |
223 | ||
224 | inline COLORREF wxColourToPalRGB(const wxColour& c) | |
11c7d5b6 | 225 | { |
19193a2c | 226 | return PALETTERGB(c.Red(), c.Green(), c.Blue()); |
11c7d5b6 VZ |
227 | } |
228 | ||
d23c8ba2 VZ |
229 | inline wxColour wxRGBToColour(COLORREF rgb) |
230 | { | |
231 | return wxColour(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb)); | |
232 | } | |
233 | ||
11c7d5b6 VZ |
234 | inline void wxRGBToColour(wxColour& c, COLORREF rgb) |
235 | { | |
236 | c.Set(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb)); | |
237 | } | |
238 | ||
90c1530a VZ |
239 | // get the standard colour map for some standard colours - see comment in this |
240 | // function to understand why is it needed and when should it be used | |
241 | // | |
242 | // it returns a wxCOLORMAP (can't use COLORMAP itself here as comctl32.dll | |
243 | // might be not included/available) array of size wxSTD_COLOUR_MAX | |
244 | // | |
245 | // NB: if you change these colours, update wxBITMAP_STD_COLOURS in the | |
246 | // resources as well: it must have the same number of pixels! | |
247 | enum wxSTD_COLOUR | |
248 | { | |
249 | wxSTD_COL_BTNTEXT, | |
250 | wxSTD_COL_BTNSHADOW, | |
251 | wxSTD_COL_BTNFACE, | |
252 | wxSTD_COL_BTNHIGHLIGHT, | |
253 | wxSTD_COL_MAX, | |
254 | }; | |
255 | ||
256 | struct WXDLLEXPORT wxCOLORMAP | |
257 | { | |
258 | COLORREF from, to; | |
259 | }; | |
260 | ||
261 | // this function is implemented in src/msw/window.cpp | |
262 | extern wxCOLORMAP *wxGetStdColourMap(); | |
263 | ||
ed791986 VZ |
264 | // copy Windows RECT to our wxRect |
265 | inline void wxCopyRECTToRect(const RECT& r, wxRect& rect) | |
266 | { | |
267 | rect.y = r.top; | |
268 | rect.x = r.left; | |
269 | rect.width = r.right - r.left; | |
270 | rect.height = r.bottom - r.top; | |
271 | } | |
272 | ||
d9317fd4 VZ |
273 | // translations between HIMETRIC units (which OLE likes) and pixels (which are |
274 | // liked by all the others) - implemented in msw/utilsexc.cpp | |
275 | extern void HIMETRICToPixel(LONG *x, LONG *y); | |
276 | extern void PixelToHIMETRIC(LONG *x, LONG *y); | |
277 | ||
4b7f2165 VZ |
278 | // Windows convention of the mask is opposed to the wxWindows one, so we need |
279 | // to invert the mask each time we pass one/get one to/from Windows | |
280 | extern HBITMAP wxInvertMask(HBITMAP hbmpMask, int w = 0, int h = 0); | |
281 | ||
8614c467 VZ |
282 | // get (x, y) from DWORD - notice that HI/LOWORD can *not* be used because they |
283 | // will fail on system with multiple monitors where the coords may be negative | |
284 | // | |
285 | // these macros are standard now (Win98) but some older headers don't have them | |
286 | #ifndef GET_X_LPARAM | |
287 | #define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp)) | |
288 | #define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp)) | |
289 | #endif // GET_X_LPARAM | |
290 | ||
a95e38c0 | 291 | // get the current state of SHIFT/CTRL keys |
1f80a703 | 292 | inline bool wxIsShiftDown() |
a95e38c0 VZ |
293 | { |
294 | return (::GetKeyState(VK_SHIFT) & 0x100) != 0; | |
295 | } | |
296 | ||
1f80a703 | 297 | inline bool wxIsCtrlDown() |
a95e38c0 VZ |
298 | { |
299 | return (::GetKeyState(VK_CONTROL) & 0x100) != 0; | |
300 | } | |
301 | ||
82c9f85c VZ |
302 | // wrapper around GetWindowRect() and GetClientRect() APIs doing error checking |
303 | // for Win32 | |
304 | inline RECT wxGetWindowRect(HWND hwnd) | |
305 | { | |
306 | RECT rect; | |
307 | #ifdef __WIN16__ | |
308 | ::GetWindowRect(hwnd, &rect); | |
309 | #else // Win32 | |
310 | if ( !::GetWindowRect(hwnd, &rect) ) | |
311 | { | |
312 | wxLogLastError(_T("GetWindowRect")); | |
313 | } | |
314 | #endif // Win16/32 | |
315 | ||
316 | return rect; | |
317 | } | |
318 | ||
319 | inline RECT wxGetClientRect(HWND hwnd) | |
320 | { | |
321 | RECT rect; | |
322 | #ifdef __WIN16__ | |
323 | ::GetClientRect(hwnd, &rect); | |
324 | #else // Win32 | |
325 | if ( !::GetClientRect(hwnd, &rect) ) | |
326 | { | |
327 | wxLogLastError(_T("GetClientRect")); | |
328 | } | |
329 | #endif // Win16/32 | |
330 | ||
331 | return rect; | |
332 | } | |
333 | ||
6d167489 VZ |
334 | // --------------------------------------------------------------------------- |
335 | // small helper classes | |
336 | // --------------------------------------------------------------------------- | |
337 | ||
338 | // create an instance of this class and use it as the HDC for screen, will | |
339 | // automatically release the DC going out of scope | |
340 | class ScreenHDC | |
341 | { | |
342 | public: | |
091225b4 VZ |
343 | ScreenHDC() { m_hdc = ::GetDC(NULL); } |
344 | ~ScreenHDC() { ::ReleaseDC(NULL, m_hdc); } | |
345 | ||
346 | operator HDC() const { return m_hdc; } | |
347 | ||
348 | private: | |
349 | HDC m_hdc; | |
22f3361e VZ |
350 | |
351 | DECLARE_NO_COPY_CLASS(ScreenHDC) | |
091225b4 VZ |
352 | }; |
353 | ||
354 | // the same as ScreenHDC but for memory DCs: creates the HDC in ctor and | |
355 | // destroys it in dtor | |
356 | class MemoryHDC | |
357 | { | |
358 | public: | |
359 | MemoryHDC() { m_hdc = ::CreateCompatibleDC(NULL); } | |
1b80ba97 | 360 | ~MemoryHDC() { ::DeleteDC(m_hdc); } |
091225b4 VZ |
361 | |
362 | operator HDC() const { return m_hdc; } | |
6d167489 VZ |
363 | |
364 | private: | |
365 | HDC m_hdc; | |
22f3361e VZ |
366 | |
367 | DECLARE_NO_COPY_CLASS(MemoryHDC) | |
6d167489 VZ |
368 | }; |
369 | ||
091225b4 VZ |
370 | // a class which selects a GDI object into a DC in its ctor and deselects in |
371 | // dtor | |
372 | class SelectInHDC | |
373 | { | |
374 | public: | |
375 | SelectInHDC(HDC hdc, HGDIOBJ hgdiobj) : m_hdc(hdc) | |
376 | { m_hgdiobj = ::SelectObject(hdc, hgdiobj); } | |
377 | ||
378 | ~SelectInHDC() { ::SelectObject(m_hdc, m_hgdiobj); } | |
379 | ||
380 | // return true if the object was successfully selected | |
381 | operator bool() const { return m_hgdiobj != 0; } | |
382 | ||
383 | private: | |
384 | HDC m_hdc; | |
385 | HGDIOBJ m_hgdiobj; | |
22f3361e VZ |
386 | |
387 | DECLARE_NO_COPY_CLASS(SelectInHDC) | |
091225b4 VZ |
388 | }; |
389 | ||
a23fd0e1 | 390 | // --------------------------------------------------------------------------- |
42e69d6b | 391 | // macros to make casting between WXFOO and FOO a bit easier: the GetFoo() |
c50f1fb9 VZ |
392 | // returns Foo cast to the Windows type for oruselves, while GetFooOf() takes |
393 | // an argument which should be a pointer or reference to the object of the | |
394 | // corresponding class (this depends on the macro) | |
a23fd0e1 VZ |
395 | // --------------------------------------------------------------------------- |
396 | ||
397 | #define GetHwnd() ((HWND)GetHWND()) | |
c50f1fb9 VZ |
398 | #define GetHwndOf(win) ((HWND)((win)->GetHWND())) |
399 | // old name | |
400 | #define GetWinHwnd GetHwndOf | |
a23fd0e1 VZ |
401 | |
402 | #define GetHdc() ((HDC)GetHDC()) | |
c50f1fb9 | 403 | #define GetHdcOf(dc) ((HDC)(dc).GetHDC()) |
a23fd0e1 | 404 | |
11c7d5b6 VZ |
405 | #define GetHbitmap() ((HBITMAP)GetHBITMAP()) |
406 | #define GetHbitmapOf(bmp) ((HBITMAP)(bmp).GetHBITMAP()) | |
407 | ||
42e69d6b | 408 | #define GetHicon() ((HICON)GetHICON()) |
c50f1fb9 | 409 | #define GetHiconOf(icon) ((HICON)(icon).GetHICON()) |
42e69d6b | 410 | |
a23fd0e1 | 411 | #define GetHaccel() ((HACCEL)GetHACCEL()) |
c50f1fb9 VZ |
412 | #define GetHaccelOf(table) ((HACCEL)((table).GetHACCEL())) |
413 | ||
414 | #define GetHmenu() ((HMENU)GetHMenu()) | |
415 | #define GetHmenuOf(menu) ((HMENU)menu->GetHMenu()) | |
a23fd0e1 | 416 | |
bfbd6dc1 VZ |
417 | #define GetHcursor() ((HCURSOR)GetHCURSOR()) |
418 | #define GetHcursorOf(cursor) ((HCURSOR)(cursor).GetHCURSOR()) | |
419 | ||
f6bcfd97 BP |
420 | #define GetHfont() ((HFONT)GetHFONT()) |
421 | #define GetHfontOf(font) ((HFONT)(font).GetHFONT()) | |
422 | ||
1816a070 | 423 | #define GetHpalette() ((HPALETTE)GetHPALETTE()) |
b95edd47 | 424 | #define GetHpaletteOf(pal) ((HPALETTE)(pal).GetHPALETTE()) |
1816a070 | 425 | |
1e6feb95 VZ |
426 | #define GetHrgn() ((HRGN)GetHRGN()) |
427 | #define GetHrgnOf(rgn) ((HRGN)(rgn).GetHRGN()) | |
428 | ||
f6bcfd97 BP |
429 | #endif // wxUSE_GUI |
430 | ||
a23fd0e1 VZ |
431 | // --------------------------------------------------------------------------- |
432 | // global data | |
433 | // --------------------------------------------------------------------------- | |
2bda0e17 | 434 | |
621ae68a | 435 | WXDLLEXPORT_DATA(extern wxChar*) wxBuffer; |
b568d04f | 436 | |
2bda0e17 KB |
437 | WXDLLEXPORT_DATA(extern HINSTANCE) wxhInstance; |
438 | ||
a23fd0e1 VZ |
439 | // --------------------------------------------------------------------------- |
440 | // global functions | |
441 | // --------------------------------------------------------------------------- | |
442 | ||
18600546 GRG |
443 | extern "C" |
444 | { | |
b568d04f | 445 | WXDLLEXPORT HINSTANCE wxGetInstance(); |
18600546 GRG |
446 | } |
447 | ||
a23fd0e1 VZ |
448 | WXDLLEXPORT void wxSetInstance(HINSTANCE hInst); |
449 | ||
b568d04f VZ |
450 | #if wxUSE_GUI |
451 | ||
bfbd6dc1 VZ |
452 | // cursor stuff |
453 | extern HCURSOR wxGetCurrentBusyCursor(); // from msw/utils.cpp | |
454 | extern const wxCursor *wxGetGlobalCursor(); // from msw/cursor.cpp | |
455 | ||
f68586e5 | 456 | WXDLLEXPORT void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont *the_font); |
11c7d5b6 VZ |
457 | WXDLLEXPORT void wxFillLogFont(LOGFONT *logFont, const wxFont *font); |
458 | WXDLLEXPORT wxFont wxCreateFontFromLogFont(const LOGFONT *logFont); | |
f6bcfd97 | 459 | WXDLLEXPORT wxFontEncoding wxGetFontEncFromCharSet(int charset); |
a23fd0e1 VZ |
460 | |
461 | WXDLLEXPORT void wxSliderEvent(WXHWND control, WXWORD wParam, WXWORD pos); | |
462 | WXDLLEXPORT void wxScrollBarEvent(WXHWND hbar, WXWORD wParam, WXWORD pos); | |
463 | ||
464 | // Find maximum size of window/rectangle | |
465 | WXDLLEXPORT extern void wxFindMaxSize(WXHWND hwnd, RECT *rect); | |
466 | ||
1c4a764c | 467 | // Safely get the window text (i.e. without using fixed size buffer) |
184b5d99 | 468 | WXDLLEXPORT extern wxString wxGetWindowText(WXHWND hWnd); |
1c4a764c | 469 | |
cc2b7472 VZ |
470 | // get the window class name |
471 | WXDLLEXPORT extern wxString wxGetWindowClass(WXHWND hWnd); | |
472 | ||
42e69d6b VZ |
473 | // get the window id (should be unsigned, hence this is not wxWindowID which |
474 | // is, for mainly historical reasons, signed) | |
475 | WXDLLEXPORT extern WXWORD wxGetWindowId(WXHWND hWnd); | |
cc2b7472 | 476 | |
ae304744 VZ |
477 | // check if hWnd's WNDPROC is wndProc. Return true if yes, false if they are |
478 | // different | |
479 | WXDLLEXPORT extern bool wxCheckWindowWndProc(WXHWND hWnd, WXFARPROC wndProc); | |
eb5e4d9a | 480 | |
c085e333 | 481 | // Does this window style specify any border? |
184b5d99 | 482 | inline bool wxStyleHasBorder(long style) |
c085e333 | 483 | { |
82c9f85c VZ |
484 | return (style & (wxSIMPLE_BORDER | wxRAISED_BORDER | |
485 | wxSUNKEN_BORDER | wxDOUBLE_BORDER)) != 0; | |
c085e333 VZ |
486 | } |
487 | ||
ae304744 VZ |
488 | // ---------------------------------------------------------------------------- |
489 | // functions mapping HWND to wxWindow | |
490 | // ---------------------------------------------------------------------------- | |
491 | ||
492 | // this function simply checks whether the given hWnd corresponds to a wxWindow | |
493 | // and returns either that window if it does or NULL otherwise | |
494 | WXDLLEXPORT extern wxWindow* wxFindWinFromHandle(WXHWND hWnd); | |
495 | ||
496 | // find the window for HWND which is part of some wxWindow, i.e. unlike | |
497 | // wxFindWinFromHandle() above it will also work for "sub controls" of a | |
498 | // wxWindow. | |
8614c467 | 499 | // |
ae304744 VZ |
500 | // returns the wxWindow corresponding to the given HWND or NULL. |
501 | WXDLLEXPORT extern wxWindow *wxGetWindowFromHWND(WXHWND hwnd); | |
8614c467 | 502 | |
6bad4c32 RD |
503 | |
504 | // Get the size of an icon | |
ae304744 | 505 | WXDLLEXPORT extern wxSize wxGetHiconSize(HICON hicon); |
6bad4c32 | 506 | |
b568d04f VZ |
507 | #endif // wxUSE_GUI |
508 | ||
2bda0e17 | 509 | #endif |
bbcdf8bc | 510 | // _WX_PRIVATE_H_ |