File: ExoIconView.html

package info (click to toggle)
exo 0.3.107-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 10,992 kB
  • ctags: 3,447
  • sloc: ansic: 24,999; sh: 10,429; makefile: 1,606; python: 403; perl: 235; xml: 130
file content (2939 lines) | stat: -rw-r--r-- 184,095 bytes parent folder | download
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
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ExoIconView</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="exo Reference Manual">
<link rel="up" href="exo-widgets.html" title="Part III. Additional widgets">
<link rel="prev" href="ExoIconChooserDialog.html" title="ExoIconChooserDialog">
<link rel="next" href="ExoTreeView.html" title="ExoTreeView">
<meta name="generator" content="GTK-Doc V1.14 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
<tr valign="middle">
<td><a accesskey="p" href="ExoIconChooserDialog.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="exo-widgets.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">exo Reference Manual</th>
<td><a accesskey="n" href="ExoTreeView.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts">
<a href="#ExoIconView.synopsis" class="shortcut">Top</a>
                   | 
                  <a href="#ExoIconView.description" class="shortcut">Description</a>
                   | 
                  <a href="#ExoIconView.object-hierarchy" class="shortcut">Object Hierarchy</a>
                   | 
                  <a href="#ExoIconView.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
                   | 
                  <a href="#ExoIconView.properties" class="shortcut">Properties</a>
                   | 
                  <a href="#ExoIconView.style-properties" class="shortcut">Style Properties</a>
                   | 
                  <a href="#ExoIconView.signals" class="shortcut">Signals</a>
</td></tr>
</table>
<div class="refentry" title="ExoIconView">
<a name="ExoIconView"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="ExoIconView.top_of_page"></a>ExoIconView</span></h2>
<p>ExoIconView — A widget which displays a list of icons in a grid</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsynopsisdiv" title="Synopsis">
<a name="ExoIconView.synopsis"></a><h2>Synopsis</h2>
<pre class="synopsis">
#include &lt;exo/exo.h&gt;

                    <a class="link" href="ExoIconView.html#ExoIconView-struct" title="ExoIconView">ExoIconView</a>;
enum                <a class="link" href="ExoIconView.html#ExoIconViewDropPosition" title="enum ExoIconViewDropPosition">ExoIconViewDropPosition</a>;
enum                <a class="link" href="ExoIconView.html#ExoIconViewLayoutMode" title="enum ExoIconViewLayoutMode">ExoIconViewLayoutMode</a>;
<span class="returnvalue">GtkWidget</span> *         <a class="link" href="ExoIconView.html#exo-icon-view-new" title="exo_icon_view_new ()">exo_icon_view_new</a>                   (<em class="parameter"><code><span class="type">void</span></code></em>);
<span class="returnvalue">GtkWidget</span> *         <a class="link" href="ExoIconView.html#exo-icon-view-new-with-model" title="exo_icon_view_new_with_model ()">exo_icon_view_new_with_model</a>        (<em class="parameter"><code><span class="type">GtkTreeModel</span> *model</code></em>);
<span class="returnvalue">GtkTreeModel</span> *      <a class="link" href="ExoIconView.html#exo-icon-view-get-model" title="exo_icon_view_get_model ()">exo_icon_view_get_model</a>             (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-model" title="exo_icon_view_set_model ()">exo_icon_view_set_model</a>             (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreeModel</span> *model</code></em>);
<span class="returnvalue">gint</span>                <a class="link" href="ExoIconView.html#exo-icon-view-get-text-column" title="exo_icon_view_get_text_column ()">exo_icon_view_get_text_column</a>       (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-text-column" title="exo_icon_view_set_text_column ()">exo_icon_view_set_text_column</a>       (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> column</code></em>);
<span class="returnvalue">gint</span>                <a class="link" href="ExoIconView.html#exo-icon-view-get-markup-column" title="exo_icon_view_get_markup_column ()">exo_icon_view_get_markup_column</a>     (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-markup-column" title="exo_icon_view_set_markup_column ()">exo_icon_view_set_markup_column</a>     (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> column</code></em>);
<span class="returnvalue">gint</span>                <a class="link" href="ExoIconView.html#exo-icon-view-get-pixbuf-column" title="exo_icon_view_get_pixbuf_column ()">exo_icon_view_get_pixbuf_column</a>     (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-pixbuf-column" title="exo_icon_view_set_pixbuf_column ()">exo_icon_view_set_pixbuf_column</a>     (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> column</code></em>);
<span class="returnvalue">GtkOrientation</span>      <a class="link" href="ExoIconView.html#exo-icon-view-get-orientation" title="exo_icon_view_get_orientation ()">exo_icon_view_get_orientation</a>       (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-orientation" title="exo_icon_view_set_orientation ()">exo_icon_view_set_orientation</a>       (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkOrientation</span> orientation</code></em>);
<span class="returnvalue">gint</span>                <a class="link" href="ExoIconView.html#exo-icon-view-get-columns" title="exo_icon_view_get_columns ()">exo_icon_view_get_columns</a>           (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-columns" title="exo_icon_view_set_columns ()">exo_icon_view_set_columns</a>           (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> columns</code></em>);
<span class="returnvalue">gint</span>                <a class="link" href="ExoIconView.html#exo-icon-view-get-item-width" title="exo_icon_view_get_item_width ()">exo_icon_view_get_item_width</a>        (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-item-width" title="exo_icon_view_set_item_width ()">exo_icon_view_set_item_width</a>        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> item_width</code></em>);
<span class="returnvalue">gint</span>                <a class="link" href="ExoIconView.html#exo-icon-view-get-spacing" title="exo_icon_view_get_spacing ()">exo_icon_view_get_spacing</a>           (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-spacing" title="exo_icon_view_set_spacing ()">exo_icon_view_set_spacing</a>           (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> spacing</code></em>);
<span class="returnvalue">gint</span>                <a class="link" href="ExoIconView.html#exo-icon-view-get-row-spacing" title="exo_icon_view_get_row_spacing ()">exo_icon_view_get_row_spacing</a>       (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-row-spacing" title="exo_icon_view_set_row_spacing ()">exo_icon_view_set_row_spacing</a>       (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> row_spacing</code></em>);
<span class="returnvalue">gint</span>                <a class="link" href="ExoIconView.html#exo-icon-view-get-column-spacing" title="exo_icon_view_get_column_spacing ()">exo_icon_view_get_column_spacing</a>    (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-column-spacing" title="exo_icon_view_set_column_spacing ()">exo_icon_view_set_column_spacing</a>    (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> column_spacing</code></em>);
<span class="returnvalue">gint</span>                <a class="link" href="ExoIconView.html#exo-icon-view-get-margin" title="exo_icon_view_get_margin ()">exo_icon_view_get_margin</a>            (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-margin" title="exo_icon_view_set_margin ()">exo_icon_view_set_margin</a>            (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> margin</code></em>);
<span class="returnvalue">GtkSelectionMode</span>    <a class="link" href="ExoIconView.html#exo-icon-view-get-selection-mode" title="exo_icon_view_get_selection_mode ()">exo_icon_view_get_selection_mode</a>    (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-selection-mode" title="exo_icon_view_set_selection_mode ()">exo_icon_view_set_selection_mode</a>    (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkSelectionMode</span> mode</code></em>);
<a class="link" href="ExoIconView.html#ExoIconViewLayoutMode" title="enum ExoIconViewLayoutMode"><span class="returnvalue">ExoIconViewLayoutMode</span></a>  <a class="link" href="ExoIconView.html#exo-icon-view-get-layout-mode" title="exo_icon_view_get_layout_mode ()">exo_icon_view_get_layout_mode</a>    (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-layout-mode" title="exo_icon_view_set_layout_mode ()">exo_icon_view_set_layout_mode</a>       (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewLayoutMode" title="enum ExoIconViewLayoutMode"><span class="type">ExoIconViewLayoutMode</span></a> layout_mode</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="ExoIconView.html#exo-icon-view-get-single-click" title="exo_icon_view_get_single_click ()">exo_icon_view_get_single_click</a>      (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-single-click" title="exo_icon_view_set_single_click ()">exo_icon_view_set_single_click</a>      (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> single_click</code></em>);
<span class="returnvalue">guint</span>               <a class="link" href="ExoIconView.html#exo-icon-view-get-single-click-timeout" title="exo_icon_view_get_single_click_timeout ()">exo_icon_view_get_single_click_timeout</a>
                                                        (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-single-click-timeout" title="exo_icon_view_set_single_click_timeout ()">exo_icon_view_set_single_click_timeout</a>
                                                        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">guint</span> single_click_timeout</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-widget-to-icon-coords" title="exo_icon_view_widget_to_icon_coords ()">exo_icon_view_widget_to_icon_coords</a> (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> wx</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> wy</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> *ix</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> *iy</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-icon-to-widget-coords" title="exo_icon_view_icon_to_widget_coords ()">exo_icon_view_icon_to_widget_coords</a> (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> ix</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> iy</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> *wx</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> *wy</code></em>);
<span class="returnvalue">GtkTreePath</span> *       <a class="link" href="ExoIconView.html#exo-icon-view-get-path-at-pos" title="exo_icon_view_get_path_at_pos ()">exo_icon_view_get_path_at_pos</a>       (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> x</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> y</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="ExoIconView.html#exo-icon-view-get-item-at-pos" title="exo_icon_view_get_item_at_pos ()">exo_icon_view_get_item_at_pos</a>       (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> x</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> y</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> **path</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkCellRenderer</span> **cell</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="ExoIconView.html#exo-icon-view-get-visible-range" title="exo_icon_view_get_visible_range ()">exo_icon_view_get_visible_range</a>     (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> **start_path</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> **end_path</code></em>);
<span class="returnvalue">void</span>                (<a class="link" href="ExoIconView.html#ExoIconViewForeachFunc" title="ExoIconViewForeachFunc ()">*ExoIconViewForeachFunc</a>)           (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>,
                                                         <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-selected-foreach" title="exo_icon_view_selected_foreach ()">exo_icon_view_selected_foreach</a>      (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewForeachFunc" title="ExoIconViewForeachFunc ()"><span class="type">ExoIconViewForeachFunc</span></a> func</code></em>,
                                                         <em class="parameter"><code><span class="type">gpointer</span> data</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-select-path" title="exo_icon_view_select_path ()">exo_icon_view_select_path</a>           (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-unselect-path" title="exo_icon_view_unselect_path ()">exo_icon_view_unselect_path</a>         (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="ExoIconView.html#exo-icon-view-path-is-selected" title="exo_icon_view_path_is_selected ()">exo_icon_view_path_is_selected</a>      (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>);
<span class="returnvalue">GList</span> *             <a class="link" href="ExoIconView.html#exo-icon-view-get-selected-items" title="exo_icon_view_get_selected_items ()">exo_icon_view_get_selected_items</a>    (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-select-all" title="exo_icon_view_select_all ()">exo_icon_view_select_all</a>            (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-unselect-all" title="exo_icon_view_unselect_all ()">exo_icon_view_unselect_all</a>          (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-item-activated" title="exo_icon_view_item_activated ()">exo_icon_view_item_activated</a>        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="ExoIconView.html#exo-icon-view-get-cursor" title="exo_icon_view_get_cursor ()">exo_icon_view_get_cursor</a>            (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> **path</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkCellRenderer</span> **cell</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-cursor" title="exo_icon_view_set_cursor ()">exo_icon_view_set_cursor</a>            (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkCellRenderer</span> *cell</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> start_editing</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-scroll-to-path" title="exo_icon_view_scroll_to_path ()">exo_icon_view_scroll_to_path</a>        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> use_align</code></em>,
                                                         <em class="parameter"><code><span class="type">gfloat</span> row_align</code></em>,
                                                         <em class="parameter"><code><span class="type">gfloat</span> col_align</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-enable-model-drag-source" title="exo_icon_view_enable_model_drag_source ()">exo_icon_view_enable_model_drag_source</a>
                                                        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GdkModifierType</span> start_button_mask</code></em>,
                                                         <em class="parameter"><code>const <span class="type">GtkTargetEntry</span> *targets</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> n_targets</code></em>,
                                                         <em class="parameter"><code><span class="type">GdkDragAction</span> actions</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-enable-model-drag-dest" title="exo_icon_view_enable_model_drag_dest ()">exo_icon_view_enable_model_drag_dest</a>
                                                        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code>const <span class="type">GtkTargetEntry</span> *targets</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> n_targets</code></em>,
                                                         <em class="parameter"><code><span class="type">GdkDragAction</span> actions</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-unset-model-drag-source" title="exo_icon_view_unset_model_drag_source ()">exo_icon_view_unset_model_drag_source</a>
                                                        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-unset-model-drag-dest" title="exo_icon_view_unset_model_drag_dest ()">exo_icon_view_unset_model_drag_dest</a> (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-reorderable" title="exo_icon_view_set_reorderable ()">exo_icon_view_set_reorderable</a>       (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> reorderable</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="ExoIconView.html#exo-icon-view-get-reorderable" title="exo_icon_view_get_reorderable ()">exo_icon_view_get_reorderable</a>       (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-drag-dest-item" title="exo_icon_view_set_drag_dest_item ()">exo_icon_view_set_drag_dest_item</a>    (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewDropPosition" title="enum ExoIconViewDropPosition"><span class="type">ExoIconViewDropPosition</span></a> pos</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-get-drag-dest-item" title="exo_icon_view_get_drag_dest_item ()">exo_icon_view_get_drag_dest_item</a>    (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> **path</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewDropPosition" title="enum ExoIconViewDropPosition"><span class="type">ExoIconViewDropPosition</span></a> *pos</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="ExoIconView.html#exo-icon-view-get-dest-item-at-pos" title="exo_icon_view_get_dest_item_at_pos ()">exo_icon_view_get_dest_item_at_pos</a>  (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> drag_x</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> drag_y</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> **path</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewDropPosition" title="enum ExoIconViewDropPosition"><span class="type">ExoIconViewDropPosition</span></a> *pos</code></em>);
<span class="returnvalue">GdkPixmap</span> *         <a class="link" href="ExoIconView.html#exo-icon-view-create-drag-icon" title="exo_icon_view_create_drag_icon ()">exo_icon_view_create_drag_icon</a>      (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>);
<span class="returnvalue">gboolean</span>            (<a class="link" href="ExoIconView.html#ExoIconViewSearchEqualFunc" title="ExoIconViewSearchEqualFunc ()">*ExoIconViewSearchEqualFunc</a>)       (<em class="parameter"><code><span class="type">GtkTreeModel</span> *model</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> column</code></em>,
                                                         <em class="parameter"><code>const <span class="type">gchar</span> *key</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreeIter</span> *iter</code></em>,
                                                         <em class="parameter"><code><span class="type">gpointer</span> search_data</code></em>);
<span class="returnvalue">void</span>                (<a class="link" href="ExoIconView.html#ExoIconViewSearchPositionFunc" title="ExoIconViewSearchPositionFunc ()">*ExoIconViewSearchPositionFunc</a>)    (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkWidget</span> *search_dialog</code></em>,
                                                         <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="ExoIconView.html#exo-icon-view-get-enable-search" title="exo_icon_view_get_enable_search ()">exo_icon_view_get_enable_search</a>     (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-enable-search" title="exo_icon_view_set_enable_search ()">exo_icon_view_set_enable_search</a>     (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> enable_search</code></em>);
<span class="returnvalue">gint</span>                <a class="link" href="ExoIconView.html#exo-icon-view-get-search-column" title="exo_icon_view_get_search_column ()">exo_icon_view_get_search_column</a>     (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-search-column" title="exo_icon_view_set_search_column ()">exo_icon_view_set_search_column</a>     (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> search_column</code></em>);
<a class="link" href="ExoIconView.html#ExoIconViewSearchEqualFunc" title="ExoIconViewSearchEqualFunc ()"><span class="returnvalue">ExoIconViewSearchEqualFunc</span></a>  <a class="link" href="ExoIconView.html#exo-icon-view-get-search-equal-func" title="exo_icon_view_get_search_equal_func ()">exo_icon_view_get_search_equal_func</a>
                                                        (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-search-equal-func" title="exo_icon_view_set_search_equal_func ()">exo_icon_view_set_search_equal_func</a> (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewSearchEqualFunc" title="ExoIconViewSearchEqualFunc ()"><span class="type">ExoIconViewSearchEqualFunc</span></a> search_equal_func</code></em>,
                                                         <em class="parameter"><code><span class="type">gpointer</span> search_equal_data</code></em>,
                                                         <em class="parameter"><code><span class="type">GDestroyNotify</span> search_equal_destroy</code></em>);
<a class="link" href="ExoIconView.html#ExoIconViewSearchPositionFunc" title="ExoIconViewSearchPositionFunc ()"><span class="returnvalue">ExoIconViewSearchPositionFunc</span></a>  <a class="link" href="ExoIconView.html#exo-icon-view-get-search-position-func" title="exo_icon_view_get_search_position_func ()">exo_icon_view_get_search_position_func</a>
                                                        (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="ExoIconView.html#exo-icon-view-set-search-position-func" title="exo_icon_view_set_search_position_func ()">exo_icon_view_set_search_position_func</a>
                                                        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewSearchPositionFunc" title="ExoIconViewSearchPositionFunc ()"><span class="type">ExoIconViewSearchPositionFunc</span></a> search_position_func</code></em>,
                                                         <em class="parameter"><code><span class="type">gpointer</span> search_position_data</code></em>,
                                                         <em class="parameter"><code><span class="type">GDestroyNotify</span> search_position_destroy</code></em>);
</pre>
</div>
<div class="refsect1" title="Object Hierarchy">
<a name="ExoIconView.object-hierarchy"></a><h2>Object Hierarchy</h2>
<pre class="synopsis">
  GObject
   +----GInitiallyUnowned
         +----GtkObject
               +----GtkWidget
                     +----GtkContainer
                           +----ExoIconView
</pre>
</div>
<div class="refsect1" title="Implemented Interfaces">
<a name="ExoIconView.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
<p>
ExoIconView implements
 AtkImplementorIface,  GtkBuildable and  GtkCellLayout.</p>
</div>
<div class="refsect1" title="Properties">
<a name="ExoIconView.properties"></a><h2>Properties</h2>
<pre class="synopsis">
  "<a class="link" href="ExoIconView.html#ExoIconView--column-spacing" title='The "column-spacing" property'>column-spacing</a>"           <span class="type">gint</span>                  : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--columns" title='The "columns" property'>columns</a>"                  <span class="type">gint</span>                  : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--enable-search" title='The "enable-search" property'>enable-search</a>"            <span class="type">gboolean</span>              : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--item-width" title='The "item-width" property'>item-width</a>"               <span class="type">gint</span>                  : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--layout-mode" title='The "layout-mode" property'>layout-mode</a>"              <a class="link" href="ExoIconView.html#ExoIconViewLayoutMode" title="enum ExoIconViewLayoutMode"><span class="type">ExoIconViewLayoutMode</span></a>  : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--margin" title='The "margin" property'>margin</a>"                   <span class="type">gint</span>                  : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--markup-column" title='The "markup-column" property'>markup-column</a>"            <span class="type">gint</span>                  : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--model" title='The "model" property'>model</a>"                    <span class="type">GtkTreeModel</span>*         : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--orientation" title='The "orientation" property'>orientation</a>"              <span class="type">GtkOrientation</span>        : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--pixbuf-column" title='The "pixbuf-column" property'>pixbuf-column</a>"            <span class="type">gint</span>                  : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--reorderable" title='The "reorderable" property'>reorderable</a>"              <span class="type">gboolean</span>              : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--row-spacing" title='The "row-spacing" property'>row-spacing</a>"              <span class="type">gint</span>                  : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--search-column" title='The "search-column" property'>search-column</a>"            <span class="type">gint</span>                  : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--selection-mode" title='The "selection-mode" property'>selection-mode</a>"           <span class="type">GtkSelectionMode</span>      : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--single-click" title='The "single-click" property'>single-click</a>"             <span class="type">gboolean</span>              : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--single-click-timeout" title='The "single-click-timeout" property'>single-click-timeout</a>"     <span class="type">guint</span>                 : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--spacing" title='The "spacing" property'>spacing</a>"                  <span class="type">gint</span>                  : Read / Write
  "<a class="link" href="ExoIconView.html#ExoIconView--text-column" title='The "text-column" property'>text-column</a>"              <span class="type">gint</span>                  : Read / Write
</pre>
</div>
<div class="refsect1" title="Style Properties">
<a name="ExoIconView.style-properties"></a><h2>Style Properties</h2>
<pre class="synopsis">
  "<a class="link" href="ExoIconView.html#ExoIconView--s-selection-box-alpha" title='The "selection-box-alpha" style property'>selection-box-alpha</a>"      <span class="type">guchar</span>                : Read
  "<a class="link" href="ExoIconView.html#ExoIconView--s-selection-box-color" title='The "selection-box-color" style property'>selection-box-color</a>"      <span class="type">GdkColor</span>*             : Read
</pre>
</div>
<div class="refsect1" title="Signals">
<a name="ExoIconView.signals"></a><h2>Signals</h2>
<pre class="synopsis">
  "<a class="link" href="ExoIconView.html#ExoIconView-activate-cursor-item" title='The "activate-cursor-item" signal'>activate-cursor-item</a>"                           : Run Last / Action
  "<a class="link" href="ExoIconView.html#ExoIconView-item-activated" title='The "item-activated" signal'>item-activated</a>"                                 : Run Last
  "<a class="link" href="ExoIconView.html#ExoIconView-move-cursor" title='The "move-cursor" signal'>move-cursor</a>"                                    : Run Last / Action
  "<a class="link" href="ExoIconView.html#ExoIconView-select-all" title='The "select-all" signal'>select-all</a>"                                     : Run Last / Action
  "<a class="link" href="ExoIconView.html#ExoIconView-select-cursor-item" title='The "select-cursor-item" signal'>select-cursor-item</a>"                             : Run Last / Action
  "<a class="link" href="ExoIconView.html#ExoIconView-selection-changed" title='The "selection-changed" signal'>selection-changed</a>"                              : Run First
  "<a class="link" href="ExoIconView.html#ExoIconView-set-scroll-adjustments" title='The "set-scroll-adjustments" signal'>set-scroll-adjustments</a>"                         : Run Last
  "<a class="link" href="ExoIconView.html#ExoIconView-start-interactive-search" title='The "start-interactive-search" signal'>start-interactive-search</a>"                       : Run Last / Action
  "<a class="link" href="ExoIconView.html#ExoIconView-toggle-cursor-item" title='The "toggle-cursor-item" signal'>toggle-cursor-item</a>"                             : Run Last / Action
  "<a class="link" href="ExoIconView.html#ExoIconView-unselect-all" title='The "unselect-all" signal'>unselect-all</a>"                                   : Run Last / Action
</pre>
</div>
<div class="refsect1" title="Description">
<a name="ExoIconView.description"></a><h2>Description</h2>
<p>
  <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> provides an alternative view on a list model.
  It displays the model as a grid of icons with labels. Like
  <span class="type">GtkTreeView</span>, it allows to select one or multiple items
  (depending on the selection mode, see <a class="link" href="ExoIconView.html#exo-icon-view-set-selection-mode" title="exo_icon_view_set_selection_mode ()"><code class="function">exo_icon_view_set_selection_mode()</code></a>).
  In addition to selection with the arrow keys, <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> supports
  rubberband selection, which is controlled by dragging the pointer.
</p>
</div>
<div class="refsect1" title="Details">
<a name="ExoIconView.details"></a><h2>Details</h2>
<div class="refsect2" title="ExoIconView">
<a name="ExoIconView-struct"></a><h3>ExoIconView</h3>
<pre class="programlisting">typedef struct _ExoIconView ExoIconView;</pre>
<p>
  The <span class="structname">ExoIconView</span> struct contains only
  private fields and should not be directly accessed.
</p>
</div>
<hr>
<div class="refsect2" title="enum ExoIconViewDropPosition">
<a name="ExoIconViewDropPosition"></a><h3>enum ExoIconViewDropPosition</h3>
<pre class="programlisting">typedef enum
{
  EXO_ICON_VIEW_NO_DROP,
  EXO_ICON_VIEW_DROP_INTO,
  EXO_ICON_VIEW_DROP_LEFT,
  EXO_ICON_VIEW_DROP_RIGHT,
  EXO_ICON_VIEW_DROP_ABOVE,
  EXO_ICON_VIEW_DROP_BELOW
} ExoIconViewDropPosition;
</pre>
<p>
Specifies whether to display the drop indicator,
i.e. where to drop into the icon view.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><a name="EXO-ICON-VIEW-NO-DROP:CAPS"></a><span class="term"><code class="literal">EXO_ICON_VIEW_NO_DROP</code></span></p></td>
<td>no drop indicator.
</td>
</tr>
<tr>
<td><p><a name="EXO-ICON-VIEW-DROP-INTO:CAPS"></a><span class="term"><code class="literal">EXO_ICON_VIEW_DROP_INTO</code></span></p></td>
<td>drop indicator on an item.
</td>
</tr>
<tr>
<td><p><a name="EXO-ICON-VIEW-DROP-LEFT:CAPS"></a><span class="term"><code class="literal">EXO_ICON_VIEW_DROP_LEFT</code></span></p></td>
<td>drop indicator on the left of an item.
</td>
</tr>
<tr>
<td><p><a name="EXO-ICON-VIEW-DROP-RIGHT:CAPS"></a><span class="term"><code class="literal">EXO_ICON_VIEW_DROP_RIGHT</code></span></p></td>
<td>drop indicator on the right of an item.
</td>
</tr>
<tr>
<td><p><a name="EXO-ICON-VIEW-DROP-ABOVE:CAPS"></a><span class="term"><code class="literal">EXO_ICON_VIEW_DROP_ABOVE</code></span></p></td>
<td>drop indicator above an item.
</td>
</tr>
<tr>
<td><p><a name="EXO-ICON-VIEW-DROP-BELOW:CAPS"></a><span class="term"><code class="literal">EXO_ICON_VIEW_DROP_BELOW</code></span></p></td>
<td>drop indicator below an item.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="enum ExoIconViewLayoutMode">
<a name="ExoIconViewLayoutMode"></a><h3>enum ExoIconViewLayoutMode</h3>
<pre class="programlisting">typedef enum
{
  EXO_ICON_VIEW_LAYOUT_ROWS,
  EXO_ICON_VIEW_LAYOUT_COLS
} ExoIconViewLayoutMode;
</pre>
<p>
Specifies the layouting mode of an <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>. <em class="parameter"><code>EXO_ICON_VIEW_LAYOUT_ROWS</code></em>
is the default, which lays out items vertically in rows from top to bottom.
<em class="parameter"><code>EXO_ICON_VIEW_LAYOUT_COLS</code></em> lays out items horizontally in columns from left
to right.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><a name="EXO-ICON-VIEW-LAYOUT-ROWS:CAPS"></a><span class="term"><code class="literal">EXO_ICON_VIEW_LAYOUT_ROWS</code></span></p></td>
<td>layout items in rows.
</td>
</tr>
<tr>
<td><p><a name="EXO-ICON-VIEW-LAYOUT-COLS:CAPS"></a><span class="term"><code class="literal">EXO_ICON_VIEW_LAYOUT_COLS</code></span></p></td>
<td>layout items in columns.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_new ()">
<a name="exo-icon-view-new"></a><h3>exo_icon_view_new ()</h3>
<pre class="programlisting"><span class="returnvalue">GtkWidget</span> *         exo_icon_view_new                   (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
<p>
Creates a new <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> widget
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> A newly created <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> widget
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_new_with_model ()">
<a name="exo-icon-view-new-with-model"></a><h3>exo_icon_view_new_with_model ()</h3>
<pre class="programlisting"><span class="returnvalue">GtkWidget</span> *         exo_icon_view_new_with_model        (<em class="parameter"><code><span class="type">GtkTreeModel</span> *model</code></em>);</pre>
<p>
Creates a new <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> widget with the model <em class="parameter"><code>model</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
<td>The model.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> A newly created <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> widget.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_model ()">
<a name="exo-icon-view-get-model"></a><h3>exo_icon_view_get_model ()</h3>
<pre class="programlisting"><span class="returnvalue">GtkTreeModel</span> *      exo_icon_view_get_model             (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns the model the <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> is based on. Returns <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if the
model is unset.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> A <span class="type">GtkTreeModel</span>, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if none is currently being used.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_model ()">
<a name="exo-icon-view-set-model"></a><h3>exo_icon_view_set_model ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_model             (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreeModel</span> *model</code></em>);</pre>
<p>
Sets the model for a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.  
If the <em class="parameter"><code>icon_view</code></em> already has a model set, it will remove 
it before setting the new model.  If <em class="parameter"><code>model</code></em> is <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, then
it will unset the old model.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
<td>The model.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_text_column ()">
<a name="exo-icon-view-get-text-column"></a><h3>exo_icon_view_get_text_column ()</h3>
<pre class="programlisting"><span class="returnvalue">gint</span>                exo_icon_view_get_text_column       (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">exo_icon_view_get_text_column</code> is deprecated and should not be used in newly-written code. Use the more powerful <span class="type">GtkCellRenderer</span>s instead, as <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
            now implements <span class="type">GtkCellLayout</span>.</p>
</div>
<p>
Returns the column with text for <em class="parameter"><code>icon_view</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the text column, or -1 if it's unset.

</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_text_column ()">
<a name="exo-icon-view-set-text-column"></a><h3>exo_icon_view_set_text_column ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_text_column       (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
<div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">exo_icon_view_set_text_column</code> is deprecated and should not be used in newly-written code. Use the more powerful <span class="type">GtkCellRenderer</span>s instead, as <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
            now implements <span class="type">GtkCellLayout</span>.</p>
</div>
<p>
Sets the column with text for <em class="parameter"><code>icon_view</code></em> to be <em class="parameter"><code>column</code></em>. The text
column must be of type <span class="type">G_TYPE_STRING</span>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
<td>A column in the currently used model.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_markup_column ()">
<a name="exo-icon-view-get-markup-column"></a><h3>exo_icon_view_get_markup_column ()</h3>
<pre class="programlisting"><span class="returnvalue">gint</span>                exo_icon_view_get_markup_column     (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">exo_icon_view_get_markup_column</code> is deprecated and should not be used in newly-written code. Use the more powerful <span class="type">GtkCellRenderer</span>s instead, as <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
            now implements <span class="type">GtkCellLayout</span>.</p>
</div>
<p>
Returns the column with markup text for <em class="parameter"><code>icon_view</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the markup column, or -1 if it's unset.

</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_markup_column ()">
<a name="exo-icon-view-set-markup-column"></a><h3>exo_icon_view_set_markup_column ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_markup_column     (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
<div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">exo_icon_view_set_markup_column</code> is deprecated and should not be used in newly-written code. Use the more powerful <span class="type">GtkCellRenderer</span>s instead, as <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
            now implements <span class="type">GtkCellLayout</span>.</p>
</div>
<p>
Sets the column with markup information for <em class="parameter"><code>icon_view</code></em> to be
<em class="parameter"><code>column</code></em>. The markup column must be of type <span class="type">G_TYPE_STRING</span>.
If the markup column is set to something, it overrides
the text column set by <a class="link" href="ExoIconView.html#exo-icon-view-set-text-column" title="exo_icon_view_set_text_column ()"><code class="function">exo_icon_view_set_text_column()</code></a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
<td>A column in the currently used model.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_pixbuf_column ()">
<a name="exo-icon-view-get-pixbuf-column"></a><h3>exo_icon_view_get_pixbuf_column ()</h3>
<pre class="programlisting"><span class="returnvalue">gint</span>                exo_icon_view_get_pixbuf_column     (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">exo_icon_view_get_pixbuf_column</code> is deprecated and should not be used in newly-written code. Use the more powerful <span class="type">GtkCellRenderer</span>s instead, as <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
            now implements <span class="type">GtkCellLayout</span>.</p>
</div>
<p>
Returns the column with pixbufs for <em class="parameter"><code>icon_view</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the pixbuf column, or -1 if it's unset.

</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_pixbuf_column ()">
<a name="exo-icon-view-set-pixbuf-column"></a><h3>exo_icon_view_set_pixbuf_column ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_pixbuf_column     (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
<div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">exo_icon_view_set_pixbuf_column</code> is deprecated and should not be used in newly-written code. Use the more powerful <span class="type">GtkCellRenderer</span>s instead, as <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
            now implements <span class="type">GtkCellLayout</span>.</p>
</div>
<p>
Sets the column with pixbufs for <em class="parameter"><code>icon_view</code></em> to be <em class="parameter"><code>column</code></em>. The pixbuf
column must be of type <span class="type">GDK_TYPE_PIXBUF</span>
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
<td>A column in the currently used model.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_orientation ()">
<a name="exo-icon-view-get-orientation"></a><h3>exo_icon_view_get_orientation ()</h3>
<pre class="programlisting"><span class="returnvalue">GtkOrientation</span>      exo_icon_view_get_orientation       (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns the value of the ::orientation property which determines 
whether the labels are drawn beside the icons instead of below.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the relative position of texts and icons 

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_orientation ()">
<a name="exo-icon-view-set-orientation"></a><h3>exo_icon_view_set_orientation ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_orientation       (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkOrientation</span> orientation</code></em>);</pre>
<p>
Sets the ::orientation property which determines whether the labels 
are drawn beside the icons instead of below.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
<td>the relative position of texts and icons 
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_columns ()">
<a name="exo-icon-view-get-columns"></a><h3>exo_icon_view_get_columns ()</h3>
<pre class="programlisting"><span class="returnvalue">gint</span>                exo_icon_view_get_columns           (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns the value of the ::columns property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the number of columns, or -1
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_columns ()">
<a name="exo-icon-view-set-columns"></a><h3>exo_icon_view_set_columns ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_columns           (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> columns</code></em>);</pre>
<p>
Sets the ::columns property which determines in how
many columns the icons are arranged. If <em class="parameter"><code>columns</code></em> is
-1, the number of columns will be chosen automatically 
to fill the available area.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>columns</code></em> :</span></p></td>
<td>the number of columns
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_item_width ()">
<a name="exo-icon-view-get-item-width"></a><h3>exo_icon_view_get_item_width ()</h3>
<pre class="programlisting"><span class="returnvalue">gint</span>                exo_icon_view_get_item_width        (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns the value of the ::item-width property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the width of a single item, or -1

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_item_width ()">
<a name="exo-icon-view-set-item-width"></a><h3>exo_icon_view_set_item_width ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_item_width        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> item_width</code></em>);</pre>
<p>
Sets the ::item-width property which specifies the width 
to use for each item. If it is set to -1, the icon view will 
automatically determine a suitable item size.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>item_width</code></em> :</span></p></td>
<td>the width for each item
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_spacing ()">
<a name="exo-icon-view-get-spacing"></a><h3>exo_icon_view_get_spacing ()</h3>
<pre class="programlisting"><span class="returnvalue">gint</span>                exo_icon_view_get_spacing           (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns the value of the ::spacing property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the space between cells 

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_spacing ()">
<a name="exo-icon-view-set-spacing"></a><h3>exo_icon_view_set_spacing ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_spacing           (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> spacing</code></em>);</pre>
<p>
Sets the ::spacing property which specifies the space 
which is inserted between the cells (i.e. the icon and 
the text) of an item.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>spacing</code></em> :</span></p></td>
<td>the spacing
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_row_spacing ()">
<a name="exo-icon-view-get-row-spacing"></a><h3>exo_icon_view_get_row_spacing ()</h3>
<pre class="programlisting"><span class="returnvalue">gint</span>                exo_icon_view_get_row_spacing       (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns the value of the ::row-spacing property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the space between rows

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_row_spacing ()">
<a name="exo-icon-view-set-row-spacing"></a><h3>exo_icon_view_set_row_spacing ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_row_spacing       (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> row_spacing</code></em>);</pre>
<p>
Sets the ::row-spacing property which specifies the space 
which is inserted between the rows of the icon view.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>row_spacing</code></em> :</span></p></td>
<td>the row spacing
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_column_spacing ()">
<a name="exo-icon-view-get-column-spacing"></a><h3>exo_icon_view_get_column_spacing ()</h3>
<pre class="programlisting"><span class="returnvalue">gint</span>                exo_icon_view_get_column_spacing    (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns the value of the ::column-spacing property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the space between columns

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_column_spacing ()">
<a name="exo-icon-view-set-column-spacing"></a><h3>exo_icon_view_set_column_spacing ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_column_spacing    (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> column_spacing</code></em>);</pre>
<p>
Sets the ::column-spacing property which specifies the space 
which is inserted between the columns of the icon view.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>column_spacing</code></em> :</span></p></td>
<td>the column spacing
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_margin ()">
<a name="exo-icon-view-get-margin"></a><h3>exo_icon_view_get_margin ()</h3>
<pre class="programlisting"><span class="returnvalue">gint</span>                exo_icon_view_get_margin            (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns the value of the ::margin property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the space at the borders 

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_margin ()">
<a name="exo-icon-view-set-margin"></a><h3>exo_icon_view_set_margin ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_margin            (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> margin</code></em>);</pre>
<p>
Sets the ::margin property which specifies the space 
which is inserted at the top, bottom, left and right 
of the icon view.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>margin</code></em> :</span></p></td>
<td>the margin
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_selection_mode ()">
<a name="exo-icon-view-get-selection-mode"></a><h3>exo_icon_view_get_selection_mode ()</h3>
<pre class="programlisting"><span class="returnvalue">GtkSelectionMode</span>    exo_icon_view_get_selection_mode    (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Gets the selection mode of the <em class="parameter"><code>icon_view</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the current selection mode
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_selection_mode ()">
<a name="exo-icon-view-set-selection-mode"></a><h3>exo_icon_view_set_selection_mode ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_selection_mode    (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkSelectionMode</span> mode</code></em>);</pre>
<p>
Sets the selection mode of the <em class="parameter"><code>icon_view</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
<td>The selection mode
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_layout_mode ()">
<a name="exo-icon-view-get-layout-mode"></a><h3>exo_icon_view_get_layout_mode ()</h3>
<pre class="programlisting"><a class="link" href="ExoIconView.html#ExoIconViewLayoutMode" title="enum ExoIconViewLayoutMode"><span class="returnvalue">ExoIconViewLayoutMode</span></a>  exo_icon_view_get_layout_mode    (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns the <a class="link" href="ExoIconView.html#ExoIconViewLayoutMode" title="enum ExoIconViewLayoutMode"><span class="type">ExoIconViewLayoutMode</span></a> used to layout the
items in the <em class="parameter"><code>icon_view</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the layout mode of <em class="parameter"><code>icon_view</code></em>.

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.5</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_layout_mode ()">
<a name="exo-icon-view-set-layout-mode"></a><h3>exo_icon_view_set_layout_mode ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_layout_mode       (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewLayoutMode" title="enum ExoIconViewLayoutMode"><span class="type">ExoIconViewLayoutMode</span></a> layout_mode</code></em>);</pre>
<p>
Sets the layout mode of <em class="parameter"><code>icon_view</code></em> to <em class="parameter"><code>layout_mode</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>layout_mode</code></em> :</span></p></td>
<td>the new <a class="link" href="ExoIconView.html#ExoIconViewLayoutMode" title="enum ExoIconViewLayoutMode"><span class="type">ExoIconViewLayoutMode</span></a> for <em class="parameter"><code>icon_view</code></em>.
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.5</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_single_click ()">
<a name="exo-icon-view-get-single-click"></a><h3>exo_icon_view_get_single_click ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            exo_icon_view_get_single_click      (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns <code class="literal">TRUE</code> if <em class="parameter"><code>icon_view</code></em> is currently in single click mode,
else <code class="literal">FALSE</code> will be returned.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> whether <em class="parameter"><code>icon_view</code></em> is currently in single click mode.

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.3</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_single_click ()">
<a name="exo-icon-view-set-single-click"></a><h3>exo_icon_view_set_single_click ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_single_click      (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> single_click</code></em>);</pre>
<p>
If <em class="parameter"><code>single_click</code></em> is <code class="literal">TRUE</code>, <em class="parameter"><code>icon_view</code></em> will be in single click mode
afterwards, else <em class="parameter"><code>icon_view</code></em> will be in double click mode.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>single_click</code></em> :</span></p></td>
<td>
<code class="literal">TRUE</code> for single click, <code class="literal">FALSE</code> for double click mode.
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.3</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_single_click_timeout ()">
<a name="exo-icon-view-get-single-click-timeout"></a><h3>exo_icon_view_get_single_click_timeout ()</h3>
<pre class="programlisting"><span class="returnvalue">guint</span>               exo_icon_view_get_single_click_timeout
                                                        (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns the amount of time in milliseconds after which the
item under the mouse cursor will be selected automatically
in single click mode. A value of <code class="literal">0</code> means that the behavior
is disabled and the user must alter the selection manually.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the single click autoselect timeout or <code class="literal">0</code> if
              the behavior is disabled.

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.5</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_single_click_timeout ()">
<a name="exo-icon-view-set-single-click-timeout"></a><h3>exo_icon_view_set_single_click_timeout ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_single_click_timeout
                                                        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">guint</span> single_click_timeout</code></em>);</pre>
<p>
If <em class="parameter"><code>single_click_timeout</code></em> is a value greater than zero, it specifies
the amount of time in milliseconds after which the item under the
mouse cursor will be selected automatically in single click mode.
A value of <code class="literal">0</code> for <em class="parameter"><code>single_click_timeout</code></em> disables the autoselection
for <em class="parameter"><code>icon_view</code></em>.
</p>
<p>
This setting does not have any effect unless the <em class="parameter"><code>icon_view</code></em> is in
single-click mode, see <a class="link" href="ExoIconView.html#exo-icon-view-set-single-click" title="exo_icon_view_set_single_click ()"><code class="function">exo_icon_view_set_single_click()</code></a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>single_click_timeout</code></em> :</span></p></td>
<td>the new timeout or <code class="literal">0</code> to disable.
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.5</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_widget_to_icon_coords ()">
<a name="exo-icon-view-widget-to-icon-coords"></a><h3>exo_icon_view_widget_to_icon_coords ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_widget_to_icon_coords (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> wx</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> wy</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> *ix</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> *iy</code></em>);</pre>
<p>
Converts widget coordinates to coordinates for the icon window
(the full scrollable area of the icon view).
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>wx</code></em> :</span></p></td>
<td>widget x coordinate.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>wy</code></em> :</span></p></td>
<td>widget y coordinate.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>ix</code></em> :</span></p></td>
<td>return location for icon x coordinate or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>iy</code></em> :</span></p></td>
<td>return location for icon y coordinate or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_icon_to_widget_coords ()">
<a name="exo-icon-view-icon-to-widget-coords"></a><h3>exo_icon_view_icon_to_widget_coords ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_icon_to_widget_coords (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> ix</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> iy</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> *wx</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> *wy</code></em>);</pre>
<p>
Converts icon view coordinates (coordinates in full scrollable
area of the icon view) to widget coordinates.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>ix</code></em> :</span></p></td>
<td>icon x coordinate.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>iy</code></em> :</span></p></td>
<td>icon y coordinate.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>wx</code></em> :</span></p></td>
<td>return location for widget x coordinate or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>wy</code></em> :</span></p></td>
<td>return location for widget y coordinate or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_path_at_pos ()">
<a name="exo-icon-view-get-path-at-pos"></a><h3>exo_icon_view_get_path_at_pos ()</h3>
<pre class="programlisting"><span class="returnvalue">GtkTreePath</span> *       exo_icon_view_get_path_at_pos       (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> x</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
<p>
Finds the path at the point (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em>), relative to widget coordinates.
See <a class="link" href="ExoIconView.html#exo-icon-view-get-item-at-pos" title="exo_icon_view_get_item_at_pos ()"><code class="function">exo_icon_view_get_item_at_pos()</code></a>, if you are also interested in
the cell at the specified position.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
<td>The x position to be identified
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
<td>The y position to be identified
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> The <span class="type">GtkTreePath</span> corresponding to the icon or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
              if no icon exists at that position.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_item_at_pos ()">
<a name="exo-icon-view-get-item-at-pos"></a><h3>exo_icon_view_get_item_at_pos ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            exo_icon_view_get_item_at_pos       (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> x</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> y</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> **path</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkCellRenderer</span> **cell</code></em>);</pre>
<p>
Finds the path at the point (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em>), relative to widget coordinates.
In contrast to <a class="link" href="ExoIconView.html#exo-icon-view-get-path-at-pos" title="exo_icon_view_get_path_at_pos ()"><code class="function">exo_icon_view_get_path_at_pos()</code></a>, this function also 
obtains the cell at the specified position. The returned path should
be freed with <code class="function">gtk_tree_path_free()</code>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
<td>The x position to be identified
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
<td>The y position to be identified
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
<td>Return location for the path, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
<td>Return location for the renderer responsible for the cell
  at (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em>), or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> <code class="literal">TRUE</code> if an item exists at the specified position

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_visible_range ()">
<a name="exo-icon-view-get-visible-range"></a><h3>exo_icon_view_get_visible_range ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            exo_icon_view_get_visible_range     (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> **start_path</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> **end_path</code></em>);</pre>
<p>
Sets <em class="parameter"><code>start_path</code></em> and <em class="parameter"><code>end_path</code></em> to be the first and last visible path. 
Note that there may be invisible paths in between.
</p>
<p>
Both paths should be freed with <code class="function">gtk_tree_path_free()</code> after use.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>start_path</code></em> :</span></p></td>
<td>Return location for start of region, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>end_path</code></em> :</span></p></td>
<td>Return location for end of region, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> <code class="literal">TRUE</code>, if valid paths were placed in <em class="parameter"><code>start_path</code></em> and <em class="parameter"><code>end_path</code></em>

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="ExoIconViewForeachFunc ()">
<a name="ExoIconViewForeachFunc"></a><h3>ExoIconViewForeachFunc ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                (*ExoIconViewForeachFunc)           (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>,
                                                         <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
<p>
Callback function prototype, invoked for every selected path in the
<em class="parameter"><code>icon_view</code></em>. See <a class="link" href="ExoIconView.html#exo-icon-view-selected-foreach" title="exo_icon_view_selected_foreach ()"><code class="function">exo_icon_view_selected_foreach()</code></a> for details.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>an <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
<td>the current path.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>the user data supplied to <a class="link" href="ExoIconView.html#exo-icon-view-selected-foreach" title="exo_icon_view_selected_foreach ()"><code class="function">exo_icon_view_selected_foreach()</code></a>.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_selected_foreach ()">
<a name="exo-icon-view-selected-foreach"></a><h3>exo_icon_view_selected_foreach ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_selected_foreach      (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewForeachFunc" title="ExoIconViewForeachFunc ()"><span class="type">ExoIconViewForeachFunc</span></a> func</code></em>,
                                                         <em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
<p>
Calls a function for each selected icon. Note that the model or
selection cannot be modified from within this function.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
<td>The funcion to call for each selected icon.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>User data to pass to the function.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_select_path ()">
<a name="exo-icon-view-select-path"></a><h3>exo_icon_view_select_path ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_select_path           (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>);</pre>
<p>
Selects the row at <em class="parameter"><code>path</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
<td>The <span class="type">GtkTreePath</span> to be selected.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_unselect_path ()">
<a name="exo-icon-view-unselect-path"></a><h3>exo_icon_view_unselect_path ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_unselect_path         (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>);</pre>
<p>
Unselects the row at <em class="parameter"><code>path</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
<td>The <span class="type">GtkTreePath</span> to be unselected.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_path_is_selected ()">
<a name="exo-icon-view-path-is-selected"></a><h3>exo_icon_view_path_is_selected ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            exo_icon_view_path_is_selected      (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>);</pre>
<p>
Returns <code class="literal">TRUE</code> if the icon pointed to by <em class="parameter"><code>path</code></em> is currently
selected. If <em class="parameter"><code>icon</code></em> does not point to a valid location, <code class="literal">FALSE</code> is returned.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
<td>A <span class="type">GtkTreePath</span> to check selection on.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> <code class="literal">TRUE</code> if <em class="parameter"><code>path</code></em> is selected.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_selected_items ()">
<a name="exo-icon-view-get-selected-items"></a><h3>exo_icon_view_get_selected_items ()</h3>
<pre class="programlisting"><span class="returnvalue">GList</span> *             exo_icon_view_get_selected_items    (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Creates a list of paths of all selected items. Additionally, if you are
planning on modifying the model after calling this function, you may
want to convert the returned list into a list of <span class="type">GtkTreeRowReference</span>s.
To do this, you can use <code class="function">gtk_tree_row_reference_new()</code>.
</p>
<p>
To free the return value, use:
</p>
<div class="informalexample"><pre class="programlisting">
g_list_foreach (list, gtk_tree_path_free, NULL);
g_list_free (list);
</pre></div>
<p>
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> A <span class="type">GList</span> containing a <span class="type">GtkTreePath</span> for each selected row.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_select_all ()">
<a name="exo-icon-view-select-all"></a><h3>exo_icon_view_select_all ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_select_all            (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Selects all the icons. <em class="parameter"><code>icon_view</code></em> must has its selection mode set
to <span class="type">GTK_SELECTION_MULTIPLE</span>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_unselect_all ()">
<a name="exo-icon-view-unselect-all"></a><h3>exo_icon_view_unselect_all ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_unselect_all          (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Unselects all the icons.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_item_activated ()">
<a name="exo-icon-view-item-activated"></a><h3>exo_icon_view_item_activated ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_item_activated        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>);</pre>
<p>
Activates the item determined by <em class="parameter"><code>path</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
<td>the <span class="type">GtkTreePath</span> to be activated
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_cursor ()">
<a name="exo-icon-view-get-cursor"></a><h3>exo_icon_view_get_cursor ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            exo_icon_view_get_cursor            (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> **path</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkCellRenderer</span> **cell</code></em>);</pre>
<p>
Fills in <em class="parameter"><code>path</code></em> and <em class="parameter"><code>cell</code></em> with the current cursor path and cell. 
If the cursor isn't currently set, then *<em class="parameter"><code>path</code></em> will be <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.  
If no cell currently has focus, then *<em class="parameter"><code>cell</code></em> will be <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</p>
<p>
The returned <span class="type">GtkTreePath</span> must be freed with <code class="function">gtk_tree_path_free()</code>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
<td>Return location for the current cursor path, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
<td>Return location the current focus cell, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> <code class="literal">TRUE</code> if the cursor is set.

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_cursor ()">
<a name="exo-icon-view-set-cursor"></a><h3>exo_icon_view_set_cursor ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_cursor            (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkCellRenderer</span> *cell</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> start_editing</code></em>);</pre>
<p>
Sets the current keyboard focus to be at <em class="parameter"><code>path</code></em>, and selects it.  This is
useful when you want to focus the user's attention on a particular item.  
If <em class="parameter"><code>cell</code></em> is not <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, then focus is given to the cell specified by 
it. Additionally, if <em class="parameter"><code>start_editing</code></em> is <code class="literal">TRUE</code>, then editing should be 
started in the specified cell.  
</p>
<p>
This function is often followed by <code class="literal">gtk_widget_grab_focus 
(icon_view)</code> in order to give keyboard focus to the widget.  
Please note that editing can only happen when the widget is realized.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
<td>a <span class="type">GtkTreePath</span>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
<td>a <span class="type">GtkCellRenderer</span> or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>start_editing</code></em> :</span></p></td>
<td>
<code class="literal">TRUE</code> if the specified cell should start being edited.
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_scroll_to_path ()">
<a name="exo-icon-view-scroll-to-path"></a><h3>exo_icon_view_scroll_to_path ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_scroll_to_path        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> use_align</code></em>,
                                                         <em class="parameter"><code><span class="type">gfloat</span> row_align</code></em>,
                                                         <em class="parameter"><code><span class="type">gfloat</span> col_align</code></em>);</pre>
<p>
Moves the alignments of <em class="parameter"><code>icon_view</code></em> to the position specified by <em class="parameter"><code>path</code></em>.  
<em class="parameter"><code>row_align</code></em> determines where the row is placed, and <em class="parameter"><code>col_align</code></em> determines where 
<em class="parameter"><code>column</code></em> 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.
</p>
<p>
If <em class="parameter"><code>use_align</code></em> is <code class="literal">FALSE</code>, then the alignment arguments are ignored, and the
tree 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.
</p>
<p>
This function only works if the model is set, and <em class="parameter"><code>path</code></em> is a valid row on the
model.  If the model changes before the <em class="parameter"><code>tree_view</code></em> is realized, the centered
path will be modified to reflect this change.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
<td>The path of the item to move to.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>use_align</code></em> :</span></p></td>
<td>whether to use alignment arguments, or <code class="literal">FALSE</code>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>row_align</code></em> :</span></p></td>
<td>The vertical alignment of the item specified by <em class="parameter"><code>path</code></em>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>col_align</code></em> :</span></p></td>
<td>The horizontal alignment of the item specified by <em class="parameter"><code>column</code></em>.
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_enable_model_drag_source ()">
<a name="exo-icon-view-enable-model-drag-source"></a><h3>exo_icon_view_enable_model_drag_source ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_enable_model_drag_source
                                                        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GdkModifierType</span> start_button_mask</code></em>,
                                                         <em class="parameter"><code>const <span class="type">GtkTargetEntry</span> *targets</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> n_targets</code></em>,
                                                         <em class="parameter"><code><span class="type">GdkDragAction</span> actions</code></em>);</pre>
<p>
Turns <em class="parameter"><code>icon_view</code></em> into a drag source for automatic DND.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <span class="type">GtkIconTreeView</span>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>start_button_mask</code></em> :</span></p></td>
<td>Mask of allowed buttons to start drag
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
<td>the table of targets that the drag will support
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
<td>the number of items in <em class="parameter"><code>targets</code></em>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
<td>the bitmask of possible actions for a drag from this widget
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_enable_model_drag_dest ()">
<a name="exo-icon-view-enable-model-drag-dest"></a><h3>exo_icon_view_enable_model_drag_dest ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_enable_model_drag_dest
                                                        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code>const <span class="type">GtkTargetEntry</span> *targets</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> n_targets</code></em>,
                                                         <em class="parameter"><code><span class="type">GdkDragAction</span> actions</code></em>);</pre>
<p>
Turns <em class="parameter"><code>icon_view</code></em> into a drop destination for automatic DND.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
<td>the table of targets that the drag will support
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
<td>the number of items in <em class="parameter"><code>targets</code></em>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
<td>the bitmask of possible actions for a drag from this widget
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_unset_model_drag_source ()">
<a name="exo-icon-view-unset-model-drag-source"></a><h3>exo_icon_view_unset_model_drag_source ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_unset_model_drag_source
                                                        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Undoes the effect of #<a class="link" href="ExoIconView.html#exo-icon-view-enable-model-drag-source" title="exo_icon_view_enable_model_drag_source ()"><code class="function">exo_icon_view_enable_model_drag_source()</code></a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr></tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_unset_model_drag_dest ()">
<a name="exo-icon-view-unset-model-drag-dest"></a><h3>exo_icon_view_unset_model_drag_dest ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_unset_model_drag_dest (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Undoes the effect of #<a class="link" href="ExoIconView.html#exo-icon-view-enable-model-drag-dest" title="exo_icon_view_enable_model_drag_dest ()"><code class="function">exo_icon_view_enable_model_drag_dest()</code></a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr></tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_reorderable ()">
<a name="exo-icon-view-set-reorderable"></a><h3>exo_icon_view_set_reorderable ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_reorderable       (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> reorderable</code></em>);</pre>
<p>
This function is a convenience function to allow you to reorder models that
support the <span class="type">GtkTreeDragSourceIface</span> and the <span class="type">GtkTreeDragDestIface</span>.  Both
<span class="type">GtkTreeStore</span> and <span class="type">GtkListStore</span> support these.  If <em class="parameter"><code>reorderable</code></em> is <code class="literal">TRUE</code>, then
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.
</p>
<p>
This function 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.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>A <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>reorderable</code></em> :</span></p></td>
<td>
<code class="literal">TRUE</code>, if the list of items can be reordered.
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_reorderable ()">
<a name="exo-icon-view-get-reorderable"></a><h3>exo_icon_view_get_reorderable ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            exo_icon_view_get_reorderable       (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Retrieves whether the user can reorder the list via drag-and-drop. 
See <a class="link" href="ExoIconView.html#exo-icon-view-set-reorderable" title="exo_icon_view_set_reorderable ()"><code class="function">exo_icon_view_set_reorderable()</code></a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> <code class="literal">TRUE</code> if the list can be reordered.

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_drag_dest_item ()">
<a name="exo-icon-view-set-drag-dest-item"></a><h3>exo_icon_view_set_drag_dest_item ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_drag_dest_item    (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewDropPosition" title="enum ExoIconViewDropPosition"><span class="type">ExoIconViewDropPosition</span></a> pos</code></em>);</pre>
<p>
Sets the item that is highlighted for feedback.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
<td>The path of the item to highlight, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
<td>Specifies whether to drop, relative to the item
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_drag_dest_item ()">
<a name="exo-icon-view-get-drag-dest-item"></a><h3>exo_icon_view_get_drag_dest_item ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_get_drag_dest_item    (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> **path</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewDropPosition" title="enum ExoIconViewDropPosition"><span class="type">ExoIconViewDropPosition</span></a> *pos</code></em>);</pre>
<p>
Gets information about the item that is highlighted for feedback.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
<td>Return location for the path of the highlighted item, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
<td>Return location for the drop position, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_dest_item_at_pos ()">
<a name="exo-icon-view-get-dest-item-at-pos"></a><h3>exo_icon_view_get_dest_item_at_pos ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            exo_icon_view_get_dest_item_at_pos  (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> drag_x</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> drag_y</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> **path</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewDropPosition" title="enum ExoIconViewDropPosition"><span class="type">ExoIconViewDropPosition</span></a> *pos</code></em>);</pre>
<p>
Determines the destination item for a given position.
</p>
<p>
Both <em class="parameter"><code>drag_x</code></em> and <em class="parameter"><code>drag_y</code></em> are given in icon window coordinates. Use
#<a class="link" href="ExoIconView.html#exo-icon-view-widget-to-icon-coords" title="exo_icon_view_widget_to_icon_coords ()"><code class="function">exo_icon_view_widget_to_icon_coords()</code></a> if you need to translate
widget coordinates first.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>drag_x</code></em> :</span></p></td>
<td>the position to determine the destination item for
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>drag_y</code></em> :</span></p></td>
<td>the position to determine the destination item for
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
<td>Return location for the path of the highlighted item, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
<td>Return location for the drop position, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> whether there is an item at the given position.

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_create_drag_icon ()">
<a name="exo-icon-view-create-drag-icon"></a><h3>exo_icon_view_create_drag_icon ()</h3>
<pre class="programlisting"><span class="returnvalue">GdkPixmap</span> *         exo_icon_view_create_drag_icon      (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreePath</span> *path</code></em>);</pre>
<p>
Creates a <span class="type">GdkPixmap</span> representation of the item at <em class="parameter"><code>path</code></em>.  
This image is used for a drag icon.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
<td>a <span class="type">GtkTreePath</span> in <em class="parameter"><code>icon_view</code></em>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a newly-allocated pixmap of the drag icon.

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title="ExoIconViewSearchEqualFunc ()">
<a name="ExoIconViewSearchEqualFunc"></a><h3>ExoIconViewSearchEqualFunc ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            (*ExoIconViewSearchEqualFunc)       (<em class="parameter"><code><span class="type">GtkTreeModel</span> *model</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> column</code></em>,
                                                         <em class="parameter"><code>const <span class="type">gchar</span> *key</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkTreeIter</span> *iter</code></em>,
                                                         <em class="parameter"><code><span class="type">gpointer</span> search_data</code></em>);</pre>
<p>
A function used for checking whether a row in <em class="parameter"><code>model</code></em> matches a search key string
entered by the user. Note the return value is reversed from what you would normally
expect, though it has some similarity to <code class="function">strcmp()</code> returning 0 for equal strings.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
<td>the <span class="type">GtkTreeModel</span> being searched.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
<td>the search column set by <a class="link" href="ExoIconView.html#exo-icon-view-set-search-column" title="exo_icon_view_set_search_column ()"><code class="function">exo_icon_view_set_search_column()</code></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>key</code></em> :</span></p></td>
<td>the key string to compare with.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
<td>the <span class="type">GtkTreeIter</span> of the current item.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>search_data</code></em> :</span></p></td>
<td>user data from <a class="link" href="ExoIconView.html#exo-icon-view-set-search-equal-func" title="exo_icon_view_set_search_equal_func ()"><code class="function">exo_icon_view_set_search_equal_func()</code></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> <code class="literal">FALSE</code> if the row matches, <code class="literal">TRUE</code> otherwise.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="ExoIconViewSearchPositionFunc ()">
<a name="ExoIconViewSearchPositionFunc"></a><h3>ExoIconViewSearchPositionFunc ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                (*ExoIconViewSearchPositionFunc)    (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">GtkWidget</span> *search_dialog</code></em>,
                                                         <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
<p>
A function used to place the <em class="parameter"><code>search_dialog</code></em> for the <em class="parameter"><code>icon_view</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>an <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>search_dialog</code></em> :</span></p></td>
<td>the search dialog window to place.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data from <a class="link" href="ExoIconView.html#exo-icon-view-set-search-position-func" title="exo_icon_view_set_search_position_func ()"><code class="function">exo_icon_view_set_search_position_func()</code></a>.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_enable_search ()">
<a name="exo-icon-view-get-enable-search"></a><h3>exo_icon_view_get_enable_search ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            exo_icon_view_get_enable_search     (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns whether or not the <em class="parameter"><code>icon_view</code></em> allows to start
interactive searching by typing in text.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>an <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> whether or not to let the user search
              interactively.

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.3</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_enable_search ()">
<a name="exo-icon-view-set-enable-search"></a><h3>exo_icon_view_set_enable_search ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_enable_search     (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> enable_search</code></em>);</pre>
<p>
If <em class="parameter"><code>enable_search</code></em> is set, then the user can type in text to search through
the <em class="parameter"><code>icon_view</code></em> interactively (this is sometimes called "typeahead find").
</p>
<p>
Note that even if this is <code class="literal">FALSE</code>, the user can still initiate a search
using the "start-interactive-search" key binding.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>an <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>enable_search</code></em> :</span></p></td>
<td>
<code class="literal">TRUE</code> if the user can search interactively.
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.3</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_search_column ()">
<a name="exo-icon-view-get-search-column"></a><h3>exo_icon_view_get_search_column ()</h3>
<pre class="programlisting"><span class="returnvalue">gint</span>                exo_icon_view_get_search_column     (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns the column searched on by the interactive search code.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>an <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the column the interactive search code searches in.

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.3</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_search_column ()">
<a name="exo-icon-view-set-search-column"></a><h3>exo_icon_view_set_search_column ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_search_column     (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> search_column</code></em>);</pre>
<p>
Sets <em class="parameter"><code>search_column</code></em> as the column where the interactive search code should search in.
</p>
<p>
If the search column is set, user can use the "start-interactive-search" key
binding to bring up search popup. The "enable-search" property controls
whether simply typing text will also start an interactive search.
</p>
<p>
Note that <em class="parameter"><code>search_column</code></em> refers to a column of the model.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>an <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>search_column</code></em> :</span></p></td>
<td>the column of the model to search in, or -1 to disable searching.
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.3</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_search_equal_func ()">
<a name="exo-icon-view-get-search-equal-func"></a><h3>exo_icon_view_get_search_equal_func ()</h3>
<pre class="programlisting"><a class="link" href="ExoIconView.html#ExoIconViewSearchEqualFunc" title="ExoIconViewSearchEqualFunc ()"><span class="returnvalue">ExoIconViewSearchEqualFunc</span></a>  exo_icon_view_get_search_equal_func
                                                        (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns the compare function currently in use.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>an <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the currently used compare function for the search code.

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.3</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_search_equal_func ()">
<a name="exo-icon-view-set-search-equal-func"></a><h3>exo_icon_view_set_search_equal_func ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_search_equal_func (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewSearchEqualFunc" title="ExoIconViewSearchEqualFunc ()"><span class="type">ExoIconViewSearchEqualFunc</span></a> search_equal_func</code></em>,
                                                         <em class="parameter"><code><span class="type">gpointer</span> search_equal_data</code></em>,
                                                         <em class="parameter"><code><span class="type">GDestroyNotify</span> search_equal_destroy</code></em>);</pre>
<p>
Sets the compare function for the interactive search capabilities;
note that some like <code class="function">strcmp()</code> returning 0 for equality
<a class="link" href="ExoIconView.html#ExoIconViewSearchEqualFunc" title="ExoIconViewSearchEqualFunc ()"><span class="type">ExoIconViewSearchEqualFunc</span></a> returns <code class="literal">FALSE</code> on matches.
</p>
<p>
Specifying <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> for <em class="parameter"><code>search_equal_func</code></em> will reset <em class="parameter"><code>icon_view</code></em> to use the default
search equal function.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>an <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>search_equal_func</code></em> :</span></p></td>
<td>the compare function to use during the search, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>search_equal_data</code></em> :</span></p></td>
<td>user data to pass to <em class="parameter"><code>search_equal_func</code></em>, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>search_equal_destroy</code></em> :</span></p></td>
<td>destroy notifier for <em class="parameter"><code>search_equal_data</code></em>, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.3</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_get_search_position_func ()">
<a name="exo-icon-view-get-search-position-func"></a><h3>exo_icon_view_get_search_position_func ()</h3>
<pre class="programlisting"><a class="link" href="ExoIconView.html#ExoIconViewSearchPositionFunc" title="ExoIconViewSearchPositionFunc ()"><span class="returnvalue">ExoIconViewSearchPositionFunc</span></a>  exo_icon_view_get_search_position_func
                                                        (<em class="parameter"><code>const <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>);</pre>
<p>
Returns the search dialog positioning function currently in use.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>an <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the currently used function for positioning the search dialog.

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.3</p>
</div>
<hr>
<div class="refsect2" title="exo_icon_view_set_search_position_func ()">
<a name="exo-icon-view-set-search-position-func"></a><h3>exo_icon_view_set_search_position_func ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                exo_icon_view_set_search_position_func
                                                        (<em class="parameter"><code><a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view</code></em>,
                                                         <em class="parameter"><code><a class="link" href="ExoIconView.html#ExoIconViewSearchPositionFunc" title="ExoIconViewSearchPositionFunc ()"><span class="type">ExoIconViewSearchPositionFunc</span></a> search_position_func</code></em>,
                                                         <em class="parameter"><code><span class="type">gpointer</span> search_position_data</code></em>,
                                                         <em class="parameter"><code><span class="type">GDestroyNotify</span> search_position_destroy</code></em>);</pre>
<p>
Sets the function to use when positioning the seach dialog.
</p>
<p>
Specifying <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> for <em class="parameter"><code>search_position_func</code></em> will reset <em class="parameter"><code>icon_view</code></em> to use the default
search position function.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>an <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>search_position_func</code></em> :</span></p></td>
<td>the function to use to position the search dialog, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>search_position_data</code></em> :</span></p></td>
<td>user data to pass to <em class="parameter"><code>search_position_func</code></em>, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>search_position_destroy</code></em> :</span></p></td>
<td>destroy notifier for <em class="parameter"><code>search_position_data</code></em>, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.1.3</p>
</div>
</div>
<div class="refsect1" title="Property Details">
<a name="ExoIconView.property-details"></a><h2>Property Details</h2>
<div class="refsect2" title='The "column-spacing" property'>
<a name="ExoIconView--column-spacing"></a><h3>The <code class="literal">"column-spacing"</code> property</h3>
<pre class="programlisting">  "column-spacing"           <span class="type">gint</span>                  : Read / Write</pre>
<p>
The column-spacing property specifies the space which is inserted between
the columns of the icon view.
</p>
<p>Allowed values: &gt;= 0</p>
<p>Default value: 6</p>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title='The "columns" property'>
<a name="ExoIconView--columns"></a><h3>The <code class="literal">"columns"</code> property</h3>
<pre class="programlisting">  "columns"                  <span class="type">gint</span>                  : Read / Write</pre>
<p>
The columns property contains the number of the columns in which the
items should be displayed. If it is -1, the number of columns will
be chosen automatically to fill the available area.
</p>
<p>Allowed values: &gt;= G_MAXULONG</p>
<p>Default value: -1</p>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title='The "enable-search" property'>
<a name="ExoIconView--enable-search"></a><h3>The <code class="literal">"enable-search"</code> property</h3>
<pre class="programlisting">  "enable-search"            <span class="type">gboolean</span>              : Read / Write</pre>
<p>
View allows user to search through columns interactively.
</p>
<p>Default value: TRUE</p>
<p class="since">Since 0.3.1.3</p>
</div>
<hr>
<div class="refsect2" title='The "item-width" property'>
<a name="ExoIconView--item-width"></a><h3>The <code class="literal">"item-width"</code> property</h3>
<pre class="programlisting">  "item-width"               <span class="type">gint</span>                  : Read / Write</pre>
<p>
The item-width property specifies the width to use for each item.
If it is set to -1, the icon view will automatically determine a 
suitable item size.
</p>
<p>Allowed values: &gt;= G_MAXULONG</p>
<p>Default value: -1</p>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title='The "layout-mode" property'>
<a name="ExoIconView--layout-mode"></a><h3>The <code class="literal">"layout-mode"</code> property</h3>
<pre class="programlisting">  "layout-mode"              <a class="link" href="ExoIconView.html#ExoIconViewLayoutMode" title="enum ExoIconViewLayoutMode"><span class="type">ExoIconViewLayoutMode</span></a>  : Read / Write</pre>
<p>
The layout-mode property specifies the way items are layed out in
the <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>. This can be either <a class="link" href="ExoIconView.html#EXO-ICON-VIEW-LAYOUT-ROWS:CAPS"><code class="literal">EXO_ICON_VIEW_LAYOUT_ROWS</code></a>,
which is the default, where items are layed out horizontally in
rows from top to bottom, or <a class="link" href="ExoIconView.html#EXO-ICON-VIEW-LAYOUT-COLS:CAPS"><code class="literal">EXO_ICON_VIEW_LAYOUT_COLS</code></a>, where items
are layed out vertically in columns from left to right.
</p>
<p>Default value: EXO_ICON_VIEW_LAYOUT_ROWS</p>
<p class="since">Since 0.3.1.5</p>
</div>
<hr>
<div class="refsect2" title='The "margin" property'>
<a name="ExoIconView--margin"></a><h3>The <code class="literal">"margin"</code> property</h3>
<pre class="programlisting">  "margin"                   <span class="type">gint</span>                  : Read / Write</pre>
<p>
The margin property specifies the space which is inserted 
at the edges of the icon view.
</p>
<p>Allowed values: &gt;= 0</p>
<p>Default value: 6</p>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title='The "markup-column" property'>
<a name="ExoIconView--markup-column"></a><h3>The <code class="literal">"markup-column"</code> property</h3>
<pre class="programlisting">  "markup-column"            <span class="type">gint</span>                  : Read / Write</pre>
<p>
The markup-column property contains the number of the model column
containing markup information to be displayed. The markup column must be 
of type <span class="type">G_TYPE_STRING</span>. If this property and the text-column property 
are both set to column numbers, it overrides the text column.
If both are set to -1, no texts are displayed.
</p>
<p>Allowed values: &gt;= G_MAXULONG</p>
<p>Default value: -1</p>
</div>
<hr>
<div class="refsect2" title='The "model" property'>
<a name="ExoIconView--model"></a><h3>The <code class="literal">"model"</code> property</h3>
<pre class="programlisting">  "model"                    <span class="type">GtkTreeModel</span>*         : Read / Write</pre>
<p>
The model property contains the <span class="type">GtkTreeModel</span>, which should be
display by this icon view. Setting this property to <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> turns
off the display of anything.
</p>
</div>
<hr>
<div class="refsect2" title='The "orientation" property'>
<a name="ExoIconView--orientation"></a><h3>The <code class="literal">"orientation"</code> property</h3>
<pre class="programlisting">  "orientation"              <span class="type">GtkOrientation</span>        : Read / Write</pre>
<p>
The orientation property specifies how the cells (i.e. the icon and 
the text) of the item are positioned relative to each other.
</p>
<p>Default value: GTK_ORIENTATION_VERTICAL</p>
</div>
<hr>
<div class="refsect2" title='The "pixbuf-column" property'>
<a name="ExoIconView--pixbuf-column"></a><h3>The <code class="literal">"pixbuf-column"</code> property</h3>
<pre class="programlisting">  "pixbuf-column"            <span class="type">gint</span>                  : Read / Write</pre>
<p>
The ::pixbuf-column property contains the number of the model column
containing the pixbufs which are displayed. The pixbuf column must be 
of type <span class="type">GDK_TYPE_PIXBUF</span>. Setting this property to -1 turns off the
display of pixbufs.
</p>
<p>Allowed values: &gt;= G_MAXULONG</p>
<p>Default value: -1</p>
</div>
<hr>
<div class="refsect2" title='The "reorderable" property'>
<a name="ExoIconView--reorderable"></a><h3>The <code class="literal">"reorderable"</code> property</h3>
<pre class="programlisting">  "reorderable"              <span class="type">gboolean</span>              : Read / Write</pre>
<p>
The reorderable property specifies if the items can be reordered
by Drag and Drop.
</p>
<p>Default value: FALSE</p>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title='The "row-spacing" property'>
<a name="ExoIconView--row-spacing"></a><h3>The <code class="literal">"row-spacing"</code> property</h3>
<pre class="programlisting">  "row-spacing"              <span class="type">gint</span>                  : Read / Write</pre>
<p>
The row-spacing property specifies the space which is inserted between
the rows of the icon view.
</p>
<p>Allowed values: &gt;= 0</p>
<p>Default value: 6</p>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title='The "search-column" property'>
<a name="ExoIconView--search-column"></a><h3>The <code class="literal">"search-column"</code> property</h3>
<pre class="programlisting">  "search-column"            <span class="type">gint</span>                  : Read / Write</pre>
<p>
Model column to search through when searching through code.
</p>
<p>Allowed values: &gt;= G_MAXULONG</p>
<p>Default value: -1</p>
<p class="since">Since 0.3.1.3</p>
</div>
<hr>
<div class="refsect2" title='The "selection-mode" property'>
<a name="ExoIconView--selection-mode"></a><h3>The <code class="literal">"selection-mode"</code> property</h3>
<pre class="programlisting">  "selection-mode"           <span class="type">GtkSelectionMode</span>      : Read / Write</pre>
<p>
The selection-mode property specifies the selection mode of
icon view. If the mode is <span class="type">GTK_SELECTION_MULTIPLE</span>, rubberband selection
is enabled, for the other modes, only keyboard selection is possible.
</p>
<p>Default value: GTK_SELECTION_SINGLE</p>
</div>
<hr>
<div class="refsect2" title='The "single-click" property'>
<a name="ExoIconView--single-click"></a><h3>The <code class="literal">"single-click"</code> property</h3>
<pre class="programlisting">  "single-click"             <span class="type">gboolean</span>              : Read / Write</pre>
<p>
Determines whether items can be activated by single or double clicks.
</p>
<p>Default value: FALSE</p>
<p class="since">Since 0.3.1.3</p>
</div>
<hr>
<div class="refsect2" title='The "single-click-timeout" property'>
<a name="ExoIconView--single-click-timeout"></a><h3>The <code class="literal">"single-click-timeout"</code> property</h3>
<pre class="programlisting">  "single-click-timeout"     <span class="type">guint</span>                 : Read / Write</pre>
<p>
The amount of time in milliseconds after which a prelited item (an item
which is hovered by the mouse cursor) will be selected automatically in
single click mode. A value of <code class="literal">0</code> disables the automatic selection.
</p>
<p>Default value: 0</p>
<p class="since">Since 0.3.1.5</p>
</div>
<hr>
<div class="refsect2" title='The "spacing" property'>
<a name="ExoIconView--spacing"></a><h3>The <code class="literal">"spacing"</code> property</h3>
<pre class="programlisting">  "spacing"                  <span class="type">gint</span>                  : Read / Write</pre>
<p>
The spacing property specifies the space which is inserted between
the cells (i.e. the icon and the text) of an item.
</p>
<p>Allowed values: &gt;= 0</p>
<p>Default value: 0</p>
<p class="since">Since 0.3.1</p>
</div>
<hr>
<div class="refsect2" title='The "text-column" property'>
<a name="ExoIconView--text-column"></a><h3>The <code class="literal">"text-column"</code> property</h3>
<pre class="programlisting">  "text-column"              <span class="type">gint</span>                  : Read / Write</pre>
<p>
The text-column property contains the number of the model column
containing the texts which are displayed. The text column must be 
of type <span class="type">G_TYPE_STRING</span>. If this property and the markup-column 
property are both set to -1, no texts are displayed.
</p>
<p>Allowed values: &gt;= G_MAXULONG</p>
<p>Default value: -1</p>
</div>
</div>
<div class="refsect1" title="Style Property Details">
<a name="ExoIconView.style-property-details"></a><h2>Style Property Details</h2>
<div class="refsect2" title='The "selection-box-alpha" style property'>
<a name="ExoIconView--s-selection-box-alpha"></a><h3>The <code class="literal">"selection-box-alpha"</code> style property</h3>
<pre class="programlisting">  "selection-box-alpha"      <span class="type">guchar</span>                : Read</pre>
<p>Opacity of the selection box.</p>
<p>Default value: 64</p>
</div>
<hr>
<div class="refsect2" title='The "selection-box-color" style property'>
<a name="ExoIconView--s-selection-box-color"></a><h3>The <code class="literal">"selection-box-color"</code> style property</h3>
<pre class="programlisting">  "selection-box-color"      <span class="type">GdkColor</span>*             : Read</pre>
<p>Color of the selection box.</p>
</div>
</div>
<div class="refsect1" title="Signal Details">
<a name="ExoIconView.signal-details"></a><h2>Signal Details</h2>
<div class="refsect2" title='The "activate-cursor-item" signal'>
<a name="ExoIconView-activate-cursor-item"></a><h3>The <code class="literal">"activate-cursor-item"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            user_function                      (<a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view,
                                                        <span class="type">gpointer</span>     user_data)      : Run Last / Action</pre>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title='The "item-activated" signal'>
<a name="ExoIconView-item-activated"></a><h3>The <code class="literal">"item-activated"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view,
                                                        <span class="type">GtkTreePath</span> *path,
                                                        <span class="type">gpointer</span>     user_data)      : Run Last</pre>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title='The "move-cursor" signal'>
<a name="ExoIconView-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            user_function                      (<a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>    *icon_view,
                                                        <span class="type">GtkMovementStep</span> step,
                                                        <span class="type">gint</span>            count,
                                                        <span class="type">gpointer</span>        user_data)      : Run Last / Action</pre>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title='The "select-all" signal'>
<a name="ExoIconView-select-all"></a><h3>The <code class="literal">"select-all"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view,
                                                        <span class="type">gpointer</span>     user_data)      : Run Last / Action</pre>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title='The "select-cursor-item" signal'>
<a name="ExoIconView-select-cursor-item"></a><h3>The <code class="literal">"select-cursor-item"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view,
                                                        <span class="type">gpointer</span>     user_data)      : Run Last / Action</pre>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title='The "selection-changed" signal'>
<a name="ExoIconView-selection-changed"></a><h3>The <code class="literal">"selection-changed"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view,
                                                        <span class="type">gpointer</span>     user_data)      : Run First</pre>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title='The "set-scroll-adjustments" signal'>
<a name="ExoIconView-set-scroll-adjustments"></a><h3>The <code class="literal">"set-scroll-adjustments"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>   *icon_view,
                                                        <span class="type">GtkAdjustment</span> *hadjustment,
                                                        <span class="type">GtkAdjustment</span> *vadjustment,
                                                        <span class="type">gpointer</span>       user_data)        : Run Last</pre>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title='The "start-interactive-search" signal'>
<a name="ExoIconView-start-interactive-search"></a><h3>The <code class="literal">"start-interactive-search"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            user_function                      (<a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *iconb_view,
                                                        <span class="type">gpointer</span>     user_data)       : Run Last / Action</pre>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>iconb_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title='The "toggle-cursor-item" signal'>
<a name="ExoIconView-toggle-cursor-item"></a><h3>The <code class="literal">"toggle-cursor-item"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view,
                                                        <span class="type">gpointer</span>     user_data)      : Run Last / Action</pre>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title='The "unselect-all" signal'>
<a name="ExoIconView-unselect-all"></a><h3>The <code class="literal">"unselect-all"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a> *icon_view,
                                                        <span class="type">gpointer</span>     user_data)      : Run Last / Action</pre>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
<td>a <a class="link" href="ExoIconView.html" title="ExoIconView"><span class="type">ExoIconView</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
</div>
</div>
</div>
<div class="footer">
<hr>
          Generated by GTK-Doc V1.14</div>
</body>
</html>