diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/fl_help_dialog.html | 252 | ||||
-rw-r--r-- | doc/index.html | 3 |
2 files changed, 254 insertions, 1 deletions
diff --git a/doc/fl_help_dialog.html b/doc/fl_help_dialog.html new file mode 100644 index 0000000..2ae942b --- /dev/null +++ b/doc/fl_help_dialog.html @@ -0,0 +1,252 @@ + +<!DOCTYPE html> + +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>Fl_Help_Dialog Binding Map</title> + <link href="map.css" rel="stylesheet"> + </head> + + <body> + + +<h2>Fl_Help_Dialog Binding Map</h2> + + +<a href="index.html">Back to Index</a> + + +<table class="package"> + <tr><th colspan="2">Package name</th></tr> + + <tr> + <td>Fl_Help_Dialog</td> + <td>FLTK.Help_Dialogs</td> + </tr> + +</table> + + + +<table class="type"> + <tr><th colspan="2">Types</th></tr> + + <tr> + <td>Fl_Help_Dialog</td> + <td>Help_Dialog</td> + </tr> + + <tr> + <td> </td> + <td>Help_Dialog_Reference</td> + </tr> + +</table> + + + +<table class="function"> + <tr><th colspan="2">Functions and Procedures</th></tr> + + <tr> +<td><pre> +Fl_Help_Dialog(); +</pre></td> +<td><pre> +function Create + return Help_Dialog; + +function Create + (X, Y, W, H : in Integer) + return Help_Dialog; +</pre></td> + </tr> + + <tr> +<td><pre> +int h(); +</pre></td> +<td><pre> +function Get_H + (This : in Help_Dialog) + return Integer; +</pre></td> + </tr> + + <tr> +<td><pre> +void hide(); +</pre></td> +<td><pre> +procedure Hide + (This : in out Help_Dialog); +</pre></td> + </tr> + + <tr> +<td><pre> +void load(const char *f); +</pre></td> +<td><pre> +procedure Load + (This : in out Help_Dialog; + Name : in String); +</pre></td> + </tr> + + <tr> +<td><pre> +void position(int xx, int yy); +</pre></td> +<td><pre> +procedure Reposition + (This : in out Help_Dialog; + X, Y : in Integer); +</pre></td> + </tr> + + <tr> +<td><pre> +void resize(int xx, int yy, int ww, int hh); +</pre></td> +<td><pre> +procedure Resize + (This : in out Help_Dialog; + X, Y, W, H : in Integer); +</pre></td> + </tr> + + <tr> +<td><pre> +void show(); +</pre></td> +<td><pre> +procedure Show + (This : in out Help_Dialog); +</pre></td> + </tr> + + <tr> +<td><pre> +void show(int argc, char **argv); +</pre></td> +<td> </td> + </tr> + + <tr> +<td><pre> +Fl_Fontsize textsize(); +</pre></td> +<td><pre> +function Get_Text_Size + (This : in Help_Dialog) + return Font_Size; +</pre></td> + </tr> + + <tr> +<td><pre> +void textsize(Fl_Fontsize s); +</pre></td> +<td><pre> +procedure Set_Text_Size + (This : in out Help_Dialog; + Size : in Font_Size); +</pre></td> + </tr> + + <tr> +<td><pre> +void topline(const char *n); +</pre></td> +<td><pre> +procedure Set_Topline_Target + (This : in out Help_Dialog; + Value : in String); +</pre></td> + </tr> + + <tr> +<td><pre> +void topline(int n); +</pre></td> +<td><pre> +procedure Set_Topline_Number + (This : in out Help_Dialog; + Line : in Positive); +</pre></td> + </tr> + + <tr> +<td><pre> +const char * value() const; +</pre></td> +<td><pre> +function Get_Content + (This : in Help_Dialog) + return String; +</pre></td> + </tr> + + <tr> +<td><pre> +void value(const char *f); +</pre></td> +<td><pre> +procedure Set_Content + (This : in out Help_Dialog; + Value : in String); +</pre></td> + </tr> + + <tr> +<td><pre> +int visible(); +</pre></td> +<td><pre> +function Is_Visible + (This : in Help_Dialog) + return Boolean; +</pre></td> + </tr> + + <tr> +<td><pre> +int w(); +</pre></td> +<td><pre> +function Get_W + (This : in Help_Dialog) + return Integer; +</pre></td> + </tr> + + <tr> +<td><pre> +int x(); +</pre></td> +<td><pre> +function Get_X + (This : in Help_Dialog) + return Integer; +</pre></td> + </tr> + + <tr> +<td><pre> +int y(); +</pre></td> +<td><pre> +function Get_Y + (This : in Help_Dialog) + return Integer; +</pre></td> + </tr> + +</table> + + + </body> +</html> + diff --git a/doc/index.html b/doc/index.html index c692083..89e6a49 100644 --- a/doc/index.html +++ b/doc/index.html @@ -53,7 +53,7 @@ <li>Fl_Glut_Window</li> <li><a href="fl_graphics_driver.html">Fl_Graphics_Driver</a></li> <li><a href="fl_group.html">Fl_Group</a></li> - <li>Fl_Help_Dialog</li> + <li><a href="fl_help_dialog.html">Fl_Help_Dialog</a></li> <li><a href="fl_help_view.html">Fl_Help_View</a></li> <li>Fl_Hold_Browser</li> <li><a href="fl_hor_fill_slider.html">Fl_Hor_Fill_Slider</a></li> @@ -147,6 +147,7 @@ <li><a href="fl_draw.html">FLTK.Draw</a></li> <li><a href="fl_preferences.html">FLTK.Environment</a></li> <li><a href="fl.html">FLTK.Event</a></li> + <li><a href="fl_help_dialog.html">FLTK.Help_Dialogs</a></li> <li><a href="fl_image.html">FLTK.Images</a></li> <li><a href="fl_bitmap.html">FLTK.Images.Bitmaps</a></li> <li><a href="fl_xbm_image.html">FLTK.Images.Bitmaps.XBM</a></li> |