summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-menus-menu_bars-systemwide.adb
blob: bccdc2e52a42f62dfcae6eec0f1e8332556aae41 (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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619


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


with

    Ada.Assertions,
    Ada.Unchecked_Deallocation,
    FLTK.Widgets.Groups,
    Interfaces.C;

use type

    Interfaces.C.int;


package body FLTK.Widgets.Menus.Menu_Bars.Systemwide is


    package Chk renames Ada.Assertions;

    procedure Free_Item is new Ada.Unchecked_Deallocation
        (Object => FLTK.Menu_Items.Menu_Item, Name => Item_Access);




    ------------------------
    --  Functions From C  --
    ------------------------

    function new_fl_sys_menu_bar
           (X, Y, W, H : in Interfaces.C.int;
            Text       : in Interfaces.C.char_array)
        return Storage.Integer_Address;
    pragma Import (C, new_fl_sys_menu_bar, "new_fl_sys_menu_bar");
    pragma Inline (new_fl_sys_menu_bar);

    procedure free_fl_sys_menu_bar
           (M : in Storage.Integer_Address);
    pragma Import (C, free_fl_sys_menu_bar, "free_fl_sys_menu_bar");
    pragma Inline (free_fl_sys_menu_bar);




    function fl_sys_menu_bar_add
           (M : in Storage.Integer_Address;
            T : in Interfaces.C.char_array)
        return Interfaces.C.int;
    pragma Import (C, fl_sys_menu_bar_add, "fl_sys_menu_bar_add");
    pragma Inline (fl_sys_menu_bar_add);

    function fl_sys_menu_bar_add2
           (M : in Storage.Integer_Address;
            T : in Interfaces.C.char_array;
            S : in Interfaces.C.int;
            U : in Storage.Integer_Address;
            F : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_sys_menu_bar_add2, "fl_sys_menu_bar_add2");
    pragma Inline (fl_sys_menu_bar_add2);

    function fl_sys_menu_bar_add3
           (M    : in Storage.Integer_Address;
            T, S : in Interfaces.C.char_array;
            U    : in Storage.Integer_Address;
            F    : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_sys_menu_bar_add3, "fl_sys_menu_bar_add3");
    pragma Inline (fl_sys_menu_bar_add3);

    function fl_sys_menu_bar_insert
           (M : in Storage.Integer_Address;
            P : in Interfaces.C.int;
            T : in Interfaces.C.char_array;
            S : in Interfaces.C.int;
            U : in Storage.Integer_Address;
            F : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_sys_menu_bar_insert, "fl_sys_menu_bar_insert");
    pragma Inline (fl_sys_menu_bar_insert);

    function fl_sys_menu_bar_insert2
           (M    : in Storage.Integer_Address;
            P    : in Interfaces.C.int;
            T, S : in Interfaces.C.char_array;
            U    : in Storage.Integer_Address;
            F    : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_sys_menu_bar_insert2, "fl_sys_menu_bar_insert2");
    pragma Inline (fl_sys_menu_bar_insert2);

    procedure fl_sys_menu_bar_set_menu
           (M, D : in Storage.Integer_Address);
    pragma Import (C, fl_sys_menu_bar_set_menu, "fl_sys_menu_bar_set_menu");
    pragma Inline (fl_sys_menu_bar_set_menu);

    procedure fl_sys_menu_bar_remove
           (M : in Storage.Integer_Address;
            P : in Interfaces.C.int);
    pragma Import (C, fl_sys_menu_bar_remove, "fl_sys_menu_bar_remove");
    pragma Inline (fl_sys_menu_bar_remove);

    procedure fl_sys_menu_bar_clear
           (M : in Storage.Integer_Address);
    pragma Import (C, fl_sys_menu_bar_clear, "fl_sys_menu_bar_clear");
    pragma Inline (fl_sys_menu_bar_clear);

    function fl_sys_menu_bar_clear_submenu
           (M : in Storage.Integer_Address;
            I : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_sys_menu_bar_clear_submenu, "fl_sys_menu_bar_clear_submenu");
    pragma Inline (fl_sys_menu_bar_clear_submenu);




    function fl_sys_menu_bar_get_item
           (M : in Storage.Integer_Address;
            I : in Interfaces.C.int)
        return Storage.Integer_Address;
    pragma Import (C, fl_sys_menu_bar_get_item, "fl_sys_menu_bar_get_item");
    pragma Inline (fl_sys_menu_bar_get_item);




    procedure fl_sys_menu_bar_setonly
           (M, I : in Storage.Integer_Address);
    pragma Import (C, fl_sys_menu_bar_setonly, "fl_sys_menu_bar_setonly");
    pragma Inline (fl_sys_menu_bar_setonly);

    procedure fl_sys_menu_bar_replace
           (M : in Storage.Integer_Address;
            I : in Interfaces.C.int;
            T : in Interfaces.C.char_array);
    pragma Import (C, fl_sys_menu_bar_replace, "fl_sys_menu_bar_replace");
    pragma Inline (fl_sys_menu_bar_replace);

    procedure fl_sys_menu_bar_shortcut
           (M : in Storage.Integer_Address;
            I : in Interfaces.C.int;
            S : in Interfaces.C.int);
    pragma Import (C, fl_sys_menu_bar_shortcut, "fl_sys_menu_bar_shortcut");
    pragma Inline (fl_sys_menu_bar_shortcut);

    function fl_sys_menu_bar_get_mode
           (M : in Storage.Integer_Address;
            I : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_sys_menu_bar_get_mode, "fl_sys_menu_bar_get_mode");
    pragma Inline (fl_sys_menu_bar_get_mode);

    procedure fl_sys_menu_bar_set_mode
           (M : in Storage.Integer_Address;
            I : in Interfaces.C.int;
            F : in Interfaces.C.int);
    pragma Import (C, fl_sys_menu_bar_set_mode, "fl_sys_menu_bar_set_mode");
    pragma Inline (fl_sys_menu_bar_set_mode);




    procedure fl_sys_menu_bar_global
           (M : in Storage.Integer_Address);
    pragma Import (C, fl_sys_menu_bar_global, "fl_sys_menu_bar_global");
    pragma Inline (fl_sys_menu_bar_global);

    procedure fl_sys_menu_bar_update
           (M : in Storage.Integer_Address);
    pragma Import (C, fl_sys_menu_bar_update, "fl_sys_menu_bar_update");
    pragma Inline (fl_sys_menu_bar_update);




    procedure fl_sys_menu_bar_draw
           (M : in Storage.Integer_Address);
    pragma Import (C, fl_sys_menu_bar_draw, "fl_sys_menu_bar_draw");
    pragma Inline (fl_sys_menu_bar_draw);

    function fl_sys_menu_bar_handle
           (M : in Storage.Integer_Address;
            E : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_sys_menu_bar_handle, "fl_sys_menu_bar_handle");
    pragma Inline (fl_sys_menu_bar_handle);




    function fl_menu_value
           (M : in Storage.Integer_Address)
        return Interfaces.C.int;
    pragma Import (C, fl_menu_value, "fl_menu_value");
    pragma Inline (fl_menu_value);




    -------------------
    --  Destructors  --
    -------------------

    procedure Extra_Final
           (This : in out System_Menu_Bar) is
    begin
        Extra_Final (Menu_Bar (This));
    end Extra_Final;


    procedure Finalize
           (This : in out System_Menu_Bar) is
    begin
        Extra_Final (This);
        if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then
            free_fl_sys_menu_bar (This.Void_Ptr);
            This.Void_Ptr := Null_Pointer;
        end if;
    end Finalize;




    --------------------
    --  Constructors  --
    --------------------

    procedure Extra_Init
           (This       : in out System_Menu_Bar;
            X, Y, W, H : in     Integer;
            Text       : in     String) is
    begin
        Extra_Init (Menu_Bar (This), X, Y, W, H, Text);
    end Extra_Init;


    procedure Initialize
           (This : in out System_Menu_Bar) is
    begin
        This.Draw_Ptr     := fl_sys_menu_bar_draw'Address;
        This.Handle_Ptr   := fl_sys_menu_bar_handle'Address;
        This.Get_Item_Ptr := fl_sys_menu_bar_get_item'Address;
        This.Value_Ptr    := fl_menu_value'Address;
    end Initialize;


    package body Forge is

        function Create
               (X, Y, W, H : in Integer;
                Text       : in String := "")
            return System_Menu_Bar is
        begin
            return This : System_Menu_Bar do
                This.Void_Ptr := new_fl_sys_menu_bar
                   (Interfaces.C.int (X),
                    Interfaces.C.int (Y),
                    Interfaces.C.int (W),
                    Interfaces.C.int (H),
                    Interfaces.C.To_C (Text));
                Extra_Init (This, X, Y, W, H, Text);
            end return;
        end Create;


        function Create
               (Parent     : in out FLTK.Widgets.Groups.Group'Class;
                X, Y, W, H : in     Integer;
                Text       : in     String := "")
            return System_Menu_Bar is
        begin
            return This : System_Menu_Bar := Create (X, Y, W, H, Text) do
                Parent.Add (This);
            end return;
        end Create;

    end Forge;




    -----------------------
    --  API Subprograms  --
    -----------------------

    procedure Add
           (This : in out System_Menu_Bar;
            Text : in     String)
    is
        Added_Spot : Interfaces.C.int := fl_sys_menu_bar_add
            (This.Void_Ptr, Interfaces.C.To_C (Text));
    begin
        This.Adjust_Item_Store;
    end Add;


    function Add
           (This : in out System_Menu_Bar;
            Text : in     String)
        return Index
    is
        Added_Spot : Interfaces.C.int := fl_sys_menu_bar_add
            (This.Void_Ptr, Interfaces.C.To_C (Text));
    begin
        This.Adjust_Item_Store;
        return Index (Added_Spot + 1);
    end Add;


    procedure Add
           (This     : in out System_Menu_Bar;
            Text     : in     String;
            Action   : in     Widget_Callback := null;
            Shortcut : in     Key_Combo := No_Key;
            Flags    : in     Menu_Flag := Flag_Normal)
    is
        Added_Spot : Interfaces.C.int := fl_sys_menu_bar_add2
           (This.Void_Ptr,
            Interfaces.C.To_C (Text),
            To_C (Shortcut),
            Callback_Convert.To_Address (Action),
            Interfaces.C.int (Flags));
    begin
        This.Adjust_Item_Store;
    end Add;


    function Add
           (This     : in out System_Menu_Bar;
            Text     : in     String;
            Action   : in     Widget_Callback := null;
            Shortcut : in     Key_Combo := No_Key;
            Flags    : in     Menu_Flag := Flag_Normal)
        return Index
    is
        Added_Spot : Interfaces.C.int := fl_sys_menu_bar_add2
           (This.Void_Ptr,
            Interfaces.C.To_C (Text),
            To_C (Shortcut),
            Callback_Convert.To_Address (Action),
            Interfaces.C.int (Flags));
    begin
        This.Adjust_Item_Store;
        return Index (Added_Spot + 1);
    end Add;


    procedure Add
           (This     : in out System_Menu_Bar;
            Text     : in     String;
            Action   : in     Widget_Callback := null;
            Shortcut : in     String;
            Flags    : in     Menu_Flag := Flag_Normal)
    is
        Added_Spot : Interfaces.C.int := fl_sys_menu_bar_add3
           (This.Void_Ptr,
            Interfaces.C.To_C (Text),
            Interfaces.C.To_C (Shortcut),
            Callback_Convert.To_Address (Action),
            Interfaces.C.int (Flags));
    begin
        This.Adjust_Item_Store;
    end Add;


    function Add
           (This     : in out System_Menu_Bar;
            Text     : in     String;
            Action   : in     Widget_Callback := null;
            Shortcut : in     String;
            Flags    : in     Menu_Flag := Flag_Normal)
        return Index
    is
        Added_Spot : Interfaces.C.int := fl_sys_menu_bar_add3
           (This.Void_Ptr,
            Interfaces.C.To_C (Text),
            Interfaces.C.To_C (Shortcut),
            Callback_Convert.To_Address (Action),
            Interfaces.C.int (Flags));
    begin
        This.Adjust_Item_Store;
        return Index (Added_Spot + 1);
    end Add;


    procedure Insert
           (This     : in out System_Menu_Bar;
            Place    : in     Index;
            Text     : in     String;
            Action   : in     Widget_Callback := null;
            Shortcut : in     Key_Combo := No_Key;
            Flags    : in     Menu_Flag := Flag_Normal)
    is
        Added_Spot : Interfaces.C.int := fl_sys_menu_bar_insert
           (This.Void_Ptr,
            Interfaces.C.int (Place) - 1,
            Interfaces.C.To_C (Text),
            To_C (Shortcut),
            Callback_Convert.To_Address (Action),
            Interfaces.C.int (Flags));
    begin
        This.Adjust_Item_Store;
    end Insert;


    function Insert
           (This     : in out System_Menu_Bar;
            Place    : in     Index;
            Text     : in     String;
            Action   : in     Widget_Callback := null;
            Shortcut : in     Key_Combo := No_Key;
            Flags    : in     Menu_Flag := Flag_Normal)
        return Index
    is
        Added_Spot : Interfaces.C.int := fl_sys_menu_bar_insert
           (This.Void_Ptr,
            Interfaces.C.int (Place) - 1,
            Interfaces.C.To_C (Text),
            To_C (Shortcut),
            Callback_Convert.To_Address (Action),
            Interfaces.C.int (Flags));
    begin
        This.Adjust_Item_Store;
        return Index (Added_Spot + 1);
    end Insert;


    procedure Insert
           (This     : in out System_Menu_Bar;
            Place    : in     Index;
            Text     : in     String;
            Action   : in     Widget_Callback := null;
            Shortcut : in     String;
            Flags    : in     Menu_Flag := Flag_Normal)
    is
        Added_Spot : Interfaces.C.int := fl_sys_menu_bar_insert2
           (This.Void_Ptr,
            Interfaces.C.int (Place) - 1,
            Interfaces.C.To_C (Text),
            Interfaces.C.To_C (Shortcut),
            Callback_Convert.To_Address (Action),
            Interfaces.C.int (Flags));
    begin
        This.Adjust_Item_Store;
    end Insert;


    function Insert
           (This     : in out System_Menu_Bar;
            Place    : in     Index;
            Text     : in     String;
            Action   : in     Widget_Callback := null;
            Shortcut : in     String;
            Flags    : in     Menu_Flag := Flag_Normal)
        return Index
    is
        Added_Spot : Interfaces.C.int := fl_sys_menu_bar_insert2
           (This.Void_Ptr,
            Interfaces.C.int (Place) - 1,
            Interfaces.C.To_C (Text),
            Interfaces.C.To_C (Shortcut),
            Callback_Convert.To_Address (Action),
            Interfaces.C.int (Flags));
    begin
        This.Adjust_Item_Store;
        return Index (Added_Spot + 1);
    end Insert;


    procedure Use_Same_Items
           (This  : in out System_Menu_Bar;
            Donor : in     Menu'Class) is
    begin
        --  Donor menu() pointer will be obtained in C++
        fl_sys_menu_bar_set_menu (This.Void_Ptr, Donor.Void_Ptr);
        This.Adjust_Item_Store;
    end Use_Same_Items;


    procedure Remove
           (This  : in out System_Menu_Bar;
            Place : in     Index) is
    begin
        fl_sys_menu_bar_remove (This.Void_Ptr, Interfaces.C.int (Place) - 1);
        This.Adjust_Item_Store;
    end Remove;


    procedure Clear
           (This : in out System_Menu_Bar) is
    begin
        for Item of This.My_Items loop
            Free_Item (Item);
        end loop;
        This.My_Items.Clear;
        fl_sys_menu_bar_clear (This.Void_Ptr);
    end Clear;


    procedure Clear_Submenu
           (This  : in out System_Menu_Bar;
            Place : in     Index)
    is
        Result : Interfaces.C.int := fl_sys_menu_bar_clear_submenu
           (This.Void_Ptr,
            Interfaces.C.int (Place) - 1);
    begin
        if Result = -1 then
            raise No_Reference_Error;
        else
            pragma Assert (Result = 0);
            This.Adjust_Item_Store;
        end if;
    exception
    when Chk.Assertion_Error => raise Internal_FLTK_Error with
        "Call to Fl_Sys_Menu_Bar::clear_submenu returned unexpected int result of " &
        Interfaces.C.int'Image (Result);
    end Clear_Submenu;




    function Item
           (This  : in System_Menu_Bar;
            Place : in Index)
        return FLTK.Menu_Items.Menu_Item_Reference is
    begin
        return Menu_Bar (This).Item (Place);
    end Item;




    procedure Set_Only
           (This : in out System_Menu_Bar;
            Item : in out FLTK.Menu_Items.Menu_Item) is
    begin
        fl_sys_menu_bar_setonly (This.Void_Ptr, Wrapper (Item).Void_Ptr);
    end Set_Only;


    procedure Set_Label
           (This  : in out System_Menu_Bar;
            Place : in     Index;
            Text  : in     String) is
    begin
        fl_sys_menu_bar_replace
           (This.Void_Ptr,
            Interfaces.C.int (Place) - 1,
            Interfaces.C.To_C (Text));
    end Set_Label;


    procedure Set_Shortcut
           (This  : in out System_Menu_Bar;
            Place : in     Index;
            Press : in     Key_Combo) is
    begin
        fl_sys_menu_bar_shortcut
           (This.Void_Ptr,
            Interfaces.C.int (Place) - 1,
            To_C (Press));
    end Set_Shortcut;


    function Get_Flags
           (This  : in System_Menu_Bar;
            Place : in Index)
        return Menu_Flag is
    begin
        return Menu_Flag (fl_sys_menu_bar_get_mode (This.Void_Ptr, Interfaces.C.int (Place) - 1));
    end Get_Flags;


    procedure Set_Flags
           (This  : in out System_Menu_Bar;
            Place : in     Index;
            Flags : in     Menu_Flag) is
    begin
        fl_sys_menu_bar_set_mode
           (This.Void_Ptr,
            Interfaces.C.int (Place) - 1,
            Interfaces.C.int (Flags));
    end Set_Flags;




    procedure Make_Global
           (This : in out System_Menu_Bar) is
    begin
        fl_sys_menu_bar_global (This.Void_Ptr);
    end Make_Global;


    procedure Update
           (This : in out System_Menu_Bar) is
    begin
        fl_sys_menu_bar_update (This.Void_Ptr);
    end Update;




    procedure Draw
           (This : in out System_Menu_Bar) is
    begin
        Menu_Bar (This).Draw;
    end Draw;


end FLTK.Widgets.Menus.Menu_Bars.Systemwide;