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
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use gio;
use glib;
use glib::object::Cast;
use glib::object::IsA;
use glib::signal::connect_raw;
use glib::signal::SignalHandlerId;
use glib::translate::*;
use glib::GString;
use glib_sys;
use gtk_sys;
use std;
use std::boxed::Box as Box_;
use std::fmt;
use std::mem::transmute;
use std::ptr;
use FileChooserAction;
use FileChooserConfirmation;
use FileFilter;
use Widget;

glib_wrapper! {
    /// `FileChooser` is an interface that can be implemented by file
    /// selection widgets. In GTK+, the main objects that implement this
    /// interface are `FileChooserWidget`, `FileChooserDialog`, and
    /// `FileChooserButton`. You do not need to write an object that
    /// implements the `FileChooser` interface unless you are trying to
    /// adapt an existing file selector to expose a standard programming
    /// interface.
    ///
    /// `FileChooser` allows for shortcuts to various places in the filesystem.
    /// In the default implementation these are displayed in the left pane. It
    /// may be a bit confusing at first that these shortcuts come from various
    /// sources and in various flavours, so lets explain the terminology here:
    ///
    /// - Bookmarks: are created by the user, by dragging folders from the
    ///  right pane to the left pane, or by using the “Add”. Bookmarks
    ///  can be renamed and deleted by the user.
    ///
    /// - Shortcuts: can be provided by the application. For example, a Paint
    ///  program may want to add a shortcut for a Clipart folder. Shortcuts
    ///  cannot be modified by the user.
    ///
    /// - Volumes: are provided by the underlying filesystem abstraction. They are
    ///  the “roots” of the filesystem.
    ///
    /// # File Names and Encodings
    ///
    /// When the user is finished selecting files in a
    /// `FileChooser`, your program can get the selected names
    /// either as filenames or as URIs. For URIs, the normal escaping
    /// rules are applied if the URI contains non-ASCII characters.
    /// However, filenames are always returned in
    /// the character set specified by the
    /// `G_FILENAME_ENCODING` environment variable.
    /// Please see the GLib documentation for more details about this
    /// variable.
    ///
    /// This means that while you can pass the result of
    /// `FileChooser::get_filename` to `open` or `fopen`,
    /// you may not be able to directly set it as the text of a
    /// `Label` widget unless you convert it first to UTF-8,
    /// which all GTK+ widgets expect. You should use `g_filename_to_utf8`
    /// to convert filenames into strings that can be passed to GTK+
    /// widgets.
    ///
    /// # Adding a Preview Widget
    ///
    /// You can add a custom preview widget to a file chooser and then
    /// get notification about when the preview needs to be updated.
    /// To install a preview widget, use
    /// `FileChooser::set_preview_widget`. Then, connect to the
    /// `FileChooser::update-preview` signal to get notified when
    /// you need to update the contents of the preview.
    ///
    /// Your callback should use
    /// `FileChooser::get_preview_filename` to see what needs
    /// previewing. Once you have generated the preview for the
    /// corresponding file, you must call
    /// `FileChooser::set_preview_widget_active` with a boolean
    /// flag that indicates whether your callback could successfully
    /// generate a preview.
    ///
    /// ## Example: Using a Preview Widget ## {`gtkfilechooser`-preview}
    ///
    /// ```C
    /// {
    ///   GtkImage *preview;
    ///
    ///   ...
    ///
    ///   preview = gtk_image_new ();
    ///
    ///   gtk_file_chooser_set_preview_widget (my_file_chooser, preview);
    ///   g_signal_connect (my_file_chooser, "update-preview",
    ///             G_CALLBACK (update_preview_cb), preview);
    /// }
    ///
    /// static void
    /// update_preview_cb (GtkFileChooser *file_chooser, gpointer data)
    /// {
    ///   GtkWidget *preview;
    ///   char *filename;
    ///   GdkPixbuf *pixbuf;
    ///   gboolean have_preview;
    ///
    ///   preview = GTK_WIDGET (data);
    ///   filename = gtk_file_chooser_get_preview_filename (file_chooser);
    ///
    ///   pixbuf = gdk_pixbuf_new_from_file_at_size (filename, 128, 128, NULL);
    ///   have_preview = (pixbuf != NULL);
    ///   g_free (filename);
    ///
    ///   gtk_image_set_from_pixbuf (GTK_IMAGE (preview), pixbuf);
    ///   if (pixbuf)
    ///     g_object_unref (pixbuf);
    ///
    ///   gtk_file_chooser_set_preview_widget_active (file_chooser, have_preview);
    /// }
    /// ```
    ///
    /// # Adding Extra Widgets
    ///
    /// You can add extra widgets to a file chooser to provide options
    /// that are not present in the default design. For example, you
    /// can add a toggle button to give the user the option to open a
    /// file in read-only mode. You can use
    /// `FileChooser::set_extra_widget` to insert additional
    /// widgets in a file chooser.
    ///
    /// An example for adding extra widgets:
    ///
    /// ```C
    ///
    ///   GtkWidget *toggle;
    ///
    ///   ...
    ///
    ///   toggle = gtk_check_button_new_with_label ("Open file read-only");
    ///   gtk_widget_show (toggle);
    ///   gtk_file_chooser_set_extra_widget (my_file_chooser, toggle);
    /// }
    /// ```
    ///
    /// If you want to set more than one extra widget in the file
    /// chooser, you can a container such as a `Box` or a `Grid`
    /// and include your widgets in it. Then, set the container as
    /// the whole extra widget.
    ///
    /// # Implements
    ///
    /// [`FileChooserExt`](trait.FileChooserExt.html)
    pub struct FileChooser(Interface<gtk_sys::GtkFileChooser>);

    match fn {
        get_type => || gtk_sys::gtk_file_chooser_get_type(),
    }
}

pub const NONE_FILE_CHOOSER: Option<&FileChooser> = None;

/// Trait containing all `FileChooser` methods.
///
/// # Implementors
///
/// [`FileChooserButton`](struct.FileChooserButton.html), [`FileChooserDialog`](struct.FileChooserDialog.html), [`FileChooserNative`](struct.FileChooserNative.html), [`FileChooserWidget`](struct.FileChooserWidget.html), [`FileChooser`](struct.FileChooser.html)
pub trait FileChooserExt: 'static {
    /// Adds `filter` to the list of filters that the user can select between.
    /// When a filter is selected, only files that are passed by that
    /// filter are displayed.
    ///
    /// Note that the `self` takes ownership of the filter, so you have to
    /// ref and sink it if you want to keep a reference.
    /// ## `filter`
    /// a `FileFilter`
    fn add_filter(&self, filter: &FileFilter);

    /// Adds a folder to be displayed with the shortcut folders in a file chooser.
    /// Note that shortcut folders do not get saved, as they are provided by the
    /// application. For example, you can use this to add a
    /// “/usr/share/mydrawprogram/Clipart” folder to the volume list.
    /// ## `folder`
    /// filename of the folder to add
    ///
    /// # Returns
    ///
    /// `true` if the folder could be added successfully, `false`
    /// otherwise. In the latter case, the `error` will be set as appropriate.
    fn add_shortcut_folder<P: AsRef<std::path::Path>>(&self, folder: P) -> Result<(), glib::Error>;

    /// Adds a folder URI to be displayed with the shortcut folders in a file
    /// chooser. Note that shortcut folders do not get saved, as they are provided
    /// by the application. For example, you can use this to add a
    /// “file:///usr/share/mydrawprogram/Clipart” folder to the volume list.
    /// ## `uri`
    /// URI of the folder to add
    ///
    /// # Returns
    ///
    /// `true` if the folder could be added successfully, `false`
    /// otherwise. In the latter case, the `error` will be set as appropriate.
    fn add_shortcut_folder_uri(&self, uri: &str) -> Result<(), glib::Error>;

    /// Gets the type of operation that the file chooser is performing; see
    /// `FileChooser::set_action`.
    ///
    /// # Returns
    ///
    /// the action that the file selector is performing
    fn get_action(&self) -> FileChooserAction;

    /// Gets the currently selected option in the 'choice' with the given ID.
    ///
    /// Feature: `v3_22`
    ///
    /// ## `id`
    /// the ID of the choice to get
    ///
    /// # Returns
    ///
    /// the ID of the currenly selected option
    #[cfg(any(feature = "v3_22", feature = "dox"))]
    fn get_choice(&self, id: &str) -> Option<GString>;

    /// Gets whether file choser will offer to create new folders.
    /// See `FileChooser::set_create_folders`.
    ///
    /// # Returns
    ///
    /// `true` if the Create Folder button should be displayed.
    fn get_create_folders(&self) -> bool;

    /// Gets the current folder of `self` as a local filename.
    /// See `FileChooser::set_current_folder`.
    ///
    /// Note that this is the folder that the file chooser is currently displaying
    /// (e.g. "/home/username/Documents"), which is not the same
    /// as the currently-selected folder if the chooser is in
    /// `FileChooserAction::SelectFolder` mode
    /// (e.g. "/home/username/Documents/selected-folder/". To get the
    /// currently-selected folder in that mode, use `FileChooser::get_uri` as the
    /// usual way to get the selection.
    ///
    /// # Returns
    ///
    /// the full path of the current
    /// folder, or `None` if the current path cannot be represented as a local
    /// filename. Free with `g_free`. This function will also return
    /// `None` if the file chooser was unable to load the last folder that
    /// was requested from it; for example, as would be for calling
    /// `FileChooser::set_current_folder` on a nonexistent folder.
    fn get_current_folder(&self) -> Option<std::path::PathBuf>;

    /// Gets the current folder of `self` as `gio::File`.
    /// See `FileChooser::get_current_folder_uri`.
    ///
    /// # Returns
    ///
    /// the `gio::File` for the current folder.
    fn get_current_folder_file(&self) -> Option<gio::File>;

    /// Gets the current folder of `self` as an URI.
    /// See `FileChooser::set_current_folder_uri`.
    ///
    /// Note that this is the folder that the file chooser is currently displaying
    /// (e.g. "file:///home/username/Documents"), which is not the same
    /// as the currently-selected folder if the chooser is in
    /// `FileChooserAction::SelectFolder` mode
    /// (e.g. "file:///home/username/Documents/selected-folder/". To get the
    /// currently-selected folder in that mode, use `FileChooser::get_uri` as the
    /// usual way to get the selection.
    ///
    /// # Returns
    ///
    /// the URI for the current folder.
    /// Free with `g_free`. This function will also return `None` if the file chooser
    /// was unable to load the last folder that was requested from it; for example,
    /// as would be for calling `FileChooser::set_current_folder_uri` on a
    /// nonexistent folder.
    fn get_current_folder_uri(&self) -> Option<GString>;

    /// Gets the current name in the file selector, as entered by the user in the
    /// text entry for “Name”.
    ///
    /// This is meant to be used in save dialogs, to get the currently typed filename
    /// when the file itself does not exist yet. For example, an application that
    /// adds a custom extra widget to the file chooser for “file format” may want to
    /// change the extension of the typed filename based on the chosen format, say,
    /// from “.jpg” to “.png”.
    ///
    /// # Returns
    ///
    /// The raw text from the file chooser’s “Name” entry. Free this with
    /// `g_free`. Note that this string is not a full pathname or URI; it is
    /// whatever the contents of the entry are. Note also that this string is in
    /// UTF-8 encoding, which is not necessarily the system’s encoding for filenames.
    fn get_current_name(&self) -> Option<GString>;

    /// Queries whether a file chooser is set to confirm for overwriting when the user
    /// types a file name that already exists.
    ///
    /// # Returns
    ///
    /// `true` if the file chooser will present a confirmation dialog;
    /// `false` otherwise.
    fn get_do_overwrite_confirmation(&self) -> bool;

    /// Gets the current extra widget; see
    /// `FileChooser::set_extra_widget`.
    ///
    /// # Returns
    ///
    /// the current extra widget, or `None`
    fn get_extra_widget(&self) -> Option<Widget>;

    /// Gets the `gio::File` for the currently selected file in
    /// the file selector. If multiple files are selected,
    /// one of the files will be returned at random.
    ///
    /// If the file chooser is in folder mode, this function returns the selected
    /// folder.
    ///
    /// # Returns
    ///
    /// a selected `gio::File`. You own the returned file;
    ///  use `gobject::ObjectExt::unref` to release it.
    fn get_file(&self) -> Option<gio::File>;

    /// Gets the filename for the currently selected file in
    /// the file selector. The filename is returned as an absolute path. If
    /// multiple files are selected, one of the filenames will be returned at
    /// random.
    ///
    /// If the file chooser is in folder mode, this function returns the selected
    /// folder.
    ///
    /// # Returns
    ///
    /// The currently selected filename,
    ///  or `None` if no file is selected, or the selected file can't
    ///  be represented with a local filename. Free with `g_free`.
    fn get_filename(&self) -> Option<std::path::PathBuf>;

    /// Lists all the selected files and subfolders in the current folder of
    /// `self`. The returned names are full absolute paths. If files in the current
    /// folder cannot be represented as local filenames they will be ignored. (See
    /// `FileChooser::get_uris`)
    ///
    /// # Returns
    ///
    /// a `glib::SList`
    ///  containing the filenames of all selected files and subfolders in
    ///  the current folder. Free the returned list with `glib::SList::free`,
    ///  and the filenames with `g_free`.
    fn get_filenames(&self) -> Vec<std::path::PathBuf>;

    /// Lists all the selected files and subfolders in the current folder of `self`
    /// as `gio::File`. An internal function, see `FileChooser::get_uris`.
    ///
    /// # Returns
    ///
    /// a `glib::SList`
    ///  containing a `gio::File` for each selected file and subfolder in the
    ///  current folder. Free the returned list with `glib::SList::free`, and
    ///  the files with `gobject::ObjectExt::unref`.
    fn get_files(&self) -> Vec<gio::File>;

    /// Gets the current filter; see `FileChooser::set_filter`.
    ///
    /// # Returns
    ///
    /// the current filter, or `None`
    fn get_filter(&self) -> Option<FileFilter>;

    /// Gets whether only local files can be selected in the
    /// file selector. See `FileChooser::set_local_only`
    ///
    /// # Returns
    ///
    /// `true` if only local files can be selected.
    fn get_local_only(&self) -> bool;

    /// Gets the `gio::File` that should be previewed in a custom preview
    /// Internal function, see `FileChooser::get_preview_uri`.
    ///
    /// # Returns
    ///
    /// the `gio::File` for the file to preview,
    ///  or `None` if no file is selected. Free with `gobject::ObjectExt::unref`.
    fn get_preview_file(&self) -> Option<gio::File>;

    /// Gets the filename that should be previewed in a custom preview
    /// widget. See `FileChooser::set_preview_widget`.
    ///
    /// # Returns
    ///
    /// the filename to preview, or `None` if
    ///  no file is selected, or if the selected file cannot be represented
    ///  as a local filename. Free with `g_free`
    fn get_preview_filename(&self) -> Option<std::path::PathBuf>;

    /// Gets the URI that should be previewed in a custom preview
    /// widget. See `FileChooser::set_preview_widget`.
    ///
    /// # Returns
    ///
    /// the URI for the file to preview,
    ///  or `None` if no file is selected. Free with `g_free`.
    fn get_preview_uri(&self) -> Option<GString>;

    /// Gets the current preview widget; see
    /// `FileChooser::set_preview_widget`.
    ///
    /// # Returns
    ///
    /// the current preview widget, or `None`
    fn get_preview_widget(&self) -> Option<Widget>;

    /// Gets whether the preview widget set by `FileChooser::set_preview_widget`
    /// should be shown for the current filename. See
    /// `FileChooser::set_preview_widget_active`.
    ///
    /// # Returns
    ///
    /// `true` if the preview widget is active for the current filename.
    fn get_preview_widget_active(&self) -> bool;

    /// Gets whether multiple files can be selected in the file
    /// selector. See `FileChooser::set_select_multiple`.
    ///
    /// # Returns
    ///
    /// `true` if multiple files can be selected.
    fn get_select_multiple(&self) -> bool;

    /// Gets whether hidden files and folders are displayed in the file selector.
    /// See `FileChooser::set_show_hidden`.
    ///
    /// # Returns
    ///
    /// `true` if hidden files and folders are displayed.
    fn get_show_hidden(&self) -> bool;

    /// Gets the URI for the currently selected file in
    /// the file selector. If multiple files are selected,
    /// one of the filenames will be returned at random.
    ///
    /// If the file chooser is in folder mode, this function returns the selected
    /// folder.
    ///
    /// # Returns
    ///
    /// The currently selected URI, or `None`
    ///  if no file is selected. If `FileChooser::set_local_only` is set to
    ///  `true` (the default) a local URI will be returned for any FUSE locations.
    ///  Free with `g_free`
    fn get_uri(&self) -> Option<GString>;

    /// Lists all the selected files and subfolders in the current folder of
    /// `self`. The returned names are full absolute URIs.
    ///
    /// # Returns
    ///
    /// a `glib::SList` containing the URIs of all selected
    ///  files and subfolders in the current folder. Free the returned list
    ///  with `glib::SList::free`, and the filenames with `g_free`.
    fn get_uris(&self) -> Vec<GString>;

    /// Gets whether a stock label should be drawn with the name of the previewed
    /// file. See `FileChooser::set_use_preview_label`.
    ///
    /// # Returns
    ///
    /// `true` if the file chooser is set to display a label with the
    /// name of the previewed file, `false` otherwise.
    fn get_use_preview_label(&self) -> bool;

    /// Lists the current set of user-selectable filters; see
    /// `FileChooser::add_filter`, `FileChooser::remove_filter`.
    ///
    /// # Returns
    ///
    /// a
    ///  `glib::SList` containing the current set of user selectable filters. The
    ///  contents of the list are owned by GTK+, but you must free the list
    ///  itself with `glib::SList::free` when you are done with it.
    fn list_filters(&self) -> Vec<FileFilter>;

    /// Queries the list of shortcut folders in the file chooser, as set by
    /// `FileChooser::add_shortcut_folder_uri`.
    ///
    /// # Returns
    ///
    /// A list of
    /// folder URIs, or `None` if there are no shortcut folders. Free the
    /// returned list with `glib::SList::free`, and the URIs with `g_free`.
    fn list_shortcut_folder_uris(&self) -> Vec<GString>;

    /// Queries the list of shortcut folders in the file chooser, as set by
    /// `FileChooser::add_shortcut_folder`.
    ///
    /// # Returns
    ///
    /// A list
    /// of folder filenames, or `None` if there are no shortcut folders.
    /// Free the returned list with `glib::SList::free`, and the filenames with
    /// `g_free`.
    fn list_shortcut_folders(&self) -> Vec<std::path::PathBuf>;

    /// Removes a 'choice' that has been added with `FileChooser::add_choice`.
    ///
    /// Feature: `v3_22`
    ///
    /// ## `id`
    /// the ID of the choice to remove
    #[cfg(any(feature = "v3_22", feature = "dox"))]
    fn remove_choice(&self, id: &str);

    /// Removes `filter` from the list of filters that the user can select between.
    /// ## `filter`
    /// a `FileFilter`
    fn remove_filter(&self, filter: &FileFilter);

    /// Removes a folder from a file chooser’s list of shortcut folders.
    /// ## `folder`
    /// filename of the folder to remove
    ///
    /// # Returns
    ///
    /// `true` if the operation succeeds, `false` otherwise.
    /// In the latter case, the `error` will be set as appropriate.
    ///
    /// See also: `FileChooser::add_shortcut_folder`
    fn remove_shortcut_folder<P: AsRef<std::path::Path>>(
        &self,
        folder: P,
    ) -> Result<(), glib::Error>;

    /// Removes a folder URI from a file chooser’s list of shortcut folders.
    /// ## `uri`
    /// URI of the folder to remove
    ///
    /// # Returns
    ///
    /// `true` if the operation succeeds, `false` otherwise.
    /// In the latter case, the `error` will be set as appropriate.
    ///
    /// See also: `FileChooser::add_shortcut_folder_uri`
    fn remove_shortcut_folder_uri(&self, uri: &str) -> Result<(), glib::Error>;

    /// Selects all the files in the current folder of a file chooser.
    fn select_all(&self);

    /// Selects the file referred to by `file`. An internal function. See
    /// `_gtk_file_chooser_select_uri`.
    /// ## `file`
    /// the file to select
    ///
    /// # Returns
    ///
    /// Not useful.
    fn select_file<P: IsA<gio::File>>(&self, file: &P) -> Result<(), glib::Error>;

    /// Selects a filename. If the file name isn’t in the current
    /// folder of `self`, then the current folder of `self` will
    /// be changed to the folder containing `filename`.
    /// ## `filename`
    /// the filename to select
    ///
    /// # Returns
    ///
    /// Not useful.
    ///
    /// See also: `FileChooser::set_filename`
    fn select_filename<P: AsRef<std::path::Path>>(&self, filename: P) -> bool;

    /// Selects the file to by `uri`. If the URI doesn’t refer to a
    /// file in the current folder of `self`, then the current folder of
    /// `self` will be changed to the folder containing `filename`.
    /// ## `uri`
    /// the URI to select
    ///
    /// # Returns
    ///
    /// Not useful.
    fn select_uri(&self, uri: &str) -> bool;

    /// Sets the type of operation that the chooser is performing; the
    /// user interface is adapted to suit the selected action. For example,
    /// an option to create a new folder might be shown if the action is
    /// `FileChooserAction::Save` but not if the action is
    /// `FileChooserAction::Open`.
    /// ## `action`
    /// the action that the file selector is performing
    fn set_action(&self, action: FileChooserAction);

    /// Selects an option in a 'choice' that has been added with
    /// `FileChooser::add_choice`. For a boolean choice, the
    /// possible options are "true" and "false".
    ///
    /// Feature: `v3_22`
    ///
    /// ## `id`
    /// the ID of the choice to set
    /// ## `option`
    /// the ID of the option to select
    #[cfg(any(feature = "v3_22", feature = "dox"))]
    fn set_choice(&self, id: &str, option: &str);

    /// Sets whether file choser will offer to create new folders.
    /// This is only relevant if the action is not set to be
    /// `FileChooserAction::Open`.
    /// ## `create_folders`
    /// `true` if the Create Folder button should be displayed
    fn set_create_folders(&self, create_folders: bool);

    /// Sets the current folder for `self` from a local filename.
    /// The user will be shown the full contents of the current folder,
    /// plus user interface elements for navigating to other folders.
    ///
    /// In general, you should not use this function. See the
    /// [section on setting up a file chooser dialog][gtkfilechooserdialog-setting-up]
    /// for the rationale behind this.
    /// ## `filename`
    /// the full path of the new current folder
    ///
    /// # Returns
    ///
    /// Not useful.
    fn set_current_folder<P: AsRef<std::path::Path>>(&self, filename: P) -> bool;

    /// Sets the current folder for `self` from a `gio::File`.
    /// Internal function, see `FileChooser::set_current_folder_uri`.
    /// ## `file`
    /// the `gio::File` for the new folder
    ///
    /// # Returns
    ///
    /// `true` if the folder could be changed successfully, `false`
    /// otherwise.
    fn set_current_folder_file<P: IsA<gio::File>>(&self, file: &P) -> Result<(), glib::Error>;

    /// Sets the current folder for `self` from an URI.
    /// The user will be shown the full contents of the current folder,
    /// plus user interface elements for navigating to other folders.
    ///
    /// In general, you should not use this function. See the
    /// [section on setting up a file chooser dialog][gtkfilechooserdialog-setting-up]
    /// for the rationale behind this.
    /// ## `uri`
    /// the URI for the new current folder
    ///
    /// # Returns
    ///
    /// `true` if the folder could be changed successfully, `false`
    /// otherwise.
    fn set_current_folder_uri(&self, uri: &str) -> bool;

    /// Sets the current name in the file selector, as if entered
    /// by the user. Note that the name passed in here is a UTF-8
    /// string rather than a filename. This function is meant for
    /// such uses as a suggested name in a “Save As...” dialog. You can
    /// pass “Untitled.doc” or a similarly suitable suggestion for the `name`.
    ///
    /// If you want to preselect a particular existing file, you should use
    /// `FileChooser::set_filename` or `FileChooser::set_uri` instead.
    /// Please see the documentation for those functions for an example of using
    /// `FileChooser::set_current_name` as well.
    /// ## `name`
    /// the filename to use, as a UTF-8 string
    fn set_current_name<P: AsRef<std::path::Path>>(&self, name: P);

    /// Sets whether a file chooser in `FileChooserAction::Save` mode will present
    /// a confirmation dialog if the user types a file name that already exists. This
    /// is `false` by default.
    ///
    /// If set to `true`, the `self` will emit the
    /// `FileChooser::confirm-overwrite` signal when appropriate.
    ///
    /// If all you need is the stock confirmation dialog, set this property to `true`.
    /// You can override the way confirmation is done by actually handling the
    /// `FileChooser::confirm-overwrite` signal; please refer to its documentation
    /// for the details.
    /// ## `do_overwrite_confirmation`
    /// whether to confirm overwriting in save mode
    fn set_do_overwrite_confirmation(&self, do_overwrite_confirmation: bool);

    /// Sets an application-supplied widget to provide extra options to the user.
    /// ## `extra_widget`
    /// widget for extra options
    fn set_extra_widget<P: IsA<Widget>>(&self, extra_widget: &P);

    /// Sets `file` as the current filename for the file chooser, by changing
    /// to the file’s parent folder and actually selecting the file in list. If
    /// the `self` is in `FileChooserAction::Save` mode, the file’s base name
    /// will also appear in the dialog’s file name entry.
    ///
    /// If the file name isn’t in the current folder of `self`, then the current
    /// folder of `self` will be changed to the folder containing `filename`. This
    /// is equivalent to a sequence of `FileChooser::unselect_all` followed by
    /// `FileChooser::select_filename`.
    ///
    /// Note that the file must exist, or nothing will be done except
    /// for the directory change.
    ///
    /// If you are implementing a save dialog,
    /// you should use this function if you already have a file name to which the
    /// user may save; for example, when the user opens an existing file and then
    /// does Save As... If you don’t have
    /// a file name already — for example, if the user just created a new
    /// file and is saving it for the first time, do not call this function.
    /// Instead, use something similar to this:
    ///
    /// ```C
    /// if (document_is_new)
    ///   {
    ///     // the user just created a new document
    ///     gtk_file_chooser_set_current_folder_file (chooser, default_file_for_saving);
    ///     gtk_file_chooser_set_current_name (chooser, "Untitled document");
    ///   }
    /// else
    ///   {
    ///     // the user edited an existing document
    ///     gtk_file_chooser_set_file (chooser, existing_file);
    ///   }
    /// ```
    /// ## `file`
    /// the `gio::File` to set as current
    ///
    /// # Returns
    ///
    /// Not useful.
    fn set_file<P: IsA<gio::File>>(&self, file: &P) -> Result<(), glib::Error>;

    /// Sets `filename` as the current filename for the file chooser, by changing to
    /// the file’s parent folder and actually selecting the file in list; all other
    /// files will be unselected. If the `self` is in
    /// `FileChooserAction::Save` mode, the file’s base name will also appear in
    /// the dialog’s file name entry.
    ///
    /// Note that the file must exist, or nothing will be done except
    /// for the directory change.
    ///
    /// You should use this function only when implementing a save
    /// dialog for which you already have a file name to which
    /// the user may save. For example, when the user opens an existing file and
    /// then does Save As... to save a copy or
    /// a modified version. If you don’t have a file name already — for
    /// example, if the user just created a new file and is saving it for the first
    /// time, do not call this function. Instead, use something similar to this:
    ///
    /// ```C
    /// if (document_is_new)
    ///   {
    ///     // the user just created a new document
    ///     gtk_file_chooser_set_current_name (chooser, "Untitled document");
    ///   }
    /// else
    ///   {
    ///     // the user edited an existing document
    ///     gtk_file_chooser_set_filename (chooser, existing_filename);
    ///   }
    /// ```
    ///
    /// In the first case, the file chooser will present the user with useful suggestions
    /// as to where to save his new file. In the second case, the file’s existing location
    /// is already known, so the file chooser will use it.
    /// ## `filename`
    /// the filename to set as current
    ///
    /// # Returns
    ///
    /// Not useful.
    fn set_filename<P: AsRef<std::path::Path>>(&self, filename: P) -> bool;

    /// Sets the current filter; only the files that pass the
    /// filter will be displayed. If the user-selectable list of filters
    /// is non-empty, then the filter should be one of the filters
    /// in that list. Setting the current filter when the list of
    /// filters is empty is useful if you want to restrict the displayed
    /// set of files without letting the user change it.
    /// ## `filter`
    /// a `FileFilter`
    fn set_filter(&self, filter: &FileFilter);

    /// Sets whether only local files can be selected in the
    /// file selector. If `local_only` is `true` (the default),
    /// then the selected file or files are guaranteed to be
    /// accessible through the operating systems native file
    /// system and therefore the application only
    /// needs to worry about the filename functions in
    /// `FileChooser`, like `FileChooser::get_filename`,
    /// rather than the URI functions like
    /// `FileChooser::get_uri`,
    ///
    /// On some systems non-native files may still be
    /// available using the native filesystem via a userspace
    /// filesystem (FUSE).
    /// ## `local_only`
    /// `true` if only local files can be selected
    fn set_local_only(&self, local_only: bool);

    /// Sets an application-supplied widget to use to display a custom preview
    /// of the currently selected file. To implement a preview, after setting the
    /// preview widget, you connect to the `FileChooser::update-preview`
    /// signal, and call `FileChooser::get_preview_filename` or
    /// `FileChooser::get_preview_uri` on each change. If you can
    /// display a preview of the new file, update your widget and
    /// set the preview active using `FileChooser::set_preview_widget_active`.
    /// Otherwise, set the preview inactive.
    ///
    /// When there is no application-supplied preview widget, or the
    /// application-supplied preview widget is not active, the file chooser
    /// will display no preview at all.
    /// ## `preview_widget`
    /// widget for displaying preview.
    fn set_preview_widget<P: IsA<Widget>>(&self, preview_widget: &P);

    /// Sets whether the preview widget set by
    /// `FileChooser::set_preview_widget` should be shown for the
    /// current filename. When `active` is set to false, the file chooser
    /// may display an internally generated preview of the current file
    /// or it may display no preview at all. See
    /// `FileChooser::set_preview_widget` for more details.
    /// ## `active`
    /// whether to display the user-specified preview widget
    fn set_preview_widget_active(&self, active: bool);

    /// Sets whether multiple files can be selected in the file selector. This is
    /// only relevant if the action is set to be `FileChooserAction::Open` or
    /// `FileChooserAction::SelectFolder`.
    /// ## `select_multiple`
    /// `true` if multiple files can be selected.
    fn set_select_multiple(&self, select_multiple: bool);

    /// Sets whether hidden files and folders are displayed in the file selector.
    /// ## `show_hidden`
    /// `true` if hidden files and folders should be displayed.
    fn set_show_hidden(&self, show_hidden: bool);

    /// Sets the file referred to by `uri` as the current file for the file chooser,
    /// by changing to the URI’s parent folder and actually selecting the URI in the
    /// list. If the `self` is `FileChooserAction::Save` mode, the URI’s base
    /// name will also appear in the dialog’s file name entry.
    ///
    /// Note that the URI must exist, or nothing will be done except for the
    /// directory change.
    ///
    /// You should use this function only when implementing a save
    /// dialog for which you already have a file name to which
    /// the user may save. For example, when the user opens an existing file and then
    /// does Save As... to save a copy or a
    /// modified version. If you don’t have a file name already — for example,
    /// if the user just created a new file and is saving it for the first time, do
    /// not call this function. Instead, use something similar to this:
    ///
    /// ```C
    /// if (document_is_new)
    ///   {
    ///     // the user just created a new document
    ///     gtk_file_chooser_set_current_name (chooser, "Untitled document");
    ///   }
    /// else
    ///   {
    ///     // the user edited an existing document
    ///     gtk_file_chooser_set_uri (chooser, existing_uri);
    ///   }
    /// ```
    ///
    ///
    /// In the first case, the file chooser will present the user with useful suggestions
    /// as to where to save his new file. In the second case, the file’s existing location
    /// is already known, so the file chooser will use it.
    /// ## `uri`
    /// the URI to set as current
    ///
    /// # Returns
    ///
    /// Not useful.
    fn set_uri(&self, uri: &str) -> bool;

    /// Sets whether the file chooser should display a stock label with the name of
    /// the file that is being previewed; the default is `true`. Applications that
    /// want to draw the whole preview area themselves should set this to `false` and
    /// display the name themselves in their preview widget.
    ///
    /// See also: `FileChooser::set_preview_widget`
    /// ## `use_label`
    /// whether to display a stock label with the name of the previewed file
    fn set_use_preview_label(&self, use_label: bool);

    /// Unselects all the files in the current folder of a file chooser.
    fn unselect_all(&self);

    /// Unselects the file referred to by `file`. If the file is not in the current
    /// directory, does not exist, or is otherwise not currently selected, does nothing.
    /// ## `file`
    /// a `gio::File`
    fn unselect_file<P: IsA<gio::File>>(&self, file: &P);

    /// Unselects a currently selected filename. If the filename
    /// is not in the current directory, does not exist, or
    /// is otherwise not currently selected, does nothing.
    /// ## `filename`
    /// the filename to unselect
    fn unselect_filename<P: AsRef<std::path::Path>>(&self, filename: P);

    /// Unselects the file referred to by `uri`. If the file
    /// is not in the current directory, does not exist, or
    /// is otherwise not currently selected, does nothing.
    /// ## `uri`
    /// the URI to unselect
    fn unselect_uri(&self, uri: &str);

    /// This signal gets emitted whenever it is appropriate to present a
    /// confirmation dialog when the user has selected a file name that
    /// already exists. The signal only gets emitted when the file
    /// chooser is in `FileChooserAction::Save` mode.
    ///
    /// Most applications just need to turn on the
    /// `FileChooser:do-overwrite-confirmation` property (or call the
    /// `FileChooser::set_do_overwrite_confirmation` function), and
    /// they will automatically get a stock confirmation dialog.
    /// Applications which need to customize this behavior should do
    /// that, and also connect to the `FileChooser::confirm-overwrite`
    /// signal.
    ///
    /// A signal handler for this signal must return a
    /// `FileChooserConfirmation` value, which indicates the action to
    /// take. If the handler determines that the user wants to select a
    /// different filename, it should return
    /// `FileChooserConfirmation::SelectAgain`. If it determines
    /// that the user is satisfied with his choice of file name, it
    /// should return `FileChooserConfirmation::AcceptFilename`.
    /// On the other hand, if it determines that the stock confirmation
    /// dialog should be used, it should return
    /// `FileChooserConfirmation::Confirm`. The following example
    /// illustrates this.
    ///
    /// ## Custom confirmation ## {`gtkfilechooser`-confirmation}
    ///
    ///
    /// ```C
    /// static GtkFileChooserConfirmation
    /// confirm_overwrite_callback (GtkFileChooser *chooser, gpointer data)
    /// {
    ///   char *uri;
    ///
    ///   uri = gtk_file_chooser_get_uri (chooser);
    ///
    ///   if (is_uri_read_only (uri))
    ///     {
    ///       if (user_wants_to_replace_read_only_file (uri))
    ///         return GTK_FILE_CHOOSER_CONFIRMATION_ACCEPT_FILENAME;
    ///       else
    ///         return GTK_FILE_CHOOSER_CONFIRMATION_SELECT_AGAIN;
    ///     } else
    ///       return GTK_FILE_CHOOSER_CONFIRMATION_CONFIRM; // fall back to the default dialog
    /// }
    ///
    /// ...
    ///
    /// chooser = gtk_file_chooser_dialog_new (...);
    ///
    /// gtk_file_chooser_set_do_overwrite_confirmation (GTK_FILE_CHOOSER (dialog), TRUE);
    /// g_signal_connect (chooser, "confirm-overwrite",
    ///                   G_CALLBACK (confirm_overwrite_callback), NULL);
    ///
    /// if (gtk_dialog_run (chooser) == GTK_RESPONSE_ACCEPT)
    ///         save_to_file (gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (chooser));
    ///
    /// gtk_widget_destroy (chooser);
    /// ```
    ///
    /// # Returns
    ///
    /// a `FileChooserConfirmation` value that indicates which
    ///  action to take after emitting the signal.
    fn connect_confirm_overwrite<F: Fn(&Self) -> FileChooserConfirmation + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    /// This signal is emitted when the current folder in a `FileChooser`
    /// changes. This can happen due to the user performing some action that
    /// changes folders, such as selecting a bookmark or visiting a folder on the
    /// file list. It can also happen as a result of calling a function to
    /// explicitly change the current folder in a file chooser.
    ///
    /// Normally you do not need to connect to this signal, unless you need to keep
    /// track of which folder a file chooser is showing.
    ///
    /// See also: `FileChooser::set_current_folder`,
    /// `FileChooser::get_current_folder`,
    /// `FileChooser::set_current_folder_uri`,
    /// `FileChooser::get_current_folder_uri`.
    fn connect_current_folder_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;

    /// This signal is emitted when the user "activates" a file in the file
    /// chooser. This can happen by double-clicking on a file in the file list, or
    /// by pressing `Enter`.
    ///
    /// Normally you do not need to connect to this signal. It is used internally
    /// by `FileChooserDialog` to know when to activate the default button in the
    /// dialog.
    ///
    /// See also: `FileChooser::get_filename`,
    /// `FileChooser::get_filenames`, `FileChooser::get_uri`,
    /// `FileChooser::get_uris`.
    fn connect_file_activated<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;

    /// This signal is emitted when there is a change in the set of selected files
    /// in a `FileChooser`. This can happen when the user modifies the selection
    /// with the mouse or the keyboard, or when explicitly calling functions to
    /// change the selection.
    ///
    /// Normally you do not need to connect to this signal, as it is easier to wait
    /// for the file chooser to finish running, and then to get the list of
    /// selected files using the functions mentioned below.
    ///
    /// See also: `FileChooser::select_filename`,
    /// `FileChooser::unselect_filename`, `FileChooser::get_filename`,
    /// `FileChooser::get_filenames`, `FileChooser::select_uri`,
    /// `FileChooser::unselect_uri`, `FileChooser::get_uri`,
    /// `FileChooser::get_uris`.
    fn connect_selection_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;

    /// This signal is emitted when the preview in a file chooser should be
    /// regenerated. For example, this can happen when the currently selected file
    /// changes. You should use this signal if you want your file chooser to have
    /// a preview widget.
    ///
    /// Once you have installed a preview widget with
    /// `FileChooser::set_preview_widget`, you should update it when this
    /// signal is emitted. You can use the functions
    /// `FileChooser::get_preview_filename` or
    /// `FileChooser::get_preview_uri` to get the name of the file to preview.
    /// Your widget may not be able to preview all kinds of files; your callback
    /// must call `FileChooser::set_preview_widget_active` to inform the file
    /// chooser about whether the preview was generated successfully or not.
    ///
    /// Please see the example code in
    /// [Using a Preview Widget][gtkfilechooser-preview].
    ///
    /// See also: `FileChooser::set_preview_widget`,
    /// `FileChooser::set_preview_widget_active`,
    /// `FileChooser::set_use_preview_label`,
    /// `FileChooser::get_preview_filename`,
    /// `FileChooser::get_preview_uri`.
    fn connect_update_preview<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;

    fn connect_property_action_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;

    fn connect_property_create_folders_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    fn connect_property_do_overwrite_confirmation_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    fn connect_property_extra_widget_notify<F: Fn(&Self) + 'static>(&self, f: F)
        -> SignalHandlerId;

    fn connect_property_filter_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;

    fn connect_property_local_only_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;

    fn connect_property_preview_widget_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    fn connect_property_preview_widget_active_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    fn connect_property_select_multiple_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    fn connect_property_show_hidden_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;

    fn connect_property_use_preview_label_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;
}

impl<O: IsA<FileChooser>> FileChooserExt for O {
    fn add_filter(&self, filter: &FileFilter) {
        unsafe {
            gtk_sys::gtk_file_chooser_add_filter(
                self.as_ref().to_glib_none().0,
                filter.to_glib_full(),
            );
        }
    }

    fn add_shortcut_folder<P: AsRef<std::path::Path>>(&self, folder: P) -> Result<(), glib::Error> {
        unsafe {
            let mut error = ptr::null_mut();
            let _ = gtk_sys::gtk_file_chooser_add_shortcut_folder(
                self.as_ref().to_glib_none().0,
                folder.as_ref().to_glib_none().0,
                &mut error,
            );
            if error.is_null() {
                Ok(())
            } else {
                Err(from_glib_full(error))
            }
        }
    }

    fn add_shortcut_folder_uri(&self, uri: &str) -> Result<(), glib::Error> {
        unsafe {
            let mut error = ptr::null_mut();
            let _ = gtk_sys::gtk_file_chooser_add_shortcut_folder_uri(
                self.as_ref().to_glib_none().0,
                uri.to_glib_none().0,
                &mut error,
            );
            if error.is_null() {
                Ok(())
            } else {
                Err(from_glib_full(error))
            }
        }
    }

    fn get_action(&self) -> FileChooserAction {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_get_action(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    #[cfg(any(feature = "v3_22", feature = "dox"))]
    fn get_choice(&self, id: &str) -> Option<GString> {
        unsafe {
            from_glib_none(gtk_sys::gtk_file_chooser_get_choice(
                self.as_ref().to_glib_none().0,
                id.to_glib_none().0,
            ))
        }
    }

    fn get_create_folders(&self) -> bool {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_get_create_folders(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_current_folder(&self) -> Option<std::path::PathBuf> {
        unsafe {
            from_glib_full(gtk_sys::gtk_file_chooser_get_current_folder(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_current_folder_file(&self) -> Option<gio::File> {
        unsafe {
            from_glib_full(gtk_sys::gtk_file_chooser_get_current_folder_file(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_current_folder_uri(&self) -> Option<GString> {
        unsafe {
            from_glib_full(gtk_sys::gtk_file_chooser_get_current_folder_uri(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_current_name(&self) -> Option<GString> {
        unsafe {
            from_glib_full(gtk_sys::gtk_file_chooser_get_current_name(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_do_overwrite_confirmation(&self) -> bool {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_get_do_overwrite_confirmation(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_extra_widget(&self) -> Option<Widget> {
        unsafe {
            from_glib_none(gtk_sys::gtk_file_chooser_get_extra_widget(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_file(&self) -> Option<gio::File> {
        unsafe {
            from_glib_full(gtk_sys::gtk_file_chooser_get_file(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_filename(&self) -> Option<std::path::PathBuf> {
        unsafe {
            from_glib_full(gtk_sys::gtk_file_chooser_get_filename(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_filenames(&self) -> Vec<std::path::PathBuf> {
        unsafe {
            FromGlibPtrContainer::from_glib_full(gtk_sys::gtk_file_chooser_get_filenames(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_files(&self) -> Vec<gio::File> {
        unsafe {
            FromGlibPtrContainer::from_glib_full(gtk_sys::gtk_file_chooser_get_files(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_filter(&self) -> Option<FileFilter> {
        unsafe {
            from_glib_none(gtk_sys::gtk_file_chooser_get_filter(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_local_only(&self) -> bool {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_get_local_only(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_preview_file(&self) -> Option<gio::File> {
        unsafe {
            from_glib_full(gtk_sys::gtk_file_chooser_get_preview_file(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_preview_filename(&self) -> Option<std::path::PathBuf> {
        unsafe {
            from_glib_full(gtk_sys::gtk_file_chooser_get_preview_filename(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_preview_uri(&self) -> Option<GString> {
        unsafe {
            from_glib_full(gtk_sys::gtk_file_chooser_get_preview_uri(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_preview_widget(&self) -> Option<Widget> {
        unsafe {
            from_glib_none(gtk_sys::gtk_file_chooser_get_preview_widget(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_preview_widget_active(&self) -> bool {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_get_preview_widget_active(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_select_multiple(&self) -> bool {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_get_select_multiple(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_show_hidden(&self) -> bool {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_get_show_hidden(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_uri(&self) -> Option<GString> {
        unsafe {
            from_glib_full(gtk_sys::gtk_file_chooser_get_uri(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_uris(&self) -> Vec<GString> {
        unsafe {
            FromGlibPtrContainer::from_glib_full(gtk_sys::gtk_file_chooser_get_uris(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_use_preview_label(&self) -> bool {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_get_use_preview_label(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn list_filters(&self) -> Vec<FileFilter> {
        unsafe {
            FromGlibPtrContainer::from_glib_container(gtk_sys::gtk_file_chooser_list_filters(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn list_shortcut_folder_uris(&self) -> Vec<GString> {
        unsafe {
            FromGlibPtrContainer::from_glib_full(
                gtk_sys::gtk_file_chooser_list_shortcut_folder_uris(self.as_ref().to_glib_none().0),
            )
        }
    }

    fn list_shortcut_folders(&self) -> Vec<std::path::PathBuf> {
        unsafe {
            FromGlibPtrContainer::from_glib_full(gtk_sys::gtk_file_chooser_list_shortcut_folders(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    #[cfg(any(feature = "v3_22", feature = "dox"))]
    fn remove_choice(&self, id: &str) {
        unsafe {
            gtk_sys::gtk_file_chooser_remove_choice(
                self.as_ref().to_glib_none().0,
                id.to_glib_none().0,
            );
        }
    }

    fn remove_filter(&self, filter: &FileFilter) {
        unsafe {
            gtk_sys::gtk_file_chooser_remove_filter(
                self.as_ref().to_glib_none().0,
                filter.to_glib_none().0,
            );
        }
    }

    fn remove_shortcut_folder<P: AsRef<std::path::Path>>(
        &self,
        folder: P,
    ) -> Result<(), glib::Error> {
        unsafe {
            let mut error = ptr::null_mut();
            let _ = gtk_sys::gtk_file_chooser_remove_shortcut_folder(
                self.as_ref().to_glib_none().0,
                folder.as_ref().to_glib_none().0,
                &mut error,
            );
            if error.is_null() {
                Ok(())
            } else {
                Err(from_glib_full(error))
            }
        }
    }

    fn remove_shortcut_folder_uri(&self, uri: &str) -> Result<(), glib::Error> {
        unsafe {
            let mut error = ptr::null_mut();
            let _ = gtk_sys::gtk_file_chooser_remove_shortcut_folder_uri(
                self.as_ref().to_glib_none().0,
                uri.to_glib_none().0,
                &mut error,
            );
            if error.is_null() {
                Ok(())
            } else {
                Err(from_glib_full(error))
            }
        }
    }

    fn select_all(&self) {
        unsafe {
            gtk_sys::gtk_file_chooser_select_all(self.as_ref().to_glib_none().0);
        }
    }

    fn select_file<P: IsA<gio::File>>(&self, file: &P) -> Result<(), glib::Error> {
        unsafe {
            let mut error = ptr::null_mut();
            let _ = gtk_sys::gtk_file_chooser_select_file(
                self.as_ref().to_glib_none().0,
                file.as_ref().to_glib_none().0,
                &mut error,
            );
            if error.is_null() {
                Ok(())
            } else {
                Err(from_glib_full(error))
            }
        }
    }

    fn select_filename<P: AsRef<std::path::Path>>(&self, filename: P) -> bool {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_select_filename(
                self.as_ref().to_glib_none().0,
                filename.as_ref().to_glib_none().0,
            ))
        }
    }

    fn select_uri(&self, uri: &str) -> bool {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_select_uri(
                self.as_ref().to_glib_none().0,
                uri.to_glib_none().0,
            ))
        }
    }

    fn set_action(&self, action: FileChooserAction) {
        unsafe {
            gtk_sys::gtk_file_chooser_set_action(self.as_ref().to_glib_none().0, action.to_glib());
        }
    }

    #[cfg(any(feature = "v3_22", feature = "dox"))]
    fn set_choice(&self, id: &str, option: &str) {
        unsafe {
            gtk_sys::gtk_file_chooser_set_choice(
                self.as_ref().to_glib_none().0,
                id.to_glib_none().0,
                option.to_glib_none().0,
            );
        }
    }

    fn set_create_folders(&self, create_folders: bool) {
        unsafe {
            gtk_sys::gtk_file_chooser_set_create_folders(
                self.as_ref().to_glib_none().0,
                create_folders.to_glib(),
            );
        }
    }

    fn set_current_folder<P: AsRef<std::path::Path>>(&self, filename: P) -> bool {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_set_current_folder(
                self.as_ref().to_glib_none().0,
                filename.as_ref().to_glib_none().0,
            ))
        }
    }

    fn set_current_folder_file<P: IsA<gio::File>>(&self, file: &P) -> Result<(), glib::Error> {
        unsafe {
            let mut error = ptr::null_mut();
            let _ = gtk_sys::gtk_file_chooser_set_current_folder_file(
                self.as_ref().to_glib_none().0,
                file.as_ref().to_glib_none().0,
                &mut error,
            );
            if error.is_null() {
                Ok(())
            } else {
                Err(from_glib_full(error))
            }
        }
    }

    fn set_current_folder_uri(&self, uri: &str) -> bool {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_set_current_folder_uri(
                self.as_ref().to_glib_none().0,
                uri.to_glib_none().0,
            ))
        }
    }

    fn set_current_name<P: AsRef<std::path::Path>>(&self, name: P) {
        unsafe {
            gtk_sys::gtk_file_chooser_set_current_name(
                self.as_ref().to_glib_none().0,
                name.as_ref().to_glib_none().0,
            );
        }
    }

    fn set_do_overwrite_confirmation(&self, do_overwrite_confirmation: bool) {
        unsafe {
            gtk_sys::gtk_file_chooser_set_do_overwrite_confirmation(
                self.as_ref().to_glib_none().0,
                do_overwrite_confirmation.to_glib(),
            );
        }
    }

    fn set_extra_widget<P: IsA<Widget>>(&self, extra_widget: &P) {
        unsafe {
            gtk_sys::gtk_file_chooser_set_extra_widget(
                self.as_ref().to_glib_none().0,
                extra_widget.as_ref().to_glib_none().0,
            );
        }
    }

    fn set_file<P: IsA<gio::File>>(&self, file: &P) -> Result<(), glib::Error> {
        unsafe {
            let mut error = ptr::null_mut();
            let _ = gtk_sys::gtk_file_chooser_set_file(
                self.as_ref().to_glib_none().0,
                file.as_ref().to_glib_none().0,
                &mut error,
            );
            if error.is_null() {
                Ok(())
            } else {
                Err(from_glib_full(error))
            }
        }
    }

    fn set_filename<P: AsRef<std::path::Path>>(&self, filename: P) -> bool {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_set_filename(
                self.as_ref().to_glib_none().0,
                filename.as_ref().to_glib_none().0,
            ))
        }
    }

    fn set_filter(&self, filter: &FileFilter) {
        unsafe {
            gtk_sys::gtk_file_chooser_set_filter(
                self.as_ref().to_glib_none().0,
                filter.to_glib_none().0,
            );
        }
    }

    fn set_local_only(&self, local_only: bool) {
        unsafe {
            gtk_sys::gtk_file_chooser_set_local_only(
                self.as_ref().to_glib_none().0,
                local_only.to_glib(),
            );
        }
    }

    fn set_preview_widget<P: IsA<Widget>>(&self, preview_widget: &P) {
        unsafe {
            gtk_sys::gtk_file_chooser_set_preview_widget(
                self.as_ref().to_glib_none().0,
                preview_widget.as_ref().to_glib_none().0,
            );
        }
    }

    fn set_preview_widget_active(&self, active: bool) {
        unsafe {
            gtk_sys::gtk_file_chooser_set_preview_widget_active(
                self.as_ref().to_glib_none().0,
                active.to_glib(),
            );
        }
    }

    fn set_select_multiple(&self, select_multiple: bool) {
        unsafe {
            gtk_sys::gtk_file_chooser_set_select_multiple(
                self.as_ref().to_glib_none().0,
                select_multiple.to_glib(),
            );
        }
    }

    fn set_show_hidden(&self, show_hidden: bool) {
        unsafe {
            gtk_sys::gtk_file_chooser_set_show_hidden(
                self.as_ref().to_glib_none().0,
                show_hidden.to_glib(),
            );
        }
    }

    fn set_uri(&self, uri: &str) -> bool {
        unsafe {
            from_glib(gtk_sys::gtk_file_chooser_set_uri(
                self.as_ref().to_glib_none().0,
                uri.to_glib_none().0,
            ))
        }
    }

    fn set_use_preview_label(&self, use_label: bool) {
        unsafe {
            gtk_sys::gtk_file_chooser_set_use_preview_label(
                self.as_ref().to_glib_none().0,
                use_label.to_glib(),
            );
        }
    }

    fn unselect_all(&self) {
        unsafe {
            gtk_sys::gtk_file_chooser_unselect_all(self.as_ref().to_glib_none().0);
        }
    }

    fn unselect_file<P: IsA<gio::File>>(&self, file: &P) {
        unsafe {
            gtk_sys::gtk_file_chooser_unselect_file(
                self.as_ref().to_glib_none().0,
                file.as_ref().to_glib_none().0,
            );
        }
    }

    fn unselect_filename<P: AsRef<std::path::Path>>(&self, filename: P) {
        unsafe {
            gtk_sys::gtk_file_chooser_unselect_filename(
                self.as_ref().to_glib_none().0,
                filename.as_ref().to_glib_none().0,
            );
        }
    }

    fn unselect_uri(&self, uri: &str) {
        unsafe {
            gtk_sys::gtk_file_chooser_unselect_uri(
                self.as_ref().to_glib_none().0,
                uri.to_glib_none().0,
            );
        }
    }

    fn connect_confirm_overwrite<F: Fn(&Self) -> FileChooserConfirmation + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn confirm_overwrite_trampoline<
            P,
            F: Fn(&P) -> FileChooserConfirmation + 'static,
        >(
            this: *mut gtk_sys::GtkFileChooser,
            f: glib_sys::gpointer,
        ) -> gtk_sys::GtkFileChooserConfirmation
        where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref()).to_glib()
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"confirm-overwrite\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    confirm_overwrite_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_current_folder_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn current_folder_changed_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"current-folder-changed\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    current_folder_changed_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_file_activated<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn file_activated_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"file-activated\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    file_activated_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_selection_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn selection_changed_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"selection-changed\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    selection_changed_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_update_preview<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn update_preview_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"update-preview\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    update_preview_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_property_action_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_action_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            _param_spec: glib_sys::gpointer,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::action\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_action_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_property_create_folders_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_create_folders_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            _param_spec: glib_sys::gpointer,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::create-folders\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_create_folders_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_property_do_overwrite_confirmation_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_do_overwrite_confirmation_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            _param_spec: glib_sys::gpointer,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::do-overwrite-confirmation\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_do_overwrite_confirmation_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_property_extra_widget_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_extra_widget_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            _param_spec: glib_sys::gpointer,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::extra-widget\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_extra_widget_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_property_filter_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_filter_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            _param_spec: glib_sys::gpointer,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::filter\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_filter_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_property_local_only_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_local_only_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            _param_spec: glib_sys::gpointer,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::local-only\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_local_only_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_property_preview_widget_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_preview_widget_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            _param_spec: glib_sys::gpointer,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::preview-widget\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_preview_widget_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_property_preview_widget_active_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_preview_widget_active_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            _param_spec: glib_sys::gpointer,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::preview-widget-active\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_preview_widget_active_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_property_select_multiple_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_select_multiple_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            _param_spec: glib_sys::gpointer,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::select-multiple\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_select_multiple_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_property_show_hidden_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_show_hidden_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            _param_spec: glib_sys::gpointer,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::show-hidden\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_show_hidden_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_property_use_preview_label_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_use_preview_label_trampoline<P, F: Fn(&P) + 'static>(
            this: *mut gtk_sys::GtkFileChooser,
            _param_spec: glib_sys::gpointer,
            f: glib_sys::gpointer,
        ) where
            P: IsA<FileChooser>,
        {
            let f: &F = &*(f as *const F);
            f(&FileChooser::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::use-preview-label\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_use_preview_label_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }
}

impl fmt::Display for FileChooser {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "FileChooser")
    }
}