summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-inputs-file.adb
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-06-17 11:28:39 +1000
committerJed Barber <jjbarber@y7mail.com>2017-06-17 11:28:39 +1000
commitfb37523537cdb69a31dede401a604981ce8b7b9d (patch)
tree9d8f8dc3a00ce27b69aa4b7d7696b49d659fcbe1 /src/fltk-widgets-inputs-file.adb
parent33c3691b571ce4b6a2aa6997b70c3bc5d991ca9d (diff)
Updated coding style, added progress log
Diffstat (limited to 'src/fltk-widgets-inputs-file.adb')
-rw-r--r--src/fltk-widgets-inputs-file.adb17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/fltk-widgets-inputs-file.adb b/src/fltk-widgets-inputs-file.adb
index 187ec8d..7f9d6ad 100644
--- a/src/fltk-widgets-inputs-file.adb
+++ b/src/fltk-widgets-inputs-file.adb
@@ -1,8 +1,13 @@
-with Interfaces.C.Strings;
-with System;
-use type System.Address;
+with
+
+ Interfaces.C.Strings,
+ System;
+
+use type
+
+ System.Address;
package body FLTK.Widgets.Inputs.File is
@@ -17,6 +22,8 @@ package body FLTK.Widgets.Inputs.File is
pragma Import (C, file_input_set_handle_hook, "file_input_set_handle_hook");
+
+
function new_fl_file_input
(X, Y, W, H : in Interfaces.C.int;
Text : in Interfaces.C.char_array)
@@ -28,6 +35,8 @@ package body FLTK.Widgets.Inputs.File is
pragma Import (C, free_fl_file_input, "free_fl_file_input");
+
+
procedure fl_file_input_draw
(W : in System.Address);
pragma Import (C, fl_file_input_draw, "fl_file_input_draw");
@@ -86,8 +95,6 @@ package body FLTK.Widgets.Inputs.File is
end Draw;
-
-
function Handle
(This : in out File_Input;
Event : in Event_Kind)