]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/window.h
added missing cast for delete
[wxWidgets.git] / include / wx / gtk / window.h
index 302d12e95fca18f157241a75afd2004a92f431f6..187c9e34cb74796daeee7454e6bd2dbcba2bfc86 100644 (file)
@@ -114,6 +114,11 @@ public:
     /* For compatibility across platforms (not in event table) */
     void OnIdle(wxIdleEvent& WXUNUSED(event)) {};
 
+    // wxGTK-specific: called recursively by Enable,
+    // to give widgets an oppprtunity 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( wxWindow *parent, const wxPoint &pos, const wxSize &size );
     void PostCreation();
@@ -186,6 +191,8 @@ public:
     bool                 m_isFrame:1;        /* faster than IS_KIND_OF */
     bool                 m_acceptsFocus:1;   /* not wxStaticBox, not wxStaticBitmap etc.  */
     bool                 m_isScrolling;
+    bool                 m_clipPaintRegion;  /* TRUE after ScrollWindow() */
+    bool                 m_queuedFullRedraw; /* TRUE after DoMoveWindow */
 
     // these are true if the style were set before the widget was realized
     // (typcally in the constructor) but the actual GTK style must not be set