diff options
Diffstat (limited to 'doc/fl_spinner.html')
-rw-r--r-- | doc/fl_spinner.html | 89 |
1 files changed, 71 insertions, 18 deletions
diff --git a/doc/fl_spinner.html b/doc/fl_spinner.html index 8c726ae..5a2d185 100644 --- a/doc/fl_spinner.html +++ b/doc/fl_spinner.html @@ -1,4 +1,3 @@ - <!DOCTYPE html> <html lang="en"> @@ -14,6 +13,9 @@ <h2>Fl_Spinner Binding Map</h2> +<a href="index.html">Back to Index</a> + + <table class="package"> <tr><th colspan="2">Package name</th></tr> @@ -44,7 +46,35 @@ <table class="function"> - <tr><th colspan="2">Functions and Procedures</th></tr> + <tr><th colspan="2">Protected Attributes</th></tr> + + <tr> +<td><pre> +Fl_Repeat_Button down_button_; +</pre></td> +<td>Intentionally left unbound.</td> + </tr> + + <tr> +<td><pre> +Fl_Input input_; +</pre></td> +<td>Intentionally left unbound.</td> + </tr> + + <tr> +<td><pre> +Fl_Repeat_Button up_button_; +</pre></td> +<td>Intentionally left unbound.</td> + </tr> + +</table> + + + +<table class="function"> + <tr><th colspan="2">Constructors</th></tr> <tr> <td><pre> @@ -53,12 +83,31 @@ Fl_Spinner(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 Spinner; </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> +function Create + (Parent : in out Groups.Group'Class; + X, Y, W, H : in Integer; + Text : in String := "") + return Spinner; +</pre></td> + </tr> + +</table> + + + +<table class="function"> + <tr><th colspan="2">Functions and Procedures</th></tr> + + <tr> <td><pre> void color(Fl_Color v); </pre></td> @@ -81,25 +130,25 @@ function Get_Background_Color </tr> <tr> -<td> </td> <td><pre> -procedure Draw - (This : in out Spinner); +const char * format(); </pre></td> - </tr> - - <tr> <td><pre> -const char * format(); +function Get_Format + (This : in Spinner) + return String; </pre></td> -<td> </td> </tr> <tr> <td><pre> void format(const char *f); </pre></td> -<td> </td> +<td><pre> +procedure Set_Format + (This : in out Spinner; + To : in String); +</pre></td> </tr> <tr> @@ -140,7 +189,7 @@ procedure Set_Maximum <td><pre> double maxinum() const; </pre></td> -<td> </td> +<td>Deprecated spelling mistake, use maximum / Get_Maximum instead.</td> </tr> <tr> @@ -169,11 +218,11 @@ procedure Set_Minimum <td><pre> double mininum() const; </pre></td> -<td> </td> +<td>Deprecated spelling mistake, use minimum / Get_Minimum instead.</td> </tr> <tr> -<td> </td> +<td>Use a combination of minimum and maximum to get the values.</td> <td><pre> procedure Get_Range (This : in Spinner; @@ -196,7 +245,11 @@ procedure Set_Range <td><pre> void resize(int X, int Y, int W, int H); </pre></td> -<td> </td> +<td><pre> +procedure Resize + (This : in out Spinner; + X, Y, W, H : in Integer); +</pre></td> </tr> <tr> @@ -314,7 +367,7 @@ procedure Set_Text_Size uchar type() const; </pre></td> <td><pre> -function Get_Type +function Get_Kind (This : in Spinner) return Spinner_Kind; </pre></td> @@ -325,7 +378,7 @@ function Get_Type void type(uchar v); </pre></td> <td><pre> -procedure Set_Type +procedure Set_Kind (This : in out Spinner; To : in Spinner_Kind); </pre></td> |