This file is indexed.

/usr/share/ada/adainclude/gtkada/glib-variant.adb is in libgtkada16.1.0-dev 17.0.2017-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
------------------------------------------------------------------------------
--                                                                          --
--      Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet       --
--                     Copyright (C) 2000-2017, 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.                            --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
-- 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 GtkAda.Types;         use GtkAda.Types;
with Gtkada.Bindings;      use Gtkada.Bindings;
pragma Warnings(Off);  --  might be unused
with Interfaces.C.Strings; use Interfaces.C.Strings;
pragma Warnings(On);

package body Glib.Variant is

   function From_Object_Free
     (B : access Gvariant'Class) return Gvariant
   is
      Result : constant Gvariant := Gvariant (B.all);
   begin
      Glib.g_free (B.all'Address);
      return Result;
   end From_Object_Free;

   function From_Object (Object : System.Address) return Gvariant is
      S : Gvariant;
   begin
      S.Set_Object (Object);
      return S;
   end From_Object;

   -----------
   -- G_New --
   -----------

   procedure G_New (Self : out Gvariant_Type; Type_String : UTF8_String) is
      function Internal
         (Type_String : Interfaces.C.Strings.chars_ptr) return Gvariant_Type;
      pragma Import (C, Internal, "g_variant_type_new");
      Tmp_Type_String : Interfaces.C.Strings.chars_ptr := New_String (Type_String);
      Tmp_Return      : Gvariant_Type;
   begin
      Tmp_Return := Internal (Tmp_Type_String);
      Free (Tmp_Type_String);
      Self := Tmp_Return;
   end G_New;

   -------------------
   -- G_New_Boolean --
   -------------------

   procedure G_New_Boolean (Self : out Gvariant; Value : Boolean) is
      function Internal (Value : Glib.Gboolean) return System.Address;
      pragma Import (C, Internal, "g_variant_new_boolean");
   begin
      Self.Set_Object (Internal (Boolean'Pos (Value)));
   end G_New_Boolean;

   ----------------
   -- G_New_Byte --
   ----------------

   procedure G_New_Byte (Self : out Gvariant; Value : Guchar) is
      function Internal (Value : Guchar) return System.Address;
      pragma Import (C, Internal, "g_variant_new_byte");
   begin
      Self.Set_Object (Internal (Value));
   end G_New_Byte;

   ----------------------
   -- G_New_Bytestring --
   ----------------------

   procedure G_New_Bytestring (Self : out Gvariant; String : Gint_Array) is
      function Internal (String : System.Address) return System.Address;
      pragma Import (C, Internal, "g_variant_new_bytestring");
   begin
      Self.Set_Object (Internal (String (String'First)'Address));
   end G_New_Bytestring;

   ----------------------------
   -- G_New_Bytestring_Array --
   ----------------------------

   procedure G_New_Bytestring_Array
      (Self   : out Gvariant;
       Strv   : GNAT.Strings.String_List;
       Length : Gssize)
   is
      function Internal
         (Strv   : Interfaces.C.Strings.chars_ptr_array;
          Length : Gssize) return System.Address;
      pragma Import (C, Internal, "g_variant_new_bytestring_array");
      Tmp_Strv   : Interfaces.C.Strings.chars_ptr_array := From_String_List (Strv);
      Tmp_Return : System.Address;
   begin
      Tmp_Return := Internal (Tmp_Strv, Length);
      GtkAda.Types.Free (Tmp_Strv);
      Self.Set_Object (Tmp_Return);
   end G_New_Bytestring_Array;

   ----------------------
   -- G_New_Dict_Entry --
   ----------------------

   procedure G_New_Dict_Entry
      (Self  : out Gvariant;
       Key   : Gvariant;
       Value : Gvariant)
   is
      function Internal
         (Key   : System.Address;
          Value : System.Address) return System.Address;
      pragma Import (C, Internal, "g_variant_new_dict_entry");
   begin
      Self.Set_Object (Internal (Get_Object (Key), Get_Object (Value)));
   end G_New_Dict_Entry;

   ----------------------
   -- G_New_Dict_Entry --
   ----------------------

   procedure G_New_Dict_Entry
      (Self  : out Gvariant_Type;
       Key   : Gvariant_Type;
       Value : Gvariant_Type)
   is
      function Internal
         (Key   : Gvariant_Type;
          Value : Gvariant_Type) return Gvariant_Type;
      pragma Import (C, Internal, "g_variant_type_new_dict_entry");
   begin
      Self := Internal (Key, Value);
   end G_New_Dict_Entry;

   ------------------
   -- G_New_Double --
   ------------------

   procedure G_New_Double (Self : out Gvariant; Value : Gdouble) is
      function Internal (Value : Gdouble) return System.Address;
      pragma Import (C, Internal, "g_variant_new_double");
   begin
      Self.Set_Object (Internal (Value));
   end G_New_Double;

   ------------------
   -- G_New_Handle --
   ------------------

   procedure G_New_Handle (Self : out Gvariant; Value : Gint32) is
      function Internal (Value : Gint32) return System.Address;
      pragma Import (C, Internal, "g_variant_new_handle");
   begin
      Self.Set_Object (Internal (Value));
   end G_New_Handle;

   -----------------
   -- G_New_Int16 --
   -----------------

   procedure G_New_Int16 (Self : out Gvariant; Value : Gint16) is
      function Internal (Value : Gint16) return System.Address;
      pragma Import (C, Internal, "g_variant_new_int16");
   begin
      Self.Set_Object (Internal (Value));
   end G_New_Int16;

   -----------------
   -- G_New_Int32 --
   -----------------

   procedure G_New_Int32 (Self : out Gvariant; Value : Gint32) is
      function Internal (Value : Gint32) return System.Address;
      pragma Import (C, Internal, "g_variant_new_int32");
   begin
      Self.Set_Object (Internal (Value));
   end G_New_Int32;

   -----------------
   -- G_New_Int64 --
   -----------------

   procedure G_New_Int64 (Self : out Gvariant; Value : Gint64) is
      function Internal (Value : Gint64) return System.Address;
      pragma Import (C, Internal, "g_variant_new_int64");
   begin
      Self.Set_Object (Internal (Value));
   end G_New_Int64;

   -----------------------
   -- G_New_Object_Path --
   -----------------------

   procedure G_New_Object_Path
      (Self        : out Gvariant;
       Object_Path : UTF8_String)
   is
      function Internal
         (Object_Path : Interfaces.C.Strings.chars_ptr)
          return System.Address;
      pragma Import (C, Internal, "g_variant_new_object_path");
      Tmp_Object_Path : Interfaces.C.Strings.chars_ptr := New_String (Object_Path);
      Tmp_Return      : System.Address;
   begin
      Tmp_Return := Internal (Tmp_Object_Path);
      Free (Tmp_Object_Path);
      Self.Set_Object (Tmp_Return);
   end G_New_Object_Path;

   ----------------
   -- G_New_Objv --
   ----------------

   procedure G_New_Objv
      (Self   : out Gvariant;
       Strv   : GNAT.Strings.String_List;
       Length : Gssize)
   is
      function Internal
         (Strv   : Interfaces.C.Strings.chars_ptr_array;
          Length : Gssize) return System.Address;
      pragma Import (C, Internal, "g_variant_new_objv");
      Tmp_Strv   : Interfaces.C.Strings.chars_ptr_array := From_String_List (Strv);
      Tmp_Return : System.Address;
   begin
      Tmp_Return := Internal (Tmp_Strv, Length);
      GtkAda.Types.Free (Tmp_Strv);
      Self.Set_Object (Tmp_Return);
   end G_New_Objv;

   ---------------------
   -- G_New_Signature --
   ---------------------

   procedure G_New_Signature (Self : out Gvariant; Signature : UTF8_String) is
      function Internal
         (Signature : Interfaces.C.Strings.chars_ptr) return System.Address;
      pragma Import (C, Internal, "g_variant_new_signature");
      Tmp_Signature : Interfaces.C.Strings.chars_ptr := New_String (Signature);
      Tmp_Return    : System.Address;
   begin
      Tmp_Return := Internal (Tmp_Signature);
      Free (Tmp_Signature);
      Self.Set_Object (Tmp_Return);
   end G_New_Signature;

   ------------------
   -- G_New_String --
   ------------------

   procedure G_New_String (Self : out Gvariant; String : UTF8_String) is
      function Internal
         (String : Interfaces.C.Strings.chars_ptr) return System.Address;
      pragma Import (C, Internal, "g_variant_new_string");
      Tmp_String : Interfaces.C.Strings.chars_ptr := New_String (String);
      Tmp_Return : System.Address;
   begin
      Tmp_Return := Internal (Tmp_String);
      Free (Tmp_String);
      Self.Set_Object (Tmp_Return);
   end G_New_String;

   ----------------
   -- G_New_Strv --
   ----------------

   procedure G_New_Strv
      (Self   : out Gvariant;
       Strv   : GNAT.Strings.String_List;
       Length : Gssize)
   is
      function Internal
         (Strv   : Interfaces.C.Strings.chars_ptr_array;
          Length : Gssize) return System.Address;
      pragma Import (C, Internal, "g_variant_new_strv");
      Tmp_Strv   : Interfaces.C.Strings.chars_ptr_array := From_String_List (Strv);
      Tmp_Return : System.Address;
   begin
      Tmp_Return := Internal (Tmp_Strv, Length);
      GtkAda.Types.Free (Tmp_Strv);
      Self.Set_Object (Tmp_Return);
   end G_New_Strv;

   -----------------------
   -- G_New_Take_String --
   -----------------------

   procedure G_New_Take_String (Self : out Gvariant; String : UTF8_String) is
      function Internal
         (String : Interfaces.C.Strings.chars_ptr) return System.Address;
      pragma Import (C, Internal, "g_variant_new_take_string");
      Tmp_String : Interfaces.C.Strings.chars_ptr := New_String (String);
      Tmp_Return : System.Address;
   begin
      Tmp_Return := Internal (Tmp_String);
      Free (Tmp_String);
      Self.Set_Object (Tmp_Return);
   end G_New_Take_String;

   ------------------
   -- G_New_Uint16 --
   ------------------

   procedure G_New_Uint16 (Self : out Gvariant; Value : Guint16) is
      function Internal (Value : Guint16) return System.Address;
      pragma Import (C, Internal, "g_variant_new_uint16");
   begin
      Self.Set_Object (Internal (Value));
   end G_New_Uint16;

   ------------------
   -- G_New_Uint32 --
   ------------------

   procedure G_New_Uint32 (Self : out Gvariant; Value : Guint32) is
      function Internal (Value : Guint32) return System.Address;
      pragma Import (C, Internal, "g_variant_new_uint32");
   begin
      Self.Set_Object (Internal (Value));
   end G_New_Uint32;

   ------------------
   -- G_New_Uint64 --
   ------------------

   procedure G_New_Uint64 (Self : out Gvariant; Value : Guint64) is
      function Internal (Value : Guint64) return System.Address;
      pragma Import (C, Internal, "g_variant_new_uint64");
   begin
      Self.Set_Object (Internal (Value));
   end G_New_Uint64;

   -------------------
   -- G_New_Variant --
   -------------------

   procedure G_New_Variant (Self : out Gvariant; Value : Gvariant) is
      function Internal (Value : System.Address) return System.Address;
      pragma Import (C, Internal, "g_variant_new_variant");
   begin
      Self.Set_Object (Internal (Get_Object (Value)));
   end G_New_Variant;

   --------------------------
   -- Gvariant_New_Boolean --
   --------------------------

   function Gvariant_New_Boolean (Value : Boolean) return Gvariant is
      function Internal (Value : Glib.Gboolean) return System.Address;
      pragma Import (C, Internal, "g_variant_new_boolean");
      Self : Gvariant;
   begin
      Self.Set_Object (Internal (Boolean'Pos (Value)));
      return Self;
   end Gvariant_New_Boolean;

   -----------------------
   -- Gvariant_New_Byte --
   -----------------------

   function Gvariant_New_Byte (Value : Guchar) return Gvariant is
      function Internal (Value : Guchar) return System.Address;
      pragma Import (C, Internal, "g_variant_new_byte");
      Self : Gvariant;
   begin
      Self.Set_Object (Internal (Value));
      return Self;
   end Gvariant_New_Byte;

   -----------------------------
   -- Gvariant_New_Bytestring --
   -----------------------------

   function Gvariant_New_Bytestring (String : Gint_Array) return Gvariant is
      function Internal (String : System.Address) return System.Address;
      pragma Import (C, Internal, "g_variant_new_bytestring");
      Self : Gvariant;
   begin
      Self.Set_Object (Internal (String (String'First)'Address));
      return Self;
   end Gvariant_New_Bytestring;

   -----------------------------------
   -- Gvariant_New_Bytestring_Array --
   -----------------------------------

   function Gvariant_New_Bytestring_Array
      (Strv   : GNAT.Strings.String_List;
       Length : Gssize) return Gvariant
   is
      function Internal
         (Strv   : Interfaces.C.Strings.chars_ptr_array;
          Length : Gssize) return System.Address;
      pragma Import (C, Internal, "g_variant_new_bytestring_array");
      Tmp_Strv   : Interfaces.C.Strings.chars_ptr_array := From_String_List (Strv);
      Tmp_Return : System.Address;
      Self       : Gvariant;
   begin
      Tmp_Return := Internal (Tmp_Strv, Length);
      GtkAda.Types.Free (Tmp_Strv);
      Self.Set_Object (Tmp_Return);
      return Self;
   end Gvariant_New_Bytestring_Array;

   -----------------------------
   -- Gvariant_New_Dict_Entry --
   -----------------------------

   function Gvariant_New_Dict_Entry
      (Key   : Gvariant;
       Value : Gvariant) return Gvariant
   is
      function Internal
         (Key   : System.Address;
          Value : System.Address) return System.Address;
      pragma Import (C, Internal, "g_variant_new_dict_entry");
      Self : Gvariant;
   begin
      Self.Set_Object (Internal (Get_Object (Key), Get_Object (Value)));
      return Self;
   end Gvariant_New_Dict_Entry;

   -------------------------
   -- Gvariant_New_Double --
   -------------------------

   function Gvariant_New_Double (Value : Gdouble) return Gvariant is
      function Internal (Value : Gdouble) return System.Address;
      pragma Import (C, Internal, "g_variant_new_double");
      Self : Gvariant;
   begin
      Self.Set_Object (Internal (Value));
      return Self;
   end Gvariant_New_Double;

   -------------------------
   -- Gvariant_New_Handle --
   -------------------------

   function Gvariant_New_Handle (Value : Gint32) return Gvariant is
      function Internal (Value : Gint32) return System.Address;
      pragma Import (C, Internal, "g_variant_new_handle");
      Self : Gvariant;
   begin
      Self.Set_Object (Internal (Value));
      return Self;
   end Gvariant_New_Handle;

   ------------------------
   -- Gvariant_New_Int16 --
   ------------------------

   function Gvariant_New_Int16 (Value : Gint16) return Gvariant is
      function Internal (Value : Gint16) return System.Address;
      pragma Import (C, Internal, "g_variant_new_int16");
      Self : Gvariant;
   begin
      Self.Set_Object (Internal (Value));
      return Self;
   end Gvariant_New_Int16;

   ------------------------
   -- Gvariant_New_Int32 --
   ------------------------

   function Gvariant_New_Int32 (Value : Gint32) return Gvariant is
      function Internal (Value : Gint32) return System.Address;
      pragma Import (C, Internal, "g_variant_new_int32");
      Self : Gvariant;
   begin
      Self.Set_Object (Internal (Value));
      return Self;
   end Gvariant_New_Int32;

   ------------------------
   -- Gvariant_New_Int64 --
   ------------------------

   function Gvariant_New_Int64 (Value : Gint64) return Gvariant is
      function Internal (Value : Gint64) return System.Address;
      pragma Import (C, Internal, "g_variant_new_int64");
      Self : Gvariant;
   begin
      Self.Set_Object (Internal (Value));
      return Self;
   end Gvariant_New_Int64;

   ------------------------------
   -- Gvariant_New_Object_Path --
   ------------------------------

   function Gvariant_New_Object_Path
      (Object_Path : UTF8_String) return Gvariant
   is
      function Internal
         (Object_Path : Interfaces.C.Strings.chars_ptr)
          return System.Address;
      pragma Import (C, Internal, "g_variant_new_object_path");
      Tmp_Object_Path : Interfaces.C.Strings.chars_ptr := New_String (Object_Path);
      Tmp_Return      : System.Address;
      Self            : Gvariant;
   begin
      Tmp_Return := Internal (Tmp_Object_Path);
      Free (Tmp_Object_Path);
      Self.Set_Object (Tmp_Return);
      return Self;
   end Gvariant_New_Object_Path;

   -----------------------
   -- Gvariant_New_Objv --
   -----------------------

   function Gvariant_New_Objv
      (Strv   : GNAT.Strings.String_List;
       Length : Gssize) return Gvariant
   is
      function Internal
         (Strv   : Interfaces.C.Strings.chars_ptr_array;
          Length : Gssize) return System.Address;
      pragma Import (C, Internal, "g_variant_new_objv");
      Tmp_Strv   : Interfaces.C.Strings.chars_ptr_array := From_String_List (Strv);
      Tmp_Return : System.Address;
      Self       : Gvariant;
   begin
      Tmp_Return := Internal (Tmp_Strv, Length);
      GtkAda.Types.Free (Tmp_Strv);
      Self.Set_Object (Tmp_Return);
      return Self;
   end Gvariant_New_Objv;

   ----------------------------
   -- Gvariant_New_Signature --
   ----------------------------

   function Gvariant_New_Signature (Signature : UTF8_String) return Gvariant is
      function Internal
         (Signature : Interfaces.C.Strings.chars_ptr) return System.Address;
      pragma Import (C, Internal, "g_variant_new_signature");
      Tmp_Signature : Interfaces.C.Strings.chars_ptr := New_String (Signature);
      Tmp_Return    : System.Address;
      Self          : Gvariant;
   begin
      Tmp_Return := Internal (Tmp_Signature);
      Free (Tmp_Signature);
      Self.Set_Object (Tmp_Return);
      return Self;
   end Gvariant_New_Signature;

   -------------------------
   -- Gvariant_New_String --
   -------------------------

   function Gvariant_New_String (String : UTF8_String) return Gvariant is
      function Internal
         (String : Interfaces.C.Strings.chars_ptr) return System.Address;
      pragma Import (C, Internal, "g_variant_new_string");
      Tmp_String : Interfaces.C.Strings.chars_ptr := New_String (String);
      Tmp_Return : System.Address;
      Self       : Gvariant;
   begin
      Tmp_Return := Internal (Tmp_String);
      Free (Tmp_String);
      Self.Set_Object (Tmp_Return);
      return Self;
   end Gvariant_New_String;

   -----------------------
   -- Gvariant_New_Strv --
   -----------------------

   function Gvariant_New_Strv
      (Strv   : GNAT.Strings.String_List;
       Length : Gssize) return Gvariant
   is
      function Internal
         (Strv   : Interfaces.C.Strings.chars_ptr_array;
          Length : Gssize) return System.Address;
      pragma Import (C, Internal, "g_variant_new_strv");
      Tmp_Strv   : Interfaces.C.Strings.chars_ptr_array := From_String_List (Strv);
      Tmp_Return : System.Address;
      Self       : Gvariant;
   begin
      Tmp_Return := Internal (Tmp_Strv, Length);
      GtkAda.Types.Free (Tmp_Strv);
      Self.Set_Object (Tmp_Return);
      return Self;
   end Gvariant_New_Strv;

   ------------------------------
   -- Gvariant_New_Take_String --
   ------------------------------

   function Gvariant_New_Take_String (String : UTF8_String) return Gvariant is
      function Internal
         (String : Interfaces.C.Strings.chars_ptr) return System.Address;
      pragma Import (C, Internal, "g_variant_new_take_string");
      Tmp_String : Interfaces.C.Strings.chars_ptr := New_String (String);
      Tmp_Return : System.Address;
      Self       : Gvariant;
   begin
      Tmp_Return := Internal (Tmp_String);
      Free (Tmp_String);
      Self.Set_Object (Tmp_Return);
      return Self;
   end Gvariant_New_Take_String;

   -------------------------
   -- Gvariant_New_Uint16 --
   -------------------------

   function Gvariant_New_Uint16 (Value : Guint16) return Gvariant is
      function Internal (Value : Guint16) return System.Address;
      pragma Import (C, Internal, "g_variant_new_uint16");
      Self : Gvariant;
   begin
      Self.Set_Object (Internal (Value));
      return Self;
   end Gvariant_New_Uint16;

   -------------------------
   -- Gvariant_New_Uint32 --
   -------------------------

   function Gvariant_New_Uint32 (Value : Guint32) return Gvariant is
      function Internal (Value : Guint32) return System.Address;
      pragma Import (C, Internal, "g_variant_new_uint32");
      Self : Gvariant;
   begin
      Self.Set_Object (Internal (Value));
      return Self;
   end Gvariant_New_Uint32;

   -------------------------
   -- Gvariant_New_Uint64 --
   -------------------------

   function Gvariant_New_Uint64 (Value : Guint64) return Gvariant is
      function Internal (Value : Guint64) return System.Address;
      pragma Import (C, Internal, "g_variant_new_uint64");
      Self : Gvariant;
   begin
      Self.Set_Object (Internal (Value));
      return Self;
   end Gvariant_New_Uint64;

   --------------------------
   -- Gvariant_New_Variant --
   --------------------------

   function Gvariant_New_Variant (Value : Gvariant) return Gvariant is
      function Internal (Value : System.Address) return System.Address;
      pragma Import (C, Internal, "g_variant_new_variant");
      Self : Gvariant;
   begin
      Self.Set_Object (Internal (Get_Object (Value)));
      return Self;
   end Gvariant_New_Variant;

   -----------------------
   -- Gvariant_Type_New --
   -----------------------

   function Gvariant_Type_New
      (Type_String : UTF8_String) return Gvariant_Type
   is
      function Internal
         (Type_String : Interfaces.C.Strings.chars_ptr) return Gvariant_Type;
      pragma Import (C, Internal, "g_variant_type_new");
      Tmp_Type_String : Interfaces.C.Strings.chars_ptr := New_String (Type_String);
      Tmp_Return      : Gvariant_Type;
      Self            : Gvariant_Type;
   begin
      Tmp_Return := Internal (Tmp_Type_String);
      Free (Tmp_Type_String);
      Self := Tmp_Return;
      return Self;
   end Gvariant_Type_New;

   ----------------------------------
   -- Gvariant_Type_New_Dict_Entry --
   ----------------------------------

   function Gvariant_Type_New_Dict_Entry
      (Key   : Gvariant_Type;
       Value : Gvariant_Type) return Gvariant_Type
   is
      function Internal
         (Key   : Gvariant_Type;
          Value : Gvariant_Type) return Gvariant_Type;
      pragma Import (C, Internal, "g_variant_type_new_dict_entry");
      Self : Gvariant_Type;
   begin
      Self := Internal (Key, Value);
      return Self;
   end Gvariant_Type_New_Dict_Entry;

   --------------
   -- Byteswap --
   --------------

   function Byteswap (Self : Gvariant) return Gvariant is
      function Internal (Self : System.Address) return System.Address;
      pragma Import (C, Internal, "g_variant_byteswap");
   begin
      return From_Object (Internal (Get_Object (Self)));
   end Byteswap;

   -------------------------
   -- Check_Format_String --
   -------------------------

   function Check_Format_String
      (Self          : Gvariant;
       Format_String : UTF8_String;
       Copy_Only     : Boolean) return Boolean
   is
      function Internal
         (Self          : System.Address;
          Format_String : Interfaces.C.Strings.chars_ptr;
          Copy_Only     : Glib.Gboolean) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_check_format_string");
      Tmp_Format_String : Interfaces.C.Strings.chars_ptr := New_String (Format_String);
      Tmp_Return        : Glib.Gboolean;
   begin
      Tmp_Return := Internal (Get_Object (Self), Tmp_Format_String, Boolean'Pos (Copy_Only));
      Free (Tmp_Format_String);
      return Tmp_Return /= 0;
   end Check_Format_String;

   --------------
   -- Classify --
   --------------

   function Classify (Self : Gvariant) return GVariant_Class is
      function Internal (Self : System.Address) return GVariant_Class;
      pragma Import (C, Internal, "g_variant_classify");
   begin
      return Internal (Get_Object (Self));
   end Classify;

   --------------------------
   -- Dup_Bytestring_Array --
   --------------------------

   function Dup_Bytestring_Array
      (Self   : Gvariant;
       Length : access Gsize) return GNAT.Strings.String_List
   is
      function Internal
         (Self       : System.Address;
          Acc_Length : access Gsize) return chars_ptr_array_access;
      pragma Import (C, Internal, "g_variant_dup_bytestring_array");
      Acc_Length : aliased Gsize;
      Tmp_Return : chars_ptr_array_access;
   begin
      Tmp_Return := Internal (Get_Object (Self), Acc_Length'Access);
      if Length /= null then
         Length.all := Acc_Length;
      end if;
      return To_String_List_And_Free (Tmp_Return);
   end Dup_Bytestring_Array;

   --------------
   -- Dup_Objv --
   --------------

   function Dup_Objv
      (Self   : Gvariant;
       Length : access Gsize) return GNAT.Strings.String_List
   is
      function Internal
         (Self       : System.Address;
          Acc_Length : access Gsize) return chars_ptr_array_access;
      pragma Import (C, Internal, "g_variant_dup_objv");
      Acc_Length : aliased Gsize;
      Tmp_Return : chars_ptr_array_access;
   begin
      Tmp_Return := Internal (Get_Object (Self), Acc_Length'Access);
      if Length /= null then
         Length.all := Acc_Length;
      end if;
      return To_String_List_And_Free (Tmp_Return);
   end Dup_Objv;

   ----------------
   -- Dup_String --
   ----------------

   function Dup_String
      (Self   : Gvariant;
       Length : access Gsize) return UTF8_String
   is
      function Internal
         (Self       : System.Address;
          Acc_Length : access Gsize) return Interfaces.C.Strings.chars_ptr;
      pragma Import (C, Internal, "g_variant_dup_string");
      Acc_Length : aliased Gsize;
      Tmp_Return : Interfaces.C.Strings.chars_ptr;
   begin
      Tmp_Return := Internal (Get_Object (Self), Acc_Length'Access);
      Length.all := Acc_Length;
      return Gtkada.Bindings.Value_And_Free (Tmp_Return);
   end Dup_String;

   ----------------
   -- Dup_String --
   ----------------

   function Dup_String (Self : Gvariant_Type) return UTF8_String is
      function Internal
         (Self : Gvariant_Type) return Interfaces.C.Strings.chars_ptr;
      pragma Import (C, Internal, "g_variant_type_dup_string");
   begin
      return Gtkada.Bindings.Value_And_Free (Internal (Self));
   end Dup_String;

   --------------
   -- Dup_Strv --
   --------------

   function Dup_Strv
      (Self   : Gvariant;
       Length : access Gsize) return GNAT.Strings.String_List
   is
      function Internal
         (Self       : System.Address;
          Acc_Length : access Gsize) return chars_ptr_array_access;
      pragma Import (C, Internal, "g_variant_dup_strv");
      Acc_Length : aliased Gsize;
      Tmp_Return : chars_ptr_array_access;
   begin
      Tmp_Return := Internal (Get_Object (Self), Acc_Length'Access);
      if Length /= null then
         Length.all := Acc_Length;
      end if;
      return To_String_List_And_Free (Tmp_Return);
   end Dup_Strv;

   -----------------
   -- Get_Boolean --
   -----------------

   function Get_Boolean (Self : Gvariant) return Boolean is
      function Internal (Self : System.Address) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_get_boolean");
   begin
      return Internal (Get_Object (Self)) /= 0;
   end Get_Boolean;

   --------------
   -- Get_Byte --
   --------------

   function Get_Byte (Self : Gvariant) return Guchar is
      function Internal (Self : System.Address) return Guchar;
      pragma Import (C, Internal, "g_variant_get_byte");
   begin
      return Internal (Get_Object (Self));
   end Get_Byte;

   --------------------------
   -- Get_Bytestring_Array --
   --------------------------

   function Get_Bytestring_Array
      (Self   : Gvariant;
       Length : access Gsize) return GNAT.Strings.String_List
   is
      function Internal
         (Self       : System.Address;
          Acc_Length : access Gsize) return chars_ptr_array_access;
      pragma Import (C, Internal, "g_variant_get_bytestring_array");
      Acc_Length : aliased Gsize;
      Tmp_Return : chars_ptr_array_access;
   begin
      Tmp_Return := Internal (Get_Object (Self), Acc_Length'Access);
      if Length /= null then
         Length.all := Acc_Length;
      end if;
      return To_String_List_And_Free (Tmp_Return);
   end Get_Bytestring_Array;

   ---------------------
   -- Get_Child_Value --
   ---------------------

   function Get_Child_Value (Self : Gvariant; Index : Gsize) return Gvariant is
      function Internal
         (Self  : System.Address;
          Index : Gsize) return System.Address;
      pragma Import (C, Internal, "g_variant_get_child_value");
   begin
      return From_Object (Internal (Get_Object (Self), Index));
   end Get_Child_Value;

   ----------------
   -- Get_Double --
   ----------------

   function Get_Double (Self : Gvariant) return Gdouble is
      function Internal (Self : System.Address) return Gdouble;
      pragma Import (C, Internal, "g_variant_get_double");
   begin
      return Internal (Get_Object (Self));
   end Get_Double;

   ----------------
   -- Get_Handle --
   ----------------

   function Get_Handle (Self : Gvariant) return Gint32 is
      function Internal (Self : System.Address) return Gint32;
      pragma Import (C, Internal, "g_variant_get_handle");
   begin
      return Internal (Get_Object (Self));
   end Get_Handle;

   ---------------
   -- Get_Int16 --
   ---------------

   function Get_Int16 (Self : Gvariant) return Gint16 is
      function Internal (Self : System.Address) return Gint16;
      pragma Import (C, Internal, "g_variant_get_int16");
   begin
      return Internal (Get_Object (Self));
   end Get_Int16;

   ---------------
   -- Get_Int32 --
   ---------------

   function Get_Int32 (Self : Gvariant) return Gint32 is
      function Internal (Self : System.Address) return Gint32;
      pragma Import (C, Internal, "g_variant_get_int32");
   begin
      return Internal (Get_Object (Self));
   end Get_Int32;

   ---------------
   -- Get_Int64 --
   ---------------

   function Get_Int64 (Self : Gvariant) return Gint64 is
      function Internal (Self : System.Address) return Gint64;
      pragma Import (C, Internal, "g_variant_get_int64");
   begin
      return Internal (Get_Object (Self));
   end Get_Int64;

   ---------------
   -- Get_Maybe --
   ---------------

   function Get_Maybe (Self : Gvariant) return Gvariant is
      function Internal (Self : System.Address) return System.Address;
      pragma Import (C, Internal, "g_variant_get_maybe");
   begin
      return From_Object (Internal (Get_Object (Self)));
   end Get_Maybe;

   ---------------------
   -- Get_Normal_Form --
   ---------------------

   function Get_Normal_Form (Self : Gvariant) return Gvariant is
      function Internal (Self : System.Address) return System.Address;
      pragma Import (C, Internal, "g_variant_get_normal_form");
   begin
      return From_Object (Internal (Get_Object (Self)));
   end Get_Normal_Form;

   --------------
   -- Get_Objv --
   --------------

   function Get_Objv
      (Self   : Gvariant;
       Length : access Gsize) return GNAT.Strings.String_List
   is
      function Internal
         (Self       : System.Address;
          Acc_Length : access Gsize) return chars_ptr_array_access;
      pragma Import (C, Internal, "g_variant_get_objv");
      Acc_Length : aliased Gsize;
      Tmp_Return : chars_ptr_array_access;
   begin
      Tmp_Return := Internal (Get_Object (Self), Acc_Length'Access);
      if Length /= null then
         Length.all := Acc_Length;
      end if;
      return To_String_List_And_Free (Tmp_Return);
   end Get_Objv;

   --------------
   -- Get_Size --
   --------------

   function Get_Size (Self : Gvariant) return Gsize is
      function Internal (Self : System.Address) return Gsize;
      pragma Import (C, Internal, "g_variant_get_size");
   begin
      return Internal (Get_Object (Self));
   end Get_Size;

   ----------------
   -- Get_String --
   ----------------

   function Get_String
      (Self   : Gvariant;
       Length : access Gsize) return UTF8_String
   is
      function Internal
         (Self       : System.Address;
          Acc_Length : access Gsize) return Interfaces.C.Strings.chars_ptr;
      pragma Import (C, Internal, "g_variant_get_string");
      Acc_Length : aliased Gsize;
      Tmp_Return : Interfaces.C.Strings.chars_ptr;
   begin
      Tmp_Return := Internal (Get_Object (Self), Acc_Length'Access);
      if Length /= null then
         Length.all := Acc_Length;
      end if;
      return Gtkada.Bindings.Value_Allowing_Null (Tmp_Return);
   end Get_String;

   --------------
   -- Get_Strv --
   --------------

   function Get_Strv
      (Self   : Gvariant;
       Length : access Gsize) return GNAT.Strings.String_List
   is
      function Internal
         (Self       : System.Address;
          Acc_Length : access Gsize) return chars_ptr_array_access;
      pragma Import (C, Internal, "g_variant_get_strv");
      Acc_Length : aliased Gsize;
      Tmp_Return : chars_ptr_array_access;
   begin
      Tmp_Return := Internal (Get_Object (Self), Acc_Length'Access);
      if Length /= null then
         Length.all := Acc_Length;
      end if;
      return To_String_List_And_Free (Tmp_Return);
   end Get_Strv;

   --------------
   -- Get_Type --
   --------------

   function Get_Type (Self : Gvariant) return Gvariant_Type is
      function Internal (Self : System.Address) return Gvariant_Type;
      pragma Import (C, Internal, "g_variant_get_type");
   begin
      return Internal (Get_Object (Self));
   end Get_Type;

   ---------------------
   -- Get_Type_String --
   ---------------------

   function Get_Type_String (Self : Gvariant) return UTF8_String is
      function Internal
         (Self : System.Address) return Interfaces.C.Strings.chars_ptr;
      pragma Import (C, Internal, "g_variant_get_type_string");
   begin
      return Gtkada.Bindings.Value_Allowing_Null (Internal (Get_Object (Self)));
   end Get_Type_String;

   ----------------
   -- Get_Uint16 --
   ----------------

   function Get_Uint16 (Self : Gvariant) return Guint16 is
      function Internal (Self : System.Address) return Guint16;
      pragma Import (C, Internal, "g_variant_get_uint16");
   begin
      return Internal (Get_Object (Self));
   end Get_Uint16;

   ----------------
   -- Get_Uint32 --
   ----------------

   function Get_Uint32 (Self : Gvariant) return Guint32 is
      function Internal (Self : System.Address) return Guint32;
      pragma Import (C, Internal, "g_variant_get_uint32");
   begin
      return Internal (Get_Object (Self));
   end Get_Uint32;

   ----------------
   -- Get_Uint64 --
   ----------------

   function Get_Uint64 (Self : Gvariant) return Guint64 is
      function Internal (Self : System.Address) return Guint64;
      pragma Import (C, Internal, "g_variant_get_uint64");
   begin
      return Internal (Get_Object (Self));
   end Get_Uint64;

   -----------------
   -- Get_Variant --
   -----------------

   function Get_Variant (Self : Gvariant) return Gvariant is
      function Internal (Self : System.Address) return System.Address;
      pragma Import (C, Internal, "g_variant_get_variant");
   begin
      return From_Object (Internal (Get_Object (Self)));
   end Get_Variant;

   ----------
   -- Hash --
   ----------

   function Hash (Self : Gvariant) return Guint is
      function Internal (Self : System.Address) return Guint;
      pragma Import (C, Internal, "g_variant_hash");
   begin
      return Internal (Get_Object (Self));
   end Hash;

   ----------
   -- Init --
   ----------

   function Init (Self : Gvariant_Iter; Value : Gvariant) return Gsize is
      function Internal
         (Self  : Gvariant_Iter;
          Value : System.Address) return Gsize;
      pragma Import (C, Internal, "g_variant_iter_init");
   begin
      return Internal (Self, Get_Object (Value));
   end Init;

   --------------
   -- Is_Array --
   --------------

   function Is_Array (Self : Gvariant_Type) return Boolean is
      function Internal (Self : Gvariant_Type) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_type_is_array");
   begin
      return Internal (Self) /= 0;
   end Is_Array;

   --------------
   -- Is_Basic --
   --------------

   function Is_Basic (Self : Gvariant_Type) return Boolean is
      function Internal (Self : Gvariant_Type) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_type_is_basic");
   begin
      return Internal (Self) /= 0;
   end Is_Basic;

   ------------------
   -- Is_Container --
   ------------------

   function Is_Container (Self : Gvariant) return Boolean is
      function Internal (Self : System.Address) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_is_container");
   begin
      return Internal (Get_Object (Self)) /= 0;
   end Is_Container;

   ------------------
   -- Is_Container --
   ------------------

   function Is_Container (Self : Gvariant_Type) return Boolean is
      function Internal (Self : Gvariant_Type) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_type_is_container");
   begin
      return Internal (Self) /= 0;
   end Is_Container;

   -----------------
   -- Is_Definite --
   -----------------

   function Is_Definite (Self : Gvariant_Type) return Boolean is
      function Internal (Self : Gvariant_Type) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_type_is_definite");
   begin
      return Internal (Self) /= 0;
   end Is_Definite;

   -------------------
   -- Is_Dict_Entry --
   -------------------

   function Is_Dict_Entry (Self : Gvariant_Type) return Boolean is
      function Internal (Self : Gvariant_Type) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_type_is_dict_entry");
   begin
      return Internal (Self) /= 0;
   end Is_Dict_Entry;

   -----------------
   -- Is_Floating --
   -----------------

   function Is_Floating (Self : Gvariant) return Boolean is
      function Internal (Self : System.Address) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_is_floating");
   begin
      return Internal (Get_Object (Self)) /= 0;
   end Is_Floating;

   --------------
   -- Is_Maybe --
   --------------

   function Is_Maybe (Self : Gvariant_Type) return Boolean is
      function Internal (Self : Gvariant_Type) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_type_is_maybe");
   begin
      return Internal (Self) /= 0;
   end Is_Maybe;

   --------------------
   -- Is_Normal_Form --
   --------------------

   function Is_Normal_Form (Self : Gvariant) return Boolean is
      function Internal (Self : System.Address) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_is_normal_form");
   begin
      return Internal (Get_Object (Self)) /= 0;
   end Is_Normal_Form;

   ----------------
   -- Is_Of_Type --
   ----------------

   function Is_Of_Type
      (Self     : Gvariant;
       The_Type : Gvariant_Type) return Boolean
   is
      function Internal
         (Self     : System.Address;
          The_Type : Gvariant_Type) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_is_of_type");
   begin
      return Internal (Get_Object (Self), The_Type) /= 0;
   end Is_Of_Type;

   -------------------
   -- Is_Subtype_Of --
   -------------------

   function Is_Subtype_Of
      (Self      : Gvariant_Type;
       Supertype : Gvariant_Type) return Boolean
   is
      function Internal
         (Self      : Gvariant_Type;
          Supertype : Gvariant_Type) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_type_is_subtype_of");
   begin
      return Internal (Self, Supertype) /= 0;
   end Is_Subtype_Of;

   --------------
   -- Is_Tuple --
   --------------

   function Is_Tuple (Self : Gvariant_Type) return Boolean is
      function Internal (Self : Gvariant_Type) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_type_is_tuple");
   begin
      return Internal (Self) /= 0;
   end Is_Tuple;

   ----------------
   -- Is_Variant --
   ----------------

   function Is_Variant (Self : Gvariant_Type) return Boolean is
      function Internal (Self : Gvariant_Type) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_type_is_variant");
   begin
      return Internal (Self) /= 0;
   end Is_Variant;

   --------------
   -- Iter_New --
   --------------

   function Iter_New (Self : Gvariant) return Gvariant_Iter is
      function Internal (Self : System.Address) return Gvariant_Iter;
      pragma Import (C, Internal, "g_variant_iter_new");
   begin
      return Internal (Get_Object (Self));
   end Iter_New;

   ------------------
   -- Lookup_Value --
   ------------------

   function Lookup_Value
      (Self          : Gvariant;
       Key           : UTF8_String;
       Expected_Type : Gvariant_Type) return Gvariant
   is
      function Internal
         (Self          : System.Address;
          Key           : Interfaces.C.Strings.chars_ptr;
          Expected_Type : Gvariant_Type) return System.Address;
      pragma Import (C, Internal, "g_variant_lookup_value");
      Tmp_Key    : Interfaces.C.Strings.chars_ptr := New_String (Key);
      Tmp_Return : System.Address;
   begin
      Tmp_Return := Internal (Get_Object (Self), Tmp_Key, Expected_Type);
      Free (Tmp_Key);
      return From_Object (Tmp_Return);
   end Lookup_Value;

   ----------------
   -- N_Children --
   ----------------

   function N_Children (Self : Gvariant) return Gsize is
      function Internal (Self : System.Address) return Gsize;
      pragma Import (C, Internal, "g_variant_n_children");
   begin
      return Internal (Get_Object (Self));
   end N_Children;

   ----------------
   -- Next_Value --
   ----------------

   function Next_Value (Self : Gvariant_Iter) return Gvariant is
      function Internal (Self : Gvariant_Iter) return System.Address;
      pragma Import (C, Internal, "g_variant_iter_next_value");
   begin
      return From_Object (Internal (Self));
   end Next_Value;

   -----------------
   -- Peek_String --
   -----------------

   function Peek_String (Self : Gvariant_Type) return UTF8_String is
      function Internal
         (Self : Gvariant_Type) return Interfaces.C.Strings.chars_ptr;
      pragma Import (C, Internal, "g_variant_type_peek_string");
   begin
      return Gtkada.Bindings.Value_Allowing_Null (Internal (Self));
   end Peek_String;

   -----------
   -- Print --
   -----------

   function Print
      (Self          : Gvariant;
       Type_Annotate : Boolean) return UTF8_String
   is
      function Internal
         (Self          : System.Address;
          Type_Annotate : Glib.Gboolean)
          return Interfaces.C.Strings.chars_ptr;
      pragma Import (C, Internal, "g_variant_print");
   begin
      return Gtkada.Bindings.Value_And_Free (Internal (Get_Object (Self), Boolean'Pos (Type_Annotate)));
   end Print;

   ------------------
   -- Print_String --
   ------------------

   function Print_String
      (Self          : Gvariant;
       String        : Glib.String.Gstring;
       Type_Annotate : Boolean) return Glib.String.Gstring
   is
      function Internal
         (Self          : System.Address;
          String        : Glib.String.Gstring;
          Type_Annotate : Glib.Gboolean) return access Glib.String.Gstring;
      pragma Import (C, Internal, "g_variant_print_string");
   begin
      return From_Object_Free (Internal (Get_Object (Self), String, Boolean'Pos (Type_Annotate)));
   end Print_String;

   ---------
   -- Ref --
   ---------

   function Ref (Self : Gvariant) return Gvariant is
      function Internal (Self : System.Address) return System.Address;
      pragma Import (C, Internal, "g_variant_ref");
   begin
      return From_Object (Internal (Get_Object (Self)));
   end Ref;

   --------------
   -- Ref_Sink --
   --------------

   function Ref_Sink (Self : Gvariant) return Gvariant is
      function Internal (Self : System.Address) return System.Address;
      pragma Import (C, Internal, "g_variant_ref_sink");
   begin
      return From_Object (Internal (Get_Object (Self)));
   end Ref_Sink;

   -----------
   -- Store --
   -----------

   procedure Store (Self : Gvariant; Data : System.Address) is
      procedure Internal (Self : System.Address; Data : System.Address);
      pragma Import (C, Internal, "g_variant_store");
   begin
      Internal (Get_Object (Self), Data);
   end Store;

   --------------
   -- Take_Ref --
   --------------

   function Take_Ref (Self : Gvariant) return Gvariant is
      function Internal (Self : System.Address) return System.Address;
      pragma Import (C, Internal, "g_variant_take_ref");
   begin
      return From_Object (Internal (Get_Object (Self)));
   end Take_Ref;

   -----------
   -- Unref --
   -----------

   procedure Unref (Self : Gvariant) is
      procedure Internal (Self : System.Address);
      pragma Import (C, Internal, "g_variant_unref");
   begin
      Internal (Get_Object (Self));
   end Unref;

   --------------------
   -- Is_Object_Path --
   --------------------

   function Is_Object_Path (String : UTF8_String) return Boolean is
      function Internal
         (String : Interfaces.C.Strings.chars_ptr) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_is_object_path");
      Tmp_String : Interfaces.C.Strings.chars_ptr := New_String (String);
      Tmp_Return : Glib.Gboolean;
   begin
      Tmp_Return := Internal (Tmp_String);
      Free (Tmp_String);
      return Tmp_Return /= 0;
   end Is_Object_Path;

   ------------------
   -- Is_Signature --
   ------------------

   function Is_Signature (String : UTF8_String) return Boolean is
      function Internal
         (String : Interfaces.C.Strings.chars_ptr) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_is_signature");
      Tmp_String : Interfaces.C.Strings.chars_ptr := New_String (String);
      Tmp_Return : Glib.Gboolean;
   begin
      Tmp_Return := Internal (Tmp_String);
      Free (Tmp_String);
      return Tmp_Return /= 0;
   end Is_Signature;

   -----------
   -- Parse --
   -----------

   function Parse
      (The_Type : Gvariant_Type;
       Text     : UTF8_String;
       Limit    : UTF8_String := "";
       Endptr   : GNAT.Strings.String_List) return Gvariant
   is
      function Internal
         (The_Type : Gvariant_Type;
          Text     : Interfaces.C.Strings.chars_ptr;
          Limit    : Interfaces.C.Strings.chars_ptr;
          Endptr   : Interfaces.C.Strings.chars_ptr_array)
          return System.Address;
      pragma Import (C, Internal, "g_variant_parse");
      Tmp_Text   : Interfaces.C.Strings.chars_ptr := New_String (Text);
      Tmp_Limit  : Interfaces.C.Strings.chars_ptr;
      Tmp_Endptr : Interfaces.C.Strings.chars_ptr_array := From_String_List (Endptr);
      Tmp_Return : System.Address;
   begin
      if Limit = "" then
         Tmp_Limit := Interfaces.C.Strings.Null_Ptr;
      else
         Tmp_Limit := New_String (Limit);
      end if;
      Tmp_Return := Internal (The_Type, Tmp_Text, Tmp_Limit, Tmp_Endptr);
      GtkAda.Types.Free (Tmp_Endptr);
      Free (Tmp_Limit);
      Free (Tmp_Text);
      return From_Object (Tmp_Return);
   end Parse;

   -------------------------------
   -- Parse_Error_Print_Context --
   -------------------------------

   function Parse_Error_Print_Context
      (Error      : Glib.Error.GError;
       Source_Str : UTF8_String) return UTF8_String
   is
      function Internal
         (Error      : Glib.Error.GError;
          Source_Str : Interfaces.C.Strings.chars_ptr)
          return Interfaces.C.Strings.chars_ptr;
      pragma Import (C, Internal, "g_variant_parse_error_print_context");
      Tmp_Source_Str : Interfaces.C.Strings.chars_ptr := New_String (Source_Str);
      Tmp_Return     : Interfaces.C.Strings.chars_ptr;
   begin
      Tmp_Return := Internal (Error, Tmp_Source_Str);
      Free (Tmp_Source_Str);
      return Gtkada.Bindings.Value_And_Free (Tmp_Return);
   end Parse_Error_Print_Context;

   -----------------------
   -- Parse_Error_Quark --
   -----------------------

   function Parse_Error_Quark return Glib.GQuark is
      function Internal return Glib.GQuark;
      pragma Import (C, Internal, "g_variant_parse_error_quark");
   begin
      return Internal;
   end Parse_Error_Quark;

   ----------------------------
   -- Parser_Get_Error_Quark --
   ----------------------------

   function Parser_Get_Error_Quark return Glib.GQuark is
      function Internal return Glib.GQuark;
      pragma Import (C, Internal, "g_variant_parser_get_error_quark");
   begin
      return Internal;
   end Parser_Get_Error_Quark;

   ---------------------
   -- String_Is_Valid --
   ---------------------

   function String_Is_Valid (Type_String : UTF8_String) return Boolean is
      function Internal
         (Type_String : Interfaces.C.Strings.chars_ptr) return Glib.Gboolean;
      pragma Import (C, Internal, "g_variant_type_string_is_valid");
      Tmp_Type_String : Interfaces.C.Strings.chars_ptr := New_String (Type_String);
      Tmp_Return      : Glib.Gboolean;
   begin
      Tmp_Return := Internal (Tmp_Type_String);
      Free (Tmp_Type_String);
      return Tmp_Return /= 0;
   end String_Is_Valid;

end Glib.Variant;