summaryrefslogtreecommitdiff
path: root/docs/reference/pygtk-gtkiconview.xml
blob: 79dd6c2d6cb857c17b0957a524094c1419d7b062 (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
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
<?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-gtkiconview">
  <refnamediv>
    <refname>gtk.IconView</refname>
    <refpurpose>a widget which displays a list of icons in a grid (new in
PyGTK 2.6)</refpurpose>
  </refnamediv>

  <refsect1>
    <title>Synopsis</title>

<classsynopsis language="python">
  <ooclass><classname>gtk.IconView</classname></ooclass>
  <ooclass><classname><link linkend="class-gtkcontainer">gtk.Container</link></classname></ooclass>
      <ooclass><classname><link linkend="class-gtkcelllayout">gtk.CellLayout</link></classname></ooclass>
<constructorsynopsis language="python">
    <methodname><link linkend="constructor-gtkiconview">gtk.IconView</link></methodname>
    <methodparam><parameter role="keyword">model</parameter><initializer>None</initializer></methodparam>
  </constructorsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-model">set_model</link></methodname>
    <methodparam><parameter role="keyword">model</parameter><initializer>None</initializer></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-model">get_model</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-text-column">set_text_column</link></methodname>
    <methodparam><parameter role="keyword">column</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-text-column">get_text_column</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-markup-column">set_markup_column</link></methodname>
    <methodparam><parameter role="keyword">column</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-markup-column">get_markup_column</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-pixbuf-column">set_pixbuf_column</link></methodname>
    <methodparam><parameter role="keyword">column</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-pixbuf-column">get_pixbuf_column</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-path-at-pos">get_path_at_pos</link></methodname>
    <methodparam><parameter role="keyword">x</parameter></methodparam>
    <methodparam><parameter role="keyword">y</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-item-at-pos">get_item_at_pos</link></methodname>
    <methodparam><parameter role="keyword">x</parameter></methodparam>
    <methodparam><parameter role="keyword">y</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-cursor">set_cursor</link></methodname>
    <methodparam><parameter role="keyword">path</parameter></methodparam>
    <methodparam><parameter role="keyword">cell</parameter><initializer>None</initializer></methodparam>
    <methodparam><parameter role="keyword">start_editing</parameter><initializer>False</initializer></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-cursor">get_cursor</link></methodname>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--selected-foreach">selected_foreach</link></methodname>
    <methodparam><parameter role="keyword">func</parameter></methodparam>
    <methodparam><parameter role="keyword">data</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-selection-mode">set_selection_mode</link></methodname>
    <methodparam><parameter role="keyword">mode</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-selection-mode">get_selection_mode</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-orientation">set_orientation</link></methodname>
    <methodparam><parameter role="keyword">orientation</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-orientation">get_orientation</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-columns">set_columns</link></methodname>
    <methodparam><parameter role="keyword">columns</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-columns">get_columns</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-columns">set_item_width</link></methodname>
    <methodparam><parameter role="keyword">item_width</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-columns">get_item_width</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-columns">set_spacing</link></methodname>
    <methodparam><parameter role="keyword">spacing</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-columns">get_spacing</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-columns">set_row_spacing</link></methodname>
    <methodparam><parameter role="keyword">row_spacing</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-columns">get_row_spacing</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-columns">set_column_spacing</link></methodname>
    <methodparam><parameter role="keyword">column_spacing</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-columns">get_column_spacing</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-columns">set_margin</link></methodname>
    <methodparam><parameter role="keyword">margin</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-columns">get_margin</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--select-path">select_path</link></methodname>
    <methodparam><parameter role="keyword">path</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--unselect-path">unselect_path</link></methodname>
    <methodparam><parameter role="keyword">path</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--path-is-selected">path_is_selected</link></methodname>
    <methodparam><parameter role="keyword">path</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-selected-items">get_selected_items</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--select-all">select_all</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--unselect-all">unselect_all</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--item-activated">item_activated</link></methodname>
    <methodparam><parameter role="keyword">path</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--scroll-to-path">scroll_to_path</link></methodname>
    <methodparam><parameter role="keyword">path</parameter></methodparam>
    <methodparam><parameter role="keyword">use_align</parameter></methodparam>
    <methodparam><parameter role="keyword">row_align</parameter></methodparam>
    <methodparam><parameter role="keyword">col_align</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-visible-range">get_visible_range</link></methodname>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--enable-model-drag-source">enable_model_drag_source</link></methodname>
    <methodparam><parameter role="keyword">start_button_mask</parameter></methodparam>
    <methodparam><parameter role="keyword">targets</parameter></methodparam>
    <methodparam><parameter role="keyword">actons</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--enable-model-drag-dest">enable_model_drag_dest</link></methodname>
    <methodparam><parameter role="keyword">targets</parameter></methodparam>
    <methodparam><parameter role="keyword">actions</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--unset-model-drag-source">unset_model_drag_source</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--unset-model-drag-dest">unset_model_drag_dest</link></methodname>
    <methodparam><parameter role="keyword"></parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-reorderable">set_reorderable</link></methodname>
    <methodparam><parameter role="keyword">reorderable</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-reorderable">get_reorderable</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--set-drag-dest-item">set_drag_dest_item</link></methodname>
    <methodparam><parameter role="keyword">path</parameter></methodparam>
    <methodparam><parameter role="keyword">pos</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-drag-dest-item">get_drag_dest_item</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--get-dest-item-at-pos">get_dest_item_at_pos</link></methodname>
    <methodparam><parameter role="keyword">drag_x</parameter></methodparam>
    <methodparam><parameter role="keyword">drag_y</parameter></methodparam>
  </methodsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkiconview--create-drag-icon">create_drag_icon</link></methodname>
    <methodparam><parameter role="keyword">path</parameter></methodparam>
  </methodsynopsis>
    
    <methodsynopsis language="python">
        <methodname><link linkend="method-gtkiconview--convert-widget-to-bin-window-coords">convert_widget_to_bin_window_coords</link></methodname>
        <methodparam><parameter role="keyword">widget_x</parameter></methodparam>
        <methodparam><parameter role="keyword">widget_y</parameter></methodparam>
    </methodsynopsis>
    <methodsynopsis language="python">
        <methodname><link linkend="method-gtkiconview--set-tooltip-cell">set_tooltip_cell</link></methodname>
        <methodparam><parameter role="keyword">tooltip</parameter></methodparam>
        <methodparam><parameter role="keyword">path</parameter></methodparam>
        <methodparam><parameter role="keyword">cell</parameter></methodparam>
    </methodsynopsis>
    <methodsynopsis language="python">
        <methodname><link linkend="method-gtkiconview--set-tooltip-column">set_tooltip_column</link></methodname>
        <methodparam><parameter role="keyword">column</parameter></methodparam>
    </methodsynopsis>
    <methodsynopsis language="python">
        <methodname><link linkend="method-gtkiconview--get-tooltip-column">get_tooltip_column</link></methodname>
        <methodparam></methodparam>
    </methodsynopsis>
    <methodsynopsis language="python">
        <methodname><link linkend="method-gtkiconview--set-tooltip-item">set_tooltip_item</link></methodname>
        <methodparam><parameter role="keyword">tooltip</parameter></methodparam>
        <methodparam><parameter role="keyword">path</parameter></methodparam>
    </methodsynopsis>
    <methodsynopsis language="python">
      <methodname><link linkend="method-gtkiconview--get-item-row">get_item_row</link></methodname>
      <methodparam><parameter role="keyword">path</parameter></methodparam>
    </methodsynopsis>
    <methodsynopsis language="python">
      <methodname><link linkend="method-gtkiconview--get-item-column">get_item_column</link></methodname>
      <methodparam><parameter role="keyword">path</parameter></methodparam>
    </methodsynopsis>
    <methodsynopsis language="python">
      <methodname><link linkend="method-gtkiconview--set-item-orientation">set_item_orientation</link></methodname>
      <methodparam><parameter role="keyword">orientation</parameter></methodparam>
    </methodsynopsis>
    <methodsynopsis language="python">
      <methodname><link linkend="method-gtkiconview--get-item-orientation">get_item_orientation</link></methodname>
      <methodparam></methodparam>
    </methodsynopsis>
    <methodsynopsis language="python">
      <methodname><link linkend="method-gtkiconview--set-item-padding">set_item_padding</link></methodname>
      <methodparam><parameter role="keyword">item_padding</parameter></methodparam>
    </methodsynopsis>
    <methodsynopsis language="python">
      <methodname><link linkend="method-gtkiconview--get-item-padding">get_item_padding</link></methodname>
      <methodparam></methodparam>
    </methodsynopsis>
  </classsynopsis>

</refsect1>

  <refsect1>
    <title>Ancestry</title>

<synopsis>+-- <link linkend="class-gobject">gobject.GObject</link>
  +-- <link linkend="class-gtkobject">gtk.Object</link>
    +-- <link linkend="class-gtkwidget">gtk.Widget</link>
      +-- <link linkend="class-gtkcontainer">gtk.Container</link>
        +-- <link linkend="class-gtkiconview">gtk.IconView</link> (implements <link linkend="class-gtkcelllayout">gtk.CellLayout</link>)</synopsis>

  </refsect1>
  
  <refsect1>
		<title>Implemented Interfaces</title>
		<para>
			<link linkend="class-gtkiconview"><classname>gtk.IconView</classname></link>
			implements 
			<link linkend="class-gtkbuildable"><classname>gtk.Buildable</classname></link>
		</para>
	</refsect1>

  <refsect1 id="properties-gtkiconview">
    <title>gtk.IconView Properties</title>

    <para><link linkend="properties-gtkobject">gtk.Object Properties</link></para>
    <para><link linkend="properties-gtkwidget">gtk.Widget Properties</link></para>
    <para><link linkend="properties-gtkcontainer">gtk.Container Properties</link></para>

    <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>"column-spacing"</entry>
	      <entry>Read-Write</entry>

	      <entry>The space (in pixels) inserted between grid
columns. Allowed values: >= 0. Default value: 6.
Available in GTK+ 2.6 and above.</entry>
	    </row>

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

	      <entry>The number of columns in a row. If it is -1, the number
of columns will be chosen automatically to fill the available width.
Allowed values: >= -1. Default value: -1.
Available in GTK+ 2.6 and above.</entry>
	    </row>

	    <row valign="top">
	      <entry>"item-orientation"</entry>
	      <entry>Read-Write</entry>

	      <entry>Specifies how the cells (i.e. the icon and the text) of the
item are positioned relative to each other.
Default value: <literal>gtk.ORIENTATION_VERTICAL</literal>.
Available in GTK+ 2.22 and above.</entry>
	    </row>

	    <row valign="top">
	      <entry>"item-padding"</entry>
	      <entry>Read-Write</entry>

	      <entry>Specifies the padding around each of the icon view's item. .
Available in GTK+ 2.22 and above.</entry>
	    </row>

	    <row valign="top">
	      <entry>"item-width"</entry>
	      <entry>Read-Write</entry>

	      <entry>The width used for each item. If it is -1 the width the
largest item is used. Allowed values: >= -1. Default value: -1.
Available in GTK+ 2.6 and above.</entry>
	    </row>

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

	      <entry>The space (in pixels) inserted at the edges of the
icon view. Allowed values: >= 0. Default value: 6.
Available in GTK+ 2.6 and above.</entry>
	    </row>

	    <row valign="top">
	      <entry>"markup-column"</entry>
	      <entry>Read-Write</entry>

	      <entry>The number of the model column containing markup
information to be displayed. If this property and the "text-column" property
are both set to column numbers, this overrides the text column. If both are
set to -1, no text is displayed. Allowed values: >= -1. Default value: -1.
Available in GTK+ 2.6 and above.</entry>
	    </row>

	    <row valign="top">
	      <entry>"model"</entry>
	      <entry>Read-Write</entry>
	      <entry>The <link
linkend="class-gtktreemodel"><classname>gtk.TreeModel</classname></link>
for the icon view. Available in GTK+ 2.6 and above.</entry>
	    </row>

	    <row valign="top">
	      <entry>"orientation"</entry>
	      <entry>Read-Write</entry>
	      <entry>How the text and icon of each item are positioned
relative to each other. Default value:
<literal>gtk.ORIENTATION_VERTICAL</literal>. Available in GTK+ 2.6 and
above.</entry>
	    </row>

	    <row valign="top">
	      <entry>"pixbuf-column"</entry>
	      <entry>Read-Write</entry>

	      <entry>The number of the model column containing the pixbufs
that are displayed. Setting this property to -1 turns off the display of
pixbufs. Allowed values: >= -1. Default value: -1. Available in GTK+ 2.6 and
above.</entry>
	    </row>

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

	      <entry>If <literal>True</literal> the icon view is reorderable.
Default value: <literal>False</literal>.
Available in GTK+ 2.8 and above.</entry>
	    </row>

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

	      <entry>The space (in pixels) inserted between grid rows.
Allowed values: >= 0. Default value: 6.
Available in GTK+ 2.6 and above.</entry>
	    </row>

	    <row valign="top">
	      <entry>"selection-mode"</entry>
	      <entry>Read-Write</entry>

	      <entry>The selection mode of the icon view. If the mode is
<literal>gtk.SELECTION_MULTIPLE</literal>, rubberband selection is enabled,
for the other modes, only keyboard selection is possible. Default value:
<literal>gtk.SELECTION_SINGLE</literal>. Available in GTK+ 2.6 and
above.</entry>
	    </row>

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

	      <entry>The space (in pixels) inserted between cells of an item.
Allowed values: >= 0. Default value: 0.
Available in GTK+ 2.6 and above.</entry>
	    </row>

	    <row valign="top">
	      <entry>"text-column"</entry>
	      <entry>Read-Write</entry>

	      <entry>The number of the model column containing the text that
is displayed. If this property and the "markup-column" property are both set
to -1, no text is displayed. Allowed values: >= -1. Default value:
-1. Available in GTK+ 2.6 and above.</entry>
	    </row>

	    <row valign="top">
	      <entry>"tooltip-column"</entry>
	      <entry>Read-Write</entry>

	      <entry>The number of the model column containing the tooltip text for the items.</entry>
	    </row>

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

  </refsect1>

  <refsect1 id="style-properties-gtkiconview">
    <title>gtk.IconView Style Properties</title>

    <para><link linkend="style-properties-gtkwidget">gtk.Widget Style Properties</link></para>

    <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>"selection-box-alpha"</entry>
	      <entry>Read</entry>

	      <entry>The opacity of the selection box. Default value:
64. Available in GTK+ 2.6 and above.</entry>
	    </row>

	    <row valign="top">
	      <entry>"selection-box-color"</entry>
	      <entry>Read</entry>

	      <entry>The color of the selection box. Available in GTK+ 2.6
and above.</entry>
	    </row>

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

  </refsect1>

  <refsect1 id="signal-prototypes-gtkiconview">
    <title>gtk.IconView Signal Prototypes</title>

    <para><link linkend="signal-prototypes-gobject">gobject.GObject Signal Prototypes</link></para>
    <para><link linkend="signal-prototypes-gtkobject">gtk.Object Signal Prototypes</link></para>
    <para><link linkend="signal-prototypes-gtkwidget">gtk.Widget Signal Prototypes</link></para>
    <para><link linkend="signal-prototypes-gtkcontainer">gtk.Container Signal Prototypes</link></para>

    <variablelist>
      <varlistentry>
        <term>"<link linkend="signal-gtkiconview--activate-cursor-item">activate-cursor-item</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>iconview</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkiconview--item-activated">item-activated</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>iconview</parameter></methodparam>
            <methodparam><parameter>path</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkiconview--move-cursor">move-cursor</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>iconview</parameter></methodparam>
            <methodparam><parameter>step</parameter></methodparam>
            <methodparam><parameter>number</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkiconview--select-all">select-all</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>iconview</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkiconview--select-cursor-item">select-cursor-item</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>iconview</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkiconview--selection-changed">selection-changed</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>iconview</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkiconview--set-scroll-adjustments">set-scroll-adjustments</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>iconview</parameter></methodparam>
             <methodparam><parameter>hadj</parameter></methodparam>
            <methodparam><parameter>vadj</parameter></methodparam>
           <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkiconview--toggle-cursor-item">toggle-cursor-item</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>iconview</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkiconview--unselect-all">unselect-all</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>iconview</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
    </variablelist>

  </refsect1>

  <refsect1>
    <title>Description</title>

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

    <para>The <link
linkend="class-gtkiconview"><classname>gtk.IconView</classname></link>
widget provides an alternative view of a <link
linkend="class-gtkliststore"><classname>gtk.ListStore</classname></link>
model. It displays the model as a grid of icons with labels. Like <link
linkend="class-gtktreeview"><classname>gtk.TreeView</classname></link>, you
can select one or multiple items (depending on the selection mode, see the
<link
linkend="method-gtkiconview--set-selection-mode"><methodname>set_selection_mode</methodname>()</link>
method for more information). In addition to selection with the arrow keys,
<link linkend="class-gtkiconview"><classname>gtk.IconView</classname></link>
supports rubberband selection, which is controlled by dragging the
pointer.</para>

  </refsect1>

  <refsect1 id="constructor-gtkiconview">
    <title>Constructor</title>

    <programlisting><constructorsynopsis language="python">
	<methodname>gtk.IconView</methodname>
	<methodparam><parameter
		       role="keyword">model</parameter><initializer>None</initializer></methodparam>
      </constructorsynopsis></programlisting>
    <variablelist>
      <varlistentry>
	<term><parameter role="keyword">model</parameter>&nbsp;:</term>
	<listitem><simpara>A <link
linkend="class-gtktreemodel"><classname>gtk.TreeModel</classname></link>, or
<literal>None</literal></simpara></listitem>
      </varlistentry>
      <varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	<listitem><simpara>a new <link
linkend="class-gtkiconview"><classname>gtk.IconView</classname></link>
widget.</simpara></listitem>
      </varlistentry>
    </variablelist>

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

    <para>Creates a new <link
linkend="class-gtkiconview"><classname>gtk.IconView</classname></link>
widget. If <parameter>model</parameter> is specified and not
<literal>None</literal> it should specify a <link
linkend="class-gtktreemodel"><classname>gtk.TreeModel</classname></link> to
be used as the model.</para>

  </refsect1>

  <refsect1>
    <title>Methods</title>

    <refsect2 id="method-gtkiconview--set-model">
      <title>gtk.IconView.set_model</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_model</methodname>
	  <methodparam><parameter
			 role="keyword">model</parameter><initializer>None</initializer></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">model</parameter>&nbsp;:</term>
	  <listitem><simpara>a <link
linkend="class-gtktreemodel"><classname>gtk.TreeModel</classname></link>
or <literal>None</literal></simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_model</methodname>() method sets the "model"
property to the <link
linkend="class-gtktreemodel"><classname>gtk.TreeModel</classname></link>
specified by <parameter>model</parameter>. If <parameter>model</parameter>
is <literal>None</literal> the old model will be unset.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-model">
      <title>gtk.IconView.get_model</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_model</methodname>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>The <link
linkend="class-gtktreemodel"><classname>gtk.TreeModel</classname></link>
used by the cell view or <literal>None</literal>.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_model</methodname>() method returns the
value of the "model" property which contains the <link
linkend="class-gtktreemodel"><classname>gtk.TreeModel</classname></link>
used by the cell view. If no model is being used this method returns
<literal>None</literal>.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-text-column">
      <title>gtk.IconView.set_text_column</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_text_column</methodname>
	  <methodparam><parameter
			 role="keyword">column</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">column</parameter>&nbsp;:</term>
	  <listitem><simpara>The index of a column in the 
model or -1 to unset the column</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_text_column</methodname>() method sets the
"text-column" property to the value of <parameter>column</parameter> which
should be the index of a column in the model containing strings to be used
for text. If <parameter>column</parameter> is -1 the text column is
unset.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-text-column">
      <title>gtk.IconView.get_text_column</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_text_column</methodname>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>The index of a model's column or -1 if 
unset.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_text_column</methodname>() method returns
the value of the "text-column" property which contains the index of the
column in the model that provides strings to be used for text. If the
"text-column" property contains -1 then no column is used for text.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-markup-column">
      <title>gtk.IconView.set_markup_column</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_markup_column</methodname>
	  <methodparam><parameter
			 role="keyword">column</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">column</parameter>&nbsp;:</term>
	  <listitem><simpara>The index of a column in the model or -1.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_markup_column</methodname>() method sets the
"markup-column" property to the value specified by
<parameter>column</parameter>.  The "markup-column" property indicates the
index of a column in the model to be used for markup information. If
<parameter>column</parameter> is -1 the markup column will be unset. If the
markup column is set, it overrides the text column set by the <link
linkend="method-gtkiconview--set-text-column"><methodname>set_text_column</methodname>()</link>
method.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-markup-column">
      <title>gtk.IconView.get_markup_column</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_markup_column</methodname>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the index of the model column containing markup
or -1.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_markup_column</methodname> method returns
the value of the "markup-column" property which contains the index of the
column in the model that contains the Pango markup for text. if the
"markup-column" property is -1, the markup column is unset.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-pixbuf-column">
      <title>gtk.IconView.set_pixbuf_column</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_pixbuf_column</methodname>
	  <methodparam><parameter
			 role="keyword">column</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">column</parameter>&nbsp;:</term>
	  <listitem><simpara>the index of a model column or
-1</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_pixbuf_column</methodname>() method sets the
"pixbuf-column" property to the value of <parameter>column</parameter>. If
column >= 0 the icon view <link
linkend="class-gdkpixbuf"><classname>gtk.gdk.Pixbuf</classname></link>
objects will be retrieved from the specified column. If
<parameter>column</parameter> is -1 then no pixbufs will be used,</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-pixbuf-column">
      <title>gtk.IconView.get_pixbuf_column</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_pixbuf_column</methodname>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>The index of a column in the model or
-1</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_pixbuf_column</methodname>() returns the
value of the "pixbuf-column" property which contains the index of the model
column use to to retrieve <link
linkend="class-gdkpixbuf"><classname>gtk.gdk.Pixbuf</classname></link>
objects to display. If the "pixbuf-column" property is -1 no pixbufs will be
retrieved.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-path-at-pos">
      <title>gtk.IconView.get_path_at_pos</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_path_at_pos</methodname>
	  <methodparam><parameter
			 role="keyword">x</parameter></methodparam>
	  <methodparam><parameter
			 role="keyword">y</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">x</parameter>&nbsp;:</term>
	  <listitem><simpara>the x coordinate</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">y</parameter>&nbsp;:</term>
	  <listitem><simpara>the y coordinate</simpara></listitem>
	</varlistentry>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>the path at the specified point or
<literal>None</literal>.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_path_at_pos</methodname>() method returns
the model path of the icon located at the coordinates specified by
(<parameter>x</parameter>, <parameter>y</parameter>). This method returns
<literal>None</literal> if there is no icon at the specified
location.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-item-at-pos">
      <title>gtk.IconView.get_item_at_pos</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_item_at_pos</methodname>
	  <methodparam><parameter
			 role="keyword">x</parameter></methodparam>
	  <methodparam><parameter
			 role="keyword">y</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">x</parameter>&nbsp;:</term>
	  <listitem><simpara>the x coordinate</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">y</parameter>&nbsp;:</term>
	  <listitem><simpara>the y coordinate</simpara></listitem>
	</varlistentry>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>a 2-tuple comtaining the path and the cell
renderer at the specified point or <literal>None</literal> if the is no item
at the position.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_item_at_pos</methodname>() method returns a
2-tuple containing the model path and cell renderer of the icon located at
the coordinates specified by (<parameter>x</parameter>,
<parameter>y</parameter>). This method returns <literal>None</literal> if
there is no item at the specified location.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-cursor">
      <title>gtk.IconView.set_cursor</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_cursor</methodname>
	  <methodparam><parameter
			 role="keyword">path</parameter></methodparam>
	  <methodparam><parameter
			 role="keyword">cell</parameter><initializer>None</initializer></methodparam>
	  <methodparam><parameter
			 role="keyword">start_editing</parameter><initializer>False</initializer></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">path</parameter>&nbsp;:</term>
	  <listitem><simpara>a tree path</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">cell</parameter>&nbsp;:</term>
	  <listitem><simpara>a <link
linkend="class-gtkcellrenderer"><classname>gtk.CellRenderer</classname></link>
or <literal>None</literal></simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">start_editing</parameter>&nbsp;:</term>
	  <listitem><simpara>if <literal>True</literal> the specified cell
should start being edited</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_cursor</methodname>() method sets the
current keyboard focus to be at the location specified by
<parameter>path</parameter>, and selects it. This is useful when you want to
focus the user's attention on a particular item. If
<parameter>cell</parameter> is not <literal>None</literal>, then focus is
given to the specified cell. Additionally, if
<parameter>start_editing</parameter> is <literal>True</literal>, then
editing should be started in the specified cell.</para>

      <para>This method is often followed by <link
 linkend="method-gtkwidget--grab-focus"><methodname>gtk.Widget.grab_focus</methodname>()</link>
 in order to give keyboard focus to the icon view. Please note that editing
 can only happen when the icon view is realized.</para>

 <note>
   <para>In PyGTK 2.8 <parameter>cell</parameter> and
   <parameter>start_editing</parameter> must be specified.  Also
   <parameter>cell</parameter> cannot be <literal>None</literal>.</para>
 </note>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-cursor">
      <title>gtk.IconView.get_cursor</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_cursor</methodname>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>a 2-tuple containing the current cursor path
and cell renderer or <literal>None</literal> if the cursor isn't
set.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_cursor</methodname>() method returns a
2-tuple containing the model path and <link
linkend="class-gtkcellrenderer"><classname>gtk.CellRenderer</classname></link>
at the current cursor location. This method returns <literal>None</literal>
if the cursor is not set. If no cell renderer has focus then
<literal>None</literal> will be returned for the cell renderer value.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--selected-foreach">
      <title>gtk.IconView.selected_foreach</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>selected_foreach</methodname>
	  <methodparam><parameter
			 role="keyword">func</parameter></methodparam>
	  <methodparam><parameter
			 role="keyword">data</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">func</parameter>&nbsp;:</term>
	  <listitem><simpara>a callback function or
method.</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">data</parameter>&nbsp;:</term>
	  <listitem><simpara>User data to pass to
<parameter>func</parameter>.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>selected_foreach</methodname>() method calls the
callback function or method specified by <parameter>func</parameter> for
each selected icon. The signature of <parameter>func</parameter> is:</para>

      <programlisting>
  def func(<parameter>iconview</parameter>, <parameter>path</parameter>, <parameter>user_data</parameter>):
</programlisting>

      <para>where <parameter>iconview</parameter> is the <link
linkend="class-gtkiconview"><classname>gtk.IconView</classname></link>,
<parameter>path</parameter> is the tree path of the icon row and
<parameter>user_data</parameter> is data.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-selection-mode">
      <title>gtk.IconView.set_selection_mode</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_selection_mode</methodname>
	  <methodparam><parameter
			 role="keyword">mode</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">mode</parameter>&nbsp;:</term>
	  <listitem><simpara>The selection mode.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_selection_mode</methodname>() method sets
the "selection-mode" property to the value of
<parameter>mode</parameter>. <parameter>mode</parameter> should be one of
the <xref linkend="gtk-selection-mode-constants"
endterm="gtk-selection-mode-constants-title"></xref>.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-selection-mode">
      <title>gtk.IconView.get_selection_mode</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_selection_mode</methodname>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the selection mode.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_selection_mode</methodname>() method returns
the value of the "selection-mode" property which contains one of the <xref
linkend="gtk-selection-mode-constants"
endterm="gtk-selection-mode-constants-title"></xref>.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-orientation">
      <title>gtk.IconView.set_orientation</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_orientation</methodname>
	  <methodparam><parameter
			 role="keyword">orientation</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">orientation</parameter>&nbsp;:</term>
	  <listitem><simpara>the relative position of the icon and
text.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_orientation</methodname>() method sets the
"orientation" property to the value of
<parameter>orientation</parameter>. <parameter>orientation</parameter>
should contain one of the <xref linkend="gtk-orientation-constants"
endterm="gtk-orientation-constants-title"></xref>. The "orientation"
property indicates the relative positioning of the icon and text.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-orientation">
      <title>gtk.IconView.get_orientation</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_orientation</methodname>
	  <methodparam><parameter
			 role="keyword"></parameter></methodparam>
	  <methodparam><parameter
			 role="keyword"></parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the relative position of the icon and
text.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_orientation</methodname>() method returns
the value of the "orientation" property that indicates the relative position
between the icon and text. See the <link
linkend="method-gtkiconview--set-orientation"><methodname>set_orientation</methodname>()</link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-columns">
      <title>gtk.IconView.set_columns</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_columns</methodname>
	  <methodparam><parameter
			 role="keyword">columns</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">columns</parameter>&nbsp;:</term>
	  <listitem><simpara>the number of columns in a row.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_columns</methodname>() method sets the
"columns" property to the value of
<parameter>columns</parameter>. <parameter>columns</parameter> should
contain the number of columns to be displayed in each row or -1 to fit as
many columns as possible per row.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-columns">
      <title>gtk.IconView.get_columns</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_columns</methodname>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the number of columns per row or
-1.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_columns</methodname>() method returns the
value of the "columns" property that indicates the number of columns per
row. See the <link
linkend="method-gtkiconview--set-columns"><methodname>set_columns</methodname>()</link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-item-width">
      <title>gtk.IconView.set_item_width</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_item_width</methodname>
	  <methodparam><parameter
			 role="keyword">item_width</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">item_width</parameter>&nbsp;:</term>
	  <listitem><simpara>The space used to display an item or -1 to use
the width of the largest item.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_item_width</methodname>() method sets the
"item-width" property to the value of
<parameter>item_width</parameter>. <parameter>item_width</parameter> should
contain the maximum space (in pixels) to use to display an item in the icon
view or -1 to use the width of the largest item.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-item-width">
      <title>gtk.IconView.get_item_width</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_item_width</methodname>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the space available for displaying an
item or -1.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_item_width</methodname>() method returns the
value of the "item-width" property that contains the space available for
displaying an item. See the <link
linkend="method-gtkiconview--set-item-width"><methodname>set_item_width</methodname>()</link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-spacing">
      <title>gtk.IconView.set_spacing</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_spacing</methodname>
	  <methodparam><parameter
			 role="keyword">spacing</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">spacing</parameter>&nbsp;:</term>
	  <listitem><simpara>The space between the cells of an item in the
icon view</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_spacing</methodname>() method sets the
"spacing" property to the value of
<parameter>spacing</parameter>. <parameter>spacing</parameter> should
contain the space in pixels that is inserted between the cells of an item in
the icon view.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-spacing">
      <title>gtk.IconView.get_spacing</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_spacing</methodname>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the space in pixels that is inserted between
cells in the icon view.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_spacing</methodname>() method returns the
value of the "spacing" property that contains the space in pixels that is
inserted between the cells of an item in the icon view. See the <link
linkend="method-gtkiconview--set-spacing"><methodname>set_spacing</methodname>()</link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-row-spacing">
      <title>gtk.IconView.set_row_spacing</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_row_spacing</methodname>
	  <methodparam><parameter
			 role="keyword">row_spacing</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">row_spacing</parameter>&nbsp;:</term>
	  <listitem><simpara>the space between rows in the icon
view.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_row_spacing</methodname>() method sets the
"row-spacing" property to the value of
<parameter>row_spacing</parameter>. <parameter>row_spacing</parameter>
should contain the space in pixels to be inserted between rows in the icon
view..</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-row-spacing">
      <title>gtk.IconView.get_row_spacing</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_row_spacing</methodname>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the space between rows in the icon
view.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_row_spacing</methodname>() method returns
the value of the "row-spacing" property that contains the space in pixels
inserted between the rows in the icon view. See the <link
linkend="method-gtkiconview--set-row-spacing"><methodname>set_row_spacing</methodname>()</link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-column-spacing">
      <title>gtk.IconView.set_column_spacing</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_column_spacing</methodname>
	  <methodparam><parameter
			 role="keyword">column_spacing</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">column_spacing</parameter>&nbsp;:</term>
	  <listitem><simpara>The space inserted between columns in the icon
view</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_column_spacing</methodname>() method sets
the "column-spacing" property to the value of
<parameter>column_spacing</parameter>. <parameter>column_spacing</parameter>
should contain the space in pixels to be inserted between columns in the
icon view.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-column-spacing">
      <title>gtk.IconView.get_column_spacing</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_column_spacing</methodname>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the space between columns in the icon
view.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_column_spacing</methodname>() method returns
the value of the "column-spacing" property that contains the space in pixels
between the columns in the icon view. See the <link
linkend="method-gtkiconview--set-column-spacing"><methodname>set_column_spacing</methodname>()</link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-margin">
      <title>gtk.IconView.set_margin</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_margin</methodname>
	  <methodparam><parameter
			 role="keyword">margin</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">margin</parameter>&nbsp;:</term>
	  <listitem><simpara>the space inserted at the edges of the icon
view.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_margin</methodname>() method sets the
"margin" property to the value of
<parameter>margin</parameter>. <parameter>margin</parameter> should contain
the space in pixels to be inserted at the edges of the icon view.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-margin">
      <title>gtk.IconView.get_margin</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_margin</methodname>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the space inserted at the edges of the icon
view.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_margin</methodname>() method returns the
value of the "margin" property that continas the space in pixels inserted at
the edges of the icon view. See the <link
linkend="method-gtkiconview--set-margin"><methodname>set_margin</methodname>()</link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--select-path">
      <title>gtk.IconView.select_path</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>select_path</methodname>
	  <methodparam><parameter
			 role="keyword">path</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">path</parameter>&nbsp;:</term>
	  <listitem><simpara>a path indicating the icon to be
selected</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>select_path</methodname> method selects the icon
with the tree path specified by <parameter>path</parameter>.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--unselect-path">
      <title>gtk.IconView.unselect_path</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>unselect_path</methodname>
	  <methodparam><parameter
			 role="keyword">path</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">path</parameter>&nbsp;:</term>
	  <listitem><simpara>a path indicating the icon to be
unselected</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para> The <methodname>unselect_path</methodname> method unselects the
icon with the tree path specified by <parameter>path</parameter>.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--path-is-selected">
      <title>gtk.IconView.path_is_selected</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>path_is_selected</methodname>
	  <methodparam><parameter
			 role="keyword">path</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">path</parameter>&nbsp;:</term>
	  <listitem><simpara>a path of an icon.</simpara></listitem>
	</varlistentry>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if
<parameter>path</parameter> is selected.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>path_is_selected</methodname>() method returns
<literal>True</literal> if the icon with the tree path specified by
<parameter>path</parameter> is selected.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-selected-items">
      <title>gtk.IconView.get_selected_items</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_selected_items</methodname>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a list of the paths of the selected
icons.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_selected_items</methodname>() method returns
a list of the paths of the selected icons.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--select-all">
      <title>gtk.IconView.select_all</title>

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

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

      <para>The <methodname>select_all</methodname>() method selects all the
icons if the selection mode is set to
<literal>gtk.SELECTION_MULTIPLE</literal>.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--unselect-all">
      <title>gtk.IconView.unselect_all</title>

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

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

      <para>The <methodname>unselect_all</methodname>() method unselects all
the icons.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--item-activated">
      <title>gtk.IconView.item_activated</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>item_activated</methodname>
	  <methodparam><parameter
			 role="keyword">path</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">path</parameter>&nbsp;:</term>
	  <listitem><simpara>a tree path pointing to an icon
row.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>item_activated</methodname>() method activates
the icon pointed to by the path specified by
<parameter>path</parameter>.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--scroll-to-path">
      <title>gtk.IconView.scroll_to_path</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>scroll_to_path</methodname>
	  <methodparam><parameter
			 role="keyword">path</parameter></methodparam>
	  <methodparam><parameter
			 role="keyword">use_align</parameter></methodparam>
	  <methodparam><parameter
			 role="keyword">row_align</parameter></methodparam>
	  <methodparam><parameter
			 role="keyword">col_align</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">path</parameter>&nbsp;:</term>
	  <listitem><simpara>the path of the item to move
to.</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">use_align</parameter>&nbsp;:</term>
	  <listitem><simpara>if <literal>True</literal> use the alignment
arguments</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">row_align</parameter>&nbsp;:</term>
	  <listitem><simpara>the vertical alignment of the item specified by
<parameter>path</parameter>.</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">col_align</parameter>&nbsp;:</term>
	  <listitem><simpara>The horizontal alignment of the item specified
by <parameter>path</parameter>.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>scroll_to_path</methodname>() method moves the
 alignments of the icon view to the position specified by
 <parameter>path</parameter>. <parameter>row_align</parameter> determines
 where the row is placed, and <parameter>col_align</parameter> determines
 where column is placed. Both are expected to be between 0.0 and 1.0. 0.0
 means left/top alignment, 1.0 means right/bottom alignment, 0.5 means
 center.</para>

      <para>If <parameter>use_align</parameter> is <literal>False</literal>,
 then the alignment arguments are ignored, and the icon view does the
 minimum amount of work to scroll the item onto the screen. This means that
 the item will be scrolled to the edge closest to its current position. If
 the item is currently visible on the screen, nothing is done.</para>

      <para>This method only works if the model is set, and
 <parameter>path</parameter> is a valid row on the model. If the model
 changes before the icon view is realized, the centered path will be
 modified to reflect this change.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-visible-range">
      <title>gtk.IconView.get_visible_range</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_visible_range</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a 2-tuple containing the start and end paths of
the visible region or <literal>None</literal>.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_visible_range</methodname>() method returns
a 2-tuple containing the start and end paths for the visible region in the
iconview. If no valid paths are available this method returns
<literal>None</literal>.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--enable-model-drag-source">
      <title>gtk.IconView.enable_model_drag_source</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>enable_model_drag_source</methodname>
          <methodparam><parameter
                         role="keyword">start_button_mask</parameter></methodparam>
          <methodparam><parameter
                         role="keyword">targets</parameter></methodparam>
          <methodparam><parameter
                         role="keyword">actions</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">start_button_mask</parameter>&nbsp;:</term>
	  <listitem><simpara>the mask of buttons allowed to start drag</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">targets</parameter>&nbsp;:</term>
	  <listitem><simpara>a sequence of 3-tuples containing target
information that the drag will support</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">actions</parameter>&nbsp;:</term>
	  <listitem><simpara>the combination of possible <xref
                linkend="gdk-drag-action-constants"
                endterm="gdk-drag-action-constants-title"></xref> for a drag
 from the iconview</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>enable_model_drag_source</methodname>() method
 enables the iconview to be used as a drag source for automatic
 DND. <parameter>start_button_mask</parameter> specifies a combination of
 the <xref linkend="gdk-modifier-constants"
 endterm="gdk-modifier-constants-title"></xref> that can start the
 drag. <parameter>targets</parameter> is a sequence (tuple or list) of
 3-tuples each containing target information: a string representing the drag
 type, target flags (a combination of <literal>gtk.TARGET_SAME_APP</literal>
 and <literal>gtk.TARGET_SAME_WIDGET</literal> or neither) and an
 application assigned integer ID used for identification
 purposes. <parameter>actions</parameter> is a combination of the <xref
 linkend="gdk-drag-action-constants"
 endterm="gdk-drag-action-constants-title"></xref> supported by the
 iconview.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--enable-model-drag-dest">
      <title>gtk.IconView.enable_model_drag_dest</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>enable_model_drag_dest</methodname>
          <methodparam><parameter
                         role="keyword">targets</parameter></methodparam>
          <methodparam><parameter
                         role="keyword">actions</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">targets</parameter>&nbsp;:</term>
	  <listitem><simpara>a sequence of 3-tuples containing target
information that the iconview will support for a drag drop</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">actions</parameter>&nbsp;:</term>
	  <listitem><simpara>the combination of possible <xref
                linkend="gdk-drag-action-constants"
                endterm="gdk-drag-action-constants-title"></xref> for a drag
 drop onto to the iconview</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>enable_model_drag_dest</methodname>() method
enables the iconview to be a destination for a drag
drop. <parameter>targets</parameter> is a sequence (tuple or list) of
3-tuples each containing target information: a string representing the drag
type, target flags (a combination of <literal>gtk.TARGET_SAME_APP</literal>
and <literal>gtk.TARGET_SAME_WIDGET</literal> or neither) and an application
assigned integer ID used for identification
purposes. <parameter>actions</parameter> is a combination of the <xref
linkend="gdk-drag-action-constants"
endterm="gdk-drag-action-constants-title"></xref> supported by the
iconview.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--unset-model-drag-source">
      <title>gtk.IconView.unset_model_drag_source</title>

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

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

      <para>The <methodname>unset_model_drag_source</methodname>() method
 undoes the effect of the <link
 linkend="method-gtkiconview--enable-model-drag-source"><methodname>enable_model_drag_source</methodname>()</link>
 method.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--unset-model-drag-dest">
      <title>gtk.IconView.unset_model_drag_dest</title>

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

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

      <para>The <methodname>unset_model_drag_dest</methodname>() method
 undoes the effect of the <link
 linkend="method-gtkiconview--enable-model-drag-dest"><methodname>enable_model_drag_dest</methodname>()</link>
 method.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-reorderable">
      <title>gtk.IconView.set_reorderable</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_reorderable</methodname>
	  <methodparam><parameter
			 role="keyword">reorderable</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">reorderable</parameter>&nbsp;:</term>
	  <listitem><simpara>if <literal>True</literal> the items are
reorderable.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_reorderable</methodname>() method sets the
"reorderable" property to the value of
<parameter>reorderable</parameter>. If <parameter>reorderable</parameter> is
<literal>True</literal> the user can reorder the model by dragging and
dropping rows. The developer can listen to these changes by connecting to
the model's "row_inserted" and "row_deleted" signals.</para>

      <para>This method does not give you any degree of control over the
 order -- any reordering is allowed. If more control is needed, you should
 probably handle drag and drop manually.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-reorderable">
      <title>gtk.IconView.get_reorderable</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_reorderable</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if the iconview list
can be reordered.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_reorderable</methodname>() method returns
the value of the "reorderable" property. If "reorderable" is
<literal>True</literal> the user can reorder iconview using
drag-and-drop.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-drag-dest-item">
      <title>gtk.IconView.set_drag_dest_item</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_drag_dest_item</methodname>
	  <methodparam><parameter
			 role="keyword">path</parameter></methodparam>
	  <methodparam><parameter
			 role="keyword">pos</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">path</parameter>&nbsp;:</term>
	  <listitem><simpara>the path of the item to highlight, or
<literal>None</literal> .</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">pos</parameter>&nbsp;:</term>
	  <listitem><simpara>specifies where to drop, relative to the
item</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_drag_dest_item</methodname>() method
highlights for feedback the item specified by
<parameter>path</parameter>. <literal>pos</literal> is one of the <xref
linkend="gtk-iconview-drop-position-constants"
endterm="gtk-iconview-drop-position-constants-title"></xref> that specifies
where the drop is to take place relative to the receiving item.</para>

<para>In PyGTK 2.10 and above, <parameter>path</parameter> may be
<literal>None</literal>.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-drag-dest-item">
      <title>gtk.IconView.get_drag_dest_item</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_drag_dest_item</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a 2-tuple containing the path of the highlighted
item and one of the <xref
linkend="gtk-iconview-drop-position-constants"
endterm="gtk-iconview-drop-position-constants-title"></xref> specifying the
relative drop location or <literal>None</literal>.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_drag_dest_item</methodname>() method returns
a 2-tuple containing the path of the highlighted item and one of the <xref
linkend="gtk-iconview-drop-position-constants"
endterm="gtk-iconview-drop-position-constants-title"></xref> specifying the
drop location relative to the receiving item. If there is no highlighted
item, this method returns <literal>None</literal>.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-dest-item-at-pos">
      <title>gtk.IconView.get_dest_item_at_pos</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_dest_item_at_pos</methodname>
	  <methodparam><parameter
			 role="keyword">drag_x</parameter></methodparam>
	  <methodparam><parameter
			 role="keyword">drag_y</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">drag_x</parameter>&nbsp;:</term>
	  <listitem><simpara>the X position</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">drag_y</parameter>&nbsp;:</term>
	  <listitem><simpara>the Y position</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a 2-tuple containing the path of the highlighted
item and a relative drop location.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_dest_item_at_pos</methodname>() method
returns a 2-tuple containing the path of the highlighted item at the
location specified by <parameter>drag_x</parameter> and
<parameter>drag_y</parameter> and the drop location relative to the
receiving item. If there is no highlighted item, this method returns
<literal>None</literal>.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--create-drag-icon">
      <title>gtk.IconView.create_drag_icon</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>create_drag_icon</methodname>
	  <methodparam><parameter
			 role="keyword">path</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">path</parameter>&nbsp;:</term>
	  <listitem><simpara>a path</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a <link
linkend="class-gdkpixmap"><classname>gtk.gdk.Pixmap</classname></link> of the
drag icon.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>create_drag_icon</methodname>() method returns a
<link linkend="class-gdkpixmap"><classname>gtk.gdk.Pixmap</classname></link>
representation of the item at the location specified by
<parameter>path</parameter>. The return image can be used for a drag
icon.</para>

    </refsect2>
    
    <refsect2 id="method-gtkiconview--convert-widget-to-bin-window-coords">
        <title>gtk.IconView.convert_widget_to_bin_window_coords</title>

        <programlisting><methodsynopsis language="python">
            <methodname>convert_widget_to_bin_window_coords</methodname>
            <methodparam><parameter role="keyword">widget_x</parameter></methodparam>
            <methodparam><parameter role="keyword">widget_y</parameter></methodparam>
        </methodsynopsis></programlisting>

        <variablelist>
            <varlistentry>
                <term><parameter role="keyword">widget_x</parameter>&nbsp;:</term>
                <listitem><simpara>X coordinate relative to the widget.</simpara></listitem>
            </varlistentry>
            <varlistentry>
                <term><parameter role="keyword">widget_y</parameter>&nbsp;:</term>
                <listitem><simpara>Y coordinate relative to the widget.</simpara></listitem>
            </varlistentry>
            <varlistentry>
                <term><emphasis>Returns</emphasis>&nbsp;:</term>
                <listitem><simpara>A tuple containing the bin_window X and Y coordinates.</simpara></listitem>
            </varlistentry>
        </variablelist>

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

        <para>
            Converts widget coordinates to coordinates for the bin_window, as expected by e.g.
            <methodname><link linkend="method-gtkiconview--get-path-at-pos">get_path_at_pos</link></methodname>.
        </para>
    </refsect2>

    <refsect2 id="method-gtkiconview--set-tooltip-cell">
        <title>gtk.IconView.set_tooltip_cell</title>

        <programlisting><methodsynopsis language="python">
            <methodname>set_tooltip_cell</methodname>
            <methodparam><parameter role="keyword">tooltip</parameter></methodparam>
            <methodparam><parameter role="keyword">path</parameter></methodparam>
            <methodparam><parameter role="keyword">cell</parameter></methodparam>
        </methodsynopsis></programlisting>

        <variablelist>
            <varlistentry>
                <term><parameter role="keyword">tooltip</parameter>&nbsp;:</term>
                <listitem><simpara>A tooltip.</simpara></listitem>
            </varlistentry>
            <varlistentry>
                <term><parameter role="keyword">path</parameter>&nbsp;:</term>
                <listitem><simpara>A path.</simpara></listitem>
            </varlistentry>
            <varlistentry>
                <term><parameter role="keyword">cell</parameter>&nbsp;:</term>
                <listitem><simpara>A cell renderer or <literal>None</literal>.</simpara></listitem>
            </varlistentry>
        </variablelist>

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

        <para>
            The <methodname>set_tooltip_cell</methodname>() method sets the tip area of
            <parameter>tooltip</parameter> to the area which <parameter>cell</parameter>
            occupies in the item pointed to by <parameter>path</parameter>.
            See also <methodname><link linkend="method-gtktooltip--set-tip-area">gtk.Tooltip.set_tip_area</link></methodname>().
        </para>
    </refsect2>

    <refsect2 id="method-gtkiconview--set-tooltip-column">
        <title>gtk.IconView.set_tooltip_column</title>

        <programlisting><methodsynopsis language="python">
            <methodname>set_tooltip_column</methodname>
            <methodparam><parameter role="keyword">column</parameter></methodparam>
        </methodsynopsis></programlisting>

        <variablelist>
            <varlistentry>
                <term><parameter role="keyword">column</parameter>&nbsp;:</term>
                <listitem><simpara>An integer, which is a valid column number
                for icon_view's model</simpara></listitem>
            </varlistentry>
        </variablelist>

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

        <para>
            If you only plan to have simple (text-only) tooltips on full items,
            you can use this function to have GtkIconView handle these automatically
            for you. column should be set to the column in icon_view's model containing
            the tooltip texts, or -1 to disable this feature.
        </para>
        <para>
            When enabled, GtkWidget::has-tooltip will be set to <literal>True</literal>
            and icon_view will connect a GtkWidget::query-tooltip signal handler.
        </para>
    </refsect2>

    <refsect2 id="method-gtkiconview--get-tooltip-column">
        <title>gtk.IconView.get_tooltip_column</title>

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

        <variablelist>
            <varlistentry>
                <term><emphasis>Returns</emphasis>&nbsp;:</term>
                <listitem><simpara>The index of the tooltip column that is currently being used,
                or -1 if this is disabled.</simpara></listitem>
            </varlistentry>
        </variablelist>

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

        <para>
            The <methodname>get_tooltip_column</methodname>() method returns the column of
            icon_view's model which is being used for displaying tooltips on icon_view's rows.
        </para>
    </refsect2>

    <refsect2 id="method-gtkiconview--set-tooltip-item">
        <title>gtk.IconView.set_tooltip_item</title>

        <programlisting><methodsynopsis language="python">
            <methodname>set_tooltip_cell</methodname>
            <methodparam><parameter role="keyword">tooltip</parameter></methodparam>
            <methodparam><parameter role="keyword">path</parameter></methodparam>
        </methodsynopsis></programlisting>

        <variablelist>
            <varlistentry>
                <term><parameter role="keyword">tooltip</parameter>&nbsp;:</term>
                <listitem><simpara>A tooltip.</simpara></listitem>
            </varlistentry>
            <varlistentry>
                <term><parameter role="keyword">path</parameter>&nbsp;:</term>
                <listitem><simpara>A path.</simpara></listitem>
            </varlistentry>
        </variablelist>

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

        <para>
            The <methodname>set_tooltip_item</methodname>() method sets the tip area of
            <parameter>tooltip</parameter> to be the area covered by the item at
            <parameter>path</parameter>. See also
            <methodname><link linkend="method-gtktooltip--set-tip-area">gtk.Tooltip.set_tip_area</link></methodname>().
        </para>
    </refsect2>

    <refsect2 id="method-gtkiconview--get-item-row">
      <title>gtk.IconView.get_item_row</title>

      <programlisting><methodsynopsis language="python">
        <methodname>get_item_row</methodname>
        <methodparam><parameter role="keyword">path</parameter></methodparam>
      </methodsynopsis></programlisting>
      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">path</parameter>&nbsp;:</term>
          <listitem><simpara>The path of the item.</simpara></listitem>
        </varlistentry>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>The row in which the item is displayed.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>The <methodname>get_item_row</methodname>() method gets the row in which the
      item path is currently displayed. Row numbers start at 0.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-item-column">
      <title>gtk.IconView.get_item_column</title>

      <programlisting><methodsynopsis language="python">
        <methodname>get_item_column</methodname>
        <methodparam><parameter role="keyword">path</parameter></methodparam>
      </methodsynopsis></programlisting>
      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">path</parameter>&nbsp;:</term>
          <listitem><simpara>The path of the item.</simpara></listitem>
        </varlistentry>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>The column in which the item is displayed.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>The <methodname>get_item_column</methodname>() method gets the column in which the
      item path is currently displayed. Column numbers start at 0.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-item-orientation">
      <title>gtk.IconView.set_item_orientation</title>

      <programlisting><methodsynopsis language="python">
        <methodname>set_item_orientation</methodname>
        <methodparam><parameter role="keyword">orientation</parameter></methodparam>
      </methodsynopsis></programlisting>
      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">orientation</parameter>&nbsp;:</term>
          <listitem><simpara>The relative position of texts and icons.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>The <methodname>set_item_orientation</methodname>() method sets the "item-orientation"
      property which determines whether the labels are drawn beside the icons instead of below.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-item-orientation">
      <title>gtk.IconView.get_item_orientation</title>

      <programlisting><methodsynopsis language="python">
        <methodname>get_item_orientation</methodname>
        <methodparam></methodparam>
      </methodsynopsis></programlisting>
      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>The relative position of texts and icons.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>The <methodname>get_item_orientation</methodname>() method returns the value of the
      "item-orientation" property which determines whether the labels are drawn beside the icons
      instead of below.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--set-item-padding">
      <title>gtk.IconView.set_item_padding</title>

      <programlisting><methodsynopsis language="python">
        <methodname>set_item_padding</methodname>
        <methodparam><parameter role="keyword">item_padding</parameter></methodparam>
      </methodsynopsis></programlisting>
      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">item_padding</parameter>&nbsp;:</term>
          <listitem><simpara>The item padding.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>The <methodname>set_item_padding</methodname>() method sets the "item-padding"
      property which specifies the padding around each of the icon view's items.</para>

    </refsect2>

    <refsect2 id="method-gtkiconview--get-item-padding">
      <title>gtk.IconView.get_item_padding</title>

      <programlisting><methodsynopsis language="python">
        <methodname>get_item_padding</methodname>
        <methodparam></methodparam>
      </methodsynopsis></programlisting>
      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>The padding around items.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>The <methodname>get_item_padding</methodname>() method returns the value of
      the "item-padding" property.</para>

    </refsect2>

   </refsect1>

  <refsect1>
    <title>Signals</title>

    <refsect2 id="signal-gtkiconview--activate-cursor-item">
      <title>The "activate-cursor-item" gtk.IconView Signal</title>

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

      <variablelist>
	<varlistentry>
	  <term><parameter>iconview</parameter>&nbsp;:</term>
	  <listitem><simpara>the 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><literal>True</literal> if the signal
was handled.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The "activate-cursor-item" signal is emitted when an icon is
selected and the <keycap>Enter</keycap> key is pressed.</para>

    </refsect2>

    <refsect2 id="signal-gtkiconview--item-activated">
      <title>The "item-activated" gtk.IconView Signal</title>

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

      <variablelist>
	<varlistentry>
	  <term><parameter>iconview</parameter>&nbsp;:</term>
	  <listitem><simpara>the widget that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>path</parameter>&nbsp;:</term>
	  <listitem><simpara>the path to the activated icon
item.</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>

      <para>The "item-activated" signal is emitted when an icon item is
activated by the user double clicking an icon item, pressing the
<keycap>Enter</keycap> key when an icon item is selected or via a call to
the <link
linkend="method-gtkiconview--item-activated"><methodname>item_activated</methodname>()</link>
method.</para>

    </refsect2>

    <refsect2 id="signal-gtkiconview--move-cursor">
      <title>The "move-cursor" gtk.IconView Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>iconview</parameter></methodparam>
	  <methodparam><parameter>step</parameter></methodparam>
	  <methodparam><parameter>number</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>iconview</parameter>&nbsp;:</term>
	  <listitem><simpara>the widget that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>step</parameter>&nbsp;:</term>
	  <listitem><simpara>the step size to move the cursor</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>number</parameter>&nbsp;:</term>
	  <listitem><simpara>the number of steps to move</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><literal>True</literal> if the signal
was handled.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The "move-cursor" signal is emitted when the cursor is moved
using the keyboard keys: <keycap>Up</keycap>, <keycap>Down</keycap>,
<keycombo><keycap>Control</keycap><keycap>p</keycap> </keycombo>,
<keycombo><keycap>Control</keycap><keycap>n</keycap> </keycombo>,
<keycap>Home</keycap>, <keycap>End</keycap>, <keycap>Page_Up</keycap>,
<keycap>Page_Down</keycap>, <keycap>Right</keycap>, <keycap>Left</keycap>
with various <keycap>Shift</keycap> and <keycap>Control</keycap>
combinations. <parameter>step</parameter> will be one of the <xref
linkend="gtk-movement-step-constants"
endterm="gtk-movement-step-constants-title"></xref>.</para>

    </refsect2>

    <refsect2 id="signal-gtkiconview--select-all">
      <title>The "select-all" gtk.IconView Signal</title>

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

      <variablelist>
	<varlistentry>
	  <term><parameter>iconview</parameter>&nbsp;:</term>
	  <listitem><simpara>the 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>

      <para>The "select-all" signal is emitted when all icon items are
selected by pressing <keycombo><keycap>Control</keycap><keycap>a</keycap>
</keycombo>.</para>

    </refsect2>

    <refsect2 id="signal-gtkiconview--select-cursor-item">
      <title>The "select-cursor-item" gtk.IconView Signal</title>

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

      <variablelist>
	<varlistentry>
	  <term><parameter>iconview</parameter>&nbsp;:</term>
	  <listitem><simpara>the 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>

      <para>The "select-cursor-item" signal is emitted when the icon item
at the cursor is selected by the user pressing the <keycap>Space</keycap>
key.</para>

    </refsect2>

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

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

      <variablelist>
	<varlistentry>
	  <term><parameter>iconview</parameter>&nbsp;:</term>
	  <listitem><simpara>the 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>

      <para>The "selection-changed" signal is emitted when the selection is
changed either by user action or program method calls.</para>

    </refsect2>

    <refsect2 id="signal-gtkiconview--set-scroll-adjustments">
      <title>The "set-scroll-adjustments" gtk.IconView Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>iconview</parameter></methodparam>
	  <methodparam><parameter>hadj</parameter></methodparam>
	  <methodparam><parameter>vadj</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>iconview</parameter>&nbsp;:</term>
	  <listitem><simpara>the widget that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>hadj</parameter>&nbsp;:</term>
	  <listitem><simpara>the new horizontal <link
linkend="class-gtkadjustment"><classname>gtk.Adjustment</classname></link></simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>vadj</parameter>&nbsp;:</term>
	  <listitem><simpara>the new vertical <link
linkend="class-gtkadjustment"><classname>gtk.Adjustment</classname></link></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>

      <para>The "set-scroll-adjustments" signal is emitted when the new
horizontal and veritcal scroll <link
linkend="class-gtkadjustment"><classname>gtk.Adjustment</classname></link>
objects are set.</para>

    </refsect2>

    <refsect2 id="signal-gtkiconview--toggle-cursor-item">
      <title>The "toggle-cursor-item" gtk.IconView Signal</title>

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

      <variablelist>
	<varlistentry>
	  <term><parameter>iconview</parameter>&nbsp;:</term>
	  <listitem><simpara>the 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>

      <para>The "toggle-cursor-item" signal is emitted when the user presses
<keycombo><keycap>Control</keycap><keycap>Space</keycap> </keycombo>.</para>

    </refsect2>

    <refsect2 id="signal-gtkiconview--unselect-all">
      <title>The "unselect-all" gtk.IconView Signal</title>

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

      <variablelist>
	<varlistentry>
	  <term><parameter>iconview</parameter>&nbsp;:</term>
	  <listitem><simpara>the 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>

      <para>The "unselect-all" signal is emitted when the user presses
<keycombo><keycap>Control</keycap><keycap>Shift</keycap><keycap>a</keycap>
</keycombo>.</para>

    </refsect2>

  </refsect1>

</refentry>