blob: 64ff5629b897939f36a5471bef1af8b61828367b (
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
|
with FLTK.Widgets.Groups.Windows.Double;
private with FLTK.Widgets.Inputs;
private with FLTK.Widgets.Buttons.Enter;
private with FLTK.Widgets.Buttons.Light.Check;
package Windows.Replace is
type Replace_Window is new FLTK.Widgets.Groups.Windows.Double.Double_Window with private;
type Replace_Callback is access procedure
(Item, Replace_With : in String;
Match_Case, Rep_All : in Boolean);
function Create
return Replace_Window;
function Create
(X, Y, W, H : in Integer;
Label_Text : in String)
return Replace_Window;
function Create
(W, H : in Integer)
return Replace_Window;
procedure Set_Replace_Callback
(This : in out Replace_Window;
Func : in Replace_Callback);
private
type Replace_Window is new FLTK.Widgets.Groups.Windows.Double.Double_Window with
record
Find_What, Replace_With : FLTK.Widgets.Inputs.Input;
Match_Case, Replace_All : FLTK.Widgets.Buttons.Light.Check.Check_Button;
Cancel : FLTK.Widgets.Buttons.Button;
Start : FLTK.Widgets.Buttons.Enter.Enter_Button;
Callback : Replace_Callback;
end record;
end Windows.Replace;
|