From ca9cca53a19145216cb0e00462db239e1194696d Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 29 Apr 2018 00:39:36 +1000 Subject: FLTK.Event done, a whole bunch more polishing --- doc/fl_scroll.html | 174 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 174 insertions(+) create mode 100644 doc/fl_scroll.html (limited to 'doc/fl_scroll.html') diff --git a/doc/fl_scroll.html b/doc/fl_scroll.html new file mode 100644 index 0000000..3cc9087 --- /dev/null +++ b/doc/fl_scroll.html @@ -0,0 +1,174 @@ + + + + + + + Fl_Scroll Binding Map + + + + + + +

Fl_Scroll Binding Map

+ + + + + + + + + + +
Package name
Fl_ScrollFLTK.Widgets.Groups.Scrolls
+ + + + + + + + + + + + + + + + + + + + +
Types
Fl_ScrollScroll
 Scroll_Reference
enum { HORIZONTAL = 1, VERTICAL = 2, BOTH = 3, ALWAYS_ON = 4, HORIZONTAL_ALWAYS = 5, VERTICAL_ALWAYS = 6, BOTH_ALWAYS = 7 } + Scroll_Kind
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Scroll(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Scroll;
+
+void clear();
+
+procedure Clear
+       (This : in out Scroll);
+
+void draw();
+
+procedure Draw
+       (This : in out Scroll);
+
+int handle(int);
+
+function Handle
+       (This  : in out Scroll;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+void resize(int X, int Y, int W, int H);
+
 
+void scroll_to(int, int);
+
+procedure Scroll_To
+       (This : in out Scroll;
+        X, Y : in     Integer);
+
+int scrollbar_size() const;
+
+function Get_Scrollbar_Size
+       (This : in Scroll)
+    return Integer;
+
+void scrollbar_size(int newSize);
+
+procedure Set_Scrollbar_Size
+       (This : in out Scroll;
+        To   : in     Integer);
+
+int xposition() const;
+
+function Get_Scroll_X
+       (This : in Scroll)
+    return Integer;
+
+int yposition() const;
+
+function Get_Scroll_Y
+       (This : in Scroll)
+    return Integer;
+
 
+procedure Set_Type
+       (This : in out Scroll;
+        Mode : in     Scroll_Kind);
+
+ + + + + -- cgit