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/blank_template.html | 5 +- doc/common_dialogs.html | 263 +++++++++++++++++++++ doc/fl_clock.html | 107 +++++++++ doc/fl_clock_output.html | 184 +++++++++++++++ doc/fl_double_window.html | 139 +++++++++++ doc/fl_file_input.html | 155 ++++++++++++ doc/fl_float_input.html | 93 ++++++++ doc/fl_input.html | 545 +++++++++++++++++++++++++++++++++++++++++++ doc/fl_int_input.html | 93 ++++++++ doc/fl_menu_window.html | 161 +++++++++++++ doc/fl_multiline_input.html | 84 +++++++ doc/fl_multiline_output.html | 84 +++++++ doc/fl_output.html | 84 +++++++ doc/fl_round_clock.html | 93 ++++++++ doc/fl_secret_input.html | 86 +++++++ doc/fl_single_window.html | 129 ++++++++++ 16 files changed, 2303 insertions(+), 2 deletions(-) create mode 100644 doc/common_dialogs.html create mode 100644 doc/fl_clock.html create mode 100644 doc/fl_clock_output.html create mode 100644 doc/fl_double_window.html create mode 100644 doc/fl_file_input.html create mode 100644 doc/fl_float_input.html create mode 100644 doc/fl_input.html create mode 100644 doc/fl_int_input.html create mode 100644 doc/fl_menu_window.html create mode 100644 doc/fl_multiline_input.html create mode 100644 doc/fl_multiline_output.html create mode 100644 doc/fl_output.html create mode 100644 doc/fl_round_clock.html create mode 100644 doc/fl_secret_input.html create mode 100644 doc/fl_single_window.html (limited to 'doc') diff --git a/doc/blank_template.html b/doc/blank_template.html index 256c469..d624fee 100644 --- a/doc/blank_template.html +++ b/doc/blank_template.html @@ -18,8 +18,9 @@ Package name - + + @@ -28,7 +29,7 @@ Types - + diff --git a/doc/common_dialogs.html b/doc/common_dialogs.html new file mode 100644 index 0000000..0676bf8 --- /dev/null +++ b/doc/common_dialogs.html @@ -0,0 +1,263 @@ + + + + + + + Common Dialogs Binding Map + + + + + + +

Common Dialogs Binding Map

+ + + + + + + + + + +
Package name
Fl_AskFLTK.Dialogs
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Types
Fl_BeepBeep_Kind
 Choice
 RGB_Float
 RGB_Int
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+void fl_alert(const char *fmt,...);
+
+procedure Alert
+       (Message : String);
+
+int fl_ask(const char *fmt,...);
+
Present but disabled due to fl_ask being deprecated
+void fl_beep(int type);
+
+procedure Beep
+       (Kind : in Beep_Kind);
+
+int fl_choice(const char *fmt, const char *b0, const char *b1, const char *b2,...);
+
+function Three_Way_Choice
+       (Message, Button1, Button2, Button3 : in String)
+    return Choice;
+
+int fl_color_chooser(const char *name, double &r, double &g, double &b, int cmode);
+
+function Color_Chooser
+       (Title   : in     String;
+        R, G, B : in out RGB_Float;
+        Mode    : in     FLTK.Widgets.Groups.Color_Choosers.Color_Mode :=
+            FLTK.Widgets.Groups.Color_Choosers.RGB)
+    return Boolean;
+
+int fl_color_chooser(const char *name, uchar &r, uchar &g, uchar &b, int cmode);
+
+function Color_Chooser
+       (Title   : in     String;
+        R, G, B : in out RGB_Int;
+        Mode    : in     FLTK.Widgets.Groups.Color_Choosers.Color_Mode :=
+            FLTK.Widgets.Groups.Color_Choosers.RGB)
+    return Boolean;
+
+char * fl_dir_chooser(const char *message, const char *fname, int relative);
+
+function Dir_Chooser
+       (Message, Default : in String;
+        Relative         : in Boolean := False)
+    return String;
+
+char * fl_file_chooser(const char *message, const char *pat, const char *fname, int relative);
+
+function File_Chooser
+       (Message, Filter_Pattern, Default : in String;
+        Relative                         : in Boolean := False)
+    return String;
+
+void fl_file_chooser_callback(void(*cb)(const char *));
+
 
+void fl_file_chooser_ok_label(const char *l);
+
 
+const char * fl_input(const char *fmt, const char *defstr,...);
+
+function Text_Input
+       (Message : in String;
+        Default : in String := "")
+    return String;
+
+void fl_message(const char *fmt,...);
+
+procedure Message_Box
+       (Message : in String);
+
+void fl_message_font(Fl_Font f, Fl_Fontsize s);
+
+procedure Set_Message_Font
+       (Font : in Font_Kind;
+        Size : in Font_Size);
+
+void fl_message_hotspot(int enable);
+
+procedure Set_Hotspot
+       (To : in Boolean);
+
+int fl_message_hotspot(void);
+
+function Get_Hotspot
+    return Boolean;
+
+Fl_Widget * fl_message_icon();
+
+function Get_Message_Icon
+    return FLTK.Widgets.Boxes.Box_Reference;
+
+void fl_message_title(const char *title);
+
+procedure Set_Message_Title
+       (To : in String);
+
+void fl_message_title_default(const char *title);
+
+procedure Set_Message_Title_Default
+       (To : in String);
+
+const char * fl_password(const char *fmt, const char *defstr,...);
+
+function Password
+       (Message : in String;
+        Default : in String := "")
+    return String;
+
+ + + + + diff --git a/doc/fl_clock.html b/doc/fl_clock.html new file mode 100644 index 0000000..5e37577 --- /dev/null +++ b/doc/fl_clock.html @@ -0,0 +1,107 @@ + + + + + + + Fl_Clock Binding Map + + + + + + +

Fl_Clock Binding Map

+ + + + + + + + + +
Package name
Fl_ClockFLTK.Widgets.Clocks.Updated
+ + + + + + + + + + + + + + + + +
Types
Fl_ClockUpdated_Clock
 Updated_Clock_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Clock(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Updated_Clock;
+
+Fl_Clock(uchar t, int X, int Y, int W, int H, const char *L);
+
+function Create
+       (Kind       : in Box_Kind;
+        X, Y, W, H : in Integer;
+        Text       : in String)
+    return Updated_Clock;
+
 
+procedure Draw
+       (This : in out Updated_Clock);
+
 
+procedure Draw
+       (This       : in out Clock;
+        X, Y, W, H : in     Integer);
+
+int handle(int);
+
+function Handle
+       (This  : in out Updated_Clock;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+ + + + + diff --git a/doc/fl_clock_output.html b/doc/fl_clock_output.html new file mode 100644 index 0000000..92aaf37 --- /dev/null +++ b/doc/fl_clock_output.html @@ -0,0 +1,184 @@ + + + + + + + Fl_Clock_Output Binding Map + + + + + + +

Fl_Clock_Output Binding Map

+ + + + + + + + + +
Package name
Fl_Clock_OutputFLTK.Widgets.Clocks
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Types
Fl_Clock_OutputClock
 Clock_Reference
 Hour
 Minute
 Second
 Time_Value
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Clock_Output(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Clock;
+
+void draw();
+
+procedure Draw
+       (This : in out Clock);
+
+void draw(int X, int Y, int W, int H);
+
+procedure Draw
+       (This       : in out Clock;
+        X, Y, W, H : in     Integer);
+
 
+function Handle
+       (This  : in out Clock;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+int hour() const;
+
+function Get_Hour
+       (This : in Clock)
+    return Hour;
+
+int minute() const;
+
+function Get_Minute
+       (This : in Clock)
+    return Minute;
+
+int second() const;
+
+function Get_Second
+       (This : in Clock)
+    return Second;
+
+void value(ulong v);
+
+procedure Set_Time
+       (This : in out Clock;
+        To   : in     Time_Value);
+
+void value(int H, int m, int s);
+
+procedure Set_Time
+       (This    : in out Clock;
+        Hours   : in     Hour;
+        Minutes : in     Minute;
+        Seconds : in     Second);
+
+ulong value() const;
+
+function Get_Time
+       (This : in Clock)
+    return Time_Value;
+
+ + + + + diff --git a/doc/fl_double_window.html b/doc/fl_double_window.html new file mode 100644 index 0000000..88656a4 --- /dev/null +++ b/doc/fl_double_window.html @@ -0,0 +1,139 @@ + + + + + + + Fl_Double_Window Binding Map + + + + + + +

Fl_Double_Window Binding Map

+ + + + + + + + + + +
Package name
Fl_Double_WindowFLTK.Widgets.Groups.Windows.Double
+ + + + + + + + + + + + + + + + +
Types
Fl_Double_WindowDouble_Window
 Double_Window_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Double_Window(int W, int H, const char *L=0);
+
+function Create
+       (W, H : in Integer)
+    return Double_Window;
+
+Fl_Double_Window(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Double_Window;
+
 
+procedure Draw
+       (This : in out Double_Window);
+
+void flush();
+
+procedure Flush
+       (This : in out Double_Window);
+
 
+function Handle
+       (This  : in out Double_Window;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+void hide();
+
+procedure Hide
+       (This : in out Double_Window);
+
+void resize(int,int,int,int);
+
 
+void show();
+
+procedure Show
+       (This : in out Double_Window);
+
+void show(int a, char **b);
+
 
+ + + + + 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;
+
+ + + + + diff --git a/doc/fl_float_input.html b/doc/fl_float_input.html new file mode 100644 index 0000000..04afafe --- /dev/null +++ b/doc/fl_float_input.html @@ -0,0 +1,93 @@ + + + + + + + Fl_Float_Input Binding Map + + + + + + +

Fl_Float_Input Binding Map

+ + + + + + + + + + +
Package name
Fl_Float_InputFLTK.Widgets.Inputs.Float
+ + + + + + + + + + + + + + + + +
Types
Fl_Float_InputFloat_Input
 Float_Input_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Float_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 Float_Input;
+
 
+procedure Draw
+       (This : in out Float_Input);
+
 
+function Get_Value
+       (This : in Float_Input)
+    return Standard.Float;
+
 
+function Handle
+       (This  : in out Float_Input;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+ + + + + diff --git a/doc/fl_input.html b/doc/fl_input.html new file mode 100644 index 0000000..f93b4c8 --- /dev/null +++ b/doc/fl_input.html @@ -0,0 +1,545 @@ + + + + + + + Fl_Input Binding Map + + + + + + +

Fl_Input Binding Map

+ + + + + + + + + + +
Package name
Fl_Input_
Fl_Input
FLTK.Widgets.Inputs
+ + + + + + + + + + + + + + + + + + + + + +
Types
Fl_Input_
Fl_Input
Input
 Input_Reference
 Input_Kind
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Input_(int, int, int, int, const char*=0);
+Fl_Input(int, int, int, int, const char*=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Input;
+
 
+function Has_Changed
+       (This : in Input)
+    return Boolean;
+
 
+procedure Clear_Changed
+       (This : in out Input);
+
+int copy(int clipboard);
+
+procedure Copy
+       (This : in out Input);
+
+int copy_cuts();
+
+procedure Copy_Cuts
+       (This : in out Input);
+
+Fl_Color cursor_color() const;
+
+function Get_Cursor_Color
+       (This : in Input)
+    return Color;
+
+void cursor_color(Fl_Color n);
+
+procedure Set_Cursor_Color
+       (This : in out Input;
+        To   : in     Color);
+
+int cut();
+
+procedure Cut
+       (This : in out Input);
+
+int cut(int n);
+
+procedure Cut
+       (This      : in out Input;
+        Num_Bytes : in     Integer);
+
+int cut(int a, int b);
+
+procedure Cut
+       (This          : in out Input;
+        Start, Finish : in     Integer);
+
+void draw();
+
+procedure Draw
+       (This : in out Input);
+
+int handle(int);
+
+function Handle
+       (This  : in out Input;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+Fl_Char index(int i) const;
+
+function Index
+       (This  : in Input;
+        Place : in Integer)
+    return Character;
+
+int input_type() const;
+
+function Get_Input_Type
+       (This : in Input)
+    return Input_Kind;
+
+void input_type(int t);
+
+procedure Set_Input_Type
+       (This : in out Input;
+        To   : in     Input_Kind);
+
+int insert(const char *t, int l=0);
+
+procedure Insert
+       (This : in out Input;
+        Str  : in     String);
+
+int mark() const;
+
+function Get_Mark
+       (This : in Input)
+    return Natural;
+
+int mark(int m);
+
+procedure Set_Mark
+       (This : in out Input;
+        To   : in     Natural);
+
+int maximum_size() const;
+
+function Get_Maximum_Size
+       (This : in Input)
+    return Natural;
+
+void maximum_size(int m);
+
+procedure Set_Maximum_Size
+       (This : in out Input;
+        To   : in     Natural);
+
+int position() const;
+
+function Get_Position
+       (This : in Input)
+    return Natural;
+
+int position(int p, int m);
+
 
+int position(int p);
+
+procedure Set_Position
+       (This : in out Input;
+        To   : in     Natural);
+
+int readonly() const;
+
+function Is_Readonly
+       (This : in Input)
+    return Boolean;
+
+void readonly(int b);
+
+procedure Set_Readonly
+       (This : in out Input;
+        To   : in     Boolean);
+
+int replace(int b, int e, const char *text, int ilen=0);
+
+procedure Replace
+       (This     : in out Input;
+        From, To : in     Natural;
+        New_Text : in     String);
+
+void resize(int, int, int, int);
+
 
+int shortcut() const;
+
+function Get_Shortcut_Key
+       (This : in Input)
+    return Shortcut_Key;
+
+void shortcut(int s);
+
+procedure Set_Shortcut_Key
+       (This : in out Input;
+        To   : in     Shortcut_Key);
+
+int size() const;
+
+function Size
+       (This : in Input)
+    return Natural;
+
+void size(int W, int H);
+
+procedure Resize
+       (This : in out Input;
+        W, H : in     Integer);
+
+int static_value(const char *);
+
 
+int static_value(const char *, int);
+
 
+void tab_nav(int val);
+
+procedure Set_Tab_Nav
+       (This : in out Input;
+        To   : in     Boolean);
+
+int tab_nav() const;
+
+function Is_Tab_Nav
+       (This : in Input)
+    return Boolean;
+
+Fl_Color textcolor() const;
+
+function Get_Text_Color
+       (This : in Input)
+    return Color;
+
+void textcolor(Fl_Color n);
+
+procedure Set_Text_Color
+       (This : in out Input;
+        To   : in     Color);
+
+Fl_Font textfont() const;
+
+function Get_Text_Font
+       (This : in Input)
+    return Font_Kind;
+
+void textfont(Fl_Font s);
+
+procedure Set_Text_Font
+       (This : in out Input;
+        To   : in     Font_Kind);
+
+Fl_Fontsize textsize() const;
+
+function Get_Text_Size
+       (This : in Input)
+    return Font_Size;
+
+void textsize(Fl_Fontsize s);
+
+procedure Set_Text_Size
+       (This : in out Input;
+        To   : in     Font_Size);
+
+int undo();
+
+procedure Undo
+       (This : in out Input);
+
+int value(const char *);
+int value(const char *, int);
+
+procedure Set_Value
+       (This : in out Input;
+        To   : in     String);
+
+const char * value() const;
+
+function Get_Value
+       (This : in Input)
+    return String;
+
+int wrap() const;
+
+function Is_Wrap
+       (This : in Input)
+    return Boolean;
+
+void wrap(int b);
+
+procedure Set_Wrap
+       (This : in out Input;
+        To   : in     Boolean);
+
+ + + + + diff --git a/doc/fl_int_input.html b/doc/fl_int_input.html new file mode 100644 index 0000000..5acce80 --- /dev/null +++ b/doc/fl_int_input.html @@ -0,0 +1,93 @@ + + + + + + + Fl_Int_Input Binding Map + + + + + + +

Fl_Int_Input Binding Map

+ + + + + + + + + + +
Package name
Fl_Int_InputFLTK.Widgets.Inputs.Integer
+ + + + + + + + + + + + + + + + +
Types
Fl_Int_InputInteger_Input
 Integer_Input_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Int_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 Integer_Input;
+
 
+procedure Draw
+       (This : in out Integer_Input);
+
 
+function Get_Value
+       (This : in Integer_Input)
+    return Standard.Integer;
+
 
+function Handle
+       (This  : in out Integer_Input;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+ + + + + diff --git a/doc/fl_menu_window.html b/doc/fl_menu_window.html new file mode 100644 index 0000000..74ca9b7 --- /dev/null +++ b/doc/fl_menu_window.html @@ -0,0 +1,161 @@ + + + + + + + Fl_Menu_Window Binding Map + + + + + + +

Fl_Menu_Window Binding Map

+ + + + + + + + + + +
Package name
Fl_Menu_WindowFLTK.Widgets.Groups.Windows.Single.Menu
+ + + + + + + + + + + + + + + + +
Types
Fl_Menu_WindowMenu_Window
 Menu_Window_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Menu_Window(int W, int H, const char *L=0);
+
+function Create
+       (W, H : in Integer)
+    return Menu_Window;
+
+Fl_Menu_Window(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Menu_Window;
+
+void clear_overlay();
+
See set_overlay();
 
+procedure Draw
+       (This : in out Menu_Window);
+
+void erase();
+
 
+void flush();
+
+procedure Flush
+       (This : in out Menu_Window);
+
 
+function Handle
+       (This  : in out Menu_Window;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+void hide();
+
+procedure Hide
+       (This : in out Menu_Window);
+
+unsigned int overlay();
+
+function Is_Overlay
+       (This : in Menu_Window)
+    return Boolean;
+
+void set_overlay();
+
+procedure Set_Overlay
+       (This  : in out Menu_Window;
+        Value : in     Boolean);
+
+void show();
+
+procedure Show
+       (This : in out Menu_Window);
+
+ + + + + diff --git a/doc/fl_multiline_input.html b/doc/fl_multiline_input.html new file mode 100644 index 0000000..54d8ce0 --- /dev/null +++ b/doc/fl_multiline_input.html @@ -0,0 +1,84 @@ + + + + + + + Fl_Multiline_Input Binding Map + + + + + + +

Fl_Multiline_Input Binding Map

+ + + + + + + + + + +
Package name
Fl_Multiline_InputFLTK.Widgets.Inputs.Multiline
+ + + + + + + + + + + + + + + + +
Types
Fl_Multiline_InputMultiline_Input
 Multiline_Input_Reference
+ + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Multiline_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 Multiline_Input;
+
 
+procedure Draw
+       (This : in out Multiline_Input);
+
 
+function Handle
+       (This  : in out Multiline_Input;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+ + + + + diff --git a/doc/fl_multiline_output.html b/doc/fl_multiline_output.html new file mode 100644 index 0000000..982c48d --- /dev/null +++ b/doc/fl_multiline_output.html @@ -0,0 +1,84 @@ + + + + + + + Fl_Multiline_Output Binding Map + + + + + + +

Fl_Multiline_Output Binding Map

+ + + + + + + + + + +
Package name
Fl_Multiline_OutputFLTK.Widgets.Inputs.Outputs.Multiline
+ + + + + + + + + + + + + + + + +
Types
Fl_MultilineOutputMultiline_Output
 Multiline_Output_Reference
+ + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Multiline_Output(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Multiline_Output;
+
 
+procedure Draw
+       (This : in out Multiline_Output);
+
 
+function Handle
+       (This  : in out Multiline_Output;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+ + + + + diff --git a/doc/fl_output.html b/doc/fl_output.html new file mode 100644 index 0000000..a8b7502 --- /dev/null +++ b/doc/fl_output.html @@ -0,0 +1,84 @@ + + + + + + + Fl_Output Binding Map + + + + + + +

Fl_Output Binding Map

+ + + + + + + + + + +
Package name
Fl_OutputFLTK.Widgets.Inputs.Outputs
+ + + + + + + + + + + + + + + + +
Types
Fl_OutputOutput
 Output_Reference
+ + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Output(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Output;
+
 
+procedure Draw
+       (This : in out Output);
+
 
+function Handle
+       (This  : in out Output;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+ + + + + diff --git a/doc/fl_round_clock.html b/doc/fl_round_clock.html new file mode 100644 index 0000000..9049459 --- /dev/null +++ b/doc/fl_round_clock.html @@ -0,0 +1,93 @@ + + + + + + + Fl_Round_Clock Binding Map + + + + + + +

Fl_Round_Clock Binding Map

+ + + + + + + + + + +
Package name
Fl_Round_ClockFLTK.Widgets.Clocks.Updated.Round
+ + + + + + + + + + + + + + + + +
Types
Fl_Round_ClockRound_Clock
 Round_Clock_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Round_Clock(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Round_Clock;
+
 
+procedure Draw
+       (This : in out Round_Clock);
+
 
+procedure Draw
+       (This       : in out Clock;
+        X, Y, W, H : in     Integer);
+
 
+function Handle
+       (This  : in out Round_Clock;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+ + + + + diff --git a/doc/fl_secret_input.html b/doc/fl_secret_input.html new file mode 100644 index 0000000..43e5226 --- /dev/null +++ b/doc/fl_secret_input.html @@ -0,0 +1,86 @@ + + + + + + + Fl_Secret_Input Binding Map + + + + + + +

Fl_Secret_Input Binding Map

+ + + + + + + + + + +
Package name
Fl_Secret_InputFLTK.Widgets.Inputs.Secret
+ + + + + + + + + + + + + + + + +
Types
Fl_Secret_InputSecret_Input
 Secret_Input_Reference
+ + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Secret_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 Secret_Input;
+
 
+procedure Draw
+       (This : in out Secret_Input);
+
+int handle(int);
+
+function Handle
+       (This  : in out Secret_Input;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+ + + + + diff --git a/doc/fl_single_window.html b/doc/fl_single_window.html new file mode 100644 index 0000000..4044d5c --- /dev/null +++ b/doc/fl_single_window.html @@ -0,0 +1,129 @@ + + + + + + + Fl_Single_Window Binding Map + + + + + + +

Fl_Single_Window Binding Map

+ + + + + + + + + + +
Package name
Fl_Single_WindowFLTK.Widgets.Groups.Windows.Single
+ + + + + + + + + + + + + + + + +
Types
Fl_Single_WindowSingle_Window
 Single_Window_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Single_Window(int W, int H, const char *L=0);
+
+function Create
+       (W, H : in Integer)
+    return Single_Window;
+
+Fl_Single_Window(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Single_Window;
+
 
+procedure Draw
+       (This : in out Single_Window);
+
+void flush();
+
+procedure Flush
+       (This : in out Single_Window);
+
 
+function Handle
+       (This  : in out Single_Window;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+int make_current();
+
 
+void show();
+
+procedure Show
+       (This : in out Single_Window);
+
+void show(int a, char **b);
+
 
+ + + + + -- cgit