]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/private.h
add directshow define
[wxWidgets.git] / include / wx / msw / private.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: private.h
3// Purpose: Private declarations: as this header is only included by
4// wxWidgets itself, it may contain identifiers which don't start
5// with "wx".
6// Author: Julian Smart
7// Modified by:
8// Created: 01/02/97
9// RCS-ID: $Id$
10// Copyright: (c) Julian Smart
11// Licence: wxWindows licence
12/////////////////////////////////////////////////////////////////////////////
13
14#ifndef _WX_PRIVATE_H_
15#define _WX_PRIVATE_H_
16
17#include "wx/msw/wrapwin.h"
18
19#ifdef __WXMICROWIN__
20 // Extra prototypes and symbols not defined by MicroWindows
21 #include "wx/msw/microwin.h"
22#endif
23
24// Include fixes for MSLU:
25#include "wx/msw/mslu.h"
26
27#include "wx/log.h"
28
29class WXDLLEXPORT wxFont;
30class WXDLLEXPORT wxWindow;
31
32// ---------------------------------------------------------------------------
33// private constants
34// ---------------------------------------------------------------------------
35
36// Conversion
37static const double METRIC_CONVERSION_CONSTANT = 0.0393700787;
38
39// Scaling factors for various unit conversions
40static const double mm2inches = (METRIC_CONVERSION_CONSTANT);
41static const double inches2mm = (1/METRIC_CONVERSION_CONSTANT);
42
43static const double mm2twips = (METRIC_CONVERSION_CONSTANT*1440);
44static const double twips2mm = (1/(METRIC_CONVERSION_CONSTANT*1440));
45
46static const double mm2pt = (METRIC_CONVERSION_CONSTANT*72);
47static const double pt2mm = (1/(METRIC_CONVERSION_CONSTANT*72));
48
49// 260 was taken from windef.h
50#ifndef MAX_PATH
51 #define MAX_PATH 260
52#endif
53
54// ---------------------------------------------------------------------------
55// standard icons from the resources
56// ---------------------------------------------------------------------------
57
58#if wxUSE_GUI
59
60WXDLLEXPORT_DATA(extern HICON) wxSTD_FRAME_ICON;
61WXDLLEXPORT_DATA(extern HICON) wxSTD_MDIPARENTFRAME_ICON;
62WXDLLEXPORT_DATA(extern HICON) wxSTD_MDICHILDFRAME_ICON;
63WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_FRAME_ICON;
64WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDIPARENTFRAME_ICON;
65WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDICHILDFRAME_ICON;
66WXDLLEXPORT_DATA(extern HFONT) wxSTATUS_LINE_FONT;
67
68#endif // wxUSE_GUI
69
70// ---------------------------------------------------------------------------
71// define things missing from some compilers' headers
72// ---------------------------------------------------------------------------
73
74#if defined(__WXWINCE__) || (defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS)
75#ifndef ZeroMemory
76 inline void ZeroMemory(void *buf, size_t len) { memset(buf, 0, len); }
77#endif
78#endif // old mingw32
79
80// this defines a CASTWNDPROC macro which casts a pointer to the type of a
81// window proc
82#if defined(STRICT) || defined(__GNUC__)
83 typedef WNDPROC WndProcCast;
84#else
85 typedef FARPROC WndProcCast;
86#endif
87
88
89#define CASTWNDPROC (WndProcCast)
90
91
92
93// ---------------------------------------------------------------------------
94// some stuff for old Windows versions (FIXME: what does it do here??)
95// ---------------------------------------------------------------------------
96
97#if !defined(APIENTRY) // NT defines APIENTRY, 3.x not
98 #define APIENTRY FAR PASCAL
99#endif
100
101#ifdef __WIN32__
102 #define _EXPORT
103#else
104 #define _EXPORT _export
105#endif
106
107#ifndef __WIN32__
108 typedef signed short int SHORT;
109#endif
110
111#if !defined(__WIN32__) // 3.x uses FARPROC for dialogs
112#ifndef STRICT
113 #define DLGPROC FARPROC
114#endif
115#endif
116
117#if wxUSE_PENWIN
118 WXDLLEXPORT void wxRegisterPenWin();
119 WXDLLEXPORT void wxCleanUpPenWin();
120 WXDLLEXPORT void wxEnablePenAppHooks (bool hook);
121#endif // wxUSE_PENWIN
122
123#if wxUSE_ITSY_BITSY
124 #define IBS_HORZCAPTION 0x4000L
125 #define IBS_VERTCAPTION 0x8000L
126
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
132
133#if wxUSE_CTL3D
134 #include "wx/msw/ctl3d/ctl3d.h"
135#endif // wxUSE_CTL3D
136
137/*
138 * Decide what window classes we're going to use
139 * for this combination of CTl3D/FAFA settings
140 */
141
142#define STATIC_CLASS wxT("STATIC")
143#define STATIC_FLAGS (SS_LEFT|WS_CHILD|WS_VISIBLE)
144#define CHECK_CLASS wxT("BUTTON")
145#define CHECK_FLAGS (BS_AUTOCHECKBOX|WS_TABSTOP|WS_CHILD)
146#define CHECK_IS_FAFA FALSE
147#define RADIO_CLASS wxT("BUTTON")
148#define RADIO_FLAGS (BS_AUTORADIOBUTTON|WS_CHILD|WS_VISIBLE)
149#define RADIO_SIZE 20
150#define RADIO_IS_FAFA FALSE
151#define PURE_WINDOWS
152#define GROUP_CLASS wxT("BUTTON")
153#define GROUP_FLAGS (BS_GROUPBOX|WS_CHILD|WS_VISIBLE)
154
155/*
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)
158*/
159
160// ---------------------------------------------------------------------------
161// misc macros
162// ---------------------------------------------------------------------------
163
164#define MEANING_CHARACTER '0'
165#define DEFAULT_ITEM_WIDTH 100
166#define DEFAULT_ITEM_HEIGHT 80
167
168// Scale font to get edit control height
169//#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (3*(cy)/2)
170#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (cy+8)
171
172// Generic subclass proc, for panel item moving/sizing and intercept
173// EDIT control VK_RETURN messages
174extern LONG APIENTRY _EXPORT
175 wxSubclassedGenericControlProc(WXHWND hWnd, WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
176
177// ---------------------------------------------------------------------------
178// useful macros and functions
179// ---------------------------------------------------------------------------
180
181// a wrapper macro for ZeroMemory()
182#if defined(__WIN32__) && !defined(__WXMICROWIN__)
183#define wxZeroMemory(obj) ::ZeroMemory(&obj, sizeof(obj))
184#else
185#define wxZeroMemory(obj) memset((void*) & obj, 0, sizeof(obj))
186#endif
187
188#if wxUSE_GUI
189
190#include <wx/gdicmn.h>
191#include <wx/colour.h>
192
193// make conversion from wxColour and COLORREF a bit less painful
194inline COLORREF wxColourToRGB(const wxColour& c)
195{
196 return RGB(c.Red(), c.Green(), c.Blue());
197}
198
199inline COLORREF wxColourToPalRGB(const wxColour& c)
200{
201 return PALETTERGB(c.Red(), c.Green(), c.Blue());
202}
203
204inline wxColour wxRGBToColour(COLORREF rgb)
205{
206 return wxColour(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb));
207}
208
209inline void wxRGBToColour(wxColour& c, COLORREF rgb)
210{
211 c.Set(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb));
212}
213
214// get the standard colour map for some standard colours - see comment in this
215// function to understand why is it needed and when should it be used
216//
217// it returns a wxCOLORMAP (can't use COLORMAP itself here as comctl32.dll
218// might be not included/available) array of size wxSTD_COLOUR_MAX
219//
220// NB: if you change these colours, update wxBITMAP_STD_COLOURS in the
221// resources as well: it must have the same number of pixels!
222enum wxSTD_COLOUR
223{
224 wxSTD_COL_BTNTEXT,
225 wxSTD_COL_BTNSHADOW,
226 wxSTD_COL_BTNFACE,
227 wxSTD_COL_BTNHIGHLIGHT,
228 wxSTD_COL_MAX
229};
230
231struct WXDLLEXPORT wxCOLORMAP
232{
233 COLORREF from, to;
234};
235
236// this function is implemented in src/msw/window.cpp
237extern wxCOLORMAP *wxGetStdColourMap();
238
239// copy Windows RECT to our wxRect
240inline void wxCopyRECTToRect(const RECT& r, wxRect& rect)
241{
242 rect.y = r.top;
243 rect.x = r.left;
244 rect.width = r.right - r.left;
245 rect.height = r.bottom - r.top;
246}
247
248// translations between HIMETRIC units (which OLE likes) and pixels (which are
249// liked by all the others) - implemented in msw/utilsexc.cpp
250extern void HIMETRICToPixel(LONG *x, LONG *y);
251extern void PixelToHIMETRIC(LONG *x, LONG *y);
252
253// Windows convention of the mask is opposed to the wxWidgets one, so we need
254// to invert the mask each time we pass one/get one to/from Windows
255extern HBITMAP wxInvertMask(HBITMAP hbmpMask, int w = 0, int h = 0);
256
257// Creates an icon or cursor depending from a bitmap
258//
259// The bitmap must be valid and it should have a mask. If it doesn't, a default
260// mask is created using light grey as the transparent colour.
261extern HICON wxBitmapToHICON(const wxBitmap& bmp);
262
263// Same requirments as above apply and the bitmap must also have the correct
264// size.
265extern
266HCURSOR wxBitmapToHCURSOR(const wxBitmap& bmp, int hotSpotX, int hotSpotY);
267
268// get (x, y) from DWORD - notice that HI/LOWORD can *not* be used because they
269// will fail on system with multiple monitors where the coords may be negative
270//
271// these macros are standard now (Win98) but some older headers don't have them
272#ifndef GET_X_LPARAM
273 #define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp))
274 #define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp))
275#endif // GET_X_LPARAM
276
277// get the current state of SHIFT/CTRL keys
278inline bool wxIsShiftDown()
279{
280// return (::GetKeyState(VK_SHIFT) & 0x100) != 0;
281 // Returns different negative values on WinME and WinNT,
282 // so simply test for negative value.
283 return ::GetKeyState(VK_SHIFT) < 0;
284}
285
286inline bool wxIsCtrlDown()
287{
288// return (::GetKeyState(VK_CONTROL) & 0x100) != 0;
289 // Returns different negative values on WinME and WinNT,
290 // so simply test for negative value.
291 return ::GetKeyState(VK_CONTROL) < 0;
292}
293
294// wrapper around GetWindowRect() and GetClientRect() APIs doing error checking
295// for Win32
296inline RECT wxGetWindowRect(HWND hwnd)
297{
298 RECT rect;
299
300 if ( !::GetWindowRect(hwnd, &rect) )
301 {
302 wxLogLastError(_T("GetWindowRect"));
303 }
304
305 return rect;
306}
307
308inline RECT wxGetClientRect(HWND hwnd)
309{
310 RECT rect;
311
312 if ( !::GetClientRect(hwnd, &rect) )
313 {
314 wxLogLastError(_T("GetClientRect"));
315 }
316
317 return rect;
318}
319
320// ---------------------------------------------------------------------------
321// small helper classes
322// ---------------------------------------------------------------------------
323
324// a template to make initializing Windows styructs less painful: it zeroes all
325// the struct fields and also sets cbSize member to the correct value (and so
326// can be only used with structures which have this member...)
327template <class T>
328struct WinStruct : public T
329{
330 WinStruct()
331 {
332 ::ZeroMemory(this, sizeof(T));
333
334 // explicit qualification is required here for this to be valid C++
335 this->cbSize = sizeof(T);
336 }
337};
338
339
340// create an instance of this class and use it as the HDC for screen, will
341// automatically release the DC going out of scope
342class ScreenHDC
343{
344public:
345 ScreenHDC() { m_hdc = ::GetDC(NULL); }
346 ~ScreenHDC() { ::ReleaseDC(NULL, m_hdc); }
347
348 operator HDC() const { return m_hdc; }
349
350private:
351 HDC m_hdc;
352
353 DECLARE_NO_COPY_CLASS(ScreenHDC)
354};
355
356// the same as ScreenHDC but for window DCs
357class WindowHDC
358{
359public:
360 WindowHDC(HWND hwnd) { m_hdc = ::GetDC(m_hwnd = hwnd); }
361 ~WindowHDC() { ::ReleaseDC(m_hwnd, m_hdc); }
362
363 operator HDC() const { return m_hdc; }
364
365private:
366 HWND m_hwnd;
367 HDC m_hdc;
368
369 DECLARE_NO_COPY_CLASS(WindowHDC)
370};
371
372// the same as ScreenHDC but for memory DCs: creates the HDC compatible with
373// the given one (screen by default) in ctor and destroys it in dtor
374class MemoryHDC
375{
376public:
377 MemoryHDC(HDC hdc = 0) { m_hdc = ::CreateCompatibleDC(hdc); }
378 ~MemoryHDC() { ::DeleteDC(m_hdc); }
379
380 operator HDC() const { return m_hdc; }
381
382private:
383 HDC m_hdc;
384
385 DECLARE_NO_COPY_CLASS(MemoryHDC)
386};
387
388// a class which selects a GDI object into a DC in its ctor and deselects in
389// dtor
390class SelectInHDC
391{
392public:
393 SelectInHDC(HDC hdc, HGDIOBJ hgdiobj) : m_hdc(hdc)
394 { m_hgdiobj = ::SelectObject(hdc, hgdiobj); }
395
396 ~SelectInHDC() { ::SelectObject(m_hdc, m_hgdiobj); }
397
398 // return true if the object was successfully selected
399 operator bool() const { return m_hgdiobj != 0; }
400
401private:
402 HDC m_hdc;
403 HGDIOBJ m_hgdiobj;
404
405 DECLARE_NO_COPY_CLASS(SelectInHDC)
406};
407
408// when working with global pointers (which is unfortunately still necessary
409// sometimes, e.g. for clipboard) it is important to unlock them exactly as
410// many times as we lock them which just asks for using a "smart lock" class
411class GlobalPtr
412{
413public:
414 GlobalPtr(HGLOBAL hGlobal) : m_hGlobal(hGlobal)
415 {
416 m_ptr = GlobalLock(hGlobal);
417 if ( !m_ptr )
418 {
419 wxLogLastError(_T("GlobalLock"));
420 }
421 }
422
423 ~GlobalPtr()
424 {
425 if ( !GlobalUnlock(m_hGlobal) )
426 {
427#ifdef __WXDEBUG__
428 // this might happen simply because the block became unlocked
429 DWORD dwLastError = ::GetLastError();
430 if ( dwLastError != NO_ERROR )
431 {
432 wxLogApiError(_T("GlobalUnlock"), dwLastError);
433 }
434#endif // __WXDEBUG__
435 }
436 }
437
438 operator void *() const { return m_ptr; }
439
440private:
441 HGLOBAL m_hGlobal;
442 void *m_ptr;
443
444 DECLARE_NO_COPY_CLASS(GlobalPtr)
445};
446
447// ---------------------------------------------------------------------------
448// macros to make casting between WXFOO and FOO a bit easier: the GetFoo()
449// returns Foo cast to the Windows type for oruselves, while GetFooOf() takes
450// an argument which should be a pointer or reference to the object of the
451// corresponding class (this depends on the macro)
452// ---------------------------------------------------------------------------
453
454#define GetHwnd() ((HWND)GetHWND())
455#define GetHwndOf(win) ((HWND)((win)->GetHWND()))
456// old name
457#define GetWinHwnd GetHwndOf
458
459#define GetHdc() ((HDC)GetHDC())
460#define GetHdcOf(dc) ((HDC)(dc).GetHDC())
461
462#define GetHbitmap() ((HBITMAP)GetHBITMAP())
463#define GetHbitmapOf(bmp) ((HBITMAP)(bmp).GetHBITMAP())
464
465#define GetHicon() ((HICON)GetHICON())
466#define GetHiconOf(icon) ((HICON)(icon).GetHICON())
467
468#define GetHaccel() ((HACCEL)GetHACCEL())
469#define GetHaccelOf(table) ((HACCEL)((table).GetHACCEL()))
470
471#define GetHbrush() ((HPEN)GetResourceHandle())
472#define GetHbrushOf(brush) ((HPEN)(brush).GetResourceHandle())
473
474#define GetHmenu() ((HMENU)GetHMenu())
475#define GetHmenuOf(menu) ((HMENU)menu->GetHMenu())
476
477#define GetHcursor() ((HCURSOR)GetHCURSOR())
478#define GetHcursorOf(cursor) ((HCURSOR)(cursor).GetHCURSOR())
479
480#define GetHfont() ((HFONT)GetHFONT())
481#define GetHfontOf(font) ((HFONT)(font).GetHFONT())
482
483#define GetHpalette() ((HPALETTE)GetHPALETTE())
484#define GetHpaletteOf(pal) ((HPALETTE)(pal).GetHPALETTE())
485
486#define GetHpen() ((HPEN)GetResourceHandle())
487#define GetHpenOf(pen) ((HPEN)(pen).GetResourceHandle())
488
489#define GetHrgn() ((HRGN)GetHRGN())
490#define GetHrgnOf(rgn) ((HRGN)(rgn).GetHRGN())
491
492#endif // wxUSE_GUI
493
494// ---------------------------------------------------------------------------
495// global data
496// ---------------------------------------------------------------------------
497
498WXDLLIMPEXP_DATA_BASE(extern HINSTANCE) wxhInstance;
499
500// ---------------------------------------------------------------------------
501// global functions
502// ---------------------------------------------------------------------------
503
504extern "C"
505{
506 WXDLLIMPEXP_BASE HINSTANCE wxGetInstance();
507}
508
509WXDLLIMPEXP_BASE void wxSetInstance(HINSTANCE hInst);
510
511// return the full name of the program file
512inline wxString wxGetFullModuleName()
513{
514 wxString fullname;
515 if ( !::GetModuleFileName
516 (
517 (HMODULE)wxGetInstance(),
518 wxStringBuffer(fullname, MAX_PATH),
519 MAX_PATH
520 ) )
521 {
522 wxLogLastError(_T("GetModuleFileName"));
523 }
524
525 return fullname;
526}
527
528#if wxUSE_GUI
529
530// cursor stuff
531extern HCURSOR wxGetCurrentBusyCursor(); // from msw/utils.cpp
532extern const wxCursor *wxGetGlobalCursor(); // from msw/cursor.cpp
533
534WXDLLEXPORT void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont& the_font);
535WXDLLEXPORT void wxFillLogFont(LOGFONT *logFont, const wxFont *font);
536WXDLLEXPORT wxFont wxCreateFontFromLogFont(const LOGFONT *logFont);
537WXDLLEXPORT wxFontEncoding wxGetFontEncFromCharSet(int charset);
538
539WXDLLEXPORT void wxSliderEvent(WXHWND control, WXWORD wParam, WXWORD pos);
540WXDLLEXPORT void wxScrollBarEvent(WXHWND hbar, WXWORD wParam, WXWORD pos);
541
542// Find maximum size of window/rectangle
543WXDLLEXPORT extern void wxFindMaxSize(WXHWND hwnd, RECT *rect);
544
545// Safely get the window text (i.e. without using fixed size buffer)
546WXDLLEXPORT extern wxString wxGetWindowText(WXHWND hWnd);
547
548// get the window class name
549WXDLLEXPORT extern wxString wxGetWindowClass(WXHWND hWnd);
550
551// get the window id (should be unsigned, hence this is not wxWindowID which
552// is, for mainly historical reasons, signed)
553WXDLLEXPORT extern WXWORD wxGetWindowId(WXHWND hWnd);
554
555// check if hWnd's WNDPROC is wndProc. Return true if yes, false if they are
556// different
557WXDLLEXPORT extern bool wxCheckWindowWndProc(WXHWND hWnd, WXFARPROC wndProc);
558
559// Does this window style specify any border?
560inline bool wxStyleHasBorder(long style)
561{
562 return (style & (wxSIMPLE_BORDER | wxRAISED_BORDER |
563 wxSUNKEN_BORDER | wxDOUBLE_BORDER)) != 0;
564}
565
566// ----------------------------------------------------------------------------
567// functions mapping HWND to wxWindow
568// ----------------------------------------------------------------------------
569
570// this function simply checks whether the given hWnd corresponds to a wxWindow
571// and returns either that window if it does or NULL otherwise
572WXDLLEXPORT extern wxWindow* wxFindWinFromHandle(WXHWND hWnd);
573
574// find the window for HWND which is part of some wxWindow, i.e. unlike
575// wxFindWinFromHandle() above it will also work for "sub controls" of a
576// wxWindow.
577//
578// returns the wxWindow corresponding to the given HWND or NULL.
579WXDLLEXPORT extern wxWindow *wxGetWindowFromHWND(WXHWND hwnd);
580
581// Get the size of an icon
582WXDLLEXPORT extern wxSize wxGetHiconSize(HICON hicon);
583
584// Lines are drawn differently for WinCE and regular WIN32
585WXDLLEXPORT void wxDrawLine(HDC hdc, int x1, int y1, int x2, int y2);
586
587// ----------------------------------------------------------------------------
588// 32/64 bit helpers
589// ----------------------------------------------------------------------------
590
591#ifdef __WIN64__
592
593inline void *wxGetWindowProc(HWND hwnd)
594{
595 return (void *)::GetWindowLongPtr(hwnd, GWLP_WNDPROC);
596}
597
598inline void *wxGetWindowUserData(HWND hwnd)
599{
600 return (void *)::GetWindowLongPtr(hwnd, GWLP_USERDATA);
601}
602
603inline WNDPROC wxSetWindowProc(HWND hwnd, WNDPROC func)
604{
605 return (WNDPROC)::SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR)func);
606}
607
608inline void *wxSetWindowUserData(HWND hwnd, void *data)
609{
610 return (void *)::SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR)data);
611}
612
613#else // __WIN32__
614
615#ifdef __VISUALC__
616 // strangely enough, VC++ 7.1 gives warnings about 32 -> 64 bit conversions
617 // in the functions below, even in spite of the explicit casts
618 #pragma warning(disable:4311)
619 #pragma warning(disable:4312)
620#endif
621
622inline void *wxGetWindowProc(HWND hwnd)
623{
624 return (void *)::GetWindowLong(hwnd, GWL_WNDPROC);
625}
626
627inline void *wxGetWindowUserData(HWND hwnd)
628{
629 return (void *)::GetWindowLong(hwnd, GWL_USERDATA);
630}
631
632inline WNDPROC wxSetWindowProc(HWND hwnd, WNDPROC func)
633{
634 return (WNDPROC)::SetWindowLong(hwnd, GWL_WNDPROC, (LONG)func);
635}
636
637inline void *wxSetWindowUserData(HWND hwnd, void *data)
638{
639 return (void *)::SetWindowLong(hwnd, GWL_USERDATA, (LONG)data);
640}
641
642#ifdef __VISUALC__
643 #pragma warning(default:4311)
644 #pragma warning(default:4312)
645#endif
646
647#endif // __WIN64__/__WIN32__
648
649#endif // wxUSE_GUI
650
651#endif
652 // _WX_PRIVATE_H_