]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/window.h
changing the Multiple Inheritance along the Single Inheritance, patch 1623801
[wxWidgets.git] / include / wx / gtk1 / window.h
index 4ed4c68ea037e7cfa8c3a80565d5a218389619ac..c1f6a490cc0724d54cba999cf42c7fe00a22508b 100644 (file)
@@ -57,7 +57,7 @@ public:
     virtual void Lower();
 
     virtual bool Show( bool show = true );
-    virtual bool Enable( bool enable = true );
+    virtual void DoEnable( bool enable );
 
     virtual void SetWindowStyleFlag( long style );
 
@@ -108,6 +108,8 @@ public:
     virtual void SetDropTarget( wxDropTarget *dropTarget );
 #endif // wxUSE_DRAG_AND_DROP
 
+    virtual bool IsDoubleBuffered() const { return false; }
+
     // implementation
     // --------------
 
@@ -124,11 +126,6 @@ public:
     // For compatibility across platforms (not in event table)
     void OnIdle(wxIdleEvent& WXUNUSED(event)) {}
 
-    // wxGTK-specific: called recursively by Enable,
-    // to give widgets an opportunity to correct their colours after they
-    // have been changed by Enable
-    virtual void OnParentEnable( bool WXUNUSED(enable) ) {}
-
     // Used by all window classes in the widget creation process.
     bool PreCreation( wxWindowGTK *parent, const wxPoint &pos, const wxSize &size );
     void PostCreation();