From 098adf24b20bb7ae71cfd7e6af5517205552e9e5 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 17 May 2018 19:18:34 +1000 Subject: Added FLTK.Widgets.Valuators.Value_Inputs --- doc/fl_value_input.html | 238 ++++++++++++++++++++++++++++++++++++++++++++++++ doc/index.html | 3 +- 2 files changed, 240 insertions(+), 1 deletion(-) create mode 100644 doc/fl_value_input.html (limited to 'doc') diff --git a/doc/fl_value_input.html b/doc/fl_value_input.html new file mode 100644 index 0000000..16d02b8 --- /dev/null +++ b/doc/fl_value_input.html @@ -0,0 +1,238 @@ + + + + + + + Fl_Value_Input Binding Map + + + + + + +

Fl_Value_Input Binding Map

+ + + + + + + + + + +
Package name
Fl_Value_InputFLTK.Widgets.Valuators.Value_Inputs
+ + + + + + + + + + + + + + + + +
Types
Fl_Value_InputValue_Input
 Value_Input_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Value_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 Value_Input;
+
+Fl_Color cursor_color() const;
+
+function Get_Cursor_Color
+       (This : in Value_Input)
+    return Color;
+
+void cursor_color(Fl_Color n);
+
+procedure Set_Cursor_Color
+       (This : in out Value_Input;
+        Col  : in     Color);
+
+void draw();
+
+procedure Draw
+       (This : in out Value_Input);
+
+int handle(int);
+
+function Handle
+       (This  : in out Value_Input;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+Fl_Input input;
+
+function Input
+       (This : in Value_Input)
+    return FLTK.Widgets.Inputs.Input_Reference;
+
+void resize(int, int, int, int);
+
 
+int shortcut() const;
+
+function Get_Shortcut
+       (This : in Value_Input)
+    return Key_Combo;
+
+void shortcut(int s);
+
+procedure Set_Shortcut
+       (This : in out Value_Input;
+        Key  : in     Key_Combo);
+
+void soft(char s);
+
+procedure Set_Soft
+       (This : in out Value_Input;
+        To   : in     Boolean);
+
+char soft() const;
+
+function Is_Soft
+       (This : in Value_Input)
+    return Boolean;
+
+Fl_Color textcolor() const;
+
+function Get_Text_Color
+       (This : in Value_Input)
+    return Color;
+
+void textcolor(Fl_Color n);
+
+procedure Set_Text_Color
+       (This : in out Value_Input;
+        Col  : in     Color);
+
+Fl_Font textfont() const;
+
+function Get_Text_Font
+       (This : in Value_Input)
+    return Font_Kind;
+
+void textfont(Fl_Font s);
+
+procedure Set_Text_Font
+       (This : in out Value_Input;
+        Font : in     Font_Kind);
+
+Fl_Fontsize textsize() const;
+
+function Get_Text_Size
+       (This : in Value_Input)
+    return Font_Size;
+
+void textsize(Fl_Fontsize s);
+
+procedure Set_Text_Size
+       (This : in out Value_Input;
+        Size : in     Font_Size);
+
+ + + + + diff --git a/doc/index.html b/doc/index.html index 4d83ae6..e9e3a78 100644 --- a/doc/index.html +++ b/doc/index.html @@ -118,7 +118,7 @@
  • Fl_Tooltip
  • Fl_Tree
  • Fl_Valuator
  • -
  • Fl_Value_Input
  • +
  • Fl_Value_Input
  • Fl_Value_Output
  • Fl_Value_Slider
  • Fl_Widget
  • @@ -217,6 +217,7 @@
  • FLTK.Widgets.Valuators.Sliders.Scrollbars
  • FLTK.Widgets.Valuators.Sliders.Value
  • FLTK.Widgets.Valuators.Sliders.Value.Horizontal
  • +
  • FLTK.Widgets.Valuators.Value_Inputs
  • -- cgit