From 617353265e4dc4e0280b565f2cd9e7749ce52bfd Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Tue, 17 Apr 2018 16:00:26 +1000 Subject: More polishing --- doc/fl_file_input.html | 155 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 155 insertions(+) create mode 100644 doc/fl_file_input.html (limited to 'doc/fl_file_input.html') diff --git a/doc/fl_file_input.html b/doc/fl_file_input.html new file mode 100644 index 0000000..d98c29c --- /dev/null +++ b/doc/fl_file_input.html @@ -0,0 +1,155 @@ + + + + + + + Fl_File_Input Binding Map + + + + + + +

Fl_File_Input Binding Map

+ + + + + + + + + + +
Package name
Fl_File_InputFLTK.Widgets.Inputs.File
+ + + + + + + + + + + + + + + + +
Types
Fl_File_InputFile_Input
 File_Input_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_File_Input(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return File_Input;
+
+Fl_Boxtype down_box() const;
+
+function Get_Down_Box
+       (This : in File_Input)
+    return Box_Kind;
+
+void down_box(Fl_Boxtype b);
+
+procedure Set_Down_Box
+       (This : in out File_Input;
+        To   : in     Box_Kind);
+
+virtual void draw();
+
+procedure Draw
+       (This : in out File_Input);
+
+Fl_Color errorcolor() const;
+
+function Get_Error_Color
+       (This : in File_Input)
+    return Color;
+
+void errorcolor(Fl_Color c);
+
+procedure Set_Error_Color
+       (This : in out File_Input;
+        To   : in     Color);
+
+virtual int handle(int event);
+
+function Handle
+       (This  : in out File_Input;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+int value(const char *str);
+int value(const char *str, int len);
+
+procedure Set_Value
+       (This : in out Input;
+        To   : in     String);
+
+const char * value();
+
+function Get_Value
+       (This : in Input)
+    return String;
+
+ + + + + -- cgit