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
/* ctkliststore.c
 * Copyright (C) 2000  Red Hat, Inc.,  Jonathan Blandford <jrb@redhat.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 */

#include "config.h"
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <gobject/gvaluecollector.h>
#include "ctktreemodel.h"
#include "ctkliststore.h"
#include "ctktreedatalist.h"
#include "ctktreednd.h"
#include "ctkintl.h"
#include "ctkbuildable.h"
#include "ctkbuilderprivate.h"


/**
 * SECTION:ctkliststore
 * @Short_description: A list-like data structure that can be used with the CtkTreeView
 * @Title: CtkListStore
 * @See_also:#CtkTreeModel, #CtkTreeStore
 *
 * The #CtkListStore object is a list model for use with a #CtkTreeView
 * widget.  It implements the #CtkTreeModel interface, and consequentialy,
 * can use all of the methods available there.  It also implements the
 * #CtkTreeSortable interface so it can be sorted by the view.
 * Finally, it also implements the tree
 * [drag and drop][ctk3-CtkTreeView-drag-and-drop]
 * interfaces.
 *
 * The #CtkListStore can accept most GObject types as a column type, though
 * it can’t accept all custom types.  Internally, it will keep a copy of
 * data passed in (such as a string or a boxed pointer).  Columns that
 * accept #GObjects are handled a little differently.  The
 * #CtkListStore will keep a reference to the object instead of copying the
 * value.  As a result, if the object is modified, it is up to the
 * application writer to call ctk_tree_model_row_changed() to emit the
 * #CtkTreeModel::row_changed signal.  This most commonly affects lists with
 * #GdkPixbufs stored.
 *
 * An example for creating a simple list store:
 * |[<!-- language="C" -->
 * enum {
 *   COLUMN_STRING,
 *   COLUMN_INT,
 *   COLUMN_BOOLEAN,
 *   N_COLUMNS
 * };
 *
 * {
 *   CtkListStore *list_store;
 *   CtkTreePath *path;
 *   CtkTreeIter iter;
 *   gint i;
 *
 *   list_store = ctk_list_store_new (N_COLUMNS,
 *                                    G_TYPE_STRING,
 *                                    G_TYPE_INT,
 *                                    G_TYPE_BOOLEAN);
 *
 *   for (i = 0; i < 10; i++)
 *     {
 *       gchar *some_data;
 *
 *       some_data = get_some_data (i);
 *
 *       // Add a new row to the model
 *       ctk_list_store_append (list_store, &iter);
 *       ctk_list_store_set (list_store, &iter,
 *                           COLUMN_STRING, some_data,
 *                           COLUMN_INT, i,
 *                           COLUMN_BOOLEAN,  FALSE,
 *                           -1);
 *
 *       // As the store will keep a copy of the string internally,
 *       // we free some_data.
 *       g_free (some_data);
 *     }
 *
 *   // Modify a particular row
 *   path = ctk_tree_path_new_from_string ("4");
 *   ctk_tree_model_get_iter (CTK_TREE_MODEL (list_store),
 *                            &iter,
 *                            path);
 *   ctk_tree_path_free (path);
 *   ctk_list_store_set (list_store, &iter,
 *                       COLUMN_BOOLEAN, TRUE,
 *                       -1);
 * }
 * ]|
 *
 * # Performance Considerations
 *
 * Internally, the #CtkListStore was implemented with a linked list with
 * a tail pointer prior to CTK+ 2.6.  As a result, it was fast at data
 * insertion and deletion, and not fast at random data access.  The
 * #CtkListStore sets the #CTK_TREE_MODEL_ITERS_PERSIST flag, which means
 * that #CtkTreeIters can be cached while the row exists.  Thus, if
 * access to a particular row is needed often and your code is expected to
 * run on older versions of CTK+, it is worth keeping the iter around.
 *
 * # Atomic Operations
 *
 * It is important to note that only the methods
 * ctk_list_store_insert_with_values() and ctk_list_store_insert_with_valuesv()
 * are atomic, in the sense that the row is being appended to the store and the
 * values filled in in a single operation with regard to #CtkTreeModel signaling.
 * In contrast, using e.g. ctk_list_store_append() and then ctk_list_store_set()
 * will first create a row, which triggers the #CtkTreeModel::row-inserted signal
 * on #CtkListStore. The row, however, is still empty, and any signal handler
 * connecting to #CtkTreeModel::row-inserted on this particular store should be prepared
 * for the situation that the row might be empty. This is especially important
 * if you are wrapping the #CtkListStore inside a #CtkTreeModelFilter and are
 * using a #CtkTreeModelFilterVisibleFunc. Using any of the non-atomic operations
 * to append rows to the #CtkListStore will cause the
 * #CtkTreeModelFilterVisibleFunc to be visited with an empty row first; the
 * function must be prepared for that.
 *
 * # CtkListStore as CtkBuildable
 *
 * The CtkListStore implementation of the CtkBuildable interface allows
 * to specify the model columns with a <columns> element that may contain
 * multiple <column> elements, each specifying one model column. The “type”
 * attribute specifies the data type for the column.
 *
 * Additionally, it is possible to specify content for the list store
 * in the UI definition, with the <data> element. It can contain multiple
 * <row> elements, each specifying to content for one row of the list model.
 * Inside a <row>, the <col> elements specify the content for individual cells.
 *
 * Note that it is probably more common to define your models in the code,
 * and one might consider it a layering violation to specify the content of
 * a list store in a UI definition, data, not presentation, and common wisdom
 * is to separate the two, as far as possible.
 *
 * An example of a UI Definition fragment for a list store:
 * |[<!-- language="C" -->
 * <object class="CtkListStore">
 *   <columns>
 *     <column type="gchararray"/>
 *     <column type="gchararray"/>
 *     <column type="gint"/>
 *   </columns>
 *   <data>
 *     <row>
 *       <col id="0">John</col>
 *       <col id="1">Doe</col>
 *       <col id="2">25</col>
 *     </row>
 *     <row>
 *       <col id="0">Johan</col>
 *       <col id="1">Dahlin</col>
 *       <col id="2">50</col>
 *     </row>
 *   </data>
 * </object>
 * ]|
 */


struct _CtkListStorePrivate
{
  CtkTreeIterCompareFunc default_sort_func;

  GDestroyNotify default_sort_destroy;
  GList *sort_list;
  GType *column_headers;

  gint stamp;
  gint n_columns;
  gint sort_column_id;
  gint length;

  CtkSortType order;

  guint columns_dirty : 1;

  gpointer default_sort_data;
  gpointer seq;         /* head of the list */
};

#define CTK_LIST_STORE_IS_SORTED(list) (((CtkListStore*)(list))->priv->sort_column_id != CTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID)
static void         ctk_list_store_tree_model_init (CtkTreeModelIface *iface);
static void         ctk_list_store_drag_source_init(CtkTreeDragSourceIface *iface);
static void         ctk_list_store_drag_dest_init  (CtkTreeDragDestIface   *iface);
static void         ctk_list_store_sortable_init   (CtkTreeSortableIface   *iface);
static void         ctk_list_store_buildable_init  (CtkBuildableIface      *iface);
static void         ctk_list_store_finalize        (GObject           *object);
static CtkTreeModelFlags ctk_list_store_get_flags  (CtkTreeModel      *tree_model);
static gint         ctk_list_store_get_n_columns   (CtkTreeModel      *tree_model);
static GType        ctk_list_store_get_column_type (CtkTreeModel      *tree_model,
						    gint               index);
static gboolean     ctk_list_store_get_iter        (CtkTreeModel      *tree_model,
						    CtkTreeIter       *iter,
						    CtkTreePath       *path);
static CtkTreePath *ctk_list_store_get_path        (CtkTreeModel      *tree_model,
						    CtkTreeIter       *iter);
static void         ctk_list_store_get_value       (CtkTreeModel      *tree_model,
						    CtkTreeIter       *iter,
						    gint               column,
						    GValue            *value);
static gboolean     ctk_list_store_iter_next       (CtkTreeModel      *tree_model,
						    CtkTreeIter       *iter);
static gboolean     ctk_list_store_iter_previous   (CtkTreeModel      *tree_model,
						    CtkTreeIter       *iter);
static gboolean     ctk_list_store_iter_children   (CtkTreeModel      *tree_model,
						    CtkTreeIter       *iter,
						    CtkTreeIter       *parent);
static gboolean     ctk_list_store_iter_has_child  (CtkTreeModel      *tree_model,
						    CtkTreeIter       *iter);
static gint         ctk_list_store_iter_n_children (CtkTreeModel      *tree_model,
						    CtkTreeIter       *iter);
static gboolean     ctk_list_store_iter_nth_child  (CtkTreeModel      *tree_model,
						    CtkTreeIter       *iter,
						    CtkTreeIter       *parent,
						    gint               n);
static gboolean     ctk_list_store_iter_parent     (CtkTreeModel      *tree_model,
						    CtkTreeIter       *iter,
						    CtkTreeIter       *child);


static void ctk_list_store_set_n_columns   (CtkListStore *list_store,
					    gint          n_columns);
static void ctk_list_store_set_column_type (CtkListStore *list_store,
					    gint          column,
					    GType         type);

static void ctk_list_store_increment_stamp (CtkListStore *list_store);


/* Drag and Drop */
static gboolean real_ctk_list_store_row_draggable (CtkTreeDragSource *drag_source,
                                                   CtkTreePath       *path);
static gboolean ctk_list_store_drag_data_delete   (CtkTreeDragSource *drag_source,
                                                   CtkTreePath       *path);
static gboolean ctk_list_store_drag_data_get      (CtkTreeDragSource *drag_source,
                                                   CtkTreePath       *path,
                                                   CtkSelectionData  *selection_data);
static gboolean ctk_list_store_drag_data_received (CtkTreeDragDest   *drag_dest,
                                                   CtkTreePath       *dest,
                                                   CtkSelectionData  *selection_data);
static gboolean ctk_list_store_row_drop_possible  (CtkTreeDragDest   *drag_dest,
                                                   CtkTreePath       *dest_path,
						   CtkSelectionData  *selection_data);


/* sortable */
static void     ctk_list_store_sort                  (CtkListStore           *list_store);
static void     ctk_list_store_sort_iter_changed     (CtkListStore           *list_store,
						      CtkTreeIter            *iter,
						      gint                    column);
static gboolean ctk_list_store_get_sort_column_id    (CtkTreeSortable        *sortable,
						      gint                   *sort_column_id,
						      CtkSortType            *order);
static void     ctk_list_store_set_sort_column_id    (CtkTreeSortable        *sortable,
						      gint                    sort_column_id,
						      CtkSortType             order);
static void     ctk_list_store_set_sort_func         (CtkTreeSortable        *sortable,
						      gint                    sort_column_id,
						      CtkTreeIterCompareFunc  func,
						      gpointer                data,
						      GDestroyNotify          destroy);
static void     ctk_list_store_set_default_sort_func (CtkTreeSortable        *sortable,
						      CtkTreeIterCompareFunc  func,
						      gpointer                data,
						      GDestroyNotify          destroy);
static gboolean ctk_list_store_has_default_sort_func (CtkTreeSortable        *sortable);


/* buildable */
static gboolean ctk_list_store_buildable_custom_tag_start (CtkBuildable  *buildable,
							   CtkBuilder    *builder,
							   GObject       *child,
							   const gchar   *tagname,
							   GMarkupParser *parser,
							   gpointer      *data);
static void     ctk_list_store_buildable_custom_tag_end (CtkBuildable *buildable,
							 CtkBuilder   *builder,
							 GObject      *child,
							 const gchar  *tagname,
							 gpointer     *data);

G_DEFINE_TYPE_WITH_CODE (CtkListStore, ctk_list_store, G_TYPE_OBJECT,<--- There is an unknown macro here somewhere. Configuration is required. If G_DEFINE_TYPE_WITH_CODE is a macro then please configure it.
                         G_ADD_PRIVATE (CtkListStore)
			 G_IMPLEMENT_INTERFACE (CTK_TYPE_TREE_MODEL,
						ctk_list_store_tree_model_init)
			 G_IMPLEMENT_INTERFACE (CTK_TYPE_TREE_DRAG_SOURCE,
						ctk_list_store_drag_source_init)
			 G_IMPLEMENT_INTERFACE (CTK_TYPE_TREE_DRAG_DEST,
						ctk_list_store_drag_dest_init)
			 G_IMPLEMENT_INTERFACE (CTK_TYPE_TREE_SORTABLE,
						ctk_list_store_sortable_init)
			 G_IMPLEMENT_INTERFACE (CTK_TYPE_BUILDABLE,
						ctk_list_store_buildable_init))


static void
ctk_list_store_class_init (CtkListStoreClass *class)
{
  GObjectClass *object_class;

  object_class = (GObjectClass*) class;

  object_class->finalize = ctk_list_store_finalize;
}

static void
ctk_list_store_tree_model_init (CtkTreeModelIface *iface)
{
  iface->get_flags = ctk_list_store_get_flags;
  iface->get_n_columns = ctk_list_store_get_n_columns;
  iface->get_column_type = ctk_list_store_get_column_type;
  iface->get_iter = ctk_list_store_get_iter;
  iface->get_path = ctk_list_store_get_path;
  iface->get_value = ctk_list_store_get_value;
  iface->iter_next = ctk_list_store_iter_next;
  iface->iter_previous = ctk_list_store_iter_previous;
  iface->iter_children = ctk_list_store_iter_children;
  iface->iter_has_child = ctk_list_store_iter_has_child;
  iface->iter_n_children = ctk_list_store_iter_n_children;
  iface->iter_nth_child = ctk_list_store_iter_nth_child;
  iface->iter_parent = ctk_list_store_iter_parent;
}

static void
ctk_list_store_drag_source_init (CtkTreeDragSourceIface *iface)
{
  iface->row_draggable = real_ctk_list_store_row_draggable;
  iface->drag_data_delete = ctk_list_store_drag_data_delete;
  iface->drag_data_get = ctk_list_store_drag_data_get;
}

static void
ctk_list_store_drag_dest_init (CtkTreeDragDestIface *iface)
{
  iface->drag_data_received = ctk_list_store_drag_data_received;
  iface->row_drop_possible = ctk_list_store_row_drop_possible;
}

static void
ctk_list_store_sortable_init (CtkTreeSortableIface *iface)
{
  iface->get_sort_column_id = ctk_list_store_get_sort_column_id;
  iface->set_sort_column_id = ctk_list_store_set_sort_column_id;
  iface->set_sort_func = ctk_list_store_set_sort_func;
  iface->set_default_sort_func = ctk_list_store_set_default_sort_func;
  iface->has_default_sort_func = ctk_list_store_has_default_sort_func;
}

void
ctk_list_store_buildable_init (CtkBuildableIface *iface)
{
  iface->custom_tag_start = ctk_list_store_buildable_custom_tag_start;
  iface->custom_tag_end = ctk_list_store_buildable_custom_tag_end;
}

static void
ctk_list_store_init (CtkListStore *list_store)
{
  CtkListStorePrivate *priv;

  list_store->priv = ctk_list_store_get_instance_private (list_store);
  priv = list_store->priv;

  priv->seq = g_sequence_new (NULL);
  priv->sort_list = NULL;
  priv->stamp = g_random_int ();
  priv->sort_column_id = CTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID;
  priv->columns_dirty = FALSE;
  priv->length = 0;
}

static gboolean
iter_is_valid (CtkTreeIter  *iter,
               CtkListStore *list_store)
{
  return iter != NULL && 
         iter->user_data != NULL &&
         list_store->priv->stamp == iter->stamp &&
         !g_sequence_iter_is_end (iter->user_data) &&
         g_sequence_iter_get_sequence (iter->user_data) == list_store->priv->seq;
}

/**
 * ctk_list_store_new:
 * @n_columns: number of columns in the list store
 * @...: all #GType types for the columns, from first to last
 *
 * Creates a new list store as with @n_columns columns each of the types passed
 * in.  Note that only types derived from standard GObject fundamental types
 * are supported.
 *
 * As an example, `ctk_list_store_new (3, G_TYPE_INT, G_TYPE_STRING,
 * GDK_TYPE_PIXBUF);` will create a new #CtkListStore with three columns, of type
 * int, string and #GdkPixbuf respectively.
 *
 * Returns: a new #CtkListStore
 */
CtkListStore *
ctk_list_store_new (gint n_columns,
		    ...)
{
  CtkListStore *retval;
  va_list args;
  gint i;

  g_return_val_if_fail (n_columns > 0, NULL);

  retval = g_object_new (CTK_TYPE_LIST_STORE, NULL);
  ctk_list_store_set_n_columns (retval, n_columns);

  va_start (args, n_columns);

  for (i = 0; i < n_columns; i++)
    {
      GType type = va_arg (args, GType);
      if (! _ctk_tree_data_list_check_type (type))
        {
          g_warning ("%s: Invalid type %s", G_STRLOC, g_type_name (type));
          g_object_unref (retval);
          va_end (args);

          return NULL;
        }

      ctk_list_store_set_column_type (retval, i, type);
    }

  va_end (args);

  return retval;
}


/**
 * ctk_list_store_newv: (rename-to ctk_list_store_new)
 * @n_columns: number of columns in the list store
 * @types: (array length=n_columns): an array of #GType types for the columns, from first to last
 *
 * Non-vararg creation function.  Used primarily by language bindings.
 *
 * Returns: (transfer full): a new #CtkListStore
 **/
CtkListStore *
ctk_list_store_newv (gint   n_columns,
		     GType *types)
{
  CtkListStore *retval;
  gint i;

  g_return_val_if_fail (n_columns > 0, NULL);

  retval = g_object_new (CTK_TYPE_LIST_STORE, NULL);
  ctk_list_store_set_n_columns (retval, n_columns);

  for (i = 0; i < n_columns; i++)
    {
      if (! _ctk_tree_data_list_check_type (types[i]))
	{
	  g_warning ("%s: Invalid type %s", G_STRLOC, g_type_name (types[i]));
	  g_object_unref (retval);
	  return NULL;
	}

      ctk_list_store_set_column_type (retval, i, types[i]);
    }

  return retval;
}

/**
 * ctk_list_store_set_column_types:
 * @list_store: A #CtkListStore
 * @n_columns: Number of columns for the list store
 * @types: (array length=n_columns): An array length n of #GTypes
 *
 * This function is meant primarily for #GObjects that inherit from #CtkListStore,
 * and should only be used when constructing a new #CtkListStore.  It will not
 * function after a row has been added, or a method on the #CtkTreeModel
 * interface is called.
 **/
void
ctk_list_store_set_column_types (CtkListStore *list_store,
				 gint          n_columns,
				 GType        *types)
{
  CtkListStorePrivate *priv;
  gint i;

  g_return_if_fail (CTK_IS_LIST_STORE (list_store));

  priv = list_store->priv;

  g_return_if_fail (priv->columns_dirty == 0);

  ctk_list_store_set_n_columns (list_store, n_columns);
  for (i = 0; i < n_columns; i++)
    {
      if (! _ctk_tree_data_list_check_type (types[i]))
	{
	  g_warning ("%s: Invalid type %s", G_STRLOC, g_type_name (types[i]));
	  continue;
	}
      ctk_list_store_set_column_type (list_store, i, types[i]);
    }
}

static void
ctk_list_store_set_n_columns (CtkListStore *list_store,
			      gint          n_columns)
{
  CtkListStorePrivate *priv = list_store->priv;
  int i;

  if (priv->n_columns == n_columns)
    return;

  priv->column_headers = g_renew (GType, priv->column_headers, n_columns);
  for (i = priv->n_columns; i < n_columns; i++)
    priv->column_headers[i] = G_TYPE_INVALID;
  priv->n_columns = n_columns;

  if (priv->sort_list)
    _ctk_tree_data_list_header_free (priv->sort_list);
  priv->sort_list = _ctk_tree_data_list_header_new (n_columns, priv->column_headers);
}

static void
ctk_list_store_set_column_type (CtkListStore *list_store,
				gint          column,
				GType         type)
{
  CtkListStorePrivate *priv = list_store->priv;

  if (!_ctk_tree_data_list_check_type (type))
    {
      g_warning ("%s: Invalid type %s", G_STRLOC, g_type_name (type));
      return;
    }

  priv->column_headers[column] = type;
}

static void
ctk_list_store_finalize (GObject *object)
{
  CtkListStore *list_store = CTK_LIST_STORE (object);
  CtkListStorePrivate *priv = list_store->priv;

  g_sequence_foreach (priv->seq,
		      (GFunc) _ctk_tree_data_list_free, priv->column_headers);

  g_sequence_free (priv->seq);

  _ctk_tree_data_list_header_free (priv->sort_list);
  g_free (priv->column_headers);

  if (priv->default_sort_destroy)
    {
      GDestroyNotify d = priv->default_sort_destroy;

      priv->default_sort_destroy = NULL;
      d (priv->default_sort_data);
      priv->default_sort_data = NULL;
    }

  G_OBJECT_CLASS (ctk_list_store_parent_class)->finalize (object);
}

/* Fulfill the CtkTreeModel requirements */
static CtkTreeModelFlags
ctk_list_store_get_flags (CtkTreeModel *tree_model G_GNUC_UNUSED)
{
  return CTK_TREE_MODEL_ITERS_PERSIST | CTK_TREE_MODEL_LIST_ONLY;
}

static gint
ctk_list_store_get_n_columns (CtkTreeModel *tree_model)
{
  CtkListStore *list_store = CTK_LIST_STORE (tree_model);
  CtkListStorePrivate *priv = list_store->priv;

  priv->columns_dirty = TRUE;

  return priv->n_columns;
}

static GType
ctk_list_store_get_column_type (CtkTreeModel *tree_model,
				gint          index)
{
  CtkListStore *list_store = CTK_LIST_STORE (tree_model);
  CtkListStorePrivate *priv = list_store->priv;

  g_return_val_if_fail (index < priv->n_columns, G_TYPE_INVALID);

  priv->columns_dirty = TRUE;

  return priv->column_headers[index];
}

static gboolean
ctk_list_store_get_iter (CtkTreeModel *tree_model,
			 CtkTreeIter  *iter,
			 CtkTreePath  *path)
{
  CtkListStore *list_store = CTK_LIST_STORE (tree_model);
  CtkListStorePrivate *priv = list_store->priv;
  GSequence *seq;
  gint i;

  priv->columns_dirty = TRUE;

  seq = priv->seq;

  i = ctk_tree_path_get_indices (path)[0];

  if (i >= g_sequence_get_length (seq))
    {
      iter->stamp = 0;
      return FALSE;
    }

  iter->stamp = priv->stamp;
  iter->user_data = g_sequence_get_iter_at_pos (seq, i);

  return TRUE;
}

static CtkTreePath *
ctk_list_store_get_path (CtkTreeModel *tree_model,
			 CtkTreeIter  *iter)
{
  CtkListStore *list_store = CTK_LIST_STORE (tree_model);
  CtkListStorePrivate *priv = list_store->priv;
  CtkTreePath *path;

  g_return_val_if_fail (iter->stamp == priv->stamp, NULL);

  if (g_sequence_iter_is_end (iter->user_data))
    return NULL;
	
  path = ctk_tree_path_new ();
  ctk_tree_path_append_index (path, g_sequence_iter_get_position (iter->user_data));
  
  return path;
}

static void
ctk_list_store_get_value (CtkTreeModel *tree_model,
			  CtkTreeIter  *iter,
			  gint          column,
			  GValue       *value)
{
  CtkListStore *list_store = CTK_LIST_STORE (tree_model);
  CtkListStorePrivate *priv = list_store->priv;
  CtkTreeDataList *list;
  gint tmp_column = column;

  g_return_if_fail (column < priv->n_columns);
  g_return_if_fail (iter_is_valid (iter, list_store));
		    
  list = g_sequence_get (iter->user_data);

  while (tmp_column-- > 0 && list)
    list = list->next;

  if (list == NULL)
    g_value_init (value, priv->column_headers[column]);
  else
    _ctk_tree_data_list_node_to_value (list,
				       priv->column_headers[column],
				       value);
}

static gboolean
ctk_list_store_iter_next (CtkTreeModel  *tree_model,
			  CtkTreeIter   *iter)
{
  CtkListStore *list_store = CTK_LIST_STORE (tree_model);
  CtkListStorePrivate *priv = list_store->priv;
  gboolean retval;

  g_return_val_if_fail (priv->stamp == iter->stamp, FALSE);
  iter->user_data = g_sequence_iter_next (iter->user_data);

  retval = g_sequence_iter_is_end (iter->user_data);
  if (retval)
    iter->stamp = 0;

  return !retval;
}

static gboolean
ctk_list_store_iter_previous (CtkTreeModel *tree_model,
                              CtkTreeIter  *iter)
{
  CtkListStore *list_store = CTK_LIST_STORE (tree_model);
  CtkListStorePrivate *priv = list_store->priv;

  g_return_val_if_fail (priv->stamp == iter->stamp, FALSE);

  if (g_sequence_iter_is_begin (iter->user_data))
    {
      iter->stamp = 0;
      return FALSE;
    }

  iter->user_data = g_sequence_iter_prev (iter->user_data);

  return TRUE;
}

static gboolean
ctk_list_store_iter_children (CtkTreeModel *tree_model,
			      CtkTreeIter  *iter,
			      CtkTreeIter  *parent)
{
  CtkListStore *list_store = (CtkListStore *) tree_model;
  CtkListStorePrivate *priv = list_store->priv;

  /* this is a list, nodes have no children */
  if (parent)
    {
      iter->stamp = 0;
      return FALSE;
    }

  if (g_sequence_get_length (priv->seq) > 0)
    {
      iter->stamp = priv->stamp;
      iter->user_data = g_sequence_get_begin_iter (priv->seq);
      return TRUE;
    }
  else
    {
      iter->stamp = 0;
      return FALSE;
    }
}

static gboolean
ctk_list_store_iter_has_child (CtkTreeModel *tree_model G_GNUC_UNUSED,
			       CtkTreeIter  *iter G_GNUC_UNUSED)
{
  return FALSE;
}

static gint
ctk_list_store_iter_n_children (CtkTreeModel *tree_model,
				CtkTreeIter  *iter)
{
  CtkListStore *list_store = CTK_LIST_STORE (tree_model);
  CtkListStorePrivate *priv = list_store->priv;

  if (iter == NULL)
    return g_sequence_get_length (priv->seq);

  g_return_val_if_fail (priv->stamp == iter->stamp, -1);

  return 0;
}

static gboolean
ctk_list_store_iter_nth_child (CtkTreeModel *tree_model,
			       CtkTreeIter  *iter,
			       CtkTreeIter  *parent,
			       gint          n)
{
  CtkListStore *list_store = CTK_LIST_STORE (tree_model);
  CtkListStorePrivate *priv = list_store->priv;
  GSequenceIter *child;

  iter->stamp = 0;

  if (parent)
    return FALSE;

  child = g_sequence_get_iter_at_pos (priv->seq, n);

  if (g_sequence_iter_is_end (child))
    return FALSE;

  iter->stamp = priv->stamp;
  iter->user_data = child;

  return TRUE;
}

static gboolean
ctk_list_store_iter_parent (CtkTreeModel *tree_model G_GNUC_UNUSED,
			    CtkTreeIter  *iter,
			    CtkTreeIter  *child G_GNUC_UNUSED)
{
  iter->stamp = 0;
  return FALSE;
}

static gboolean
ctk_list_store_real_set_value (CtkListStore *list_store,
			       CtkTreeIter  *iter,
			       gint          column,
			       GValue       *value,
			       gboolean      sort)
{
  CtkListStorePrivate *priv = list_store->priv;
  CtkTreeDataList *list;
  CtkTreeDataList *prev;
  gint old_column = column;
  GValue real_value = G_VALUE_INIT;
  gboolean converted = FALSE;
  gboolean retval = FALSE;

  if (! g_type_is_a (G_VALUE_TYPE (value), priv->column_headers[column]))
    {
      if (! (g_value_type_transformable (G_VALUE_TYPE (value), priv->column_headers[column])))
	{
	  g_warning ("%s: Unable to convert from %s to %s",
		     G_STRLOC,
		     g_type_name (G_VALUE_TYPE (value)),
		     g_type_name (priv->column_headers[column]));
	  return retval;
	}

      g_value_init (&real_value, priv->column_headers[column]);
      if (!g_value_transform (value, &real_value))
	{
	  g_warning ("%s: Unable to make conversion from %s to %s",
		     G_STRLOC,
		     g_type_name (G_VALUE_TYPE (value)),
		     g_type_name (priv->column_headers[column]));
	  g_value_unset (&real_value);
	  return retval;
	}
      converted = TRUE;
    }

  prev = list = g_sequence_get (iter->user_data);

  while (list != NULL)
    {
      if (column == 0)
	{
	  if (converted)
	    _ctk_tree_data_list_value_to_node (list, &real_value);
	  else
	    _ctk_tree_data_list_value_to_node (list, value);
	  retval = TRUE;
	  if (converted)
	    g_value_unset (&real_value);
         if (sort && CTK_LIST_STORE_IS_SORTED (list_store))
            ctk_list_store_sort_iter_changed (list_store, iter, old_column);
	  return retval;
	}

      column--;
      prev = list;
      list = list->next;
    }

  if (g_sequence_get (iter->user_data) == NULL)
    {
      list = _ctk_tree_data_list_alloc();
      g_sequence_set (iter->user_data, list);
      list->next = NULL;
    }
  else
    {
      list = prev->next = _ctk_tree_data_list_alloc ();
      list->next = NULL;
    }

  while (column != 0)
    {
      list->next = _ctk_tree_data_list_alloc ();
      list = list->next;
      list->next = NULL;
      column --;
    }

  if (converted)
    _ctk_tree_data_list_value_to_node (list, &real_value);
  else
    _ctk_tree_data_list_value_to_node (list, value);

  retval = TRUE;
  if (converted)
    g_value_unset (&real_value);

  if (sort && CTK_LIST_STORE_IS_SORTED (list_store))
    ctk_list_store_sort_iter_changed (list_store, iter, old_column);

  return retval;
}


/**
 * ctk_list_store_set_value:
 * @list_store: A #CtkListStore
 * @iter: A valid #CtkTreeIter for the row being modified
 * @column: column number to modify
 * @value: new value for the cell
 *
 * Sets the data in the cell specified by @iter and @column.
 * The type of @value must be convertible to the type of the
 * column.
 *
 **/
void
ctk_list_store_set_value (CtkListStore *list_store,
			  CtkTreeIter  *iter,
			  gint          column,
			  GValue       *value)
{
  CtkListStorePrivate *priv;

  g_return_if_fail (CTK_IS_LIST_STORE (list_store));
  g_return_if_fail (iter_is_valid (iter, list_store));
  g_return_if_fail (G_IS_VALUE (value));
  priv = list_store->priv;
  g_return_if_fail (column >= 0 && column < priv->n_columns);

  if (ctk_list_store_real_set_value (list_store, iter, column, value, TRUE))
    {
      CtkTreePath *path;

      path = ctk_list_store_get_path (CTK_TREE_MODEL (list_store), iter);
      ctk_tree_model_row_changed (CTK_TREE_MODEL (list_store), path, iter);
      ctk_tree_path_free (path);
    }
}

static CtkTreeIterCompareFunc
ctk_list_store_get_compare_func (CtkListStore *list_store)
{
  CtkListStorePrivate *priv = list_store->priv;
  CtkTreeIterCompareFunc func = NULL;

  if (CTK_LIST_STORE_IS_SORTED (list_store))
    {
      if (priv->sort_column_id != -1)
	{
	  CtkTreeDataSortHeader *header;
	  header = _ctk_tree_data_list_get_header (priv->sort_list,
						   priv->sort_column_id);
	  g_return_val_if_fail (header != NULL, NULL);
	  g_return_val_if_fail (header->func != NULL, NULL);
	  func = header->func;
	}
      else
	{
	  func = priv->default_sort_func;
	}
    }

  return func;
}

static void
ctk_list_store_set_vector_internal (CtkListStore *list_store,
				    CtkTreeIter  *iter,
				    gboolean     *emit_signal,
				    gboolean     *maybe_need_sort,
				    gint         *columns,
				    GValue       *values,
				    gint          n_values)
{
  CtkListStorePrivate *priv = list_store->priv;
  gint i;
  CtkTreeIterCompareFunc func = NULL;

  func = ctk_list_store_get_compare_func (list_store);
  if (func != _ctk_tree_data_list_compare_func)
    *maybe_need_sort = TRUE;

  for (i = 0; i < n_values; i++)
    {
      *emit_signal = ctk_list_store_real_set_value (list_store, 
					       iter, 
					       columns[i],
					       &values[i],
					       FALSE) || *emit_signal;

      if (func == _ctk_tree_data_list_compare_func &&
	  columns[i] == priv->sort_column_id)
	*maybe_need_sort = TRUE;
    }
}

static void
ctk_list_store_set_valist_internal (CtkListStore *list_store,
				    CtkTreeIter  *iter,
				    gboolean     *emit_signal,
				    gboolean     *maybe_need_sort,
				    va_list	  var_args)
{
  CtkListStorePrivate *priv = list_store->priv;
  gint column;
  CtkTreeIterCompareFunc func = NULL;

  column = va_arg (var_args, gint);

  func = ctk_list_store_get_compare_func (list_store);
  if (func != _ctk_tree_data_list_compare_func)
    *maybe_need_sort = TRUE;

  while (column != -1)
    {
      GValue value = G_VALUE_INIT;
      gchar *error = NULL;

      if (column < 0 || column >= priv->n_columns)
	{
	  g_warning ("%s: Invalid column number %d added to iter (remember to end your list of columns with a -1)", G_STRLOC, column);
	  break;
	}

      G_VALUE_COLLECT_INIT (&value, priv->column_headers[column],
                            var_args, 0, &error);
      if (error)
	{
	  g_warning ("%s: %s", G_STRLOC, error);
	  g_free (error);

 	  /* we purposely leak the value here, it might not be
	   * in a sane state if an error condition occoured
	   */
	  break;
	}

      /* FIXME: instead of calling this n times, refactor with above */
      *emit_signal = ctk_list_store_real_set_value (list_store,
						    iter,
						    column,
						    &value,
						    FALSE) || *emit_signal;
      
      if (func == _ctk_tree_data_list_compare_func &&
	  column == priv->sort_column_id)
	*maybe_need_sort = TRUE;

      g_value_unset (&value);

      column = va_arg (var_args, gint);
    }
}

/**
 * ctk_list_store_set_valuesv: (rename-to ctk_list_store_set)
 * @list_store: A #CtkListStore
 * @iter: A valid #CtkTreeIter for the row being modified
 * @columns: (array length=n_values): an array of column numbers
 * @values: (array length=n_values): an array of GValues
 * @n_values: the length of the @columns and @values arrays
 *
 * A variant of ctk_list_store_set_valist() which
 * takes the columns and values as two arrays, instead of
 * varargs. This function is mainly intended for 
 * language-bindings and in case the number of columns to
 * change is not known until run-time.
 *
 * Since: 2.12
 */
void
ctk_list_store_set_valuesv (CtkListStore *list_store,
			    CtkTreeIter  *iter,
			    gint         *columns,
			    GValue       *values,
			    gint          n_values)
{
  CtkListStorePrivate *priv;
  gboolean emit_signal = FALSE;
  gboolean maybe_need_sort = FALSE;

  g_return_if_fail (CTK_IS_LIST_STORE (list_store));
  g_return_if_fail (iter_is_valid (iter, list_store));

  priv = list_store->priv;

  ctk_list_store_set_vector_internal (list_store, iter,
				      &emit_signal,
				      &maybe_need_sort,
				      columns, values, n_values);

  if (maybe_need_sort && CTK_LIST_STORE_IS_SORTED (list_store))
    ctk_list_store_sort_iter_changed (list_store, iter, priv->sort_column_id);

  if (emit_signal)
    {
      CtkTreePath *path;

      path = ctk_list_store_get_path (CTK_TREE_MODEL (list_store), iter);
      ctk_tree_model_row_changed (CTK_TREE_MODEL (list_store), path, iter);
      ctk_tree_path_free (path);
    }
}

/**
 * ctk_list_store_set_valist:
 * @list_store: A #CtkListStore
 * @iter: A valid #CtkTreeIter for the row being modified
 * @var_args: va_list of column/value pairs
 *
 * See ctk_list_store_set(); this version takes a va_list for use by language
 * bindings.
 *
 **/
void
ctk_list_store_set_valist (CtkListStore *list_store,
                           CtkTreeIter  *iter,
                           va_list	 var_args)
{
  CtkListStorePrivate *priv;
  gboolean emit_signal = FALSE;
  gboolean maybe_need_sort = FALSE;

  g_return_if_fail (CTK_IS_LIST_STORE (list_store));
  g_return_if_fail (iter_is_valid (iter, list_store));

  priv = list_store->priv;

  ctk_list_store_set_valist_internal (list_store, iter, 
				      &emit_signal, 
				      &maybe_need_sort,
				      var_args);

  if (maybe_need_sort && CTK_LIST_STORE_IS_SORTED (list_store))
    ctk_list_store_sort_iter_changed (list_store, iter, priv->sort_column_id);

  if (emit_signal)
    {
      CtkTreePath *path;

      path = ctk_list_store_get_path (CTK_TREE_MODEL (list_store), iter);
      ctk_tree_model_row_changed (CTK_TREE_MODEL (list_store), path, iter);
      ctk_tree_path_free (path);
    }
}

/**
 * ctk_list_store_set:
 * @list_store: a #CtkListStore
 * @iter: row iterator
 * @...: pairs of column number and value, terminated with -1
 *
 * Sets the value of one or more cells in the row referenced by @iter.
 * The variable argument list should contain integer column numbers,
 * each column number followed by the value to be set.
 * The list is terminated by a -1. For example, to set column 0 with type
 * %G_TYPE_STRING to “Foo”, you would write `ctk_list_store_set (store, iter,
 * 0, "Foo", -1)`.
 *
 * The value will be referenced by the store if it is a %G_TYPE_OBJECT, and it
 * will be copied if it is a %G_TYPE_STRING or %G_TYPE_BOXED.
 */
void
ctk_list_store_set (CtkListStore *list_store,
		    CtkTreeIter  *iter,
		    ...)
{
  va_list var_args;

  va_start (var_args, iter);
  ctk_list_store_set_valist (list_store, iter, var_args);
  va_end (var_args);
}

/**
 * ctk_list_store_remove:
 * @list_store: A #CtkListStore
 * @iter: A valid #CtkTreeIter
 *
 * Removes the given row from the list store.  After being removed, 
 * @iter is set to be the next valid row, or invalidated if it pointed 
 * to the last row in @list_store.
 *
 * Returns: %TRUE if @iter is valid, %FALSE if not.
 **/
gboolean
ctk_list_store_remove (CtkListStore *list_store,
		       CtkTreeIter  *iter)
{
  CtkListStorePrivate *priv;
  CtkTreePath *path;
  GSequenceIter *ptr, *next;

  g_return_val_if_fail (CTK_IS_LIST_STORE (list_store), FALSE);
  g_return_val_if_fail (iter_is_valid (iter, list_store), FALSE);

  priv = list_store->priv;

  path = ctk_list_store_get_path (CTK_TREE_MODEL (list_store), iter);

  ptr = iter->user_data;
  next = g_sequence_iter_next (ptr);
  
  _ctk_tree_data_list_free (g_sequence_get (ptr), priv->column_headers);
  g_sequence_remove (iter->user_data);

  priv->length--;
  
  ctk_tree_model_row_deleted (CTK_TREE_MODEL (list_store), path);
  ctk_tree_path_free (path);

  if (g_sequence_iter_is_end (next))
    {
      iter->stamp = 0;
      return FALSE;
    }
  else
    {
      iter->stamp = priv->stamp;
      iter->user_data = next;
      return TRUE;
    }
}

/**
 * ctk_list_store_insert:
 * @list_store: A #CtkListStore
 * @iter: (out): An unset #CtkTreeIter to set to the new row
 * @position: position to insert the new row, or -1 for last
 *
 * Creates a new row at @position.  @iter will be changed to point to this new
 * row.  If @position is -1 or is larger than the number of rows on the list,
 * then the new row will be appended to the list. The row will be empty after
 * this function is called.  To fill in values, you need to call
 * ctk_list_store_set() or ctk_list_store_set_value().
 *
 **/
void
ctk_list_store_insert (CtkListStore *list_store,
		       CtkTreeIter  *iter,
		       gint          position)
{
  CtkListStorePrivate *priv;
  CtkTreePath *path;
  GSequence *seq;
  GSequenceIter *ptr;
  gint length;

  g_return_if_fail (CTK_IS_LIST_STORE (list_store));
  g_return_if_fail (iter != NULL);

  priv = list_store->priv;

  priv->columns_dirty = TRUE;

  seq = priv->seq;

  length = g_sequence_get_length (seq);
  if (position > length || position < 0)
    position = length;

  ptr = g_sequence_get_iter_at_pos (seq, position);
  ptr = g_sequence_insert_before (ptr, NULL);

  iter->stamp = priv->stamp;
  iter->user_data = ptr;

  g_assert (iter_is_valid (iter, list_store));

  priv->length++;
  
  path = ctk_tree_path_new ();
  ctk_tree_path_append_index (path, position);
  ctk_tree_model_row_inserted (CTK_TREE_MODEL (list_store), path, iter);
  ctk_tree_path_free (path);
}

/**
 * ctk_list_store_insert_before:
 * @list_store: A #CtkListStore
 * @iter: (out): An unset #CtkTreeIter to set to the new row
 * @sibling: (allow-none): A valid #CtkTreeIter, or %NULL
 *
 * Inserts a new row before @sibling. If @sibling is %NULL, then the row will 
 * be appended to the end of the list. @iter will be changed to point to this 
 * new row. The row will be empty after this function is called. To fill in 
 * values, you need to call ctk_list_store_set() or ctk_list_store_set_value().
 *
 **/
void
ctk_list_store_insert_before (CtkListStore *list_store,
			      CtkTreeIter  *iter,
			      CtkTreeIter  *sibling)
{
  CtkListStorePrivate *priv;
  GSequenceIter *after;
  
  g_return_if_fail (CTK_IS_LIST_STORE (list_store));
  g_return_if_fail (iter != NULL);

  priv = list_store->priv;

  if (sibling)
    g_return_if_fail (iter_is_valid (sibling, list_store));

  if (!sibling)
    after = g_sequence_get_end_iter (priv->seq);
  else
    after = sibling->user_data;

  ctk_list_store_insert (list_store, iter, g_sequence_iter_get_position (after));
}

/**
 * ctk_list_store_insert_after:
 * @list_store: A #CtkListStore
 * @iter: (out): An unset #CtkTreeIter to set to the new row
 * @sibling: (allow-none): A valid #CtkTreeIter, or %NULL
 *
 * Inserts a new row after @sibling. If @sibling is %NULL, then the row will be
 * prepended to the beginning of the list. @iter will be changed to point to
 * this new row. The row will be empty after this function is called. To fill
 * in values, you need to call ctk_list_store_set() or ctk_list_store_set_value().
 *
 **/
void
ctk_list_store_insert_after (CtkListStore *list_store,
			     CtkTreeIter  *iter,
			     CtkTreeIter  *sibling)
{
  CtkListStorePrivate *priv;
  GSequenceIter *after;

  g_return_if_fail (CTK_IS_LIST_STORE (list_store));
  g_return_if_fail (iter != NULL);

  priv = list_store->priv;

  if (sibling)
    g_return_if_fail (iter_is_valid (sibling, list_store));

  if (!sibling)
    after = g_sequence_get_begin_iter (priv->seq);
  else
    after = g_sequence_iter_next (sibling->user_data);

  ctk_list_store_insert (list_store, iter, g_sequence_iter_get_position (after));
}

/**
 * ctk_list_store_prepend:
 * @list_store: A #CtkListStore
 * @iter: (out): An unset #CtkTreeIter to set to the prepend row
 *
 * Prepends a new row to @list_store. @iter will be changed to point to this new
 * row. The row will be empty after this function is called. To fill in
 * values, you need to call ctk_list_store_set() or ctk_list_store_set_value().
 *
 **/
void
ctk_list_store_prepend (CtkListStore *list_store,
			CtkTreeIter  *iter)
{
  g_return_if_fail (CTK_IS_LIST_STORE (list_store));
  g_return_if_fail (iter != NULL);

  ctk_list_store_insert (list_store, iter, 0);
}

/**
 * ctk_list_store_append:
 * @list_store: A #CtkListStore
 * @iter: (out): An unset #CtkTreeIter to set to the appended row
 *
 * Appends a new row to @list_store.  @iter will be changed to point to this new
 * row.  The row will be empty after this function is called.  To fill in
 * values, you need to call ctk_list_store_set() or ctk_list_store_set_value().
 *
 **/
void
ctk_list_store_append (CtkListStore *list_store,
		       CtkTreeIter  *iter)
{
  g_return_if_fail (CTK_IS_LIST_STORE (list_store));
  g_return_if_fail (iter != NULL);

  ctk_list_store_insert (list_store, iter, -1);
}

static void
ctk_list_store_increment_stamp (CtkListStore *list_store)
{
  CtkListStorePrivate *priv = list_store->priv;

  do
    {
      priv->stamp++;
    }
  while (priv->stamp == 0);
}

/**
 * ctk_list_store_clear:
 * @list_store: a #CtkListStore.
 *
 * Removes all rows from the list store.  
 *
 **/
void
ctk_list_store_clear (CtkListStore *list_store)
{
  CtkListStorePrivate *priv;
  CtkTreeIter iter;

  g_return_if_fail (CTK_IS_LIST_STORE (list_store));

  priv = list_store->priv;

  while (g_sequence_get_length (priv->seq) > 0)
    {
      iter.stamp = priv->stamp;
      iter.user_data = g_sequence_get_begin_iter (priv->seq);
      ctk_list_store_remove (list_store, &iter);
    }

  ctk_list_store_increment_stamp (list_store);
}

/**
 * ctk_list_store_iter_is_valid:
 * @list_store: A #CtkListStore.
 * @iter: A #CtkTreeIter.
 *
 * > This function is slow. Only use it for debugging and/or testing
 * > purposes.
 *
 * Checks if the given iter is a valid iter for this #CtkListStore.
 *
 * Returns: %TRUE if the iter is valid, %FALSE if the iter is invalid.
 *
 * Since: 2.2
 **/
gboolean
ctk_list_store_iter_is_valid (CtkListStore *list_store,
                              CtkTreeIter  *iter)
{
  CtkListStorePrivate *priv;
  GSequenceIter *seq_iter;

  g_return_val_if_fail (CTK_IS_LIST_STORE (list_store), FALSE);
  g_return_val_if_fail (iter != NULL, FALSE);

  /* can't use iter_is_valid() here, because iter might point
   * to random memory.
   *
   * We MUST NOT dereference it.
   */

  priv = list_store->priv;

  if (iter == NULL ||
      iter->user_data == NULL ||
      priv->stamp != iter->stamp)
    return FALSE;

  for (seq_iter = g_sequence_get_begin_iter (priv->seq);
       !g_sequence_iter_is_end (seq_iter);
       seq_iter = g_sequence_iter_next (seq_iter))
    {
      if (seq_iter == iter->user_data)
        return TRUE;
    }

  return FALSE;
}

static gboolean real_ctk_list_store_row_draggable (CtkTreeDragSource *drag_source G_GNUC_UNUSED,
                                                   CtkTreePath       *path G_GNUC_UNUSED)
{
  return TRUE;
}
  
static gboolean
ctk_list_store_drag_data_delete (CtkTreeDragSource *drag_source,
                                 CtkTreePath       *path)
{
  CtkTreeIter iter;

  if (ctk_list_store_get_iter (CTK_TREE_MODEL (drag_source),
                               &iter,
                               path))
    {
      ctk_list_store_remove (CTK_LIST_STORE (drag_source), &iter);
      return TRUE;
    }
  return FALSE;
}

static gboolean
ctk_list_store_drag_data_get (CtkTreeDragSource *drag_source,
                              CtkTreePath       *path,
                              CtkSelectionData  *selection_data)
{
  /* Note that we don't need to handle the CTK_TREE_MODEL_ROW
   * target, because the default handler does it for us, but
   * we do anyway for the convenience of someone maybe overriding the
   * default handler.
   */

  if (ctk_tree_set_row_drag_data (selection_data,
				  CTK_TREE_MODEL (drag_source),
				  path))
    {
      return TRUE;
    }
  else
    {
      /* FIXME handle text targets at least. */
    }

  return FALSE;
}

static gboolean
ctk_list_store_drag_data_received (CtkTreeDragDest   *drag_dest,
                                   CtkTreePath       *dest,
                                   CtkSelectionData  *selection_data)
{
  CtkTreeModel *tree_model = CTK_TREE_MODEL (drag_dest);
  CtkListStore *list_store = CTK_LIST_STORE (tree_model);
  CtkListStorePrivate *priv = list_store->priv;
  CtkTreeModel *src_model = NULL;
  CtkTreePath *src_path = NULL;
  gboolean retval = FALSE;

  if (ctk_tree_get_row_drag_data (selection_data,
				  &src_model,
				  &src_path) &&
      src_model == tree_model)
    {
      /* Copy the given row to a new position */
      CtkTreeIter src_iter;
      CtkTreeIter dest_iter;
      CtkTreePath *prev;

      if (!ctk_list_store_get_iter (src_model,
                                    &src_iter,
                                    src_path))
        {
          goto out;
        }

      /* Get the path to insert _after_ (dest is the path to insert _before_) */
      prev = ctk_tree_path_copy (dest);

      if (!ctk_tree_path_prev (prev))
        {
          /* dest was the first spot in the list; which means we are supposed
           * to prepend.
           */
          ctk_list_store_prepend (list_store, &dest_iter);

          retval = TRUE;
        }
      else
        {
          if (ctk_list_store_get_iter (tree_model, &dest_iter, prev))
            {
              CtkTreeIter tmp_iter = dest_iter;

              ctk_list_store_insert_after (list_store, &dest_iter, &tmp_iter);

              retval = TRUE;
            }
        }

      ctk_tree_path_free (prev);

      /* If we succeeded in creating dest_iter, copy data from src
       */
      if (retval)
        {
          CtkTreeDataList *dl = g_sequence_get (src_iter.user_data);
          CtkTreeDataList *copy_head = NULL;
          CtkTreeDataList *copy_prev = NULL;
          CtkTreeDataList *copy_iter = NULL;
	  CtkTreePath *path;
          gint col;

          col = 0;
          while (dl)
            {
              copy_iter = _ctk_tree_data_list_node_copy (dl,
                                                         priv->column_headers[col]);

              if (copy_head == NULL)
                copy_head = copy_iter;

              if (copy_prev)
                copy_prev->next = copy_iter;

              copy_prev = copy_iter;

              dl = dl->next;
              ++col;
            }

	  dest_iter.stamp = priv->stamp;
          g_sequence_set (dest_iter.user_data, copy_head);

	  path = ctk_list_store_get_path (tree_model, &dest_iter);
	  ctk_tree_model_row_changed (tree_model, path, &dest_iter);
	  ctk_tree_path_free (path);
	}
    }
  else
    {
      /* FIXME maybe add some data targets eventually, or handle text
       * targets in the simple case.
       */
    }

 out:

  if (src_path)
    ctk_tree_path_free (src_path);

  return retval;
}

static gboolean
ctk_list_store_row_drop_possible (CtkTreeDragDest  *drag_dest,
                                  CtkTreePath      *dest_path,
				  CtkSelectionData *selection_data)
{
  gint *indices;
  CtkTreeModel *src_model = NULL;
  CtkTreePath *src_path = NULL;
  gboolean retval = FALSE;

  /* don't accept drops if the list has been sorted */
  if (CTK_LIST_STORE_IS_SORTED (drag_dest))
    return FALSE;

  if (!ctk_tree_get_row_drag_data (selection_data,
				   &src_model,
				   &src_path))
    goto out;

  if (src_model != CTK_TREE_MODEL (drag_dest))
    goto out;

  if (ctk_tree_path_get_depth (dest_path) != 1)
    goto out;

  /* can drop before any existing node, or before one past any existing. */

  indices = ctk_tree_path_get_indices (dest_path);

  if (indices[0] <= g_sequence_get_length (CTK_LIST_STORE (drag_dest)->priv->seq))
    retval = TRUE;

 out:
  if (src_path)
    ctk_tree_path_free (src_path);
  
  return retval;
}

/* Sorting and reordering */

/* Reordering */
static gint
ctk_list_store_reorder_func (GSequenceIter *a,
			     GSequenceIter *b,
			     gpointer       user_data)
{
  GHashTable *new_positions = user_data;
  gint apos = GPOINTER_TO_INT (g_hash_table_lookup (new_positions, a));
  gint bpos = GPOINTER_TO_INT (g_hash_table_lookup (new_positions, b));

  if (apos < bpos)
    return -1;
  if (apos > bpos)
    return 1;
  return 0;
}
  
/**
 * ctk_list_store_reorder:
 * @store: A #CtkListStore.
 * @new_order: (array zero-terminated=1): an array of integers mapping the new
 *      position of each child to its old position before the re-ordering,
 *      i.e. @new_order`[newpos] = oldpos`. It must have
 *      exactly as many items as the list store’s length.
 *
 * Reorders @store to follow the order indicated by @new_order. Note that
 * this function only works with unsorted stores.
 *
 * Since: 2.2
 **/
void
ctk_list_store_reorder (CtkListStore *store,
			gint         *new_order)
{
  CtkListStorePrivate *priv;
  gint i;
  CtkTreePath *path;
  GHashTable *new_positions;
  GSequenceIter *ptr;
  gint *order;
  
  g_return_if_fail (CTK_IS_LIST_STORE (store));
  g_return_if_fail (!CTK_LIST_STORE_IS_SORTED (store));
  g_return_if_fail (new_order != NULL);

  priv = store->priv;

  order = g_new (gint, g_sequence_get_length (priv->seq));
  for (i = 0; i < g_sequence_get_length (priv->seq); i++)
    order[new_order[i]] = i;
  
  new_positions = g_hash_table_new (g_direct_hash, g_direct_equal);

  ptr = g_sequence_get_begin_iter (priv->seq);
  i = 0;
  while (!g_sequence_iter_is_end (ptr))
    {
      g_hash_table_insert (new_positions, ptr, GINT_TO_POINTER (order[i++]));

      ptr = g_sequence_iter_next (ptr);
    }
  g_free (order);
  
  g_sequence_sort_iter (priv->seq, ctk_list_store_reorder_func, new_positions);

  g_hash_table_destroy (new_positions);
  
  /* emit signal */
  path = ctk_tree_path_new ();
  ctk_tree_model_rows_reordered (CTK_TREE_MODEL (store),
				 path, NULL, new_order);
  ctk_tree_path_free (path);
}

static GHashTable *
save_positions (GSequence *seq)
{
  GHashTable *positions = g_hash_table_new (g_direct_hash, g_direct_equal);
  GSequenceIter *ptr;

  ptr = g_sequence_get_begin_iter (seq);
  while (!g_sequence_iter_is_end (ptr))
    {
      g_hash_table_insert (positions, ptr,
			   GINT_TO_POINTER (g_sequence_iter_get_position (ptr)));
      ptr = g_sequence_iter_next (ptr);
    }

  return positions;
}

static int *
generate_order (GSequence *seq,
		GHashTable *old_positions)
{
  GSequenceIter *ptr;
  int *order = g_new (int, g_sequence_get_length (seq));
  int i;

  i = 0;
  ptr = g_sequence_get_begin_iter (seq);
  while (!g_sequence_iter_is_end (ptr))
    {
      int old_pos = GPOINTER_TO_INT (g_hash_table_lookup (old_positions, ptr));
      order[i++] = old_pos;
      ptr = g_sequence_iter_next (ptr);
    }

  g_hash_table_destroy (old_positions);

  return order;
}

/**
 * ctk_list_store_swap:
 * @store: A #CtkListStore.
 * @a: A #CtkTreeIter.
 * @b: Another #CtkTreeIter.
 *
 * Swaps @a and @b in @store. Note that this function only works with
 * unsorted stores.
 *
 * Since: 2.2
 **/
void
ctk_list_store_swap (CtkListStore *store,
		     CtkTreeIter  *a,
		     CtkTreeIter  *b)
{
  CtkListStorePrivate *priv;
  GHashTable *old_positions;
  gint *order;
  CtkTreePath *path;

  g_return_if_fail (CTK_IS_LIST_STORE (store));
  g_return_if_fail (!CTK_LIST_STORE_IS_SORTED (store));
  g_return_if_fail (iter_is_valid (a, store));
  g_return_if_fail (iter_is_valid (b, store));

  priv = store->priv;

  if (a->user_data == b->user_data)
    return;

  old_positions = save_positions (priv->seq);
  
  g_sequence_swap (a->user_data, b->user_data);

  order = generate_order (priv->seq, old_positions);
  path = ctk_tree_path_new ();
  
  ctk_tree_model_rows_reordered (CTK_TREE_MODEL (store),
				 path, NULL, order);

  ctk_tree_path_free (path);
  g_free (order);
}

static void
ctk_list_store_move_to (CtkListStore *store,
			CtkTreeIter  *iter,
			gint	      new_pos)
{
  CtkListStorePrivate *priv = store->priv;
  GHashTable *old_positions;
  CtkTreePath *path;
  gint *order;

  old_positions = save_positions (priv->seq);

  g_sequence_move (iter->user_data, g_sequence_get_iter_at_pos (priv->seq, new_pos));

  order = generate_order (priv->seq, old_positions);

  path = ctk_tree_path_new ();
  ctk_tree_model_rows_reordered (CTK_TREE_MODEL (store),
				 path, NULL, order);
  ctk_tree_path_free (path);
  g_free (order);
}

/**
 * ctk_list_store_move_before:
 * @store: A #CtkListStore.
 * @iter: A #CtkTreeIter.
 * @position: (allow-none): A #CtkTreeIter, or %NULL.
 *
 * Moves @iter in @store to the position before @position. Note that this
 * function only works with unsorted stores. If @position is %NULL, @iter
 * will be moved to the end of the list.
 *
 * Since: 2.2
 **/
void
ctk_list_store_move_before (CtkListStore *store,
                            CtkTreeIter  *iter,
			    CtkTreeIter  *position)
{
  gint pos;
  
  g_return_if_fail (CTK_IS_LIST_STORE (store));
  g_return_if_fail (!CTK_LIST_STORE_IS_SORTED (store));
  g_return_if_fail (iter_is_valid (iter, store));
  if (position)
    g_return_if_fail (iter_is_valid (position, store));

  if (position)
    pos = g_sequence_iter_get_position (position->user_data);
  else
    pos = -1;
  
  ctk_list_store_move_to (store, iter, pos);
}

/**
 * ctk_list_store_move_after:
 * @store: A #CtkListStore.
 * @iter: A #CtkTreeIter.
 * @position: (allow-none): A #CtkTreeIter or %NULL.
 *
 * Moves @iter in @store to the position after @position. Note that this
 * function only works with unsorted stores. If @position is %NULL, @iter
 * will be moved to the start of the list.
 *
 * Since: 2.2
 **/
void
ctk_list_store_move_after (CtkListStore *store,
			   CtkTreeIter  *iter,
			   CtkTreeIter  *position)
{
  gint pos;
  
  g_return_if_fail (CTK_IS_LIST_STORE (store));
  g_return_if_fail (!CTK_LIST_STORE_IS_SORTED (store));
  g_return_if_fail (iter_is_valid (iter, store));
  if (position)
    g_return_if_fail (iter_is_valid (position, store));

  if (position)
    pos = g_sequence_iter_get_position (position->user_data) + 1;
  else
    pos = 0;
  
  ctk_list_store_move_to (store, iter, pos);
}
    
/* Sorting */
static gint
ctk_list_store_compare_func (GSequenceIter *a,
			     GSequenceIter *b,
			     gpointer      user_data)
{
  CtkListStore *list_store = user_data;
  CtkListStorePrivate *priv = list_store->priv;
  CtkTreeIter iter_a;
  CtkTreeIter iter_b;
  gint retval;
  CtkTreeIterCompareFunc func;
  gpointer data;

  if (priv->sort_column_id != -1)
    {
      CtkTreeDataSortHeader *header;

      header = _ctk_tree_data_list_get_header (priv->sort_list,
					       priv->sort_column_id);
      g_return_val_if_fail (header != NULL, 0);
      g_return_val_if_fail (header->func != NULL, 0);

      func = header->func;
      data = header->data;
    }
  else
    {
      g_return_val_if_fail (priv->default_sort_func != NULL, 0);
      func = priv->default_sort_func;
      data = priv->default_sort_data;
    }

  iter_a.stamp = priv->stamp;
  iter_a.user_data = (gpointer)a;
  iter_b.stamp = priv->stamp;
  iter_b.user_data = (gpointer)b;

  g_assert (iter_is_valid (&iter_a, list_store));
  g_assert (iter_is_valid (&iter_b, list_store));

  retval = (* func) (CTK_TREE_MODEL (list_store), &iter_a, &iter_b, data);

  if (priv->order == CTK_SORT_DESCENDING)
    {
      if (retval > 0)
        retval = -1;
      else if (retval < 0)
        retval = 1;
    }

  return retval;
}

static void
ctk_list_store_sort (CtkListStore *list_store)
{
  CtkListStorePrivate *priv = list_store->priv;
  gint *new_order;
  CtkTreePath *path;
  GHashTable *old_positions;

  if (!CTK_LIST_STORE_IS_SORTED (list_store) ||
      g_sequence_get_length (priv->seq) <= 1)
    return;

  old_positions = save_positions (priv->seq);

  g_sequence_sort_iter (priv->seq, ctk_list_store_compare_func, list_store);

  /* Let the world know about our new order */
  new_order = generate_order (priv->seq, old_positions);

  path = ctk_tree_path_new ();
  ctk_tree_model_rows_reordered (CTK_TREE_MODEL (list_store),
				 path, NULL, new_order);
  ctk_tree_path_free (path);
  g_free (new_order);
}

static gboolean
iter_is_sorted (CtkListStore *list_store,
                CtkTreeIter  *iter)
{
  GSequenceIter *cmp;

  if (!g_sequence_iter_is_begin (iter->user_data))
    {
      cmp = g_sequence_iter_prev (iter->user_data);
      if (ctk_list_store_compare_func (cmp, iter->user_data, list_store) > 0)
	return FALSE;
    }

  cmp = g_sequence_iter_next (iter->user_data);
  if (!g_sequence_iter_is_end (cmp))
    {
      if (ctk_list_store_compare_func (iter->user_data, cmp, list_store) > 0)
	return FALSE;
    }
  
  return TRUE;
}

static void
ctk_list_store_sort_iter_changed (CtkListStore *list_store,
				  CtkTreeIter  *iter,
				  gint          column G_GNUC_UNUSED)

{
  CtkListStorePrivate *priv = list_store->priv;
  CtkTreePath *path;

  path = ctk_list_store_get_path (CTK_TREE_MODEL (list_store), iter);
  ctk_tree_model_row_changed (CTK_TREE_MODEL (list_store), path, iter);
  ctk_tree_path_free (path);

  if (!iter_is_sorted (list_store, iter))
    {
      GHashTable *old_positions;
      gint *order;

      old_positions = save_positions (priv->seq);
      g_sequence_sort_changed_iter (iter->user_data,
				    ctk_list_store_compare_func,
				    list_store);
      order = generate_order (priv->seq, old_positions);
      path = ctk_tree_path_new ();
      ctk_tree_model_rows_reordered (CTK_TREE_MODEL (list_store),
                                     path, NULL, order);
      ctk_tree_path_free (path);
      g_free (order);
    }
}

static gboolean
ctk_list_store_get_sort_column_id (CtkTreeSortable  *sortable,
				   gint             *sort_column_id,
				   CtkSortType      *order)
{
  CtkListStore *list_store = CTK_LIST_STORE (sortable);
  CtkListStorePrivate *priv = list_store->priv;

  if (sort_column_id)
    * sort_column_id = priv->sort_column_id;
  if (order)
    * order = priv->order;

  if (priv->sort_column_id == CTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID ||
      priv->sort_column_id == CTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID)
    return FALSE;

  return TRUE;
}

static void
ctk_list_store_set_sort_column_id (CtkTreeSortable  *sortable,
				   gint              sort_column_id,
				   CtkSortType       order)
{
  CtkListStore *list_store = CTK_LIST_STORE (sortable);
  CtkListStorePrivate *priv = list_store->priv;

  if ((priv->sort_column_id == sort_column_id) &&
      (priv->order == order))
    return;

  if (sort_column_id != CTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID)
    {
      if (sort_column_id != CTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID)
	{
	  CtkTreeDataSortHeader *header = NULL;

	  header = _ctk_tree_data_list_get_header (priv->sort_list, 
						   sort_column_id);

	  /* We want to make sure that we have a function */
	  g_return_if_fail (header != NULL);
	  g_return_if_fail (header->func != NULL);
	}
      else
	{
	  g_return_if_fail (priv->default_sort_func != NULL);
	}
    }


  priv->sort_column_id = sort_column_id;
  priv->order = order;

  ctk_tree_sortable_sort_column_changed (sortable);

  ctk_list_store_sort (list_store);
}

static void
ctk_list_store_set_sort_func (CtkTreeSortable        *sortable,
			      gint                    sort_column_id,
			      CtkTreeIterCompareFunc  func,
			      gpointer                data,
			      GDestroyNotify          destroy)
{
  CtkListStore *list_store = CTK_LIST_STORE (sortable);
  CtkListStorePrivate *priv = list_store->priv;

  priv->sort_list = _ctk_tree_data_list_set_header (priv->sort_list, 
							  sort_column_id, 
							  func, data, destroy);

  if (priv->sort_column_id == sort_column_id)
    ctk_list_store_sort (list_store);
}

static void
ctk_list_store_set_default_sort_func (CtkTreeSortable        *sortable,
				      CtkTreeIterCompareFunc  func,
				      gpointer                data,
				      GDestroyNotify          destroy)
{
  CtkListStore *list_store = CTK_LIST_STORE (sortable);
  CtkListStorePrivate *priv = list_store->priv;

  if (priv->default_sort_destroy)
    {
      GDestroyNotify d = priv->default_sort_destroy;

      priv->default_sort_destroy = NULL;
      d (priv->default_sort_data);
    }

  priv->default_sort_func = func;
  priv->default_sort_data = data;
  priv->default_sort_destroy = destroy;

  if (priv->sort_column_id == CTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID)
    ctk_list_store_sort (list_store);
}

static gboolean
ctk_list_store_has_default_sort_func (CtkTreeSortable *sortable)
{
  CtkListStore *list_store = CTK_LIST_STORE (sortable);
  CtkListStorePrivate *priv = list_store->priv;

  return (priv->default_sort_func != NULL);
}


/**
 * ctk_list_store_insert_with_values:
 * @list_store: A #CtkListStore
 * @iter: (out) (allow-none): An unset #CtkTreeIter to set to the new row, or %NULL
 * @position: position to insert the new row, or -1 to append after existing
 *     rows
 * @...: pairs of column number and value, terminated with -1
 *
 * Creates a new row at @position. @iter will be changed to point to this new
 * row. If @position is -1, or larger than the number of rows in the list, then
 * the new row will be appended to the list. The row will be filled with the
 * values given to this function.
 *
 * Calling
 * `ctk_list_store_insert_with_values (list_store, iter, position...)`
 * has the same effect as calling
 * |[<!-- language="C" -->
 * static void
 * insert_value (CtkListStore *list_store,
 *               CtkTreeIter  *iter,
 *               int           position)
 * {
 *   ctk_list_store_insert (list_store, iter, position);
 *   ctk_list_store_set (list_store,
 *                       iter
 *                       // ...
 *                       );
 * }
 * ]|
 * with the difference that the former will only emit a row_inserted signal,
 * while the latter will emit row_inserted, row_changed and, if the list store
 * is sorted, rows_reordered. Since emitting the rows_reordered signal
 * repeatedly can affect the performance of the program,
 * ctk_list_store_insert_with_values() should generally be preferred when
 * inserting rows in a sorted list store.
 *
 * Since: 2.6
 */
void
ctk_list_store_insert_with_values (CtkListStore *list_store,
				   CtkTreeIter  *iter,
				   gint          position,
				   ...)
{
  CtkListStorePrivate *priv;
  CtkTreePath *path;
  GSequence *seq;
  GSequenceIter *ptr;
  CtkTreeIter tmp_iter;
  gint length;
  gboolean changed = FALSE;
  gboolean maybe_need_sort = FALSE;
  va_list var_args;

  /* FIXME: refactor to reduce overlap with ctk_list_store_set() */
  g_return_if_fail (CTK_IS_LIST_STORE (list_store));

  priv = list_store->priv;

  if (!iter)
    iter = &tmp_iter;

  priv->columns_dirty = TRUE;

  seq = priv->seq;

  length = g_sequence_get_length (seq);
  if (position > length || position < 0)
    position = length;

  ptr = g_sequence_get_iter_at_pos (seq, position);
  ptr = g_sequence_insert_before (ptr, NULL);

  iter->stamp = priv->stamp;
  iter->user_data = ptr;

  g_assert (iter_is_valid (iter, list_store));

  priv->length++;

  va_start (var_args, position);
  ctk_list_store_set_valist_internal (list_store, iter, 
				      &changed, &maybe_need_sort,
				      var_args);
  va_end (var_args);

  /* Don't emit rows_reordered here */
  if (maybe_need_sort && CTK_LIST_STORE_IS_SORTED (list_store))
    g_sequence_sort_changed_iter (iter->user_data,
				  ctk_list_store_compare_func,
				  list_store);

  /* Just emit row_inserted */
  path = ctk_list_store_get_path (CTK_TREE_MODEL (list_store), iter);
  ctk_tree_model_row_inserted (CTK_TREE_MODEL (list_store), path, iter);
  ctk_tree_path_free (path);
}


/**
 * ctk_list_store_insert_with_valuesv:
 * @list_store: A #CtkListStore
 * @iter: (out) (allow-none): An unset #CtkTreeIter to set to the new row, or %NULL.
 * @position: position to insert the new row, or -1 for last
 * @columns: (array length=n_values): an array of column numbers
 * @values: (array length=n_values): an array of GValues 
 * @n_values: the length of the @columns and @values arrays
 * 
 * A variant of ctk_list_store_insert_with_values() which
 * takes the columns and values as two arrays, instead of
 * varargs. This function is mainly intended for 
 * language-bindings.
 *
 * Since: 2.6
 */
void
ctk_list_store_insert_with_valuesv (CtkListStore *list_store,
				    CtkTreeIter  *iter,
				    gint          position,
				    gint         *columns, 
				    GValue       *values,
				    gint          n_values)
{
  CtkListStorePrivate *priv;
  CtkTreePath *path;
  GSequence *seq;
  GSequenceIter *ptr;
  CtkTreeIter tmp_iter;
  gint length;
  gboolean changed = FALSE;
  gboolean maybe_need_sort = FALSE;

  /* FIXME refactor to reduce overlap with 
   * ctk_list_store_insert_with_values() 
   */
  g_return_if_fail (CTK_IS_LIST_STORE (list_store));

  priv = list_store->priv;

  if (!iter)
    iter = &tmp_iter;

  priv->columns_dirty = TRUE;

  seq = priv->seq;

  length = g_sequence_get_length (seq);
  if (position > length || position < 0)
    position = length;

  ptr = g_sequence_get_iter_at_pos (seq, position);
  ptr = g_sequence_insert_before (ptr, NULL);

  iter->stamp = priv->stamp;
  iter->user_data = ptr;

  g_assert (iter_is_valid (iter, list_store));

  priv->length++;  

  ctk_list_store_set_vector_internal (list_store, iter,
				      &changed, &maybe_need_sort,
				      columns, values, n_values);

  /* Don't emit rows_reordered here */
  if (maybe_need_sort && CTK_LIST_STORE_IS_SORTED (list_store))
    g_sequence_sort_changed_iter (iter->user_data,
				  ctk_list_store_compare_func,
				  list_store);

  /* Just emit row_inserted */
  path = ctk_list_store_get_path (CTK_TREE_MODEL (list_store), iter);
  ctk_tree_model_row_inserted (CTK_TREE_MODEL (list_store), path, iter);
  ctk_tree_path_free (path);
}

/* CtkBuildable custom tag implementation
 *
 * <columns>
 *   <column type="..."/>
 *   <column type="..."/>
 * </columns>
 */
typedef struct {
  gboolean translatable;
  gchar *context;
  int id;
} ColInfo;

typedef struct {
  CtkBuilder *builder;
  GObject *object;
  GSList *column_type_names;
  GType *column_types;
  GValue *values;
  gint *colids;
  ColInfo **columns;
  gint last_row;
  gint n_columns;
  gint row_column;
  gboolean is_data;
  const gchar *domain;
} SubParserData;

static void
list_store_start_element (GMarkupParseContext  *context,
                          const gchar          *element_name,
                          const gchar         **names,
                          const gchar         **values,
                          gpointer              user_data,
                          GError              **error)
{
  SubParserData *data = (SubParserData*)user_data;

  if (strcmp (element_name, "col") == 0)
    {
      gint id = -1;
      const gchar *id_str;
      const gchar *msg_context = NULL;
      gboolean translatable = FALSE;
      ColInfo *info;
      GValue val = G_VALUE_INIT;

      if (!_ctk_builder_check_parent (data->builder, context, "row", error))
        return;

      if (data->row_column >= data->n_columns)
        {
	  g_set_error (error,
                       CTK_BUILDER_ERROR, CTK_BUILDER_ERROR_INVALID_VALUE,
	  	       "Too many columns, maximum is %d", data->n_columns - 1);
          _ctk_builder_prefix_error (data->builder, context, error);
          return;
        }

      if (!g_markup_collect_attributes (element_name, names, values, error,
                                        G_MARKUP_COLLECT_STRING, "id", &id_str,
                                        G_MARKUP_COLLECT_BOOLEAN|G_MARKUP_COLLECT_OPTIONAL, "translatable", &translatable,
                                        G_MARKUP_COLLECT_STRING|G_MARKUP_COLLECT_OPTIONAL, "comments", NULL,
                                        G_MARKUP_COLLECT_STRING|G_MARKUP_COLLECT_OPTIONAL, "context", &msg_context,
                                        G_MARKUP_COLLECT_INVALID))
        {
          _ctk_builder_prefix_error (data->builder, context, error);
          return;
        }

      if (!ctk_builder_value_from_string_type (data->builder, G_TYPE_INT, id_str, &val, error))
        {
          _ctk_builder_prefix_error (data->builder, context, error);
          return;
        }

      id = g_value_get_int (&val);
      if (id < 0 || id >= data->n_columns)
        {
          g_set_error (error,
                       CTK_BUILDER_ERROR, CTK_BUILDER_ERROR_INVALID_VALUE,
                       "id value %d out of range", id);
          _ctk_builder_prefix_error (data->builder, context, error);
          return;
        }

      info = g_slice_new0 (ColInfo);
      info->translatable = translatable;
      info->context = g_strdup (msg_context);
      info->id = id;

      data->colids[data->row_column] = id;
      data->columns[data->row_column] = info;
      data->row_column++;
      data->is_data = TRUE;
    }
  else if (strcmp (element_name, "row") == 0)
    {
      if (!_ctk_builder_check_parent (data->builder, context, "data", error))
        return;

      if (!g_markup_collect_attributes (element_name, names, values, error,
                                        G_MARKUP_COLLECT_INVALID, NULL, NULL,
                                        G_MARKUP_COLLECT_INVALID))
        _ctk_builder_prefix_error (data->builder, context, error);
    }
  else if (strcmp (element_name, "columns") == 0 ||
           strcmp (element_name, "data") == 0)
    {
      if (!_ctk_builder_check_parent (data->builder, context, "object", error))
        return;

      if (!g_markup_collect_attributes (element_name, names, values, error,
                                        G_MARKUP_COLLECT_INVALID, NULL, NULL,
                                        G_MARKUP_COLLECT_INVALID))
        _ctk_builder_prefix_error (data->builder, context, error);
    }
  else if (strcmp (element_name, "column") == 0)
    {
      const gchar *type;

      if (!_ctk_builder_check_parent (data->builder, context, "columns", error))
        return;

      if (!g_markup_collect_attributes (element_name, names, values, error,
                                        G_MARKUP_COLLECT_STRING, "type", &type,
                                        G_MARKUP_COLLECT_INVALID))
        {
          _ctk_builder_prefix_error (data->builder, context, error);
          return;
        }

      data->column_type_names = g_slist_prepend (data->column_type_names, g_strdup (type));
    }
  else
    {
      _ctk_builder_error_unhandled_tag (data->builder, context,
                                        "CtkListStore", element_name,
                                        error);
    }
}

static void
list_store_end_element (GMarkupParseContext  *context G_GNUC_UNUSED,
                        const gchar          *element_name,
                        gpointer              user_data,
                        GError              **error G_GNUC_UNUSED)
{
  SubParserData *data = (SubParserData*)user_data;

  g_assert (data->builder);

  if (strcmp (element_name, "row") == 0)
    {
      CtkTreeIter iter;
      int i;

      ctk_list_store_insert_with_valuesv (CTK_LIST_STORE (data->object),
                                          &iter,
                                          data->last_row,
                                          data->colids,
                                          data->values,
                                          data->row_column);
      for (i = 0; i < data->row_column; i++)
        {
          ColInfo *info = data->columns[i];
          g_free (info->context);
          g_slice_free (ColInfo, info);
          data->columns[i] = NULL;
          g_value_unset (&data->values[i]);
        }
      g_free (data->values);
      data->values = g_new0 (GValue, data->n_columns);
      data->last_row++;
      data->row_column = 0;
    }
  else if (strcmp (element_name, "columns") == 0)
    {
      GType *column_types;
      GSList *l;
      int i;
      GType type;

      data->column_type_names = g_slist_reverse (data->column_type_names);
      column_types = g_new0 (GType, g_slist_length (data->column_type_names));

      for (l = data->column_type_names, i = 0; l; l = l->next, i++)
        {
          type = ctk_builder_get_type_from_name (data->builder, l->data);
          if (type == G_TYPE_INVALID)
            {
              g_warning ("Unknown type %s specified in treemodel %s",
                         (const gchar*)l->data,
                         ctk_buildable_get_name (CTK_BUILDABLE (data->object)));
              continue;
            }
          column_types[i] = type;

          g_free (l->data);
        }

      ctk_list_store_set_column_types (CTK_LIST_STORE (data->object), i, column_types);

      g_free (column_types);
    }
  else if (strcmp (element_name, "col") == 0)
    {
      data->is_data = FALSE;
    }
}

static void
list_store_text (GMarkupParseContext  *context,
                 const gchar          *text,
                 gsize                 text_len,
                 gpointer              user_data,
                 GError              **error)
{
  SubParserData *data = (SubParserData*)user_data;
  gint i;
  gchar *string;
  ColInfo *info;

  if (!data->is_data)
    return;

  i = data->row_column - 1;
  info = data->columns[i];

  string = g_strndup (text, text_len);
  if (info->translatable && text_len)
    {
      gchar *translated;

      /* FIXME: This will not use the domain set in the .ui file,
       * since the parser is not telling the builder about the domain.
       * However, it will work for ctk_builder_set_translation_domain() calls.
       */
      translated = g_strdup (_ctk_builder_parser_translate (data->domain,
                                                            info->context,
                                                            string));
      g_free (string);
      string = translated;
    }

  if (!ctk_builder_value_from_string_type (data->builder,
                                           data->column_types[info->id],
                                           string,
                                           &data->values[i],
                                           error))
    {
      _ctk_builder_prefix_error (data->builder, context, error);
    }
  g_free (string);
}

static const GMarkupParser list_store_parser =
  {
    .start_element = list_store_start_element,
    .end_element = list_store_end_element,
    .text = list_store_text
  };

static gboolean
ctk_list_store_buildable_custom_tag_start (CtkBuildable  *buildable,
                                           CtkBuilder    *builder,
                                           GObject       *child,
                                           const gchar   *tagname,
                                           GMarkupParser *parser,
                                           gpointer      *parser_data)
{
  SubParserData *data;

  if (child)
    return FALSE;

  if (strcmp (tagname, "columns") == 0)
    {
      data = g_slice_new0 (SubParserData);
      data->builder = builder;
      data->object = G_OBJECT (buildable);
      data->column_type_names = NULL;

      *parser = list_store_parser;
      *parser_data = data;

      return TRUE;
    }
  else if (strcmp (tagname, "data") == 0)
    {
      gint n_columns = ctk_list_store_get_n_columns (CTK_TREE_MODEL (buildable));
      if (n_columns == 0)
        g_error ("Cannot append data to an empty model");

      data = g_slice_new0 (SubParserData);
      data->builder = builder;
      data->object = G_OBJECT (buildable);
      data->values = g_new0 (GValue, n_columns);
      data->colids = g_new0 (gint, n_columns);
      data->columns = g_new0 (ColInfo*, n_columns);
      data->column_types = CTK_LIST_STORE (buildable)->priv->column_headers;
      data->n_columns = n_columns;
      data->last_row = 0;
      data->domain = ctk_builder_get_translation_domain (builder);

      *parser = list_store_parser;
      *parser_data = data;

      return TRUE;
    }

  return FALSE;
}

static void
ctk_list_store_buildable_custom_tag_end (CtkBuildable *buildable G_GNUC_UNUSED,
                                         CtkBuilder   *builder G_GNUC_UNUSED,
                                         GObject      *child G_GNUC_UNUSED,
                                         const gchar  *tagname,
                                         gpointer     *parser_data)
{
  SubParserData *data = (SubParserData*)parser_data;

  if (strcmp (tagname, "columns") == 0)
    {
      g_slist_free (data->column_type_names);
      g_slice_free (SubParserData, data);
    }
  else if (strcmp (tagname, "data") == 0)
    {
      int i;
      for (i = 0; i < data->n_columns; i++)
        {
          ColInfo *info = data->columns[i];
          if (info)
            {
              g_free (info->context);
              g_slice_free (ColInfo, info);
            }
        }
      g_free (data->colids);
      g_free (data->columns);
      g_free (data->values);
      g_slice_free (SubParserData, data);
    }
}