diff options
Diffstat (limited to 'doc/fl_scroll.html')
-rw-r--r-- | doc/fl_scroll.html | 147 |
1 files changed, 133 insertions, 14 deletions
diff --git a/doc/fl_scroll.html b/doc/fl_scroll.html index 3cc9087..4c8977b 100644 --- a/doc/fl_scroll.html +++ b/doc/fl_scroll.html @@ -1,4 +1,3 @@ - <!DOCTYPE html> <html lang="en"> @@ -14,6 +13,9 @@ <h2>Fl_Scroll Binding Map</h2> +<a href="index.html">Back to Index</a> + + <table class="package"> <tr><th colspan="2">Package name</th></tr> @@ -40,16 +42,72 @@ </tr> <tr> - <td>enum { HORIZONTAL = 1, VERTICAL = 2, BOTH = 3, ALWAYS_ON = 4, HORIZONTAL_ALWAYS = 5, VERTICAL_ALWAYS = 6, BOTH_ALWAYS = 7 } + <td>enum {<br /> + HORIZONTAL = 1,<br /> + VERTICAL = 2,<br /> + BOTH = 3,<br /> + ALWAYS_ON = 4,<br /> + HORIZONTAL_ALWAYS = 5,<br /> + VERTICAL_ALWAYS = 6,<br /> + BOTH_ALWAYS = 7 } <td>Scroll_Kind</td> </tr> + <tr> + <td>Fl_Region_LRTB</td> + <td>Region</td> + </tr> + + <tr> + <td>Fl_Region_XYWH</td> + <td>Region</td> + </tr> + + <tr> + <td>Fl_Scrollbar_Data</td> + <td>Scrollbar_Data</td> + </tr> + + <tr> + <td>ScrollInfo</td> + <td>Scroll_Info</td> + </tr> + </table> <table class="function"> - <tr><th colspan="2">Functions and Procedures</th></tr> + <tr><th colspan="2">Attributes</th></tr> + + <tr> +<td><pre> +Fl_Scrollbar hscrollbar; +</pre></td> +<td><pre> +function H_Bar + (This : in out Scroll) + return Valuators.Sliders.Scrollbars.Scrollbar_Reference; +</pre></td> + </tr> + + <tr> +<td><pre> +Fl_Scrollbar scrollbar; +</pre></td> +<td><pre> +function V_Bar + (This : in out Scroll) + return Valuators.Sliders.Scrollbars.Scrollbar_Reference; +</pre></td> + </tr> + +</table> + + + +<table class="function"> + <tr><th colspan="2">Constructors</th></tr> <tr> <td><pre> @@ -58,27 +116,36 @@ Fl_Scroll(int X, int Y, int W, int H, const char *L=0); <td><pre> function Create (X, Y, W, H : in Integer; - Text : in String) + Text : in String := "") return Scroll; </pre></td> </tr> <tr> +<td>Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually.</td> <td><pre> -void clear(); -</pre></td> -<td><pre> -procedure Clear - (This : in out Scroll); +function Create + (Parent : in out Groups.Group'Class; + X, Y, W, H : in Integer; + Text : in String := "") + return Scroll; </pre></td> </tr> +</table> + + + +<table class="function"> + <tr><th colspan="2">Functions and Procedures</th></tr> + <tr> <td><pre> -void draw(); +void clear(); </pre></td> <td><pre> -procedure Draw +procedure Clear (This : in out Scroll); </pre></td> </tr> @@ -99,7 +166,11 @@ function Handle <td><pre> void resize(int X, int Y, int W, int H); </pre></td> -<td> </td> +<td><pre> +procedure Resize + (This : in out Scroll; + X, Y, W, H : in Integer); +</pre></td> </tr> <tr> @@ -158,9 +229,18 @@ function Get_Scroll_Y </tr> <tr> -<td> </td> +<td>See type method in Fl_Widget.</td> <td><pre> -procedure Set_Type +function Get_Kind + (This : in Scroll) + return Scroll_Kind; +</pre></td> + </tr> + + <tr> +<td>See type method in Fl_Widget.</td> +<td><pre> +procedure Set_Kind (This : in out Scroll; Mode : in Scroll_Kind); </pre></td> @@ -169,6 +249,45 @@ procedure Set_Type </table> + +<table class="function"> + <tr><th colspan="2">Protected Functions and Procedures</th></tr> + + <tr> +<td><pre> +void bbox(int &, int &, int &, int &); +</pre></td> +<td><pre> +procedure Bounding_Box + (This : in Scroll; + X, Y, W, H : out Integer); +</pre></td> + </tr> + + <tr> +<td><pre> +void draw(); +</pre></td> +<td><pre> +procedure Draw + (This : in out Scroll); +</pre></td> + </tr> + + <tr> +<td><pre> +void recalc_scrollbars(Scrollinfo &si); +</pre></td> +<td><pre> +procedure Recalculate_Scrollbars + (This : in Scroll; + Data : out Scroll_Info); +</pre></td> + </tr> + +</table> + + </body> </html> |