bool m_themeEnabled;
protected:
+
// common part of all ctors: it is not virtual because it is called from
// ctor
void InitBase();
// a toolbar that it manages itself).
virtual void AdjustForParentClientOrigin(int& x, int& y, int sizeFlags);
+#ifdef __WXPM__
+ // extra OS/2 layout processing
+ virtual void OS2Layout(int width, int height) { };
+#endif
+
private:
+
// contains the last id generated by NewControlId
static int ms_lastControlId;
#define sm_classwxWindowGTK sm_classwxWindow
#endif // wxUniv
#include "wx/gtk/window.h"
+#elif defined(__WXX11__)
+ #ifdef __WXUNIVERSAL__
+ #define wxWindowNative wxWindowX11
+ #else // !wxUniv
+ #define wxWindowX11 wxWindow
+ #define sm_classwxWindowX11 sm_classwxWindow
+ #endif // wxUniv
+ #include "wx/x11/window.h"
#elif defined(__WXMGL__)
#ifdef __WXUNIVERSAL__
#define wxWindowNative wxWindowMGL