summaryrefslogtreecommitdiff
path: root/docs/reference/pygtk-gtkfilechooser.xml
blob: 307e70a0b732ba5e5a2e5d9627d9b22f4409cfcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
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
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
<?xml version="1.0" standalone="no"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
    "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<refentry id="class-gtkfilechooser">
  <refnamediv>
    <refname>gtk.FileChooser</refname>
    <refpurpose>an interface for choosing files used by <link
    linkend="class-gtkfilechooserwidget"><classname>gtk.FileChooserWidget</classname></link>
    and <link
    linkend="class-gtkfilechooserdialog"><classname>gtk.FileChooserDialog</classname></link>
    (new in PyGTK 2.4)</refpurpose>
  </refnamediv>

  <refsect1>
    <title>Synopsis</title>

    <classsynopsis language="python">
      <ooclass><classname>gtk.FileChooser</classname></ooclass>
      <ooclass><classname>gobject.GInterface</classname></ooclass>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-action">set_action</link></methodname>
	<methodparam><parameter role="keyword">action</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-action">get_action</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-local-only">set_local_only</link></methodname>
	<methodparam><parameter role="keyword">local_only</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-local-only">get_local_only</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-select-multiple">set_select_multiple</link></methodname>
	<methodparam><parameter role="keyword">select_multiple</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-select-multiple">get_select_multiple</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-current-name">set_current_name</link></methodname>
	<methodparam><parameter role="keyword">name</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-filename">get_filename</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-filename">set_filename</link></methodname>
	<methodparam><parameter role="keyword">filename</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--select-filename">select_filename</link></methodname>
	<methodparam><parameter role="keyword">filename</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--unselect-filename">unselect_filename</link></methodname>
	<methodparam><parameter role="keyword">filename</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--select-all">select_all</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--unselect-all">unselect_all</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-filenames">get_filenames</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-current-folder">set_current_folder</link></methodname>
	<methodparam><parameter role="keyword">filename</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-current-folder">get_current_folder</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-uri">get_uri</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-uri">set_uri</link></methodname>
	<methodparam><parameter role="keyword">uri</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--select-uri">select_uri</link></methodname>
	<methodparam><parameter role="keyword">uri</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--unselect-uri">unselect_uri</link></methodname>
	<methodparam><parameter role="keyword">uri</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-uris">get_uris</link></methodname>
	<methodparam></methodparam>  </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-current-folder-uri">set_current_folder_uri</link></methodname>
	<methodparam><parameter role="keyword">uri</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-current-folder-uri">get_current_folder_uri</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-preview-widget">set_preview_widget</link></methodname>
	<methodparam><parameter role="keyword">preview_widget</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-preview-widget">get_preview_widget</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-preview-widget-active">set_preview_widget_active</link></methodname>
	<methodparam><parameter role="keyword">active</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-preview-widget-active">get_preview_widget_active</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-use-preview-label">set_use_preview_label</link></methodname>
	<methodparam><parameter role="keyword">use_label</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-use-preview-label">get_use_preview_label</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-preview-filename">get_preview_filename</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-preview-uri">get_preview_uri</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-extra-widget">set_extra_widget</link></methodname>
	<methodparam><parameter role="keyword">extra_widget</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-extra-widget">get_extra_widget</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--add-filter">add_filter</link></methodname>
	<methodparam><parameter role="keyword">filter</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--remove-filter">remove_filter</link></methodname>
	<methodparam><parameter role="keyword">filter</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--list-filters">list_filters</link></methodname>
	<methodparam></methodparam>  </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-filter">set_filter</link></methodname>
	<methodparam><parameter role="keyword">filter</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-filter">get_filter</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--add-shortcut-folder">add_shortcut_folder</link></methodname>
	<methodparam><parameter role="keyword">folder</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--remove-shortcut-folder">remove_shortcut_folder</link></methodname>
	<methodparam><parameter role="keyword">folder</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--list-shortcut-folders">list_shortcut_folders</link></methodname>
	<methodparam></methodparam>  </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--add-shortcut-folder-uri">add_shortcut_folder_uri</link></methodname>
	<methodparam><parameter role="keyword">uri</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--remove-shortcut-folder-uri">remove_shortcut_folder_uri</link></methodname>
	<methodparam><parameter role="keyword">uri</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--list-shortcut-folder-uris">list_shortcut_folder_uris</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-show-hidden">set_show_hidden</link></methodname>
	<methodparam><parameter role="keyword">show_hidden</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-show-hidden">get_show_hidden</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-do-overwrite-confirmation">set_do_overwrite_confirmation</link></methodname>
	<methodparam><parameter role="keyword">do_overwrite_confirmation</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-do-overwrite-confirmation">get_do_overwrite_confirmation</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-current-folder-file">get_current_folder_file</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-file">get_file</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>

      <!-- NOT IMPLEMENTED
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser- -get-files">get_files</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      -->

      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--get-preview-file">get_preview_file</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--select-file">select_file</link></methodname>
	<methodparam><parameter role="keyword">file</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-current-folder-file">set_current_folder_file</link></methodname>
	<methodparam><parameter role="keyword">file</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--set-file">set_file</link></methodname>
	<methodparam><parameter role="keyword">file</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link linkend="method-gtkfilechooser--unselect-file">unselect_file</link></methodname>
	<methodparam><parameter role="keyword">file</parameter></methodparam>
      </methodsynopsis>
    </classsynopsis>

  </refsect1>

  <refsect1 id="properties-gtkfilechooser">
    <title>gtk.FileChooser Properties</title>

    <blockquote role="properties">
      <informaltable pgwide="1" frame="none">
	<tgroup cols="3">
	  <colspec column="1" colwidth="1in"/>
	  <colspec column="2" colwidth="1in"/>
	  <colspec column="3" colwidth="4in"/>
	  <tbody>

	    <row valign="top">
	      <entry>"action"</entry>
	      <entry>Read-Write</entry>
	      <entry>The type of operation that the file selector is
	      performing - one of the <xref
	      linkend="gtk-filechooser-action-constants"
	      endterm="gtk-filechooser-action-constants-title"></xref>. Default
	      value: <literal>gtk.FILE_CHOOSER_ACTION_OPEN</literal></entry>
	    </row>

	    <row valign="top">
	      <entry>"do-overwrite-confirmation"</entry>
	      <entry>Read-Write</entry>
	      <entry>If <literal>True</literal> a file chooser in
	      <literal>gtk.FILE_CHOOSER_ACTION_SAVE</literal> will present
	      an overwrite confirmation dialog if the user selects a file
	      name that already exists. Default value:
	      <literal>False</literal>. This property is available in GTK+
	      2.8 and above</entry>
	    </row>

	    <row valign="top">
	      <entry>"extra-widget"</entry>
	      <entry>Read-Write</entry>
	      <entry>An application supplied widget for extra options.</entry>
	    </row>

	    <row valign="top">
	      <entry>"file-system-backend"</entry>
	      <entry>Write-Construct</entry>
	      <entry>The name of the file system backend to use.
Default value: <literal>None</literal></entry>
	    </row>

	    <row valign="top">
	      <entry>"filter"</entry>
	      <entry>Read-Write</entry>
	      <entry>The current <link
linkend="class-gtkfilefilter"><classname>gtk.FileFilter</classname></link>
for selecting which files are displayed.</entry>
	    </row>

	    <row valign="top">
	      <entry>"local-only"</entry>
	      <entry>Read-Write</entry>

	      <entry>If <literal>True</literal>, the selected file(s) should
be limited to local file: URLs. Default value: <literal>True</literal></entry>
	    </row>

	    <row valign="top">
	      <entry>"preview-widget"</entry>
	      <entry>Read-Write</entry>
	      <entry>An application supplied widget for custom
previews.</entry>
	    </row>

	    <row valign="top">
	      <entry>"preview-widget-active"</entry>
	      <entry>Read-Write</entry>
	      <entry>If <literal>True</literal>, the application supplied
widget for custom previews should be shown. Default value:
<literal>True</literal></entry>
	    </row>

	    <row valign="top">
	      <entry>"select-multiple"</entry>
	      <entry>Read-Write</entry>
	      <entry>If <literal>True</literal>, allow multiple files to be
	      selected except if
	      <literal>gtk.FILE_CHOOSER_ACTION_SAVE</literal> is set as the
	      "action" property. Default value:
<literal>False</literal></entry>
	    </row>

	    <row valign="top">
	      <entry>"show-hidden"</entry>
	      <entry>Read-Write</entry>
	      <entry>If <literal>True</literal>, hidden files and folders
should be displayed. Default value: <literal>False</literal></entry>
	    </row>

	    <row valign="top">
	      <entry>"use-preview-label"</entry>
	      <entry>Read-Write</entry>
	      <entry>If <literal>True</literal>, display a stock label with
the name of the previewed file. Default value: <literal>True</literal></entry>
	    </row>

	  </tbody>
	</tgroup>
      </informaltable>
    </blockquote>

  </refsect1>

  <refsect1 id="signal-prototypes-gtkfilechooser">
    <title>gtk.FileChooser Signal Prototypes</title>

    <variablelist>
      <varlistentry>
        <term>"<link linkend="signal-gtkfilechooser--confirm-overwrite">confirm-overwrite</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>filechooser</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkfilechooser--current-folder-changed">current-folder-changed</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>filechooser</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkfilechooser--file-activated">file-activated</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>filechooser</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkfilechooser--selection-changed">selection-changed</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>filechooser</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkfilechooser--update-preview">update-preview</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>filechooser</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
    </variablelist>

  </refsect1>

  <refsect1>
    <title>Description</title>

    <note>
      <para>This interface is available in PyGTK 2.4 and above.</para>
    </note>

    <para><link
linkend="class-gtkfilechooser"><classname>gtk.FileChooser</classname></link>
is an interface that can be implemented by file selection widgets. In PyGTK,
the main objects that implement this interface are <link
linkend="class-gtkfilechooserwidget"><classname>gtk.FileChooserWidget</classname></link>
and <link
linkend="class-gtkfilechooserdialog"><classname>gtk.FileChooserDialog</classname></link>. You
do not need to write an object that implements the <link
linkend="class-gtkfilechooser"><classname>gtk.FileChooser</classname></link>
interface unless you are trying to adapt an existing file selector to expose
a standard programming interface.</para>

    <para><link
    linkend="class-gtkfilechooser"><classname>gtk.FileChooser</classname></link>
    has several elements to its display:</para>

    <itemizedlist>
      <listitem>
	<simpara>a list of shortcut folders on the left that is divided into
two lists by a horizontal line:</simpara>
	<itemizedlist>
	  <listitem>
	    <simpara>a default list of folders usually including "Home" and
"Filesystem" with folders added using the <link
linkend="method-gtkfilechooser--add-shortcut-folder"><methodname>add_shortcut_folder</methodname>()</link>
or <link
linkend="method-gtkfilechooser--add-shortcut-folder-uri"><methodname>add_shortcut_folder_uri</methodname>()</link>
methods.</simpara>
	  </listitem>
	  <listitem>
	    <simpara>a list of user specified shortcut folders managed using
the "Add" and "Remove" buttons at the bottom of the file chooser.</simpara>
	  </listitem>
	</itemizedlist>
      </listitem>
      <listitem>
	<simpara>the "Add" and "Remove" buttons that allow a user to add or
remove a folder to or from the user's shortcut folder list.</simpara>
      </listitem>
      <listitem>
	<simpara>the current folder path as a series of buttons above the
file selection window. The buttons can be clicked to jump to the associated
ancestor folder.</simpara>
      </listitem>
      <listitem>
	<simpara>the file selection window that displays the contents of the
current folder in alphabetical order with last modified time.</simpara>
      </listitem>
   </itemizedlist>

    <refsect2 id="FileNamesAndEncodings">
      <title>File Names and Encodings</title>

      <para>When the user is finished selecting files in a <link
      linkend="class-gtkfilechooser"><classname>gtk.FileChooser</classname></link>,
      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 result of calling the Python
      sys.getfilesystemencoding() function. On POSIX this is the actual
      on-disk encoding which might correspond to the locale settings of the
      process, or not. On Windows the file name encoding is UTF-8. Note that
      the Microsoft C library does not use UTF-8, but has separate APIs for
      current system code page and wide characters (UTF-16).</para>

      <important>
        <para>This means that while you can pass the result of <link
        linkend="method-gtkfilechooser--get-filename"><methodname>get_filename</methodname>()</link>
        to open() or os.open(), you may not be able to directly set it as
        the text of a <link
        linkend="class-gtklabel"><classname>gtk.Label</classname></link>
        widget unless you convert it first to UTF-8, which all PyGTK widgets
        expect. If necessary you should use the Python codecs to convert
        filenames into strings that can be passed to PyGTK widgets.</para>
      </important>

    </refsect2>

    <refsect2 id="AddingAPreviewWidget">
      <title>Adding A Preview Widget</title>

      <para>You can add a custom preview widget to a file chooser and get
notification when the preview needs to be updated. To install a preview
widget, use the <link
linkend="method-gtkfilechooser--set-preview-widget"><methodname>set_preview_widget</methodname>()</link>
method. Then, connect to the "update-preview" signal to be notified when
you need to update the contents of the preview.</para>

      <para>Your callback should use the <link
linkend="method-gtkfilechooser--get-preview-filename"><methodname>get_preview_filename</methodname>()</link>
method to see what needs previewing. Once you have generated the preview for
the corresponding file, you must call the <link
linkend="method-gtkfilechooser--set-preview-widget-active"><methodname>set_preview_widget_active</methodname>()</link>
method with a boolean flag that indicates whether your callback could
successfully generate a preview. An example use of a custom preview
is:</para>

    <programlisting>
    ...
    preview = gtk.Image()

    my_file_chooser.set_preview_widget(preview)
    my_file_chooser.connect("update-preview", update_preview_cb, preview)
    ...

  def update_preview_cb(file_chooser, preview):
    filename = file_chooser.get_preview_filename()
    try:
      pixbuf = gtk.gdk.pixbuf_new_from_file_at_size(filename, 128, 128)
      preview.set_from_pixbuf(pixbuf)
      have_preview = True
    except:
      have_preview = False
    file_chooser.set_preview_widget_active(have_preview)
    return
  ...
</programlisting>
    </refsect2>

    <refsect2>
      <title>Adding Extra Widgets</title>

      <para> 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 <link
linkend="class-gtktogglebutton"><classname>gtk.ToggleButton</classname></link>
to give the user the option to open a file in read-only mode. You can use
the <link
linkend="method-gtkfilechooser--set-extra-widget"><methodname>set_extra_widget</methodname>()</link>
method to insert additional widgets in a file chooser. For example:</para>

      <programlisting>
  toggle = gtk.CheckButton("Open file read-only")
  toggle.show ()
  my_file_chooser.set_extra_widget(toggle)
</programlisting>

      <para> If you want to set more than one extra widget in the file
chooser, you can use a container such as a <link
linkend="class-gtkvbox"><classname>gtk.VBox</classname></link> or a <link
linkend="class-gtktable"><classname>gtk.Table</classname></link> to hold
your widgets; then set the container as the whole extra widget.</para>

    </refsect2>

    <refsect2>
      <title>Key Bindings</title>

      <para>The <link
linkend="class-gtkfilechooserdialog"><classname>gtk.FileChooserDialog</classname></link>
uses the private <classname>GtkFileChooserDefaultClass</classname> that has
several key bindings and their associated signals. This section describes
the available key binding signals.</para>

      <para>The default keys that activate the key-binding signals in GtkFileChooserDefaultClass are as follows:</para>

      <informaltable pgwide="1" frame="none">
        <tgroup cols="2">
          <colspec column="1" colwidth="2in"/>
          <colspec column="2" colwidth="2in"/>
          <thead>
            <row>
              <entry>Signal name</entry>
              <entry>Key</entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry>location-popup</entry>
              <entry>Control-L</entry>
            </row>
            <row>
              <entry>up-folder</entry>
              <entry>Alt-Up</entry>
            </row>
            <row>
              <entry>down-folder</entry>
              <entry>Alt-Down</entry>
            </row>
            <row>
              <entry>home-folder</entry>
              <entry>Alt-Home</entry>
            </row>
          </tbody>
          </tgroup>
      </informaltable>

      <para>To change these defaults to something else, you could include
the following fragment in your <filename>.gtkrc-2.0</filename> file:</para>

      <programlisting>
  binding "my-own-gtkfilechooser-bindings" {
	bind "&lt;Alt&gt;&lt;Shift&gt;l" {
		"location-popup" ()
	}
	bind "&lt;Alt&gt;&lt;Shift&gt;Up" {
		"up-folder" ()
	}
	bind "&lt;Alt&gt;&lt;Shift&gt;Down" {
		"down-folder" ()
	}
	bind "&lt;Alt&gt;&lt;Shift&gt;Home" {
		"home-folder-folder" ()
	}
  }

  class "GtkFileChooserDefault" binding "my-own-gtkfilechooser-bindings"
</programlisting>

      <para>The "GtkFileChooserDefault::location-popup" signal is used to
make the file chooser show a "Location" dialog which the user can use to
manually type the name of the file he wishes to select. By default this is
bound to
<keycombo><keycap>Control</keycap><keycap>L</keycap></keycombo>.</para>

      <programlisting>
  def location_popup_cb(filechooser, user_data):
</programlisting>

      <para>where <parameter>filechooser</parameter> is the <link
linkend="class-gtkfilechooser"><classname>gtk.FileChooser</classname></link>
that received the signal, <parameter>user_data</parameter> is user data set
when the signal handler was connected.</para>

      <para>The "GtkFileChooserDefault::up-folder" signal is used to make
the file chooser go to the parent of the current folder in the file
hierarchy. By default this is bound to
<keycombo><keycap>Alt</keycap><keycap>Up</keycap></keycombo>.</para>

      <programlisting>
  def up_folder_cb(filechooser, user_data):
</programlisting>

      <para>where <parameter>filechooser</parameter> is the object that
received the signal and <parameter>user_data</parameter> is the user data
set when the signal handler was connected.</para>

      <para>The "GtkFileChooserDefault::down-folder" signal is used to make
the file chooser go to a child of the current folder in the file
hierarchy. The subfolder that will be used is displayed in the path bar
widget of the file chooser. For example, if the path bar is showing
"/foo/bar/baz", then this will cause the file chooser to switch to the "baz"
subfolder. By default this is bound to
<keycombo><keycap>Alt</keycap><keycap>Down</keycap> </keycombo>.</para>

      <programlisting>
  def down_folder_cb(filechooser, user_data):
</programlisting>

      <para>where <parameter>filechooser</parameter> is the object that
received the signal and <parameter>user_data</parameter> is the user data
set when the signal handler was connected.</para>

      <para>The "GtkFileChooserDefault::home-folder" signal is used to make
the file chooser show the user's home folder in the file list. By default
this is bound to <keycombo><keycap>Alt</keycap><keycap>Home</keycap>
</keycombo>.</para>

      <programlisting>
  def home_folder_cb(filechooser, user_data):
</programlisting>
	
      <para>where <parameter>filechooser</parameter> is the object that
received the signal and <parameter>user_data</parameter> is the user data
set when the signal handler was connected.</para>

    </refsect2>

  </refsect1>

  <refsect1>
    <title>Methods</title>

    <refsect2 id="method-gtkfilechooser--set-action">
      <title>gtk.FileChooser.set_action</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_action</methodname>
	  <methodparam><parameter role="keyword">action</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">action</parameter>&nbsp;:</term>
	  <listitem>
	    <simpara>the file selection action - one of:
<literal>gtk.FILE_CHOOSER_ACTION_OPEN</literal>,
<literal>gtk.FILE_CHOOSER_ACTION_SAVE</literal>,
<literal>gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER</literal> or
<literal>gtk.FILE_CHOOSER_ACTION_CREATE_FOLDER</literal>.</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_action</methodname>() method sets the
"action" property to the value of <parameter>action</parameter>. The type of
operation that that the chooser is performing is set by
<parameter>action</parameter> causing the user interface to be changed to
suit the selected action. The value of <parameter>action</parameter> must be
one of:</para>

      <variablelist>
	<varlistentry>
	  <term><literal>gtk.FILE_CHOOSER_ACTION_OPEN</literal></term>
	  <listitem>
	    <simpara>Indicates open mode. The file chooser will only let the
user pick an existing file.</simpara>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><literal>gtk.FILE_CHOOSER_ACTION_SAVE</literal></term>
	  <listitem>
	    <simpara>Indicates save mode. The file chooser will let the user
pick an existing file, or type in a new filename.</simpara>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><literal>gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER</literal></term>
	  <listitem>
	    <simpara>Indicates an open mode for selecting folders. The file
chooser will let the user pick an existing folder.</simpara>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><literal>gtk.FILE_CHOOSER_ACTION_CREATE_FOLDER</literal></term>
	  <listitem>
	    <simpara>Indicates a mode for creating a new folder. The file
chooser will let the user name an existing or new folder </simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <para>For example, an option to create a new folder might be shown if
the action is <literal>gtk.FILE_CHOOSER_ACTION_SAVE</literal> but not if the
action is <literal>gtk.FILE_CHOOSER_ACTION_OPEN</literal>.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-action">
      <title>gtk.FileChooser.get_action</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_action</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem>
	    <simpara>the action that is set for the file
selector</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_action</methodname>() method returns the
value of the "action" property that indicates the type of operation that the
file chooser is set to perform. See the <link
linkend="method-gtkfilechooser--set-action"><methodname>set_action()</methodname></link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-local-only">
      <title>gtk.FileChooser.set_local_only</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_local_only</methodname>
	  <methodparam><parameter role="keyword">local_only</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">local_only</parameter>&nbsp;:</term>
	  <listitem><simpara>if <literal>True</literal>, only local files can
be selected</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_local_only</methodname>() method sets the
"local-only" property to the value of <parameter>local_only</parameter>. If
<parameter>local_only</parameter> is <literal>True</literal> (the default),
only local files can be selected in the file selector and the selected files
are guaranteed to be accessible through the operating system's native file
system. Therefore, the application only needs to use the filename methods in
<link
linkend="class-gtkfilechooser"><classname>gtk.FileChooser</classname></link>.
For example, the application can use the <link
linkend="method-gtkfilechooser--get-filename"><methodname>get_filename()</methodname></link>
method instead of the URI method <link
linkend="method-gtkfilechooser--get-uri"><methodname>get_uri()</methodname></link>.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-local-only">
      <title>gtk.FileChooser.get_local_only</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_local_only</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if only local files can be
selected.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_local_only</methodname>() method returns the
value of the "local-only" property that indicates whether only local files
can be selected in the file selector. See the <link
linkend="method-gtkfilechooser--set-local-only"><methodname>set_local_only()</methodname></link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-select-multiple">
      <title>gtk.FileChooser.set_select_multiple</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_select_multiple</methodname>
	  <methodparam><parameter role="keyword">select_multiple</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">select_multiple</parameter>&nbsp;:</term>
	  <listitem><simpara>if <literal>True</literal> multiple files can be
selected.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_select_multiple</methodname>() method sets
the "select_multiple" property to the value of
<parameter>select_multiple</parameter>. If
<parameter>select_multiple</parameter> is <literal>True</literal>, multiple
files can be selected in the file selector.</para>

      <note>
	<para>The "select-multiple" property cannot be set
<literal>True</literal> when the file chooser action is
<literal>gtk.FILE_CHOOSER_ACTION_SAVE</literal> or
<literal>gtk.FILE_CHOOSER_ACTION_CREATE_FOLDER</literal>.</para>
      </note>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-select-multiple">
      <title>gtk.FileChooser.get_select_multiple</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_select_multiple</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if multiple files can be
selected.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_select_multiple</methodname>() method
returns the value of the "select_multiple" property that indicates whether
multiple files can be selected in the file selector. See the <link
linkend="method-gtkfilechooser--set-select-multiple"><methodname>set_select_multiple()</methodname></link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-current-name">
      <title>gtk.FileChooser.set_current_name</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_current_name</methodname>
	  <methodparam><parameter role="keyword">name</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">name</parameter>&nbsp;:</term>
	  <listitem><simpara>the filename to use, as a UTF-8
string</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_current_name</methodname>() method sets the
current name in the file selector to the value of
<parameter>name</parameter>, as if entered by the user. Note that the name
passed in here is a UTF-8 string rather than a filename. This method is
meant for such uses as a suggested name in a "Save As..." dialog.</para>

      <para>If you want to preselect a particular existing file, you should
use the <link
linkend="method-gtkfilechooser--set-filename"><methodname>set_filename()</methodname></link>
method instead.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-filename">
      <title>gtk.FileChooser.get_filename</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_filename</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>The currently selected filename, or
<literal>None</literal> if no file is selected, or the selected file can't
be represented with a local filename.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_filename</methodname>() method returns the
filename of 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.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-filename">
      <title>gtk.FileChooser.set_filename</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_filename</methodname>
	  <methodparam><parameter role="keyword">filename</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">filename</parameter>&nbsp;:</term>
	  <listitem><simpara>the filename to set as current</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if both the folder could
be changed and the file was selected successfully, <literal>False</literal>
otherwise.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_filename</methodname>() method sets
<parameter>filename</parameter> as the current filename for the the file
chooser.  If the file name isn't in the current folder of the chooser, then
the current folder of the chooser will be changed to the folder containing
<parameter>filename</parameter>. This is equivalent to a sequence of <link
linkend="method-gtkfilechooser--unselect-all"><methodname>unselect_all()</methodname></link>
followed by <link
linkend="method-gtkfilechooser--select-filename"><methodname>select_filename()</methodname></link>.</para>

      <para>Note that the file must exist, or nothing will be done except
for the directory change. To pre-enter a filename for the user, as in a
"Save as ..." dialog, use the <link
linkend="method-gtkfilechooser--set-current-name"><methodname>set_current_name()</methodname></link>
method.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--select-filename">
      <title>gtk.FileChooser.select_filename</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>select_filename</methodname>
	  <methodparam><parameter role="keyword">filename</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">filename</parameter>&nbsp;:</term>
	  <listitem><simpara>the filename to select</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if both the folder could
be changed and the file was selected successfully, <literal>False</literal>
otherwise.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>select_filename</methodname>() method selects
the filename specified by <parameter>filename</parameter>. If
<parameter>filename</parameter> isn't in the current folder of the chooser,
then the current folder of the chooser will be changed to the folder
containing <parameter>filename</parameter>.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--unselect-filename">
      <title>gtk.FileChooser.unselect_filename</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>unselect_filename</methodname>
	  <methodparam><parameter role="keyword">filename</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">filename</parameter>&nbsp;:</term>
	  <listitem><simpara>the filename to unselect</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>unselect_filename</methodname>() method
unselects the currently selected filename specified by
<parameter>filename</parameter>. If <parameter>filename</parameter> is not
in the current directory, does not exist, or is otherwise not currently
selected, this method does nothing.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--select-all">
      <title>gtk.FileChooser.select_all</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>select_all</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>select_all</methodname>() method selects all the
files in the current folder of a file chooser.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--unselect-all">
      <title>gtk.FileChooser.unselect_all</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>unselect_all</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>unselect_all</methodname>() method unselects all
 the files in the current folder of a file chooser.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-filenames">
      <title>gtk.FileChooser.get_filenames</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_filenames</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a list containing the filenames of all selected
files and subfolders in the current folder.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_filenames</methodname>() method returns a
list containing all the selected files and subfolders in the current folder
of the chooser. The returned names are full absolute paths. If files in the
current folder cannot be represented as local filenames they will be
ignored. (See the <link
linkend="method-gtkfilechooser--get-uris"><methodname>get_uris()</methodname></link>
method for more information)</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-current-folder">
      <title>gtk.FileChooser.set_current_folder</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_current_folder</methodname>
	  <methodparam><parameter role="keyword">filename</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">filename</parameter>&nbsp;:</term>
	  <listitem><simpara>the full path of the new current
folder</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if the folder could be
changed successfully, <literal>False</literal> otherwise.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_current_folder</methodname>() method sets
the current folder for the chooser to the local filename specified by
<parameter>filename</parameter>. The user will be shown the full contents
of the current folder, plus user interface elements for navigating to other
folders.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-current-folder">
      <title>gtk.FileChooser.get_current_folder</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_current_folder</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the full path of the current folder, or
<literal>None</literal> if the current path cannot be represented as a local
filename.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_current_folder</methodname>() method returns
the current folder of the chooser as a local filename. See the <link
linkend="method-gtkfilechooser--set-current-folder"><methodname>set_current_folder()</methodname></link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-uri">
      <title>gtk.FileChooser.get_uri</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_uri</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>The currently selected URI, or
<literal>None</literal> if no file is selected.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_uri</methodname>() method returns 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.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-uri">
      <title>gtk.FileChooser.set_uri</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_uri</methodname>
	  <methodparam><parameter role="keyword">uri</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">uri</parameter>&nbsp;:</term>
	  <listitem><simpara>the URI to set as the current
file</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if both the folder could
be changed and the URI was successfully selected.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_uri</methodname>() method sets the file
referred to by <parameter>uri</parameter> as the current file for the file
chooser; If the file name isn't in the current folder of the chooser, then
the current folder of the chooser will be changed to the folder containing
<parameter>uri</parameter>. This is equivalent to the sequence of <link
linkend="method-gtkfilechooser--unselect-all"><methodname>unselect_all()</methodname></link>
followed by <link
linkend="method-gtkfilechooser--select-uri"><methodname>select_uri()</methodname></link>.
Note that the file must exist, or nothing will be done except for the
directory change. To pre-enter a filename for the user, as in a "Save As
..."  dialog, use the <link
linkend="method-gtkfilechooser--set-current-name"><methodname>set_current_name()</methodname></link>
method.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--select-uri">
      <title>gtk.FileChooser.select_uri</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>select_uri</methodname>
	  <methodparam><parameter role="keyword">uri</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">uri</parameter>&nbsp;:</term>
	  <listitem><simpara>the URI of the file to select</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if both the folder could
be changed and the URI was successfully selected.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>select_uri</methodname>() method selects the
file referred to by <parameter>uri</parameter>. If the URI doesn't refer to
a file in the current folder of the chooser, then the current folder of the
chooser will be changed to the folder containing the file referenced by
<parameter>uri</parameter>.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--unselect-uri">
      <title>gtk.FileChooser.unselect_uri</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>unselect_uri</methodname>
	  <methodparam><parameter role="keyword">uri</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">uri</parameter>&nbsp;:</term>
	  <listitem><simpara>the URI of the file to
unselect</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>unselect_uri</methodname>() method unselects the
file referred to by <parameter>uri</parameter>. If the file is not in the
current directory, does not exist, or is otherwise not currently selected,
this method does nothing.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-uris">
      <title>gtk.FileChooser.get_uris</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_uris</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a list containing the URIs of all selected
files and subfolders in the current folder.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_uris</methodname>() method returns a list
containing all the selected files and subfolders in the current folder of
the chooser. The returned names are full absolute URIs.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-current-folder-uri">
      <title>gtk.FileChooser.set_current_folder_uri</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_current_folder_uri</methodname>
	  <methodparam><parameter role="keyword">uri</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">uri</parameter>&nbsp;:</term>
	  <listitem><simpara>the URI for the new current
folder</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if the folder could be
changed successfully, <literal>False</literal> otherwise.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_current_folder_uri</methodname>() method
sets the current folder for the chooser to the folder referenced by
<parameter>uri</parameter>. The user will be shown the full contents of the
current folder, plus user interface elements for navigating to other
folders.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-current-folder-uri">
      <title>gtk.FileChooser.get_current_folder_uri</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_current_folder_uri</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the URI for the current
folder.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_current_folder_uri</methodname>() method
returns the URI reference of the current folder of the chooser.  See the
<link
linkend="method-gtkfilechooser--set-current-folder-uri"><methodname>set_current_folder_uri()</methodname></link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-preview-widget">
      <title>gtk.FileChooser.set_preview_widget</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_preview_widget</methodname>
	  <methodparam><parameter role="keyword">preview_widget</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">preview_widget</parameter>&nbsp;:</term>
	  <listitem><simpara>a widget for displaying a
preview.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_preview_widget</methodname>() method sets
the "preview-widget" property to the value of
<parameter>preview_widget</parameter>. The
<parameter>preview_widget</parameter> is used to preview the currently
selected file. To implement a custom preview:</para>

    <itemizedlist>
      <listitem>
	<simpara>set the preview widget</simpara>
      </listitem>
      <listitem>
	<simpara>connect a callback to the "selection-changed" signal of the
file chooser</simpara>
      </listitem>
      <listitem>
	<simpara>in the callback, call the <link
linkend="method-gtkfilechooser--get-preview-filename"><methodname>get_preview_filename()</methodname></link>
method or the <link
linkend="method-gtkfilechooser--get-preview-uri"><methodname>get_preview_uri()</methodname></link>
method to retrieve the selected file name or URI</simpara>
      </listitem>
      <listitem>
	<simpara>if you can, display a preview of the selected file and set
the preview active using the <link
linkend="method-gtkfilechooser--set-preview-widget-active"><methodname>set_preview_widget_active()</methodname></link>
method</simpara>
      </listitem>
      <listitem>
	<simpara>otherwise, set the preview inactive</simpara>
      </listitem>
   </itemizedlist>

      <para>When there is no application-supplied preview widget, or the
application-supplied preview widget is not active, the file chooser
may display an internally generated preview of the current file or
it may display no preview at all.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-preview-widget">
      <title>gtk.FileChooser.get_preview_widget</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_preview_widget</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the current preview widget, or
<literal>None</literal></simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_preview_widget</methodname>() method returns
the value of the "preview_widget" property i.e. the current preview
widget. See the <link
linkend="method-gtkfilechooser--set-preview-widget"><methodname>set_preview_widget()</methodname></link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-preview-widget-active">
      <title>gtk.FileChooser.set_preview_widget_active</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_preview_widget_active</methodname>
	  <methodparam><parameter role="keyword">active</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">active</parameter>&nbsp;:</term>
	  <listitem><simpara>if <literal>True</literal>, display the
user-specified preview widget</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_preview_widget_active</methodname>() method
sets the "preview_widget_active" property to the value of
<parameter>active</parameter>. If <parameter>active</parameter> is
<literal>True</literal>, the preview widget set by the <link
linkend="method-gtkfilechooser--set-preview-widget"><methodname>set_preview_widget()</methodname></link>
method should be shown for the current filename. When
<parameter>active</parameter> is <literal>False</literal>, the file chooser
may display an internally generated preview of the current file or it may
display no preview at all. See the <link
linkend="method-gtkfilechooser--set-preview-widget"><methodname>set_preview_widget()</methodname></link>
for more details.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-preview-widget-active">
      <title>gtk.FileChooser.get_preview_widget_active</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_preview_widget_active</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if the preview widget is
active for the current filename.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_preview_widget_active</methodname>() method
returns the value of the "preview-widget-active" property that indicates
whether the preview widget set by the <link
linkend="method-gtkfilechooser--set-preview-widget"><methodname>set_preview_widget()</methodname></link>
method should be shown for the current filename. See the <link
linkend="method-gtkfilechooser--set-preview-widget-active"><methodname>set_preview_widget_active()</methodname></link>
method for more details.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-use-preview-label">
      <title>gtk.FileChooser.set_use_preview_label</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_use_preview_label</methodname>
	  <methodparam><parameter role="keyword">use_label</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">use_label</parameter>&nbsp;:</term>
	  <listitem><simpara>if <literal>True</literal>, display a stock label
with the name of the previewed file</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_use_preview_label</methodname>() method sets
the "use-preview-label" property to the value of
<parameter>use_label</parameter>. If <parameter>use_label</parameter> is
<literal>True</literal> (the default), the file chooser should display a
stock label with the name of the file that is being previewed. Applications
that want to draw the whole preview area themselves should set this to
<literal>False</literal> and display the name themselves in their preview
widget. See the <link
linkend="method-gtkfilechooser--set-preview-widget"><methodname>set_preview_widget()</methodname></link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-use-preview-label">
      <title>gtk.FileChooser.get_use_preview_label</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_use_preview_label</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if the file chooser is
set to display a label with the name of the previewed file;
<literal>False</literal> otherwise.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_use_preview_label</methodname>() method
returns the value of the "use-preview-label" property that indicates whether
a stock label should be drawn with the name of the previewed file. See the
<link
linkend="method-gtkfilechooser--set-use-preview-label"><methodname>set_use_preview_label()</methodname></link>
for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-preview-filename">
      <title>gtk.FileChooser.get_preview_filename</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_preview_filename</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the filename to preview, or
	  <literal>None</literal>.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_preview_filename</methodname>() method
returns the filename that should be previewed in a custom preview widget or
<literal>None</literal> if no file is selected, or if the selected file
cannot be represented as a local filename. See the <link
linkend="method-gtkfilechooser--set-preview-widget"><methodname>set_preview_widget()</methodname></link>
method for more details.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-preview-uri">
      <title>gtk.FileChooser.get_preview_uri</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_preview_uri</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the URI for the file to preview, or
<literal>None</literal>.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_preview_uri</methodname>() method returns
the URI of the file that should be previewed in a custom preview widget or
<literal>None</literal> if no file is selected. See the <link
linkend="method-gtkfilechooser--set-preview-widget"><methodname>set_preview_widget()</methodname></link>
method fr more details.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-extra-widget">
      <title>gtk.FileChooser.set_extra_widget</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_extra_widget</methodname>
	  <methodparam><parameter role="keyword">extra_widget</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">extra_widget</parameter>&nbsp;:</term>
	  <listitem><simpara>the widget to display extra
options</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_extra_widget</methodname>() method sets the
"extra-widget" property to the value of
<parameter>extra_widget</parameter>. <parameter>extra_widget</parameter> is
an application-supplied widget used to display extra options to the
user.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-extra-widget">
      <title>gtk.FileChooser.get_extra_widget</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_extra_widget</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the current extra widget, or
<literal>None</literal>.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_extra_widget</methodname>() method returns
the value of the "extra-widget" property that contains either a widget used
to display extra options to the user or <literal>None</literal> if no extra
widget is in use. See the <link
linkend="method-gtkfilechooser--set-extra-widget"><methodname>set_extra_widget()</methodname></link>
for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--add-filter">
      <title>gtk.FileChooser.add_filter</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>add_filter</methodname>
	  <methodparam><parameter role="keyword">filter</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">filter</parameter>&nbsp;:</term>
	  <listitem><simpara>a
<link linkend="class-gtkfilefilter"><classname>gtk.FileFilter</classname></link></simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>add_filter</methodname>() method adds the <link
linkend="class-gtkfilefilter"><classname>gtk.FileFilter</classname></link>
specified by <parameter>filter</parameter> to the list of filters that the
user can select from. When a filter is selected, only files that are
passed by that filter are displayed.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--remove-filter">
      <title>gtk.FileChooser.remove_filter</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>remove_filter</methodname>
	  <methodparam><parameter role="keyword">filter</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">filter</parameter>&nbsp;:</term>
	  <listitem><simpara>a
<link linkend="class-gtkfilefilter"><classname>gtk.FileFilter</classname></link></simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>remove_filter</methodname>() method removes the
<link
linkend="class-gtkfilefilter"><classname>gtk.FileFilter</classname></link>
specified by <parameter>filter</parameter> from the list of filters that the
user can select from.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--list-filters">
      <title>gtk.FileChooser.list_filters</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>list_filters</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a list containing the current set of
user selectable filters.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>list_filters</methodname>() method returns the
current set of user-selectable filters. See the <link
linkend="method-gtkfilechooser--add-filter"><methodname>add_filter()</methodname></link>
and <link
linkend="method-gtkfilechooser--remove-filter"><methodname>remove_filter()</methodname></link>
method for more details.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-filter">
      <title>gtk.FileChooser.set_filter</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_filter</methodname>
	  <methodparam><parameter role="keyword">filter</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">filter</parameter>&nbsp;:</term>
	  <listitem><simpara>a
<link linkend="class-gtkfilefilter"><classname>gtk.FileFilter</classname></link></simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_filter</methodname>() method sets the
"filter" property to the value of <parameter>filter</parameter> and also
sets the current filter to <parameter>filter</parameter>. Only the files
that pass <parameter>filter</parameter> will be displayed. If the
user-selectable list of filters is non-empty, then
<parameter>filter</parameter> 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.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-filter">
      <title>gtk.FileChooser.get_filter</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_filter</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the current filter, or
<literal>None</literal>.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_filter</methodname>() method returns the
value of the "filter" property which is the current filter. See the <link
linkend="method-gtkfilechooser--set-filter"><methodname>set_filter()</methodname></link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--add-shortcut-folder">
      <title>gtk.FileChooser.add_shortcut_folder</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>add_shortcut_folder</methodname>
	  <methodparam><parameter role="keyword">folder</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">folder</parameter>&nbsp;:</term>
	  <listitem><simpara>the filename of the folder to
add</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if the folder could be
added successfully.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>add_shortcut_folder</methodname>() adds the
folder specified by <parameter>folder</parameter> the list of shortcut
folders in a file chooser. Shortcut folders are displayed at the upper left
in the <link
linkend="class-gtkfilechooser"><classname>gtk.FileChooser</classname></link>. By
double-clicking on a shortcut the user can open that folder directly. 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.</para>

      <para>The GError exception is raised if an error occurred while adding
the folder.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--remove-shortcut-folder">
      <title>gtk.FileChooser.remove_shortcut_folder</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>remove_shortcut_folder</methodname>
	  <methodparam><parameter role="keyword">folder</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">folder</parameter>&nbsp;:</term>
	  <listitem><simpara>the filename of the folder to
remove</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if
	  <parameter>folder</parameter> was removed from the list of
	  shortcut folders.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>remove_shortcut_folder</methodname>() method
removes the folder specified by <parameter>folder</parameter> from a file
chooser's list of shortcut
folders. <methodname>remove_shortcut_folder</methodname>() returns True if
successful. See the <link
linkend="method-gtkfilechooser--add-shortcut-folder"><methodname>add_shortcut_folder()</methodname></link>
method for more information.</para>

      <para>The GError exception is raised if an error occurred while
removing the folder.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--list-shortcut-folders">
      <title>gtk.FileChooser.list_shortcut_folders</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>list_shortcut_folders</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>A list of shortcut folder filenames, or
<literal>None</literal> if there are no shortcut folders.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>list_shortcut_folders</methodname>() method
returns the list of shortcut folders in the file chooser, as set by the
<link
linkend="method-gtkfilechooser--add-shortcut-folder"><methodname>add_shortcut_folder</methodname>()</link>
method or <literal>None</literal> if there are no shortcut folders. It is
not possible to get a list of the user-specified shortcut folders.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--add-shortcut-folder-uri">
      <title>gtk.FileChooser.add_shortcut_folder_uri</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>add_shortcut_folder_uri</methodname>
	  <methodparam><parameter role="keyword">uri</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">uri</parameter>&nbsp;:</term>
	  <listitem><simpara>the URI of the folder to add</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if the folder was
added</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>add_shortcut_folder_uri</methodname>() method
adds a folder with the URI specified by <parameter>uri</parameter> to the
list of 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. See the <link
linkend="method-gtkfilechooser--add-shortcut-folder"><methodname>add_shortcut_folder</methodname>()</link>
method for more details.</para>

      <para>The GError exception is raised if an error occurred while adding
the folder.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--remove-shortcut-folder-uri">
      <title>gtk.FileChooser.remove_shortcut_folder_uri</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>remove_shortcut_folder_uri</methodname>
	  <methodparam><parameter role="keyword">uri</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">uri</parameter>&nbsp;:</term>
	  <listitem><simpara>URI of the folder to remove</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if the folder was
removed.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>remove_shortcut_folder_uri</methodname>() method
removes the folder with the URI specified by <parameter>uri</parameter> from
the file chooser's list of shortcut folders.</para>

      <para>The GError exception is raised if an error occurred while
removing the folder.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--list-shortcut-folder-uris">
      <title>gtk.FileChooser.list_shortcut_folder_uris</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>list_shortcut_folder_uris</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a list of shortcut folder URIs, or
<literal>None</literal></simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>list_shortcut_folder_uris</methodname>() method
returns a list of the shortcut folders in the file chooser, as set by the
<link
linkend="method-gtkfilechooser--add-shortcut-folder-uri"><methodname>add_shortcut_folder_uri</methodname>()</link>
method. It is not possible to get a list of the user-specified folder
URIs.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-show-hidden">
      <title>gtk.FileChooser.set_show_hidden</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_show_hidden</methodname>
	  <methodparam><parameter role="keyword">show_hidden</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">show_hidden</parameter>&nbsp;:</term>
	  <listitem><simpara>if <literal>True</literal> hidden files and
folders should be displayed.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.6 and above.</para>
      </note>

      <para>The <methodname>set_show_hidden</methodname>() method sets the
"show-hidden" property to the value of
<parameter>show_hidden</parameter>. If <parameter>show_hidden</parameter> is
<literal>True</literal>, hidden files and folders should be displayed in the
file selector.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-show-hidden">
      <title>gtk.FileChooser.get_show_hidden</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_show_hidden</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if hidden files and
folders are displayed.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.6 and above.</para>
      </note>

      <para>The <methodname>get_show_hidden</methodname>() method returns
the value of the "show-hidden" property that indicates whether hidden files
and folders should be displayed in the file selector. See the <link
linkend="method-gtkfilechooser--set-show-hidden"><methodname>set_show_hidden()</methodname></link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-do-overwrite-confirmation">
      <title>gtk.FileChooser.set_do_overwrite_confirmation</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_do_overwrite_confirmation</methodname>
	  <methodparam><parameter role="keyword">do_overwrite_confirmation</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">do_overwrite_confirmation</parameter>&nbsp;:</term>
	  <listitem><simpara>if <literal>True</literal> ask the user for
confirmation before overwriting a file in save mode.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.8 and above.</para>
      </note>

      <para>The <methodname>set_do_overwrite_confirmation</methodname>()
method sets the "do-overwrite-confirmation" property to the value of
<parameter>do_overwrite_confirmation</parameter>. If
<parameter>do_overwrite_confirmation</parameter> is <literal>True</literal>
and the "action" property is set to
<literal>gtk.FILE_CHOOSER_ACTION_SAVE</literal>, the file chooser will
present a confirmation dialog if the user attempts to overwrite an existing
file. The default value is <literal>False</literal>.</para>

      <para>If all you need is the stock confirmation dialog, set the
"do-overwrite-confirmation" property to <literal>True</literal>. You can
override the way confirmation is done by actually handling the
"confirm-overwrite" signal; please refer to its documentation for
details.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-do-overwrite-confirmation">
      <title>gtk.FileChooser.get_do_overwrite_confirmation</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_do_overwrite_confirmation</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if hidden files and
folders are displayed.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.8 and above.</para>
      </note>

      <para>The <methodname>get_do_overwrite_confirmation</methodname>()
method returns the value of the "do-overwrite-confirmation" property that
indicates whether a user is asked for confirmation before overwriting an
existing file. See the <link
linkend="method-gtkfilechooser--set-do-overwrite-confirmation"><methodname>set_do_overwrite_confirmation()</methodname></link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-current-folder-file">
      <title>gtk.FileChooser.get_current_folder_file</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_current_folder_file</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>The <link linkend="class-giofile">
	  <classname>gio.File</classname></link>.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.14 and above.</para>
      </note>

      <para>
	The <methodname>get_current_folder_file</methodname>() method returns
	the current folder of chooser as <link linkend="class-giofile"><classname>gio.File</classname></link>.
	See <link linkend="method-gtkfilechooser--get-current-folder-uri">gtk.FileChooser.get_current_folder_uri</link>().
      </para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--get-file">
      <title>gtk.FileChooser.get_file</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_file</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>A selected <link linkend="class-giofile">
	  <classname>gio.File</classname></link>.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.14 and above.</para>
      </note>

      <para>
	The <methodname>get_file</methodname>() method returns
	the <link linkend="class-giofile"><classname>gio.File</classname></link>
	for the currently selected file in the file selector.
	If multiple files are selected, one of the files will be returned at random. 
      </para>
      <para>
	If the file chooser is in folder mode, this function returns the selected folder.
      </para>

    </refsect2>
    
    <!-- NOT IMPLEMENTED
    <refsect2 id="method-gtkfilechooser- -get-files">
      <title>gtk.FileChooser.get_files</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_files</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>A list containing a  <link linkend="class-giofile">
	  <classname>gio.File</classname></link> for each selected file and subfolder
	  in the current folder.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.14 and above.</para>
      </note>

      <para>
	The <methodname>get_files</methodname>() method returns
	Lists all the selected files and subfolders in the current folder of chooser as
	<link linkend="class-giofile"><classname>gio.File</classname></link>. An internal function, see
	<link linkend="method-gtkfilechooser- -get-uris">gtk.FileChooser.get_uris</link>().
      </para>

    </refsect2> -->

    <refsect2 id="method-gtkfilechooser--get-preview-file">
      <title>gtk.FileChooser.get_preview_file</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_preview_file</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>The <link linkend="class-giofile">
	  <classname>gio.File</classname></link> for the file to preview,
	  or <literal>None</literal> if no file is selected.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.14 and above.</para>
      </note>

      <para>
	The <methodname>get_preview_file</methodname>() method returns
	the <link linkend="class-giofile"><classname>gio.File</classname></link>
	that should be previewed in a custom preview Internal function, see
	<link linkend="method-gtkfilechooser--get-preview-uri">gtk.FileChooser.get_preview_uri</link>().
      </para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--select-file">
      <title>gtk.FileChooser.select_file</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>select_file</methodname>
	  <methodparam><parameter role="keyword">file</parameter></methodparam>
      </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">file</parameter>&nbsp;:</term>
	  <listitem><simpara>the file to select.</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if both the folder could be changed
	  and the path was selected successfully,
	  <literal>False</literal> otherwise. </simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.14 and above.</para>
      </note>

      <para>
	The <methodname>select_file</methodname>() method
	selects the file referred to by file. An internal function. See
	<link linkend="method-gtkfilechooser--select-uri">gtk.FileChooser.select_uri</link>().
      </para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-current-folder-file">
      <title>gtk.FileChooser.set_current_folder_file</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_current_folder_file</methodname>
	  <methodparam><parameter role="keyword">file</parameter></methodparam>
      </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">file</parameter>&nbsp;:</term>
	  <listitem><simpara>the <link linkend="class-giofile"><classname>gio.File</classname></link>
	  for the new folder.</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if the folder could be changed
	  successfully, <literal>False</literal> otherwise.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.14 and above.</para>
      </note>

      <para>
	The <methodname>set_current_folder_file</methodname>() method
	sets the current folder for chooser from a
	<link linkend="class-giofile"><classname>gio.File</classname></link>.
	Internal function, see
	<link linkend="method-gtkfilechooser--set-current-folder-uri">gtk.FileChooser.set_current_folder_uri</link>().
      </para>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--set-file">
      <title>gtk.FileChooser.set_file</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_file</methodname>
	  <methodparam><parameter role="keyword">file</parameter></methodparam>
      </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">file</parameter>&nbsp;:</term>
	  <listitem><simpara>the <link linkend="class-giofile"><classname>gio.File</classname></link>
	  to set as current.</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if both the folder could be changed
	  and the file selected successfully, <literal>False</literal> otherwise.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.14 and above.</para>
      </note>

      <para>
	The <methodname>set_file</methodname>() method
	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 chooser is in gtk.FILE_CHOOSER_ACTION_SAVE mode, the file's base
	name will also appear in the dialog's file name entry. 
      </para>
      <para>
	If the file name isn't in the current folder of chooser, then the current
	folder of chooser will be changed to the folder containing filename.
	This is equivalent to a sequence of
	<link linkend="method-gtkfilechooser--unselect-all">gtk.FileChooser.unselect_all</link>()
	followed by <link linkend="method-gtkfilechooser--select-filename">gtk.FileChooser.select_filename</link>().
      </para>
      <para>
	Note that the file must exist, or nothing will be done except for the directory change.
      </para>
      <para>
	If you are implementing a File/Save As... 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 File/Save As... on it.
	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:
      </para>
<programlisting>
if (document_is_new):
    # the user just created a new document
    chooser.set_current_folder_file(default_file_for_saving)
    chooser.set_current_name("Untitled document")
else:
    # the user edited an existing document
    chooser.set_file(existing_file)
</programlisting>

    </refsect2>

    <refsect2 id="method-gtkfilechooser--unselect-file">
      <title>gtk.FileChooser.unselect_file</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>unselect_file</methodname>
	  <methodparam><parameter role="keyword">file</parameter></methodparam>
      </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">file</parameter>&nbsp;:</term>
	  <listitem><simpara>a <link linkend="class-giofile"><classname>gio.File</classname></link>.
	  </simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.14 and above.</para>
      </note>

      <para>
	The <methodname>unselect_file</methodname>() method
	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.
      </para>

    </refsect2>
    
  </refsect1>

  <refsect1>
    <title>Signals</title>

    <refsect2 id="signal-gtkfilechooser--confirm-overwrite">
      <title>The "confirm-overwrite" gtk.FileChooser Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>filechooser</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>filechooser</parameter>&nbsp;:</term>
	  <listitem><simpara>the filechooser widget that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara> one of the <xref
linkend="gtk-filechooser-confirmation-constants"
endterm="gtk-filechooser-confirmation-constants-title"></xref>
indicating what action GTK+ should take.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This signal is available in PyGTK 2.8 and above.</para>
      </note>

      <para>The "confirm-overwrite" signal is emitted when it is appropriate
to present a confirmation dialog when the user has selected a file name that
already exists. The signal is only emitted when the file chooser "action" property is set to <literal>gtk.FILE_CHOOSER_ACTION_SAVE</literal>.</para>

      <para> Most applications just need to turn on the
"do-overwrite-confirmation" property (or call the <link
linkend="method-gtkfilechooser--set-do-overwrite-confirmation"><methodname>set_do_overwrite_confirmation</methodname>()</link>
method), to automatically get a stock confirmation dialog. Applications
that need to customize this behavior should do that, and also connect to
the "confirm-overwrite" signal.</para>

      <para>A signal handler for this signal must return one of the <xref
linkend="gtk-filechooser-confirmation-constants"
endterm="gtk-filechooser-confirmation-constants-title"></xref> that
indicates the action to take. If the handler determines that the user wants
to select a different filename, it should return
<literal>gtk.FILE_CHOOSER_CONFIRMATION_SELECT_AGAIN</literal>. If it
determines that the user is satisfied with his choice of file name, it
should return
<literal>gtk.FILE_CHOOSER_CONFIRMATION_ACCEPT_FILENAME</literal>. On the
other hand, if it determines that the stock confirmation dialog should be
used, it should return
<literal>gtkfile_CHOOSER_CONFIRMATION_CONFIRM</literal>. The following
psuedo-code example illustrates this.</para>

      <programlisting>
def confirm_overwrite_callback(chooser):
  uri = chooser.get_uri()

  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
    # fall back to the default dialog
    return gtk.FILE_CHOOSER_CONFIRMATION_CONFIRM 

...

chooser = gtk.FileChooserDialog(...)

chooser.set_do_overwrite_confirmation(True)
chooser.connect("confirm-overwrite", confirm_overwrite_callback)

if chooser.run() == gtk.RESPONSE_ACCEPT:
  save_to_file(chooser.get_filename()

chooser.destroy()
</programlisting>

    </refsect2>

    <refsect2 id="signal-gtkfilechooser--current-folder-changed">
      <title>The "current-folder-changed" gtk.FileChooser Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>filechooser</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>filechooser</parameter>&nbsp;:</term>
	  <listitem><simpara>the filechooser widget that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This signal is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The "current-folder-changed" signal is emitted when the current
folder displayed in <parameter>filechooser</parameter> is changed. Normally
you do not need to connect to this signal, unless you need to keep track of
which folder a file chooser is showing.</para>

    </refsect2>

    <refsect2 id="signal-gtkfilechooser--file-activated">
      <title>The "file-activated" gtk.FileChooser Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>filechooser</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>filechooser</parameter>&nbsp;:</term>
	  <listitem><simpara>the filechooser widget that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This signal is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The "file-activated" signal is emitted when the user
double-clicks on a file (not a folder) or presses
<keycap>Enter</keycap>. Normally you do not need to connect to this
signal. It is used internally by <link
linkend="class-gtkfilechooserdialog"><classname>gtk.FileChooserDialog</classname></link>
to know when to activate the default button in the dialog.</para>

    </refsect2>

    <refsect2 id="signal-gtkfilechooser--selection-changed">
      <title>The "selection-changed" gtk.FileChooser Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>filechooser</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>filechooser</parameter>&nbsp;:</term>
	  <listitem><simpara>the filechooser widget that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This signal is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The "selection-changed" signal is emitted when the file
selection in <parameter>filechooser</parameter> is changed either by
clicking on a filename or by changing the current folder. 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.</para>

    </refsect2>

    <refsect2 id="signal-gtkfilechooser--update-preview">
      <title>The "update-preview" gtk.FileChooser Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>filechooser</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>filechooser</parameter>&nbsp;:</term>
	  <listitem><simpara>the filechooser widget that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This signal is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The "update-preview" signal is emitted when the preview when 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.</para>

      <para>Once you have installed a preview widget with the <link
linkend="method-gtkfilechooser--set-preview-widget"><methodname>set_preview_widget</methodname>()</link>
method, you should update it when this signal is emitted. You can use the
methods <link
linkend="method-gtkfilechooser--get-preview-filename"><methodname>get_preview_filename</methodname>()</link>
or <link
linkend="method-gtkfilechooser--get-preview-uri"><methodname>get_preview_uri</methodname>()</link>
to get the name of the file to preview. Your widget may not be able to
preview all kinds of files so your callback must call the <link
linkend="method-gtkfilechooser--set-preview-widget-active"><methodname>set_preview_widget_active</methodname>()</link>
to inform the file chooser if the preview was generated successfully or
not.</para>

      <para>Please see the example code in the section called <link
linkend="AddingAPreviewWidget">Adding a Preview Widget</link>.</para>

      <para>Also see the <link
linkend="method-gtkfilechooser--set-preview-widget"><methodname>set_preview_widget</methodname>()</link>,
<link
linkend="method-gtkfilechooser--set-preview-widget-active"><methodname>set_preview_widget_active</methodname>()</link>,
<link
linkend="method-gtkfilechooser--set-use-preview-label"><methodname>set_use_preview_label</methodname>()</link>,
<link
linkend="method-gtkfilechooser--get-preview-filename"><methodname>get_preview_filename</methodname>()</link>
and <link
linkend="method-gtkfilechooser--get-preview-uri"><methodname>get_preview_uri</methodname>()</link>
methods for more information</para>

    </refsect2>

  </refsect1>

</refentry>