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