blob: 8e59e9c45c382c8b761540d2d23ece09c300c66a (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
package FLTK.Widgets.Buttons is
type Button is new Widget with private;
type Button_Reference (Data : not null access Button'Class) is limited null record
with Implicit_Dereference => Data;
type State is (Off, On);
package Forge is
function Create
(X, Y, W, H : in Integer;
Text : in String)
return Button;
end Forge;
function Get_State
(This : in Button)
return State;
procedure Set_State
(This : in out Button;
St : in State);
procedure Set_Only
(This : in out Button);
function Get_Down_Box
(This : in Button)
return Box_Kind;
procedure Set_Down_Box
(This : in out Button;
To : in Box_Kind);
function Get_Shortcut
(This : in Button)
return Key_Combo;
procedure Set_Shortcut
(This : in out Button;
Key : in Key_Combo);
procedure Draw
(This : in out Button);
function Handle
(This : in out Button;
Event : in Event_Kind)
return Event_Outcome;
private
type Button is new Widget with null record;
overriding procedure Finalize
(This : in out Button);
pragma Inline (Get_State);
pragma Inline (Set_State);
pragma Inline (Set_Only);
pragma Inline (Get_Down_Box);
pragma Inline (Set_Down_Box);
pragma Inline (Get_Shortcut);
pragma Inline (Set_Shortcut);
pragma Inline (Draw);
pragma Inline (Handle);
end FLTK.Widgets.Buttons;
|