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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
with Interfaces.C;
with System;
use type System.Address;
use type Interfaces.C.int;
use type Interfaces.C.unsigned_long;
package body FLTK.Widgets.Menus is
function Shortcut
(Key : Pressable_Key)
return Shortcut_Key is
begin
return This : Shortcut_Key do
This.Modifier := Mod_None;
This.Keypress := Key;
end return;
end Shortcut;
function Key_To_C
(Key : Shortcut_Key)
return Interfaces.C.unsigned_long is
begin
return Interfaces.C.unsigned_long (Key.Modifier) *
65536 + Character'Pos (Key.Keypress);
end Key_To_C;
function "+"
(Left, Right : in Modifier_Key)
return Modifier_Key is
begin
return Left or Right;
end "+";
function "+"
(Left : in Modifier_Key;
Right : in Pressable_Key)
return Shortcut_Key is
begin
return This : Shortcut_Key do
This.Modifier := Left;
This.Keypress := Right;
end return;
end "+";
function "+"
(Left : in Modifier_Key;
Right : in Shortcut_Key)
return Shortcut_Key is
begin
return This : Shortcut_Key do
This.Modifier := Left or Right.Modifier;
This.Keypress := Right.Keypress;
end return;
end "+";
function "+"
(Left, Right : in Menu_Flag)
return Menu_Flag is
begin
return Left or Right;
end "+";
function fl_menu_add
(M : in System.Address;
T : in Interfaces.C.char_array;
S : in Interfaces.C.unsigned_long;
C, U : in System.Address;
F : in Interfaces.C.unsigned_long)
return Interfaces.C.int;
pragma Import (C, fl_menu_add, "fl_menu_add");
procedure Item_Hook (M, U : in System.Address);
pragma Convention (C, Item_Hook);
procedure Item_Hook
(M, U : in System.Address) is
Ada_Widget : access Widget'Class :=
Widget_Convert.To_Pointer (fl_widget_get_user_data (M));
Action : access Widget_Callback'Class :=
Callback_Convert.To_Pointer (U);
begin
Action.Call (Ada_Widget.all);
end Item_Hook;
procedure Add
(This : in out Menu;
Text : in String;
Action : access Widget_Callback'Class := null;
Shortcut : in Shortcut_Key := No_Key;
Flags : in Menu_Flag := Flag_Normal)
is
Place : Interfaces.C.int;
Callback, User_Data : System.Address;
begin
if Action = null then
Callback := System.Null_Address;
User_Data := System.Null_Address;
else
Callback := Item_Hook'Address;
User_Data := Callback_Convert.To_Address (Action);
end if;
Place := fl_menu_add
(This.Void_Ptr,
Interfaces.C.To_C (Text),
Key_To_C (Shortcut),
Callback,
User_Data,
Interfaces.C.unsigned_long (Flags));
end Add;
end FLTK.Widgets.Menus;
|