summaryrefslogtreecommitdiff
path: root/fltk-popups.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-popups.ads
parente0ee146d740146cd4c80de22d6bf6e204efadfa0 (diff)
Renamed popups to dialogs
Diffstat (limited to 'fltk-popups.ads')
-rw-r--r--fltk-popups.ads32
1 files changed, 0 insertions, 32 deletions
diff --git a/fltk-popups.ads b/fltk-popups.ads
deleted file mode 100644
index 4b75c9b..0000000
--- a/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;
-