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