blob: ce24ef1486922720f3e0e2fdbdb6cd2491242796 (
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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
|
-- Programmed by Jedidiah Barber
-- Released into the public domain
private with
Interfaces.C.Strings;
package FLTK.Widgets.Groups.Help_Views is
type Help_View is new Group with private;
type Help_View_Reference (Data : not null access Help_View'Class) is limited null record
with Implicit_Dereference => Data;
subtype Position is Positive;
subtype Extended_Position is Natural;
No_Position : constant Extended_Position := 0;
type Link_Callback is access function
(Item : in out Help_View'Class;
URI : in String)
return String;
-- You have no idea how tempting it is to give this
-- a more tongue in cheek name
Load_Help_Error : exception;
package Forge is
function Create
(X, Y, W, H : in Integer;
Text : in String := "")
return Help_View;
end Forge;
procedure Clear_Selection
(This : in out Help_View);
procedure Select_All
(This : in out Help_View);
function Find
(This : in Help_View;
Item : in String;
From : in Position := 1)
return Extended_Position;
function Get_Leftline_Pixel
(This : in Help_View)
return Natural;
procedure Set_Leftline_Pixel
(This : in out Help_View;
Value : in Natural);
function Get_Topline_Pixel
(This : in Help_View)
return Natural;
procedure Set_Topline_Pixel
(This : in out Help_View;
Value : in Natural);
procedure Set_Topline_Target
(This : in out Help_View;
Value : in String);
function Current_Directory
(This : in Help_View)
return String;
function Current_File
(This : in Help_View)
return String;
-- Name here can be either a ftp/http/https/ipp/mailto/news URL or a filename
procedure Load
(This : in out Help_View;
Name : in String);
function Document_Title
(This : in Help_View)
return String;
function Get_Content
(This : in Help_View)
return String;
procedure Set_Content
(This : in out Help_View;
Value : in String);
procedure Set_Link_Callback
(This : in out Help_View;
Func : in Link_Callback);
function Get_Scrollbar_Size
(This : in Help_View)
return Natural;
procedure Set_Scrollbar_Size
(This : in out Help_View;
Value : in Natural);
function Get_Size
(This : in Help_View)
return Integer;
procedure Resize
(This : in out Help_View;
W, H : in Integer);
function Get_Text_Color
(This : in Help_View)
return Color;
procedure Set_Text_Color
(This : in out Help_View;
Value : in Color);
function Get_Text_Font
(This : in Help_View)
return Font_Kind;
procedure Set_Text_Font
(This : in out Help_View;
Font : in Font_Kind);
function Get_Text_Size
(This : in Help_View)
return Font_Size;
procedure Set_Text_Size
(This : in out Help_View;
Size : in Font_Size);
procedure Draw
(This : in out Help_View);
function Handle
(This : in out Help_View;
Event : in Event_Kind)
return Event_Outcome;
private
type Help_View is new Group with record
Zelda : Link_Callback;
Hilda : Interfaces.C.Strings.chars_ptr;
end record;
overriding procedure Finalize
(This : in out Help_View);
procedure Extra_Init
(This : in out Help_View;
X, Y, W, H : in Integer;
Text : in String)
with Inline;
pragma Inline (Clear_Selection);
pragma Inline (Select_All);
pragma Inline (Find);
pragma Inline (Get_Leftline_Pixel);
pragma Inline (Set_Leftline_Pixel);
pragma Inline (Get_Topline_Pixel);
pragma Inline (Set_Topline_Pixel);
pragma Inline (Set_Topline_Target);
pragma Inline (Current_Directory);
pragma Inline (Current_File);
pragma Inline (Set_Content);
pragma Inline (Set_Link_Callback);
pragma Inline (Get_Scrollbar_Size);
pragma Inline (Set_Scrollbar_Size);
pragma Inline (Get_Size);
pragma Inline (Resize);
pragma Inline (Get_Text_Color);
pragma Inline (Set_Text_Color);
pragma Inline (Get_Text_Font);
pragma Inline (Set_Text_Font);
pragma Inline (Get_Text_Size);
pragma Inline (Set_Text_Size);
pragma Inline (Draw);
pragma Inline (Handle);
end FLTK.Widgets.Groups.Help_Views;
|