summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-popups.ads
blob: 4b75c9b031e488add501cdefbdcbeebc030785ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32


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;