summaryrefslogtreecommitdiff
path: root/fltk-dialogs.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-11-10 18:56:47 +1100
committerJed Barber <jjbarber@y7mail.com>2016-11-10 18:56:47 +1100
commitfaabff73b74307cdec73264116291857d679aef7 (patch)
treeac97da959e446e58a2e401b2a6ff98d05bc75ec5 /fltk-dialogs.ads
parente0ee146d740146cd4c80de22d6bf6e204efadfa0 (diff)
Renamed popups to dialogs
Diffstat (limited to 'fltk-dialogs.ads')
-rw-r--r--fltk-dialogs.ads32
1 files changed, 32 insertions, 0 deletions
diff --git a/fltk-dialogs.ads b/fltk-dialogs.ads
new file mode 100644
index 0000000..cf8f80e
--- /dev/null
+++ b/fltk-dialogs.ads
@@ -0,0 +1,32 @@
+
+
+package FLTK.Dialogs 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.Dialogs;
+