blob: 8970efd2d2b7e61e09bf05ad4c556696683c128b (
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
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
|
with
Interfaces.C,
System;
use type
Interfaces.C.unsigned_long,
System.Address;
package body FLTK is
function fl_run return Interfaces.C.int;
pragma Import (C, fl_run, "fl_run");
function Run
return Integer is
begin
return Integer (fl_run);
end Run;
function Has_Valid_Ptr
(This : in Wrapper)
return Boolean is
begin
return This.Void_Ptr /= System.Null_Address;
end Has_Valid_Ptr;
procedure Initialize
(This : in out Wrapper) is
begin
This.Void_Ptr := System.Null_Address;
end Initialize;
function Shortcut
(Key : Pressable_Key)
return Shortcut_Key is
begin
return This : Shortcut_Key do
This.Modifier := Mod_None;
This.Keypress := Character'Pos (Key);
end return;
end Shortcut;
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 := Character'Pos (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 Key_To_C
(Key : in Shortcut_Key)
return Interfaces.C.unsigned_long is
begin
return Interfaces.C.unsigned_long (Key.Modifier) *
65536 + Interfaces.C.unsigned_long (Key.Keypress);
end Key_To_C;
function C_To_Key
(Key : in Interfaces.C.unsigned_long)
return Shortcut_Key is
begin
return Result : Shortcut_Key do
Result.Modifier := Modifier_Key (Key / 65536);
Result.Keypress := Interfaces.Unsigned_16 (Key mod 65536);
end return;
end C_To_Key;
end FLTK;
|