summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-popups.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/fltk-popups.ads')
-rw-r--r--src/fltk_binding/fltk-popups.ads32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/fltk_binding/fltk-popups.ads b/src/fltk_binding/fltk-popups.ads
deleted file mode 100644
index 4b75c9b..0000000
--- a/src/fltk_binding/fltk-popups.ads
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-package FLTK.Popups is
-
-
- procedure Alert
- (Message : String);
-
-
- type Choice is (First, Second, Third);
- function Three_Way_Choice
- (Message, Button1, Button2, Button3 : in String)
- return Choice;
-
-
- function File_Chooser
- (Message, Filter_Pattern, Default : in String;
- Relative : in Boolean := False)
- return String;
-
-
- function Text_Input
- (Message, Default : in String)
- return String;
-
-
- procedure Message_Box
- (Message : in String);
-
-
-end FLTK.Popups;
-