From 1e97ffcd6ec01eaa4b79d4903b721019e12657da Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Tue, 5 Nov 2024 06:28:09 +1300 Subject: Fl_Help_Dialog bound --- doc/fl_help_dialog.html | 252 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 252 insertions(+) create mode 100644 doc/fl_help_dialog.html (limited to 'doc/fl_help_dialog.html') 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 @@ + + + + + + + Fl_Help_Dialog Binding Map + + + + + + +

Fl_Help_Dialog Binding Map

+ + +Back to Index + + + + + + + + + + +
Package name
Fl_Help_DialogFLTK.Help_Dialogs
+ + + + + + + + + + + + + + + + +
Types
Fl_Help_DialogHelp_Dialog
 Help_Dialog_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Help_Dialog();
+
+function Create
+    return Help_Dialog;
+
+function Create
+       (X, Y, W, H : in Integer)
+    return Help_Dialog;
+
+int h();
+
+function Get_H
+       (This : in Help_Dialog)
+    return Integer;
+
+void hide();
+
+procedure Hide
+       (This : in out Help_Dialog);
+
+void load(const char *f);
+
+procedure Load
+       (This : in out Help_Dialog;
+        Name : in     String);
+
+void position(int xx, int yy);
+
+procedure Reposition
+       (This : in out Help_Dialog;
+        X, Y : in     Integer);
+
+void resize(int xx, int yy, int ww, int hh);
+
+procedure Resize
+       (This       : in out Help_Dialog;
+        X, Y, W, H : in     Integer);
+
+void show();
+
+procedure Show
+       (This : in out Help_Dialog);
+
+void show(int argc, char **argv);
+
 
+Fl_Fontsize textsize();
+
+function Get_Text_Size
+       (This : in Help_Dialog)
+    return Font_Size;
+
+void textsize(Fl_Fontsize s);
+
+procedure Set_Text_Size
+       (This : in out Help_Dialog;
+        Size : in     Font_Size);
+
+void topline(const char *n);
+
+procedure Set_Topline_Target
+       (This  : in out Help_Dialog;
+        Value : in     String);
+
+void topline(int n);
+
+procedure Set_Topline_Number
+       (This : in out Help_Dialog;
+        Line : in     Positive);
+
+const char * value() const;
+
+function Get_Content
+       (This : in Help_Dialog)
+    return String;
+
+void value(const char *f);
+
+procedure Set_Content
+       (This  : in out Help_Dialog;
+        Value : in     String);
+
+int visible();
+
+function Is_Visible
+       (This : in Help_Dialog)
+    return Boolean;
+
+int w();
+
+function Get_W
+       (This : in Help_Dialog)
+    return Integer;
+
+int x();
+
+function Get_X
+       (This : in Help_Dialog)
+    return Integer;
+
+int y();
+
+function Get_Y
+       (This : in Help_Dialog)
+    return Integer;
+
+ + + + + -- cgit