gtkada_24.0.0_80c56171/src/generated/gtk-action_group.adb

   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
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
------------------------------------------------------------------------------
--                                                                          --
--      Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet       --
--                     Copyright (C) 2000-2022, AdaCore                     --
--                                                                          --
-- This library is free software;  you can redistribute it and/or modify it --
-- under terms of the  GNU General Public License  as published by the Free --
-- Software  Foundation;  either version 3,  or (at your  option) any later --
-- version. This library is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY;  without even the implied warranty of MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE.                            --
--                                                                          --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception,   --
-- version 3.1, as published by the Free Software Foundation.               --
--                                                                          --
-- You should have received a copy of the GNU General Public License and    --
-- a copy of the GCC Runtime Library Exception along with this program;     --
-- see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    --
-- <http://www.gnu.org/licenses/>.                                          --
--                                                                          --
------------------------------------------------------------------------------

pragma Style_Checks (Off);
pragma Warnings (Off, "*is already use-visible*");
with Ada.Unchecked_Conversion;
with Ada.Unchecked_Deallocation;
with Glib.Type_Conversion_Hooks; use Glib.Type_Conversion_Hooks;
with Glib.Values;                use Glib.Values;
with Gtk.Arguments;              use Gtk.Arguments;
with Gtkada.Bindings;            use Gtkada.Bindings;

package body Gtk.Action_Group is

   function Convert (R : Gtk.Action.Gtk_Action) return System.Address is
   begin
      return Get_Object (R);
   end Convert;

   function Convert (R : System.Address) return Gtk.Action.Gtk_Action is
      Stub : Gtk.Action.Gtk_Action_Record;begin
         return Gtk.Action.Gtk_Action (Glib.Object.Get_User_Data (R, Stub));
      end Convert;

   procedure Local_Radio_Action_Callback
     (Group, Current, User_Data : System.Address);
   pragma Convention (C, Local_Radio_Action_Callback);
   --  Local proxy for Radio_Action_Callback

   procedure Local_Radio_Action_Destroy
     (Data : in out System.Address);
   pragma Convention (C, Local_Radio_Action_Destroy);
   --  Local proxy for the Destroy notify for Radio_Action

   type Local_Radio_Action_User_Data is record
      Callback  : Radio_Action_Callback;
      User_Data : System.Address;
      Destroy   : G_Destroy_Notify_Address;
   end record;
   type Local_Radio_Action_User_Data_Access is
      access Local_Radio_Action_User_Data;

      function Convert is new Ada.Unchecked_Conversion
        (System.Address, Local_Radio_Action_User_Data_Access);
      function Convert is new Ada.Unchecked_Conversion
        (Local_Radio_Action_User_Data_Access, System.Address);
      procedure Unchecked_Free is new Ada.Unchecked_Deallocation
        (Local_Radio_Action_User_Data, Local_Radio_Action_User_Data_Access);

      procedure Local_Radio_Action_Callback
        (Group, Current, User_Data : System.Address)
      is
         Data : constant Local_Radio_Action_User_Data_Access :=
         Convert (User_Data);
         Stub : Gtk_Action_Record;
         G : constant Gtk_Action := Gtk_Action (Get_User_Data (Group, Stub));
         C : constant Gtk_Action := Gtk_Action (Get_User_Data (Current, Stub));
      begin
         Data.Callback (G, C, Data.User_Data);
      end Local_Radio_Action_Callback;

      procedure Local_Radio_Action_Destroy
        (Data : in out System.Address)
      is
         D : Local_Radio_Action_User_Data_Access := Convert (Data);
      begin
         D.Destroy (D.User_Data);
         Unchecked_Free (D);
      end Local_Radio_Action_Destroy;

      function Create
        (Name        : String;
         Label       : String := "";
         Stock_Id    : String := "";
         Accelerator : String := "";
         Tooltip     : String := "";
         Callback    : Action_Callback := null) return Action_Entry is
      begin
         return (Name        => String_Or_Null (Name),
            Label       => String_Or_Null (Label),
            Stock_Id    => String_Or_Null (Stock_Id),
            Accelerator => String_Or_Null (Accelerator),
            Tooltip     => String_Or_Null (Tooltip),
            Callback    => Callback);
      end Create;

      function Create
        (Name        : String;
         Label       : String := "";
         Stock_Id    : String := "";
         Accelerator : String := "";
         Tooltip     : String := "";
         Callback    : Action_Callback := null;
         Is_Active   : Boolean := True) return Toggle_Action_Entry is
      begin
         return (Name        => String_Or_Null (Name),
            Label       => String_Or_Null (Label),
            Stock_Id    => String_Or_Null (Stock_Id),
            Accelerator => String_Or_Null (Accelerator),
            Tooltip     => String_Or_Null (Tooltip),
            Callback    => Callback,
            Is_Active   => Boolean'Pos (Is_Active));
      end Create;

      function Create
        (Name        : String;
         Label       : String;
         Stock_Id    : String := "";
         Accelerator : String := "";
         Tooltip     : String := "";
         Value       : Glib.Gint) return Radio_Action_Entry is
      begin
         return (Name        => String_Or_Null (Name),
            Label       => String_Or_Null (Label),
            Stock_Id    => String_Or_Null (Stock_Id),
            Accelerator => String_Or_Null (Accelerator),
            Tooltip     => String_Or_Null (Tooltip),
            Value       => Value);
      end Create;

      procedure Free (Action  : in out Action_Entry) is
      begin
         g_free (Action.Name);
         g_free (Action.Label);
         g_free (Action.Stock_Id);
         g_free (Action.Accelerator);
         g_free (Action.Tooltip);
      end Free;

      procedure Free (Actions : in out Action_Entry_Array) is
      begin
         for A in Actions'Range loop
            Free (Actions (A));
         end loop;
      end Free;

      procedure Free (Action  : in out Radio_Action_Entry) is
      begin
         g_free (Action.Name);
         g_free (Action.Label);
         g_free (Action.Stock_Id);
         g_free (Action.Accelerator);
         g_free (Action.Tooltip);
      end Free;

      procedure Free (Actions : in out Radio_Action_Entry_Array) is
      begin
         for A in Actions'Range loop
            Free (Actions (A));
         end loop;
      end Free;

      procedure Free (Action  : in out Toggle_Action_Entry) is
      begin
         g_free (Action.Name);
         g_free (Action.Label);
         g_free (Action.Stock_Id);
         g_free (Action.Accelerator);
         g_free (Action.Tooltip);
      end Free;

      procedure Free (Actions : in out Toggle_Action_Entry_Array) is
      begin
         for A in Actions'Range loop
            Free (Actions (A));
         end loop;
      end Free;

      procedure Add_Actions
        (Action_Group : access Gtk_Action_Group_Record;
         Entries      : Action_Entry_Array;
         User_Data    : System.Address := System.Null_Address;
         Destroy      : Glib.G_Destroy_Notify_Address := null)
      is
         procedure Internal
           (Action_Group : System.Address;
            Entries      : System.Address;
            N_Entries    : Guint;
            User_Data    : System.Address;
            Destroy      : G_Destroy_Notify_Address);
         pragma Import (C, Internal, "gtk_action_group_add_actions_full");
      begin
         Internal (Get_Object (Action_Group),
            Entries (Entries'First)'Address,
            Entries'Length,
            User_Data, Destroy);
      end Add_Actions;

      procedure Add_Radio_Actions
        (Action_Group : access Gtk_Action_Group_Record;
         Entries      : Radio_Action_Entry_Array;
         Value        : Glib.Gint;
         On_Change    : Radio_Action_Callback;
         User_Data    : System.Address := System.Null_Address;
         Destroy      : Glib.G_Destroy_Notify_Address := null)
      is
         procedure Internal
           (Action_Group : System.Address;
            Entries      : System.Address;
            N_Entries    : Guint;
            Value        : Gint;
            On_Change    : System.Address;
            User_Data    : System.Address;
            Destroy      : System.Address);
         pragma Import (C, Internal, "gtk_action_group_add_radio_actions_full");
         Data : constant Local_Radio_Action_User_Data_Access :=
         new Local_Radio_Action_User_Data'
        (Callback  => On_Change,
         User_Data => User_Data,
         Destroy   => Destroy);
   begin
      Internal (Get_Object (Action_Group),
         Entries (Entries'First)'Address, Entries'Length,
         Value,
         Local_Radio_Action_Callback'Address,
         Convert (Data),
         Local_Radio_Action_Destroy'Address);
   end Add_Radio_Actions;

   procedure Add_Toggle_Actions
     (Action_Group : access Gtk_Action_Group_Record;
      Entries      : Toggle_Action_Entry_Array;
      User_Data    : System.Address := System.Null_Address;
      Destroy      : G_Destroy_Notify_Address := null)
   is
      procedure Internal
        (Action_Group : System.Address;
         Entries      : System.Address;
         N_Entries    : Guint;
         User_Data    : System.Address;
         Destroy      : G_Destroy_Notify_Address);
      pragma Import (C, Internal, "gtk_action_group_add_toggle_actions_full");
   begin
      Internal (Get_Object (Action_Group),
         Entries (Entries'First)'Address, Entries'Length, User_Data,
         Destroy);
   end Add_Toggle_Actions;

   procedure C_Gtk_Action_Group_Set_Translate_Func
      (Action_Group : System.Address;
       Func         : System.Address;
       Data         : System.Address;
       Notify       : System.Address);
   pragma Import (C, C_Gtk_Action_Group_Set_Translate_Func, "gtk_action_group_set_translate_func");
   pragma Obsolescent (C_Gtk_Action_Group_Set_Translate_Func);
   --  Sets a function to be used for translating the Label and Tooltip of
   --  Gtk_Action_Entrys added by gtk_action_group_add_actions.
   --  If you're using gettext, it is enough to set the translation domain
   --  with Gtk.Action_Group.Set_Translation_Domain.
   --  Since: gtk+ 2.4
   --  Deprecated since 3.10, 1
   --  "func": a Gtk_Translate_Func
   --  "data": data to be passed to Func and Notify
   --  "notify": a Glib.G_Destroy_Notify_Address function to be called when
   --  Action_Group is destroyed and when the translation function is changed
   --  again

   function To_Gtk_Translate_Func is new Ada.Unchecked_Conversion
     (System.Address, Gtk_Translate_Func);

   function To_Address is new Ada.Unchecked_Conversion
     (Gtk_Translate_Func, System.Address);

   function Internal_Gtk_Translate_Func
      (Path      : Gtkada.Types.Chars_Ptr;
       Func_Data : System.Address) return Gtkada.Types.Chars_Ptr;
   pragma Obsolescent (Internal_Gtk_Translate_Func);
   pragma Convention (C, Internal_Gtk_Translate_Func);
   --  Deprecated since 3.10, 1
   --  "path": The id of the message. In Gtk.Action_Group.Gtk_Action_Group
   --  this will be a label or tooltip from a Gtk_Action_Entry.
   --  "func_data": user data passed in when registering the function

   ---------------------------------
   -- Internal_Gtk_Translate_Func --
   ---------------------------------

   function Internal_Gtk_Translate_Func
      (Path      : Gtkada.Types.Chars_Ptr;
       Func_Data : System.Address) return Gtkada.Types.Chars_Ptr
   is
      Func : constant Gtk_Translate_Func := To_Gtk_Translate_Func (Func_Data);
   begin
      return New_String (Func (Gtkada.Bindings.Value_Allowing_Null (Path)));
   end Internal_Gtk_Translate_Func;

   package Type_Conversion_Gtk_Action_Group is new Glib.Type_Conversion_Hooks.Hook_Registrator
     (Get_Type'Access, Gtk_Action_Group_Record);
   pragma Unreferenced (Type_Conversion_Gtk_Action_Group);

   --------------------------
   -- Gtk_Action_Group_New --
   --------------------------

   function Gtk_Action_Group_New
      (Name : UTF8_String) return Gtk_Action_Group
   is
      Action_Group : constant Gtk_Action_Group := new Gtk_Action_Group_Record;
   begin
      Gtk.Action_Group.Initialize (Action_Group, Name);
      return Action_Group;
   end Gtk_Action_Group_New;

   -------------
   -- Gtk_New --
   -------------

   procedure Gtk_New
      (Action_Group : out Gtk_Action_Group;
       Name         : UTF8_String)
   is
   begin
      Action_Group := new Gtk_Action_Group_Record;
      Gtk.Action_Group.Initialize (Action_Group, Name);
   end Gtk_New;

   ----------------
   -- Initialize --
   ----------------

   procedure Initialize
      (Action_Group : not null access Gtk_Action_Group_Record'Class;
       Name         : UTF8_String)
   is
      function Internal
         (Name : Gtkada.Types.Chars_Ptr) return System.Address;
      pragma Import (C, Internal, "gtk_action_group_new");
      Tmp_Name   : Gtkada.Types.Chars_Ptr := New_String (Name);
      Tmp_Return : System.Address;
   begin
      if not Action_Group.Is_Created then
         Tmp_Return := Internal (Tmp_Name);
         Free (Tmp_Name);
         Set_Object (Action_Group, Tmp_Return);
      end if;
   end Initialize;

   ----------------
   -- Add_Action --
   ----------------

   procedure Add_Action
      (Action_Group : not null access Gtk_Action_Group_Record;
       Action       : not null access Gtk.Action.Gtk_Action_Record'Class)
   is
      procedure Internal
         (Action_Group : System.Address;
          Action       : System.Address);
      pragma Import (C, Internal, "gtk_action_group_add_action");
   begin
      Internal (Get_Object (Action_Group), Get_Object (Action));
   end Add_Action;

   ---------------------------
   -- Add_Action_With_Accel --
   ---------------------------

   procedure Add_Action_With_Accel
      (Action_Group : not null access Gtk_Action_Group_Record;
       Action       : not null access Gtk.Action.Gtk_Action_Record'Class;
       Accelerator  : UTF8_String := "")
   is
      procedure Internal
         (Action_Group : System.Address;
          Action       : System.Address;
          Accelerator  : Gtkada.Types.Chars_Ptr);
      pragma Import (C, Internal, "gtk_action_group_add_action_with_accel");
      Tmp_Accelerator : Gtkada.Types.Chars_Ptr;
   begin
      if Accelerator = "" then
         Tmp_Accelerator := Gtkada.Types.Null_Ptr;
      else
         Tmp_Accelerator := New_String (Accelerator);
      end if;
      Internal (Get_Object (Action_Group), Get_Object (Action), Tmp_Accelerator);
      Free (Tmp_Accelerator);
   end Add_Action_With_Accel;

   ---------------------
   -- Get_Accel_Group --
   ---------------------

   function Get_Accel_Group
      (Action_Group : not null access Gtk_Action_Group_Record)
       return Gtk.Accel_Group.Gtk_Accel_Group
   is
      function Internal
         (Action_Group : System.Address) return System.Address;
      pragma Import (C, Internal, "gtk_action_group_get_accel_group");
      Stub_Gtk_Accel_Group : Gtk.Accel_Group.Gtk_Accel_Group_Record;
   begin
      return Gtk.Accel_Group.Gtk_Accel_Group (Get_User_Data (Internal (Get_Object (Action_Group)), Stub_Gtk_Accel_Group));
   end Get_Accel_Group;

   ----------------
   -- Get_Action --
   ----------------

   function Get_Action
      (Action_Group : not null access Gtk_Action_Group_Record;
       Action_Name  : UTF8_String) return Gtk.Action.Gtk_Action
   is
      function Internal
         (Action_Group : System.Address;
          Action_Name  : Gtkada.Types.Chars_Ptr) return System.Address;
      pragma Import (C, Internal, "gtk_action_group_get_action");
      Tmp_Action_Name : Gtkada.Types.Chars_Ptr := New_String (Action_Name);
      Stub_Gtk_Action : Gtk.Action.Gtk_Action_Record;
      Tmp_Return      : System.Address;
   begin
      Tmp_Return := Internal (Get_Object (Action_Group), Tmp_Action_Name);
      Free (Tmp_Action_Name);
      return Gtk.Action.Gtk_Action (Get_User_Data (Tmp_Return, Stub_Gtk_Action));
   end Get_Action;

   --------------
   -- Get_Name --
   --------------

   function Get_Name
      (Action_Group : not null access Gtk_Action_Group_Record)
       return UTF8_String
   is
      function Internal
         (Action_Group : System.Address) return Gtkada.Types.Chars_Ptr;
      pragma Import (C, Internal, "gtk_action_group_get_name");
   begin
      return Gtkada.Bindings.Value_Allowing_Null (Internal (Get_Object (Action_Group)));
   end Get_Name;

   -------------------
   -- Get_Sensitive --
   -------------------

   function Get_Sensitive
      (Action_Group : not null access Gtk_Action_Group_Record)
       return Boolean
   is
      function Internal (Action_Group : System.Address) return Glib.Gboolean;
      pragma Import (C, Internal, "gtk_action_group_get_sensitive");
   begin
      return Internal (Get_Object (Action_Group)) /= 0;
   end Get_Sensitive;

   -----------------
   -- Get_Visible --
   -----------------

   function Get_Visible
      (Action_Group : not null access Gtk_Action_Group_Record)
       return Boolean
   is
      function Internal (Action_Group : System.Address) return Glib.Gboolean;
      pragma Import (C, Internal, "gtk_action_group_get_visible");
   begin
      return Internal (Get_Object (Action_Group)) /= 0;
   end Get_Visible;

   ------------------
   -- List_Actions --
   ------------------

   function List_Actions
      (Action_Group : not null access Gtk_Action_Group_Record)
       return Action_List.Glist
   is
      function Internal
         (Action_Group : System.Address) return System.Address;
      pragma Import (C, Internal, "gtk_action_group_list_actions");
      Tmp_Return : Action_List.Glist;
   begin
      Gtk.Action_Group.Action_List.Set_Object (Tmp_Return, Internal (Get_Object (Action_Group)));
      return Tmp_Return;
   end List_Actions;

   -------------------
   -- Remove_Action --
   -------------------

   procedure Remove_Action
      (Action_Group : not null access Gtk_Action_Group_Record;
       Action       : not null access Gtk.Action.Gtk_Action_Record'Class)
   is
      procedure Internal
         (Action_Group : System.Address;
          Action       : System.Address);
      pragma Import (C, Internal, "gtk_action_group_remove_action");
   begin
      Internal (Get_Object (Action_Group), Get_Object (Action));
   end Remove_Action;

   ---------------------
   -- Set_Accel_Group --
   ---------------------

   procedure Set_Accel_Group
      (Action_Group : not null access Gtk_Action_Group_Record;
       Accel_Group  : access Gtk.Accel_Group.Gtk_Accel_Group_Record'Class)
   is
      procedure Internal
         (Action_Group : System.Address;
          Accel_Group  : System.Address);
      pragma Import (C, Internal, "gtk_action_group_set_accel_group");
   begin
      Internal (Get_Object (Action_Group), Get_Object_Or_Null (GObject (Accel_Group)));
   end Set_Accel_Group;

   -------------------
   -- Set_Sensitive --
   -------------------

   procedure Set_Sensitive
      (Action_Group : not null access Gtk_Action_Group_Record;
       Sensitive    : Boolean)
   is
      procedure Internal
         (Action_Group : System.Address;
          Sensitive    : Glib.Gboolean);
      pragma Import (C, Internal, "gtk_action_group_set_sensitive");
   begin
      Internal (Get_Object (Action_Group), Boolean'Pos (Sensitive));
   end Set_Sensitive;

   ------------------------
   -- Set_Translate_Func --
   ------------------------

   procedure Set_Translate_Func
      (Action_Group : not null access Gtk_Action_Group_Record;
       Func         : Gtk_Translate_Func)
   is
   begin
      if Func = null then
         C_Gtk_Action_Group_Set_Translate_Func (Get_Object (Action_Group), System.Null_Address, System.Null_Address, System.Null_Address);
      else
         C_Gtk_Action_Group_Set_Translate_Func (Get_Object (Action_Group), Internal_Gtk_Translate_Func'Address, To_Address (Func), System.Null_Address);
      end if;
   end Set_Translate_Func;

   package body Set_Translate_Func_User_Data is

      package Users is new Glib.Object.User_Data_Closure
        (User_Data_Type, Destroy);

      function To_Gtk_Translate_Func is new Ada.Unchecked_Conversion
        (System.Address, Gtk_Translate_Func);

      function To_Address is new Ada.Unchecked_Conversion
        (Gtk_Translate_Func, System.Address);

      function Internal_Cb
         (Path      : Gtkada.Types.Chars_Ptr;
          Func_Data : System.Address) return Gtkada.Types.Chars_Ptr;
      pragma Obsolescent (Internal_Cb);
      pragma Convention (C, Internal_Cb);
      --  The function used to translate messages in e.g.
      --  Gtk.Icon_Factory.Gtk_Icon_Factory and
      --  Gtk.Action_Group.Gtk_Action_Group.
      --  Deprecated since 3.10, 1
      --  "path": The id of the message. In Gtk.Action_Group.Gtk_Action_Group
      --  this will be a label or tooltip from a Gtk_Action_Entry.
      --  "func_data": user data passed in when registering the function

      -----------------
      -- Internal_Cb --
      -----------------

      function Internal_Cb
         (Path      : Gtkada.Types.Chars_Ptr;
          Func_Data : System.Address) return Gtkada.Types.Chars_Ptr
      is
         D : constant Users.Internal_Data_Access := Users.Convert (Func_Data);
      begin
         return New_String (To_Gtk_Translate_Func (D.Func) (Gtkada.Bindings.Value_Allowing_Null (Path), D.Data.all));
      end Internal_Cb;

      ------------------------
      -- Set_Translate_Func --
      ------------------------

      procedure Set_Translate_Func
         (Action_Group : not null access Gtk.Action_Group.Gtk_Action_Group_Record'Class;
          Func         : Gtk_Translate_Func;
          Data         : User_Data_Type)
      is
         D : System.Address;
      begin
         if Func = null then
            C_Gtk_Action_Group_Set_Translate_Func (Get_Object (Action_Group), System.Null_Address, System.Null_Address, Users.Free_Data'Address);
         else
            D := Users.Build (To_Address (Func), Data);
            C_Gtk_Action_Group_Set_Translate_Func (Get_Object (Action_Group), Internal_Cb'Address, D, Users.Free_Data'Address);
         end if;
      end Set_Translate_Func;

   end Set_Translate_Func_User_Data;

   ----------------------------
   -- Set_Translation_Domain --
   ----------------------------

   procedure Set_Translation_Domain
      (Action_Group : not null access Gtk_Action_Group_Record;
       Domain       : UTF8_String := "")
   is
      procedure Internal
         (Action_Group : System.Address;
          Domain       : Gtkada.Types.Chars_Ptr);
      pragma Import (C, Internal, "gtk_action_group_set_translation_domain");
      Tmp_Domain : Gtkada.Types.Chars_Ptr;
   begin
      if Domain = "" then
         Tmp_Domain := Gtkada.Types.Null_Ptr;
      else
         Tmp_Domain := New_String (Domain);
      end if;
      Internal (Get_Object (Action_Group), Tmp_Domain);
      Free (Tmp_Domain);
   end Set_Translation_Domain;

   -----------------
   -- Set_Visible --
   -----------------

   procedure Set_Visible
      (Action_Group : not null access Gtk_Action_Group_Record;
       Visible      : Boolean)
   is
      procedure Internal
         (Action_Group : System.Address;
          Visible      : Glib.Gboolean);
      pragma Import (C, Internal, "gtk_action_group_set_visible");
   begin
      Internal (Get_Object (Action_Group), Boolean'Pos (Visible));
   end Set_Visible;

   ----------------------
   -- Translate_String --
   ----------------------

   function Translate_String
      (Action_Group : not null access Gtk_Action_Group_Record;
       String       : UTF8_String) return UTF8_String
   is
      function Internal
         (Action_Group : System.Address;
          String       : Gtkada.Types.Chars_Ptr)
          return Gtkada.Types.Chars_Ptr;
      pragma Import (C, Internal, "gtk_action_group_translate_string");
      Tmp_String : Gtkada.Types.Chars_Ptr := New_String (String);
      Tmp_Return : Gtkada.Types.Chars_Ptr;
   begin
      Tmp_Return := Internal (Get_Object (Action_Group), Tmp_String);
      Free (Tmp_String);
      return Gtkada.Bindings.Value_Allowing_Null (Tmp_Return);
   end Translate_String;

   use type System.Address;

   function Cb_To_Address is new Ada.Unchecked_Conversion
     (Cb_Gtk_Action_Group_Gtk_Action_Gtk_Widget_Void, System.Address);
   function Address_To_Cb is new Ada.Unchecked_Conversion
     (System.Address, Cb_Gtk_Action_Group_Gtk_Action_Gtk_Widget_Void);

   function Cb_To_Address is new Ada.Unchecked_Conversion
     (Cb_GObject_Gtk_Action_Gtk_Widget_Void, System.Address);
   function Address_To_Cb is new Ada.Unchecked_Conversion
     (System.Address, Cb_GObject_Gtk_Action_Gtk_Widget_Void);

   function Cb_To_Address is new Ada.Unchecked_Conversion
     (Cb_Gtk_Action_Group_Gtk_Action_Void, System.Address);
   function Address_To_Cb is new Ada.Unchecked_Conversion
     (System.Address, Cb_Gtk_Action_Group_Gtk_Action_Void);

   function Cb_To_Address is new Ada.Unchecked_Conversion
     (Cb_GObject_Gtk_Action_Void, System.Address);
   function Address_To_Cb is new Ada.Unchecked_Conversion
     (System.Address, Cb_GObject_Gtk_Action_Void);

   procedure Connect
      (Object  : access Gtk_Action_Group_Record'Class;
       C_Name  : Glib.Signal_Name;
       Handler : Cb_Gtk_Action_Group_Gtk_Action_Gtk_Widget_Void;
       After   : Boolean);

   procedure Connect
      (Object  : access Gtk_Action_Group_Record'Class;
       C_Name  : Glib.Signal_Name;
       Handler : Cb_Gtk_Action_Group_Gtk_Action_Void;
       After   : Boolean);

   procedure Connect_Slot
      (Object  : access Gtk_Action_Group_Record'Class;
       C_Name  : Glib.Signal_Name;
       Handler : Cb_GObject_Gtk_Action_Gtk_Widget_Void;
       After   : Boolean;
       Slot    : access Glib.Object.GObject_Record'Class := null);

   procedure Connect_Slot
      (Object  : access Gtk_Action_Group_Record'Class;
       C_Name  : Glib.Signal_Name;
       Handler : Cb_GObject_Gtk_Action_Void;
       After   : Boolean;
       Slot    : access Glib.Object.GObject_Record'Class := null);

   procedure Marsh_GObject_Gtk_Action_Gtk_Widget_Void
      (Closure         : GClosure;
       Return_Value    : Glib.Values.GValue;
       N_Params        : Glib.Guint;
       Params          : Glib.Values.C_GValues;
       Invocation_Hint : System.Address;
       User_Data       : System.Address);
   pragma Convention (C, Marsh_GObject_Gtk_Action_Gtk_Widget_Void);

   procedure Marsh_GObject_Gtk_Action_Void
      (Closure         : GClosure;
       Return_Value    : Glib.Values.GValue;
       N_Params        : Glib.Guint;
       Params          : Glib.Values.C_GValues;
       Invocation_Hint : System.Address;
       User_Data       : System.Address);
   pragma Convention (C, Marsh_GObject_Gtk_Action_Void);

   procedure Marsh_Gtk_Action_Group_Gtk_Action_Gtk_Widget_Void
      (Closure         : GClosure;
       Return_Value    : Glib.Values.GValue;
       N_Params        : Glib.Guint;
       Params          : Glib.Values.C_GValues;
       Invocation_Hint : System.Address;
       User_Data       : System.Address);
   pragma Convention (C, Marsh_Gtk_Action_Group_Gtk_Action_Gtk_Widget_Void);

   procedure Marsh_Gtk_Action_Group_Gtk_Action_Void
      (Closure         : GClosure;
       Return_Value    : Glib.Values.GValue;
       N_Params        : Glib.Guint;
       Params          : Glib.Values.C_GValues;
       Invocation_Hint : System.Address;
       User_Data       : System.Address);
   pragma Convention (C, Marsh_Gtk_Action_Group_Gtk_Action_Void);

   -------------
   -- Connect --
   -------------

   procedure Connect
      (Object  : access Gtk_Action_Group_Record'Class;
       C_Name  : Glib.Signal_Name;
       Handler : Cb_Gtk_Action_Group_Gtk_Action_Gtk_Widget_Void;
       After   : Boolean)
   is
   begin
      Unchecked_Do_Signal_Connect
        (Object      => Object,
         C_Name      => C_Name,
         Marshaller  => Marsh_Gtk_Action_Group_Gtk_Action_Gtk_Widget_Void'Access,
         Handler     => Cb_To_Address (Handler),--  Set in the closure
         After       => After);
   end Connect;

   -------------
   -- Connect --
   -------------

   procedure Connect
      (Object  : access Gtk_Action_Group_Record'Class;
       C_Name  : Glib.Signal_Name;
       Handler : Cb_Gtk_Action_Group_Gtk_Action_Void;
       After   : Boolean)
   is
   begin
      Unchecked_Do_Signal_Connect
        (Object      => Object,
         C_Name      => C_Name,
         Marshaller  => Marsh_Gtk_Action_Group_Gtk_Action_Void'Access,
         Handler     => Cb_To_Address (Handler),--  Set in the closure
         After       => After);
   end Connect;

   ------------------
   -- Connect_Slot --
   ------------------

   procedure Connect_Slot
      (Object  : access Gtk_Action_Group_Record'Class;
       C_Name  : Glib.Signal_Name;
       Handler : Cb_GObject_Gtk_Action_Gtk_Widget_Void;
       After   : Boolean;
       Slot    : access Glib.Object.GObject_Record'Class := null)
   is
   begin
      Unchecked_Do_Signal_Connect
        (Object      => Object,
         C_Name      => C_Name,
         Marshaller  => Marsh_GObject_Gtk_Action_Gtk_Widget_Void'Access,
         Handler     => Cb_To_Address (Handler),--  Set in the closure
         Slot_Object => Slot,
         After       => After);
   end Connect_Slot;

   ------------------
   -- Connect_Slot --
   ------------------

   procedure Connect_Slot
      (Object  : access Gtk_Action_Group_Record'Class;
       C_Name  : Glib.Signal_Name;
       Handler : Cb_GObject_Gtk_Action_Void;
       After   : Boolean;
       Slot    : access Glib.Object.GObject_Record'Class := null)
   is
   begin
      Unchecked_Do_Signal_Connect
        (Object      => Object,
         C_Name      => C_Name,
         Marshaller  => Marsh_GObject_Gtk_Action_Void'Access,
         Handler     => Cb_To_Address (Handler),--  Set in the closure
         Slot_Object => Slot,
         After       => After);
   end Connect_Slot;

   ----------------------------------------------
   -- Marsh_GObject_Gtk_Action_Gtk_Widget_Void --
   ----------------------------------------------

   procedure Marsh_GObject_Gtk_Action_Gtk_Widget_Void
      (Closure         : GClosure;
       Return_Value    : Glib.Values.GValue;
       N_Params        : Glib.Guint;
       Params          : Glib.Values.C_GValues;
       Invocation_Hint : System.Address;
       User_Data       : System.Address)
   is
      pragma Unreferenced (Return_Value, N_Params, Invocation_Hint, User_Data);
      H   : constant Cb_GObject_Gtk_Action_Gtk_Widget_Void := Address_To_Cb (Get_Callback (Closure));
      Obj : constant Glib.Object.GObject := Glib.Object.Convert (Get_Data (Closure));
   begin
      H (Obj, Gtk.Action.Gtk_Action (Unchecked_To_Object (Params, 1)), Gtk.Widget.Gtk_Widget (Unchecked_To_Object (Params, 2)));
      exception when E : others => Process_Exception (E);
   end Marsh_GObject_Gtk_Action_Gtk_Widget_Void;

   -----------------------------------
   -- Marsh_GObject_Gtk_Action_Void --
   -----------------------------------

   procedure Marsh_GObject_Gtk_Action_Void
      (Closure         : GClosure;
       Return_Value    : Glib.Values.GValue;
       N_Params        : Glib.Guint;
       Params          : Glib.Values.C_GValues;
       Invocation_Hint : System.Address;
       User_Data       : System.Address)
   is
      pragma Unreferenced (Return_Value, N_Params, Invocation_Hint, User_Data);
      H   : constant Cb_GObject_Gtk_Action_Void := Address_To_Cb (Get_Callback (Closure));
      Obj : constant Glib.Object.GObject := Glib.Object.Convert (Get_Data (Closure));
   begin
      H (Obj, Gtk.Action.Gtk_Action (Unchecked_To_Object (Params, 1)));
      exception when E : others => Process_Exception (E);
   end Marsh_GObject_Gtk_Action_Void;

   -------------------------------------------------------
   -- Marsh_Gtk_Action_Group_Gtk_Action_Gtk_Widget_Void --
   -------------------------------------------------------

   procedure Marsh_Gtk_Action_Group_Gtk_Action_Gtk_Widget_Void
      (Closure         : GClosure;
       Return_Value    : Glib.Values.GValue;
       N_Params        : Glib.Guint;
       Params          : Glib.Values.C_GValues;
       Invocation_Hint : System.Address;
       User_Data       : System.Address)
   is
      pragma Unreferenced (Return_Value, N_Params, Invocation_Hint, User_Data);
      H   : constant Cb_Gtk_Action_Group_Gtk_Action_Gtk_Widget_Void := Address_To_Cb (Get_Callback (Closure));
      Obj : constant Gtk_Action_Group := Gtk_Action_Group (Unchecked_To_Object (Params, 0));
   begin
      H (Obj, Gtk.Action.Gtk_Action (Unchecked_To_Object (Params, 1)), Gtk.Widget.Gtk_Widget (Unchecked_To_Object (Params, 2)));
      exception when E : others => Process_Exception (E);
   end Marsh_Gtk_Action_Group_Gtk_Action_Gtk_Widget_Void;

   --------------------------------------------
   -- Marsh_Gtk_Action_Group_Gtk_Action_Void --
   --------------------------------------------

   procedure Marsh_Gtk_Action_Group_Gtk_Action_Void
      (Closure         : GClosure;
       Return_Value    : Glib.Values.GValue;
       N_Params        : Glib.Guint;
       Params          : Glib.Values.C_GValues;
       Invocation_Hint : System.Address;
       User_Data       : System.Address)
   is
      pragma Unreferenced (Return_Value, N_Params, Invocation_Hint, User_Data);
      H   : constant Cb_Gtk_Action_Group_Gtk_Action_Void := Address_To_Cb (Get_Callback (Closure));
      Obj : constant Gtk_Action_Group := Gtk_Action_Group (Unchecked_To_Object (Params, 0));
   begin
      H (Obj, Gtk.Action.Gtk_Action (Unchecked_To_Object (Params, 1)));
      exception when E : others => Process_Exception (E);
   end Marsh_Gtk_Action_Group_Gtk_Action_Void;

   ----------------------
   -- On_Connect_Proxy --
   ----------------------

   procedure On_Connect_Proxy
      (Self  : not null access Gtk_Action_Group_Record;
       Call  : Cb_Gtk_Action_Group_Gtk_Action_Gtk_Widget_Void;
       After : Boolean := False)
   is
   begin
      Connect (Self, "connect-proxy" & ASCII.NUL, Call, After);
   end On_Connect_Proxy;

   ----------------------
   -- On_Connect_Proxy --
   ----------------------

   procedure On_Connect_Proxy
      (Self  : not null access Gtk_Action_Group_Record;
       Call  : Cb_GObject_Gtk_Action_Gtk_Widget_Void;
       Slot  : not null access Glib.Object.GObject_Record'Class;
       After : Boolean := False)
   is
   begin
      Connect_Slot (Self, "connect-proxy" & ASCII.NUL, Call, After, Slot);
   end On_Connect_Proxy;

   -------------------------
   -- On_Disconnect_Proxy --
   -------------------------

   procedure On_Disconnect_Proxy
      (Self  : not null access Gtk_Action_Group_Record;
       Call  : Cb_Gtk_Action_Group_Gtk_Action_Gtk_Widget_Void;
       After : Boolean := False)
   is
   begin
      Connect (Self, "disconnect-proxy" & ASCII.NUL, Call, After);
   end On_Disconnect_Proxy;

   -------------------------
   -- On_Disconnect_Proxy --
   -------------------------

   procedure On_Disconnect_Proxy
      (Self  : not null access Gtk_Action_Group_Record;
       Call  : Cb_GObject_Gtk_Action_Gtk_Widget_Void;
       Slot  : not null access Glib.Object.GObject_Record'Class;
       After : Boolean := False)
   is
   begin
      Connect_Slot (Self, "disconnect-proxy" & ASCII.NUL, Call, After, Slot);
   end On_Disconnect_Proxy;

   ----------------------
   -- On_Post_Activate --
   ----------------------

   procedure On_Post_Activate
      (Self  : not null access Gtk_Action_Group_Record;
       Call  : Cb_Gtk_Action_Group_Gtk_Action_Void;
       After : Boolean := False)
   is
   begin
      Connect (Self, "post-activate" & ASCII.NUL, Call, After);
   end On_Post_Activate;

   ----------------------
   -- On_Post_Activate --
   ----------------------

   procedure On_Post_Activate
      (Self  : not null access Gtk_Action_Group_Record;
       Call  : Cb_GObject_Gtk_Action_Void;
       Slot  : not null access Glib.Object.GObject_Record'Class;
       After : Boolean := False)
   is
   begin
      Connect_Slot (Self, "post-activate" & ASCII.NUL, Call, After, Slot);
   end On_Post_Activate;

   ---------------------
   -- On_Pre_Activate --
   ---------------------

   procedure On_Pre_Activate
      (Self  : not null access Gtk_Action_Group_Record;
       Call  : Cb_Gtk_Action_Group_Gtk_Action_Void;
       After : Boolean := False)
   is
   begin
      Connect (Self, "pre-activate" & ASCII.NUL, Call, After);
   end On_Pre_Activate;

   ---------------------
   -- On_Pre_Activate --
   ---------------------

   procedure On_Pre_Activate
      (Self  : not null access Gtk_Action_Group_Record;
       Call  : Cb_GObject_Gtk_Action_Void;
       Slot  : not null access Glib.Object.GObject_Record'Class;
       After : Boolean := False)
   is
   begin
      Connect_Slot (Self, "pre-activate" & ASCII.NUL, Call, After, Slot);
   end On_Pre_Activate;

end Gtk.Action_Group;