SWIGged updates for wxGTK
[wxWidgets.git] / include / wx / univ / window.h
index 02b48e85ebd95b371ad531543714db11d2166e2d..d3a845d84ad680d96788507aa330dd5b416cd8b1 100644 (file)
@@ -51,6 +51,12 @@ enum
     wxCONTROL_DIRTY      = 0x80000000
 };
 
+#ifdef __WXX11__
+#define wxUSE_TWO_WINDOWS 1
+#else
+#define wxUSE_TWO_WINDOWS 0
+#endif
+
 // ----------------------------------------------------------------------------
 // wxWindow
 // ----------------------------------------------------------------------------
@@ -194,6 +200,9 @@ public:
 
     // erase part of the control
     virtual void EraseBackground(wxDC& dc, const wxRect& rect);
+    
+    // see below
+    bool HasDialogBackground() { return m_hasDialogBackground; }
 
     // overridden base class methods
     // -----------------------------
@@ -260,6 +269,10 @@ protected:
 
     // the renderer we use
     wxRenderer *m_renderer;
+    
+    // background like a dialog (e.g. wxStaticText,
+    // wxRadioButton), not with a surface (wxButton)
+    bool m_hasDialogBackground;
 
     // background bitmap info
     wxBitmap  m_bitmapBg;