]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/window.h
Putting files back in the wxWidgets-$VERSION dir.
[wxWidgets.git] / include / wx / gtk / window.h
index abb5e3f310602d70a938ae96c9a65c5911f25977..cd4b93c158e19c603ad1bde6f5b02b965674ab78 100644 (file)
@@ -109,6 +109,9 @@ public:
     virtual void AddChild( wxWindowBase *child );
     virtual void RemoveChild( wxWindowBase *child );
 
+    // currently wxGTK2-only
+    void SetDoubleBuffered(bool on);
+
     // implementation
     // --------------
 
@@ -191,6 +194,9 @@ public:
     // Common scroll event handling code for wxWindow and wxScrollBar
     wxEventType GetScrollEventType(GtkRange* range);
 
+    void BlockScrollEvent();
+    void UnblockScrollEvent();
+
     // position and size of the window
     int                  m_x, m_y;
     int                  m_width, m_height;
@@ -209,6 +215,7 @@ public:
     GtkRange* m_scrollBar[2];
     // horizontal/vertical scroll position
     double m_scrollPos[2];
+    bool m_blockValueChanged[2];
 
     // extra (wxGTK-specific) flags
     bool                 m_needParent:1;        // ! wxFrame, wxDialog, wxNotebookPage ?
@@ -283,9 +290,6 @@ protected:
     // sets the border of a given GtkScrolledWindow from a wx style
     static void GtkScrolledWindowSetBorder(GtkWidget* w, int style);
 
-    void BlockScrollEvent();
-    void UnblockScrollEvent();
-
 private:
     DECLARE_DYNAMIC_CLASS(wxWindowGTK)
     DECLARE_NO_COPY_CLASS(wxWindowGTK)