aboutsummaryrefslogtreecommitdiff
path: root/src/windows-find.ads
blob: 34b319650b81d5da9dec09857a4c6c13795ec77a (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60


--  Programmed by Jedidiah Barber
--  Licensed under the Sunset License v1.0

--  See license.txt for further details


private with

    FLTK.Widgets.Inputs.Text,
    FLTK.Widgets.Buttons.Enter,
    FLTK.Widgets.Buttons.Light.Check;


package Windows.Find is


    type Find_Window is new Window with private;

    type Direction is (Forward, Backward);

    type Find_Callback is access procedure
           (Item       : in String;
            Match_Case : in Boolean;
            Facing     : in Direction);




    function Create
        return Find_Window;




    procedure Set_Find_Callback
           (This : in out Find_Window;
            Func : in     Find_Callback);

    procedure Do_Callback
           (This : in Find_Window;
            Dir  : in Direction := Forward);


private


    type Find_Window is new Window with record
        Find_What  : FLTK.Widgets.Inputs.Text.Text_Input;
        Match_Case : FLTK.Widgets.Buttons.Light.Check.Check_Button;
        Cancel     : FLTK.Widgets.Buttons.Button;
        Start      : FLTK.Widgets.Buttons.Enter.Enter_Button;
        Callback   : Find_Callback;
    end record;


end Windows.Find;