]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/textctrl.h
made some wxHtmlEntitiesParser's methods public -- turned out they are useful
[wxWidgets.git] / include / wx / gtk1 / textctrl.h
index bc5d527d11abefeefef5b95a87941bbe15a78e9b..085d5ca4b6ad0f717ff6220538671cd3181ec09c 100644 (file)
@@ -148,6 +148,10 @@ public:
     virtual void Freeze();
     virtual void Thaw();
 
+    // textctrl specific scrolling
+    virtual bool ScrollLines(int lines);
+    virtual bool ScrollPages(int pages);
+
     // wxGTK-specific: called recursively by Enable,
     // to give widgets an oppprtunity to correct their colours after they
     // have been changed by Enable
@@ -159,6 +163,13 @@ protected:
     // common part of all ctors
     void Init();
 
+    // get the vertical adjustment, if any, NULL otherwise
+    GtkAdjustment *GetVAdj() const;
+
+    // scroll the control by the given number of pixels, return true if the
+    // scroll position changed
+    bool DoScroll(GtkAdjustment *adj, int diff);
+
 private:
     // change the font for everything in this control
     void ChangeFontGlobally();