summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-groups-browsers.ads
blob: 00aabc8bd175d243563158c6825b3aae77f77164 (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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439


--  Programmed by Jedidiah Barber
--  Released into the public domain


with

    FLTK.Widgets.Valuators.Sliders.Scrollbars,
    System;

private with

    Ada.Finalization,
    Ada.Unchecked_Conversion,
    Interfaces.C;


package FLTK.Widgets.Groups.Browsers is


    type Abstract_Browser is new Group with private;

    type Abstract_Browser_Reference (Data : not null access Abstract_Browser'Class) is
        limited null record with Implicit_Dereference => Data;

    type Item_Cursor is mod System.Memory_Size;

    No_Item : constant Item_Cursor;

    type Sort_Order is (Ascending, Descending);

    type Scrollbar_Mode is record
        Horizontal : Boolean := True;
        Vertical   : Boolean := True;
        Always_On  : Boolean := False;
    end record;




    package Forge is

        function Create
               (X, Y, W, H : in Integer;
                Text       : in String := "")
            return Abstract_Browser;

    end Forge;




    --  Access to the Browser's self contained scrollbars

    function H_Bar
           (This : in out Abstract_Browser)
        return Valuators.Sliders.Scrollbars.Scrollbar_Reference;

    function V_Bar
           (This : in out Abstract_Browser)
        return Valuators.Sliders.Scrollbars.Scrollbar_Reference;




    --  Item related settings

    function Set_Select
           (This         : in out Abstract_Browser;
            Item         : in     Item_Cursor;
            State        : in     Boolean := True;
            Do_Callbacks : in     Boolean := False)
        return Boolean;

    function Select_Only
           (This         : in out Abstract_Browser;
            Item         : in     Item_Cursor;
            Do_Callbacks : in     Boolean := False)
        return Boolean;

    function Current_Selection
           (This : in Abstract_Browser)
        return Item_Cursor;

    function Deselect
           (This         : in out Abstract_Browser;
            Do_Callbacks : in     Boolean := False)
        return Boolean;

    procedure Display
           (This : in out Abstract_Browser;
            Item : in     Item_Cursor);

    function Is_Displayed
           (This : in Abstract_Browser;
            Item : in Item_Cursor)
        return Boolean;

    function Find_Item
           (This  : in Abstract_Browser;
            Y_Pos : in Integer)
        return Item_Cursor;

    function Top_Item
           (This : in Abstract_Browser)
        return Item_Cursor;

    --  Not task safe due to internal issues with converting Ada Strings to char* in C.
    --  Unsure how much that matters since unsure how task safe FLTK is anyway.
    procedure Sort
           (This  : in out Abstract_Browser;
            Order : in     Sort_Order);




    --  Scrollbar related settings

    function Get_Scrollbar_Mode
           (This : in Abstract_Browser)
        return Scrollbar_Mode;

    procedure Set_Scrollbar_Mode
           (This : in out Abstract_Browser;
            Mode : in     Scrollbar_Mode);

    function Get_H_Position
           (This : in Abstract_Browser)
        return Integer;

    procedure Set_H_Position
           (This  : in out Abstract_Browser;
            Value : in     Integer);

    function Get_V_Position
           (This : in Abstract_Browser)
        return Integer;

    procedure Set_V_Position
           (This  : in out Abstract_Browser;
            Value : in     Integer);

    procedure Set_Vertical_Left
           (This : in out Abstract_Browser);

    procedure Set_Vertical_Right
           (This : in out Abstract_Browser);

    function Get_Scrollbar_Size
           (This : in Abstract_Browser)
        return Integer;

    procedure Set_Scrollbar_Size
           (This  : in out Abstract_Browser;
            Value : in     Integer);




    --  Text related settings

    function Get_Text_Color
           (This : in Abstract_Browser)
        return Color;

    procedure Set_Text_Color
           (This  : in out Abstract_Browser;
            Value : in     Color);

    function Get_Text_Font
           (This : in Abstract_Browser)
        return Font_Kind;

    procedure Set_Text_Font
           (This : in out Abstract_Browser;
            Font : in     Font_Kind);

    function Get_Text_Size
           (This : in Abstract_Browser)
        return Font_Size;

    procedure Set_Text_Size
           (This : in out Abstract_Browser;
            Size : in     Font_Size);




    --  Graphical dimensions and redrawing

    procedure Resize
           (This       : in out Abstract_Browser;
            X, Y, W, H : in     Integer);

    procedure Bounding_Box
           (This       : in     Abstract_Browser;
            X, Y, W, H :    out Integer);

    function Left_Edge
           (This : in Abstract_Browser)
        return Integer;

    procedure Redraw_Line
           (This : in out Abstract_Browser;
            Item : in     Item_Cursor);

    procedure Redraw_List
           (This : in out Abstract_Browser);




    --  You may override these subprograms to change the behaviour of the widget
    --  even though these are called from within FLTK.

    function Full_List_Width
           (This : in Abstract_Browser)
        return Integer;

    function Full_List_Height
           (This : in Abstract_Browser)
        return Integer;

    function Average_Item_Height
           (This : in Abstract_Browser)
        return Integer;

    function Item_Quick_Height
           (This : in Abstract_Browser;
            Item : in Item_Cursor)
        return Integer;




    --  You MUST override these subprograms if deriving a type from Abstract_Browser
    --  or your program will crash, since they are called from within FLTK and do not
    --  have any implementations given. By default here they will raise an exception.

    function Item_Width
           (This : in Abstract_Browser;
            Item : in Item_Cursor)
        return Integer;

    function Item_Height
           (This : in Abstract_Browser;
            Item : in Item_Cursor)
        return Integer;

    function Item_First
           (This : in Abstract_Browser)
        return Item_Cursor;

    function Item_Last
           (This : in Abstract_Browser)
        return Item_Cursor;

    function Item_Next
           (This : in Abstract_Browser;
            Item : in Item_Cursor)
        return Item_Cursor;

    function Item_Previous
           (This : in Abstract_Browser;
            Item : in Item_Cursor)
        return Item_Cursor;

    function Item_At
           (This  : in Abstract_Browser;
            Index : in Positive)
        return Item_Cursor;

    procedure Item_Select
           (This  : in out Abstract_Browser;
            Item  : in     Item_Cursor;
            State : in     Boolean := True);

    function Item_Selected
           (This : in Abstract_Browser;
            Item : in Item_Cursor)
        return Boolean;

    procedure Item_Swap
           (This : in out Abstract_Browser;
            A, B : in     Item_Cursor);

    function Item_Text
           (This : in Abstract_Browser;
            Item : in Item_Cursor)
        return String;

    procedure Item_Draw
           (This       : in Abstract_Browser;
            Item       : in Item_Cursor;
            X, Y, W, H : in Integer);




    --  Cache invalidation

    procedure New_List
           (This : in out Abstract_Browser);

    procedure Inserting
           (This : in out Abstract_Browser;
            A, B : in     Item_Cursor);

    procedure Deleting
           (This : in out Abstract_Browser;
            Item : in     Item_Cursor);

    procedure Replacing
           (This : in out Abstract_Browser;
            A, B : in     Item_Cursor);

    procedure Swapping
           (This : in out Abstract_Browser;
            A, B : in     Item_Cursor);




    --  You may override these subprograms to change the behaviour of the widget
    --  even though these are called from within FLTK.

    procedure Draw
           (This : in out Abstract_Browser);

    function Handle
           (This  : in out Abstract_Browser;
            Event : in     Event_Kind)
        return Event_Outcome;


private


    type Abstract_Browser is new Group with record
        Horizon : aliased Valuators.Sliders.Scrollbars.Scrollbar;
        Vertigo : aliased Valuators.Sliders.Scrollbars.Scrollbar;
    end record;

    overriding procedure Finalize
           (This : in out Abstract_Browser);

    procedure Extra_Init
           (This       : in out Abstract_Browser;
            X, Y, W, H : in     Integer;
            Text       : in     String);


    pragma Assert
       (Item_Cursor'Size = Storage.Integer_Address'Size,
        "Size of Browser Item_Cursor does not match Ada address values");

    function Address_To_Cursor is
        new Ada.Unchecked_Conversion (Storage.Integer_Address, Item_Cursor);
    function Cursor_To_Address is
        new Ada.Unchecked_Conversion (Item_Cursor, Storage.Integer_Address);

    No_Item : constant Item_Cursor := Address_To_Cursor (Null_Pointer);


    for Scrollbar_Mode use record
        Horizontal at 0 range 0 .. 0;
        Vertical   at 0 range 1 .. 1;
        Always_On  at 0 range 2 .. 2;
    end record;

    for Scrollbar_Mode'Size use Interfaces.C.unsigned_char'Size;

    function Mode_To_Uchar is
        new Ada.Unchecked_Conversion (Scrollbar_Mode, Interfaces.C.unsigned_char);
    function Uchar_To_Mode is
        new Ada.Unchecked_Conversion (Interfaces.C.unsigned_char, Scrollbar_Mode);


    pragma Inline (H_Bar);
    pragma Inline (V_Bar);

    pragma Inline (Current_Selection);
    pragma Inline (Display);
    pragma Inline (Find_Item);
    pragma Inline (Top_Item);
    pragma Inline (Sort);

    pragma Inline (Get_Scrollbar_Mode);
    pragma Inline (Set_Scrollbar_Mode);
    pragma Inline (Get_H_Position);
    pragma Inline (Set_H_Position);
    pragma Inline (Get_V_Position);
    pragma Inline (Set_V_Position);
    pragma Inline (Set_Vertical_Left);
    pragma Inline (Set_Vertical_Right);
    pragma Inline (Get_Scrollbar_Size);
    pragma Inline (Set_Scrollbar_Size);

    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 (Resize);
    pragma Inline (Bounding_Box);
    pragma Inline (Left_Edge);
    pragma Inline (Redraw_Line);
    pragma Inline (Redraw_List);

    pragma Inline (Full_List_Width);
    pragma Inline (Full_List_Height);
    pragma Inline (Average_Item_Height);
    pragma Inline (Item_Quick_Height);

    pragma Inline (New_List);
    pragma Inline (Inserting);
    pragma Inline (Deleting);
    pragma Inline (Replacing);
    pragma Inline (Swapping);

    pragma Inline (Draw);
    pragma Inline (Handle);


    --  Needed to ensure chars_ptr storage is properly cleaned up
    type Item_Text_Hook_Final_Controller is new Ada.Finalization.Controlled with null record;

    overriding procedure Finalize
           (This : in out Item_Text_Hook_Final_Controller);

    Cleanup : Item_Text_Hook_Final_Controller;


end FLTK.Widgets.Groups.Browsers;