summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-inputs-file.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-inputs-file.ads')
-rw-r--r--src/fltk-widgets-inputs-file.ads30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/fltk-widgets-inputs-file.ads b/src/fltk-widgets-inputs-file.ads
index 3ef3561..3d1142a 100644
--- a/src/fltk-widgets-inputs-file.ads
+++ b/src/fltk-widgets-inputs-file.ads
@@ -5,6 +5,9 @@ package FLTK.Widgets.Inputs.File is
type File_Input is new Input with private;
+ type File_Input_Reference (Data : not null access File_Input'Class) is
+ limited null record with Implicit_Dereference => Data;
+
@@ -39,6 +42,17 @@ package FLTK.Widgets.Inputs.File is
+ function Get_Value
+ (This : in Input)
+ return String;
+
+ procedure Set_Value
+ (This : in out Input;
+ To : in String);
+
+
+
+
procedure Draw
(This : in out File_Input);
@@ -57,5 +71,21 @@ private
(This : in out File_Input);
+
+
+ pragma Inline (Get_Down_Box);
+ pragma Inline (Set_Down_Box);
+ pragma Inline (Get_Error_Color);
+ pragma Inline (Set_Error_Color);
+
+
+ pragma Inline (Get_Value);
+ pragma Inline (Set_Value);
+
+
+ pragma Inline (Draw);
+ pragma Inline (Handle);
+
+
end FLTK.Widgets.Inputs.File;