]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/univ/window.h
SWIGged updates for wxGTK
[wxWidgets.git] / include / wx / univ / window.h
index fa1aaec62a59f6da9bd561307987720b9392041d..d3a845d84ad680d96788507aa330dd5b416cd8b1 100644 (file)
@@ -200,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
     // -----------------------------
@@ -266,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;