Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « MonoDevelop.GtkCore2 « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8235e70571935ea589681bf87cf8626a80a2702a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
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
2010-10-04  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* MonoDevelop.GtkCore2.csproj: 

2010-09-30  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* gtk-gui/gui.stetic: 

2010-09-22  Krzysztof Marecki  <marecki.krzysztof@gmail.com>
	Implements ReloadDesigner commands.
	* Makefile.am: 
	* MonoDevelop.GtkCore2.csproj:
	* MonoDevelop.GtkCore2.addin.xml:
	* MonoDevelop.GtkCore.Commands/GtkCommands.cs:
	* MonoDevelop.GtkCore.Commands/GladeCommands.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFileNodeBuilderExtension.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs:


2010-09-21  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* MonoDevelop.GtkCore2.csproj: 

2010-09-20  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* MonoDevelop.GtkCore2.addin.xml: 

2010-09-17  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* MonoDevelop.GtkCore2.csproj: 

2010-09-17  Krzysztof Marecki  <marecki.krzysztof@gmail.com>
	Reorganizing project pad menu items.
	* MonoDevelop.GtkCore2.csproj:
	* MonoDevelop.GtkCore2.addin.xml: 

2010-09-15  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* gtk-gui/gui.stetic:
	* MonoDevelop.GtkCore2.csproj:
	* MonoDevelop.GtkCore2.addin.xml:
	* MonoDevelop.GtkCore/GtkDesignInfo.cs:
	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectNodeBuilder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs:


2010-08-30  Krzysztof Marecki  <freefirma@gmail.com>

	* Makefile.am:
	* MonoDevelop.GtkCore2.csproj: 

2010-08-27  Krzysztof Marecki  <freefirma@gmail.com>

	* Makefile.am:
	* MonoDevelop.GtkCore2.csproj:
	* MonoDevelop.GtkCore2.addin.xml:
	* MonoDevelop.GtkCore2.xbuild.csproj: 

2010-08-17  Krzysztof Marecki  <freefirma@gmail.com>

	* Makefile.am:
	* MonoDevelop.GtkCore2.csproj:
	* MonoDevelop.GtkCore.addin.xml: 

2010-08-16  Krzysztof Marecki  <freefirma@gmail.com>

	* MonoDevelop.GtkCore.addin.xml: 

2010-08-15  Krzysztof Marecki  <freefirma@gmail.com>

	* MonoDevelop.GtkCore.addin.xml: 

2010-08-15  Krzysztof Marecki  <freefirma@gmail.com>

	* Makefile.am:
	* MonoDevelop.GtkCore2.csproj:
	* MonoDevelop.GtkCore.addin.xml: 

2010-08-09  Krzysztof Marecki  <freefirma@gmail.com>

	* Makefile.am:
	* MonoDevelop.GtkCore2.csproj:
	* MonoDevelop.GtkCore.addin.xml: Add GuiFolderBuilderNode extension

2010-08-07  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* MonoDevelop.GtkCore2.csproj: 

2010-08-04  Krzysztof Marecki  <freefirma@gmail.com>

	* MonoDevelop.GtkCore2.csproj: 

2010-07-27  Krzysztof Marecki  <freefirma@gmail.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: 
	Remove autoCommit argument 

2010-07-05  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* Makefile.am:
	* MonoDevelop.GtkCore2.csproj:
	* MonoDevelop.GtkCore.addin.xml: 

2010-06-28  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectNodeBuilder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFileExtension.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFileNodeBuilderExtension.cs:
	Fixes fo better file grouping in the project pad


2010-06-28  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* MonoDevelop.GtkCore2.csproj: 

2010-06-23  Krzysztof Marecki  <marecki.krzysztof@gmail.com>
	Draw action group icon
	* gtk-gui/gui.stetic:
	* MonoDevelop.GtkCore2.csproj:
	* MonoDevelop.GtkCore/GtkDesignInfo.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectNodeBuilder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFileExtension.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFileNodeBuilderExtension.cs:

2010-06-23  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* Makefile.am:
	* MonoDevelop.GtkCore2.csproj: 

2010-06-22  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* Makefile.am:
	* MonoDevelop.GtkCore2.csproj:
	* MonoDevelop.GtkCore.addin.xml:
	* MonoDevelop.GtkCore/GtkDesignInfo.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectNodeBuilder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFileExtension.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFileNodeBuilderExtension.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs:


2010-06-16  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* MonoDevelop.GtkCore.addin.xml: 

2010-06-15  Krzysztof Marecki  <marecki.krzysztof@gmail.com>
	 Changes in the project pad for displaying grouped component files

	* Makefile.am:
	* MonoDevelop.GtkCore2.csproj:
	* MonoDevelop.GtkCore.addin.xml:
	* MonoDevelop.GtkCore/GtkDesignInfo.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs:
	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFileNodeBuilderExtension.cs:


2010-06-09  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* gtk-gui/gui.stetic:
	* MonoDevelop.GtkCore2.csproj:
	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Add gtkx files to project
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: 

2010-06-07  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* gtk-gui/gui.stetic:
	* MonoDevelop.GtkCore/GtkDesignInfo.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: 

2010-06-02  Krzysztof Marecki  <marecki.krzysztof@gmail.com>

	* Makefile.am:
	* MonoDevelop.GtkCore2.csproj:
	* MonoDevelop.GtkCore/GtkDesignInfo.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: 
		Move generated partial class for components from gtk-gui.

2010-04-29  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Track
	  AddFilesToProject API.

2010-04-29  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs:
	  ViewContent widgets are now destroyed by the workspace
	  window.


2010-04-27  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: call
	  destroy on the container vbox during

2010-04-26  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore/ReferenceManager.cs: Found better work
	  around for the "gnome-sharp" reference issue.

2010-04-26  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore/ReferenceManager.cs: Fixed 'Bug 599335 -
	  Error CS0433: The imported type `Gtk.DeleteEventArgs' is
	  defined multiple times (CS0433)'.

2010-03-30  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Added
	  null check.

2010-03-22  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.GtkCore.addin.xml: Bumped MD version.

2010-03-18  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Use the
	  stock Visual Design layout as layout for stetic.

2010-03-18  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/ToolboxLoader.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Fix
	  race in SteticApp initialization.

2010-03-17  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* gtk-gui/gui.stetic:
	* MonoDevelop.GtkCore.csproj:
	* MonoDevelop.GtkCore.addin.xml:
	* MonoDevelop.GtkCore/GtkDesignInfo.cs:
	* MonoDevelop.GtkCore/ReferenceManager.cs:
	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs:
	* MonoDevelop.GtkCore/ProjectResourceProvider.cs:
	* MonoDevelop.GtkCore.Dialogs/BindDesignDialog.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs:
	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs:
	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs:
	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs:
	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs:
	* MonoDevelop.GtkCore.Dialogs/SelectRenamedClassDialog.cs:
	* MonoDevelop.GtkCore.Dialogs/ConfirmWindowDeleteDialog.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs:
	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs:
	* MonoDevelop.GtkCore.Dialogs/GtkDesignerOptionsPanelWidget.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs:
	  Merged MD.Projects into MD.Core, and MD.Projects.Gui,
	  MD.Core.Gui and MD.Components into MD.Ide.

2010-02-18  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.Dialogs/SelectRenamedClassDialog.cs:
	  Track api changes.

2010-02-09  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore.Dialogs/SelectRenamedClassDialog.cs:
	  Track API changes for lazy loading images.

2010-01-28  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.Dialogs/GtkFeatureWidget.cs: Track api
	  changes.

2010-01-28  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/generated.cs:
	* gtk-gui/MonoDevelop.GtkCore.Dialogs.GtkDesignerOptionsPanelWidget.cs:
	  Flush.

2010-01-26  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs:
	  Track DisplayBinding API.

2010-01-18  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.GtkCore.csproj:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Format
	  generated files using the MD formatter to ensure that the
	  generated text is the same for al platforms and
	  environments.

	* gtk-gui/gui.stetic: Use global:: for type references in
	  generated code. 

2009-12-17  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs:
	  Implement SupportsItem.

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: When
	  adding a stock gtk widget to a window there is no need to
	  update the references. Fixes bug #565492.

	* gtk-gui/generated.cs:
	* gtk-gui/MonoDevelop.GtkCore.Dialogs.GtkDesignerOptionsPanelWidget.cs:
	  Flush.

2009-12-01  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs:
	  Introduced the ConfigurationSelector class to all methods
	  that previously took a configuration name as string. This
	  eliminates the ambiguity between solution configuration
	  names and project configuration names.

2009-11-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.NodeBuilders\WindowsFolder.cs:
	  Implemented Equals/GetHashCode. Fixes bug #549902 - MD
	  crashes when adding a new gtk form.

2009-10-30  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.GtkCore.addin.xml: Bump MD version.

2009-10-21  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/generated.cs:
	* MonoDevelop.GtkCore.csproj:
	* gtk-gui/MonoDevelop.GtkCore.Dialogs.GtkDesignerOptionsPanelWidget.cs:
	  Flush.

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Use
	  typed collection instead of ArrayList.

2009-10-16  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore.NodeBuilders/StockIconsNodeBuilder.cs:
	  Handled icon loading failures.

2009-10-07  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.GtkCore.addin.xml: Bump MD version.

2009-09-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Route
	  commands to the text editor view. Fixes bug #536740 -
	  Expression evaluator unnecessarily in context menu.

2009-09-09  Christian Hergert  <chris@dronelabs.com>

	* libstetic/editor/Accelerator.cs: 
	* libstetic/editor/GroupPicker.cs: 
	* libstetic/editor/TextEditor.cs: 
	* libstetic/editor/SelectImageDialog.cs: 
	* libstetic/editor/NonContainerWarningDialog.cs: 
	* libstetic/editor/TextEditorDialog.cs: 
	* libstetic/editor/EditIconDialog.cs: 
	* libstetic/editor/IconSelectorMenu.cs: 
	* libstetic/editor/Image.cs: 
	* libstetic/editor/ActionGroupEditor.cs: 
	* libstetic/editor/StringArray.cs: 
	* libstetic/editor/EditIconFactoryDialog.cs: 
	* libstetic/editor/SelectIconDialog.cs: 
	* MonoDevelop.GtkCore.Dialogs/SelectRenamedClassDialog.cs: 
	* MonoDevelop.GtkCore.Dialogs/BindDesignDialog.cs: 
	* MonoDevelop.GtkCore.Dialogs/ConfirmWindowDeleteDialog.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Fixes to
	  make windows and dialogs Transient to either their parent
	  window/dialog or the MD root window (when applicable).

2009-09-01  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/ProjectResourceProvider.cs: Use real
	  resource Ids instead of file names. Fixes bug #528309 -
	  Button Icons are not displayed.

2009-09-01  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolder.cs: Store the
	  GuiBuilderProject on which the ChangedEvent was subscribed,
	  and use that reference when unsubscribing on Dispose. This
	  is required because the GuiBuilderProject bound to a project
	  may change. Fixes bug #525421 - Removing gtk-sharp reference
	  from a project causes it to not function properly.

2009-08-31  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.addin.xml: Don't use the text editor
	  display binding id as reference for registering the designer
	  view. Use DefaultDisplayBinding instead. Removed unused
	  supportedFormats attribute.

2009-08-26  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/gui.stetic: Update gtk# dependency.

2009-08-26  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.csproj: Updated dependencies. We now
	  depend on gtk# 2.12.8, Mono 2.4, and Mono.Addins 0.4.

2009-08-24  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs:
	  Added support for saving and restoring the status of the
	  designer, including the undo queue. This allows implenting
	  ISupportsProjectReload.

2009-08-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.NodeBuilders/FolderNodeBuilder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/GuiBuilderProjectNodeBuilder.cs:
	  Remove unused files.

2009-08-13  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/ReferenceManager.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ToolboxLoader.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Use the
	  new AssemblyContext class to query and resolve assemblies.

2009-08-06  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.GtkCore.csproj:
	* MonoDevelop.GtkCore/Counters.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Added
	  some performance counters.

2009-07-21  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDocumentOutline.cs:
	  Track api changes.

2009-07-01  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: No more
	  missing IntPtr constructor exceptions.

2009-06-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/ProjectResourceProvider.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Use the
	  new DesktopService instead of PlatformService.

2009-06-15  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.GtkCore/ReferenceManager.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ToolboxLoader.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Track
	  assembly lookup APIs.

2009-06-09  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore\ProjectResourceProvider.cs:
	  GetMimeTypeForUri doesn't really support uris.

2009-06-03  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/ReferenceManager.cs:
	  GetGtkAssemblyVersion is expected to return the version and
	  token, not only the version.

2009-05-28  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore\ReferenceManager.cs: Don't get the
	  package version from the gtk# package. Instead, get it from
	  the first version numbers of the gtk-sharp assembly. That's
	  necessary because in windows there is no gtk# package.

2009-05-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs:
	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs:
	  Workaround for what seems to be a mcs bug. Looks like it
	  can't properly resolve the implicit conversion of null to
	  string.

2009-05-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore\GtkDesignInfo.cs:
	* MonoDevelop.GtkCore.GuiBuilder\GuiBuilderWindow.cs:
	* MonoDevelop.GtkCore.GuiBuilder\GuiBuilderProject.cs: Use the
	  new FilePath class for handling file and directory paths.

2009-05-07  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Don't
	  create a new drop target list. Use the one defined by
	  Stetic.

2009-04-29  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.csproj: Don't require a specific gtk#
	  version.

2009-04-29  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore.addin.xml: gui designer is now before
	  the text editor (wrong text editor id).

2009-04-29  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs:
	  Track API changes.

2009-04-29  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs:
	  Track API changes.

2009-04-28  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/ReferenceManager.cs: Remove vte-sharp
	  from the gnome libs list, since it now has its own package.

2009-04-27  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore/GtkDesignInfo.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Track
	  API changes.

2009-04-23  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs:
	  Removed unused namespace.

2009-04-20  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs:
	* MonoDevelop.GtkCore.Dialogs/SelectRenamedClassDialog.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs:
	  Renamed PixbufService to ImageService.

2009-04-20  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs:
	* MonoDevelop.GtkCore.Dialogs/SelectRenamedClassDialog.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs:
	  Track API changes.

2009-04-16  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/ReferenceManager.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ToolboxLoader.cs: Moved
	  SystemAssemblyService and related classes to the namespace
	  MonoDevelop.Core.Assemblies.

2009-04-15  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.GtkCore.addin.xml: Bump MD version.

2009-04-15  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/GtkDesignInfo.cs:
	* MonoDevelop.GtkCore/ReferenceManager.cs:
	* MonoDevelop.GtkCore.Dialogs/GtkFeatureWidget.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ToolboxLoader.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs:
	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs:
	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs: Add
	  support for multiple target runtimes.

2009-03-17  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs:
	  Track API changes.

2009-03-10  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: When the stetic files
	  are generated for the first time, ensure that their write
	  date is < the write date of the .stetic file, otherwise they
	  won't be regenerated when building. Fixes bug #483970 -
	  [Regression] Default C# Gtk# app no longer builds.

2009-03-03  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/gui.stetic: Flush.

2009-03-02  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs:
	  Don't try to generate files when not building inside the
	  IDE.

2009-02-27  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: In
	  ForceCodeGenerationOnBuild, force a rebuild of the project
	  too. Fixes bug #472683.

2009-02-26  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.csproj: Flush.

2009-02-26  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/ProjectResourcesProvider.cs: lookup mime
	type and use more specific ResourceInfo ctor. [Fixes #475820]

2009-02-26  Mike Kestner <mkestner@novell.com> 

	* libsteticui/WidgetDesignerBackend.cs: implement Delete key 
	support.  [Fixes #470637]

2009-02-26  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: Added
	  explicit "Misc" category for localization.

2009-02-26  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: Worked on
	  propertygrid localization.

2009-02-25  Mike Kestner <mkestner@novell.com> 

	* libsteticui/ApplicationBackend.cs: Reload the registry libraries
	in LoadLibraries, since adding a library doesn't necessarily refresh
	an out-of-date previously registered library.
	* libsteticui/CecilWidgetLibrary.cs: enhance NeedsReload check to 
	use a cache refresh and the new change notification so that the
	library stays 'dirty' until it's reloaded.
	* libsteticui/LibraryCache.cs: add change notification for cache items.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: do an update
	of the steticapp libs even if the list hasn't changed in case the 
	contents of any of them have changed.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: check for 
	'dirty' references when regenerating code. [Fixes #472683]

2009-02-24  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: only touch the design file
	when forcing rebuilds.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: don't regen
	if design file and generated files have equal timestamps to avoid
	regenerations on fresh checkouts. [#478894]

2009-02-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.addin.xml:
	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/StockIconsNodeBuilder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs:
	  Track merge of the project pad context menu.

2009-02-18  Mike Kestner <mkestner@novell.com> 

	* libstetic/wrapper/ScrolledWindow.cs: when the child viewport itself
	is being replaced, don't try to remove the viewport from itself.
	* libstetic/wrapper/Viewport.cs: add case for when placeholders are
	being replaced by scrollable widgets to insert the new child directly
	into the parent scrolled window. [Fixes #404861]

2009-02-18  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs: Fix
	  crash when the project's gtk# is not installed.

2009-02-17  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.GtkCore.csproj: Set correct resource name for
	  DrawingArea template.

2009-02-17  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/ReferenceManager.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Track api
	  changes.

2009-02-13  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am: Fix build. Looks like the makefiles can't cope 
	  with resources with IDs.

2009-02-13  Mike Kestner <mkestner@novell.com> 

	* Makefile.am: add template resource
	* MonoDevelop.GtkCore.addin.xml: ditto.
	* templates/DrawingArea.xft.xml: new DrawingArea subclass template
	with stubs for OnExposeEvent, OnButtonPressEvent, OnSizeRequested,
	OnSizeAllocated, and ctor. Helps speed up the development of custom
	drawn widgets.  [Fixes #472665]

2009-02-11  Mike Kestner <mkestner@novell.com> 

	* libstetic/Registry.cs: account for reloading of the coreLib,
	since this can happen when dogfooding MD. [Fixes #365983]

2009-02-07  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.GtkCore.csproj: Remove a local-copy ref.

2009-02-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.mds:
	* MonoDevelop.GtkCore.mdp:
	* MonoDevelop.GtkCore.csproj: Migrated to MSBuild file format.

2009-02-05  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* gtk-gui/gui.stetic:
	* gtk-gui/generated.cs:
	* MonoDevelop.GtkCore.mdp:
	* MonoDevelop.GtkCore.addin.xml:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs:
	* MonoDevelop.GtkCore.Dialogs/GtkDesignerOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.GtkCore.Dialogs.GtkDesignerOptionsPanelWidget.cs:
	  Added option for enabling/disabling auto-switch of the GUI
	  builder layout. Disabled from now on by default.

2009-02-04  Mike Kestner <mkestner@novell.com> 

	* libstetic/wrapper/objects.xml: explicit default values for Table
	NRows and NCols values so they don't default to 1.  Fixes #471242.

2009-02-03  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.GtkCore.addin.xml: Bump MD version.

2009-02-02  Mike Kestner <mkestner@novell.com> 

	* libstetic/PropertyDescriptor.cs: null guard the ValueToString
	formatting for string arrays.

2009-02-02  Mike Kestner <mkestner@novell.com> 

	* libstetic/PropertyDescriptor.cs: handle empty string lists
	* libstetic/wrapper/ComboBox.cs: some more null guarding for Items.
	[Fixes #471244]

2009-01-30  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs: Propagate a
	policy parent SolutionItem through project/file creation so that
	policies can always be resolved correctly.

2009-01-26  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.GtkCore.mdp:
	* libsteticui/libsteticui.mdp: Flush project format changes.

2009-01-26  Mike Kestner <mkestner@novell.com> 

	* libstetic/wrapper/ActionTree.cs: guard against removing unsaved
	actions.  [Fixes #443472]

2009-01-22  Mike Kestner <mkestner@novell.com> 

	* libstetic/editor/StringArray.cs: display "(Collection)" in the
	label instead of a joined list on \n which displays garbage chars.
	This approach is consistent with another very popular IDE. ;-)
	* libstetic/wrapper/objects.xml: use Editor.StringArray for the Items
	property of ComboBox.
	* libstetic/wrapper/ComboBox.cs: switch Items to a string[].  Luckily
	this is backwards compat since we currently saved string[] as a newline
	join of the member strings.  [Fixes #405396]

2009-01-22  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.addin.xml: Don't serialize the GtkDesignInfo
	element when it is empty.

2009-01-14  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Added missing
	nullref check.

2009-01-13  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: adds a
	FileAddedToProject handler which scans the file for classes and
	checks the deleted-designs cache for matches to restore to the
	project.

2009-01-13  Mike Kestner <mkestner@novell.com> 

	* libsteticui/ProjectBackend.cs (RemoveWidget): export the widget
	to a deleted-designs dir for later recovery if necessary. Should
	also decide on some cleanup mechanism to remove old designs and
	automate recovery in the move case if possible.  Or we can wait for
	1wpf which should solve the move case more cleanly.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: reenable
	OnFileRemovedFromProject handler.  Revamp to use a ParseDocument of
	the removed file to scan for removed classes to kill.
	[Fixes #366392]

2009-01-09  Mike Kestner <mkestner@novell.com> 

	* libsteticui/Project.cs: forward isInternal to the backend in
	AddWidgetLibrary.

2009-01-08  Lluis Sanchez Gual  <lluis@novell.com>

	* libsteticui/LibraryCache.cs: Don't ignore internal classes when
	looking for widgets. If a widget is internal, set the "internal" flag
	to true. Don't abort AddObjects if there is an assembly resolution
	error.

2009-01-08  Mike Kestner <mkestner@novell.com> 

	* libsteticui/LibraryCache.cs : delay cache directory creation until
	files are going to be written to it.

2009-01-08  Lluis Sanchez Gual  <lluis@novell.com>

	* libsteticui/CecilWidgetLibrary.cs: Don't try to resolve full assembly
	paths.

2008-12-18  Mike Kestner <mkestner@novell.com> 

	* libstetic/editor/Flags.cs : fix cs0030 under new mcs.
	* libstetic/editor/FlagsSelectionDialog.cs : fix cs0030 under new mcs.
	* libstetic/editor/ResponseId.cs : fix cs0030 under new mcs.

2008-12-13  Mike Kestner <mkestner@novell.com> 

	* libstetic/wrapper/Container.cs: generate tooltips based on the target
	version, using the new Tooltip API for >= 2.12.  Fixes #372015.

2008-12-12  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/WidgetParser.cs: Properly search for subclasses of
	Gtk.Widget.

2008-12-12  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.mdp:
	* libsteticui/libsteticui.mdp: All projects now require fx 3.5.

2008-12-11  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Remove the mono
	version number comment from the generated files.

2008-12-11  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/ReferenceManager.cs: Track API changes.

2008-12-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDocumentOutline.cs: Use an
	Alignment as the concrete Bin instead of custom InvisibleFrame.

2008-12-09  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.mdp: Don't require a specific version of
	Mono.Addins.

2008-12-07  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/WidgetParser.cs: Optimized GetToolboxItems.

2008-12-07  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/WidgetParser.cs:
	* MonoDevelop.GtkCore/ObjectsDocument.cs: Getting the list of widgets is
	an expensive operation. It shouldn't be a property.

2008-12-02  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am:
	* AssemblyInfo.cs:
	* MonoDevelop.GtkCore.mdp: Add AssemblyInfo.cs files that are
	autogenerated from the addin manifests.

2008-12-01  Mike Kestner <mkestner@novell.com> 

	* libstetic/wrapper/objects.xml: move ToggleButton ahead of CheckButton
	and add ToggleButton signal item group to CheckButton.  Remove toggled
	signal from RadioButton since it inherits it from CheckButton.
	[Fixes #450237]

2008-11-25  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/GtkCoreService.cs: refactor the default and 
	supported version checks into the ReferenceManager, with all the other
	package and assembly code.
	* MonoDevelop.GtkCore/ReferenceManager.cs: refactored default and 
	supported version properties. 
	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs: use new api.
	* MonoDevelop.GtkCore.Dialogs/GtkFeatureWidget.cs: use new api.
	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs: use new api.

2008-11-23  Mike Kestner <mkestner@novell.com> 

	* *: I've typed lib/stetic/libstetic(ui) a few too many times.

2008-11-18  Mike Kestner <mkestner@novell.com> 

	* */Makefile.am: break the gnome/gconf-sharp dependencies.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: set up
	callbacks to the PlatformService for MIME resolution and showing
	urls.

2008-11-11  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: use the 
	new ForceUpdate method on the ProjectDom returned by GetParserContext
	to ensure a fully updated database.

2008-11-11  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: null guarding for
	all the things that can possibly go wrong with the parse in 
	GetClass.

2008-11-10  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Create the
	formInfos list when the project is loaded. This is necessary since
	the list is destroyed when the project is unloaded. Fixes bug #Bug
	431723 - Cannot build GTK applications with sln format.

2008-11-06  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs:
	revert the context menu changes. Don't show them if the project has no
	gtk-sharp ref, only add the templates to the dialog, per Lluis.

2008-11-06  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs:
	show Add Widget|Window|Dialog|ActionGroup template items in the context
	menu and Add File dialog even when the project has no Gtk# reference.

2008-11-05  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: needed to revert
	the >= to <= change from the 440435 fix since the refmgr is now 
	reporting TargetGtkVersion without Version=.  oops.

2008-11-05  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/ReferenceManager.cs: strip Version= out of
	TargetGtkVersion.

2008-11-05  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.addin.xml: Bump MD version.

2008-10-30  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/ReferenceManager.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: 
	switch to a x.y TargetGtkVersion obtained by parsing the gtk-sharp
	reference version. Invert the version comparison in the toolboxitem
	filter.  We want toolbox items that are less than the project target
	version, not greater.  Fixes #440435.

2008-10-30  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Don't notify the
	file has changed unless the changes are saved to disk. Fixes bug
	#430497 - Widget names created in Stetic not available for
	autocomplete.

2008-10-29  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs (ShowPage): only
	regenerate the dummy structure when switching to the source page.

2008-10-28  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/ReferenceManager.cs: switch default updating
	to use the current assembly StoredReference version.  Avoids problems
	when the stored version has no corresponding installed package.
	Fixes #436246.

2008-10-27  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: don't store
	configuration on Project Save.  Avoids a crash due to file availability
	when saving config while loading and it's extraneous since we store
	the config on app exit and it contains no project specific props.

2008-10-22  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs (HasDesignedObjects): guard
	against null projects.

2008-10-21  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs (HasDesignedObjects): don't
	instantiate just to get the SteticFile. Avoids project file garbage.
	[Fixes #436201]

2008-10-21  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: guard against null
	documents returned from parse.  I think this is related to the old
	ErrorsDuringCompile check that was commented with the new parser port.
	[Fixes #436998]

2008-10-05  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: fixed TODO.

2008-10-03  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding:
	rework GetWindow method. now uses the ParsedDocument for a requested 
	file to check if any of its types have a GuiBuilderWindow.
	The existing method of walking the project windows list and using 
	the ProjectDom database to lookup their file locations is susceptible
	to timing problems due to imcomplete parse databases.  This method is
	probably slightly more efficient as well.

2008-10-01  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs,
	  MonoDevelop.GtkCore/ProjectResourceProvider.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Track API.

2008-09-23  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: bandaid to
	avoid exceptions when removing non-existent buttons.  Fixes #377414.

2008-09-23  Mike Kestner <mkestner@novell.com> 

	* lib/stetic/libsteticui/CecilWidgetLibrary.cs: don't hold assembly
	reference beyond load operation.  Recreate it on each load so we are
	always accessing the current assembly instance.  Only access cache 
	using filename.  Ensure Class description lookups cause spew to 
	console.
	* lib/stetic/libsteticui/LibraryCache.cs: enhance the path lookup
	logic in Refresh to avoid some churn on named lookups.
	* lib/stetic/libsteticui/ProjectBackend.cs: reload library if 
	necessary before getting component types.  Fixes #427334.

2008-09-17  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.mdp: Updated projects.

2008-09-15  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCode.GuiBuilder/GtkProjectServiceExtension.cs:
	add the project stetic file to any generation warnings produced.
	Fixes #373244.

2008-09-12  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.mdp, lib/libstetic.mdp, lib/gtk-gui/generated.cs,
	  gtk-gui/generated.cs: Updated generated code.

2008-09-12  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs,
	  MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs,
	  MonoDevelop.GtkCore/WidgetParser.cs: Track api changes.

2008-09-11  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Changes caused by
	  interface changes.

2008-09-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs,
	  MonoDevelop.GtkCore.NodeBuilders/StockIconsNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/ProjectNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs: Moved
	  the extensible tree view to its own directory.

2008-08-27  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/WidgetFileDesciptionTemplate.cs: perform a 
	project save after the file insertions and updates.  This seems
	suboptimal, since it would probably be better to mark the project
	dirty and let the user save the project, but until we switch to
	one-widget-per-design-file, we probably need to save the project
	automatically to avoid problems.
	Fixes #385712.

2008-08-27  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs:
	Restrict to DotNetProjects and verify ProjectFolders are for DNPs.
	Fixes #412448.

2008-08-22  Mike Kestner <mkestner@novell.com> 

	Fixes bug #413275 and delays more GtkDesignInfo-related project file 
	churn.
	* MonoDevelop.GtkCore/GtkCoreService.cs: init the refmgr on startup.
	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Remove targetVersion field and
	associated prop.  Move reference updating logic to Ref Manager. Target
	Version is now exclusively tracked via reference version by the
	ReferenceManager.
	* MonoDevelop.GtkCore/ReferenceManager.cs: new class to encapsulate all
	reference management behaviors, from responding to user add removes to
	automated updates for designer projects.
	* MonoDevelop.GtkCore.Dialogs/GtkFeatureWidget.cs: only show feature
	for projects which support refactoring, since it advertises designer
	support and that's not available without refactoring yet. Use refmgr
	for version updates.
	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionsPanel.cs: use refmgr 
	for version info and suppress gettext options if no designed objects
	exist.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: use refmgr for 
	target version. 

2008-08-20  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs: Remove
	  the "resources folder" feature. Resources are now shown in the
	  solution tree like any other files. For a detailed explanation see
	  "Bug 381430 - [PATCH] Display resource files in main project tree".

2008-08-19  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: revert a silly
	change that was causing explicit paths to be inserted into gui.stetic
	files for gac references.  [Fixes #412960]

2008-08-19  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: fixed issue in
	  GetSourceCodeFile.

2008-08-19  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: fixed some
	  possible nullrefs.

2008-08-19  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.mdp, lib/libsteticui.mdp: re-set project
	  references (fix some libstetic.dll not found issue,  localcopy ==
	  true was missing).

2008-08-18  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: make HasDesignedObjects
	and SupportsDesigner static so that we can defer a few more instance
	creation scenarios.
	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs: 
	* MonoDevelop.GtkCore.Dialogs/GtkFeatureWidget.cs: 
	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: 
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs: 
	* MonoDevelop.GtkCore.NodeBuilders/ProjectNodeBuilder.cs: 
	  Update to new static API.

2008-08-08  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Add a null
	  check.

2008-08-04  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: fixed possible
	  null references in the unload method.

2008-08-01  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Fix crash when looking for
	  designed objects in a project that doesn't support it.

2008-07-31  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Fixed some
	  issues.

2008-07-29  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs,
	  MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Translated
	  old code to new dom.

2008-07-29  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs,
	  MonoDevelop.GtkCore/ObjectsDocument.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Changes for converted
	  refactoring infrastructure.

2008-07-27  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs,
	  MonoDevelop.GtkCore/WidgetParser.cs,
	  MonoDevelop.GtkCore/ObjectsDocument.cs,
	  MonoDevelop.GtkCore.Dialogs/SelectRenamedClassDialog.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ClassUtils.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Worked on code
	  completion/new dom.

2008-07-24  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: get paths
	for gac references to simplify the lookup in stetic.

2008-07-23  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs:
	Use HasDesignedObjects not SupportsDesigner.

2008-07-23  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: delay creation of guifolder
	until GuiBuilderProject is accessed. Refactor Bind into a Project
	property to gather all the connect/disconnects together. Add new
	HasDesignedObjects prop for when SupportsDesigner doesn't cut it.
	* MonoDevelop.GtkCore.NodeBuilders/ProjectNodeBuilder.cs: use new
	HasDesignedObjects prop.
	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs:
	* MonoDevelop.GtkCore.Dialogs/GtkFeatureWidget.cs: don't 
	need to update the folder for these options any more.
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs: get
	GuiBuilderProject from design info directly. 
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: kill 
	BeforeCompile handler and GetGuiBuilderProject method. Use new
	HasDesignedObjects to control code generation.
	* MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs: kill 
	GenerateSteticCode field. It was always set to true. Use new
	HasDesignedObjects prop to control generation.

2008-07-22  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Connect to project file
	events and trigger objects.xml updates. Translate a confirm button
	label.  Require AddAttribute refactoring.
	* MonoDevelop.GtkCore/ObjectsDocument.cs: new class reinstating some
	old document updating code and adding some new.  Inserts ToolBoxItem
	and Category attrs into sources for a first-time "upgrade" to enable 
	the attr-sync feature now controlled by a root attribute on the 
	document.
	* MonoDevelop.GtkCore/WidgetParser.cs: new class reinstating some
	old parsing code and adding some new.  This will become the home
	for all source parsing in the addin. Refactoring to come...
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Add WidgetParser
	prop.  Remove Debug spew.
	
2008-07-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs,
	  MonoDevelop.GtkCore/GtkDesignInfo.cs: Moved serialization engine to
	  MonoDevelop.Core. Use new syntax for specifying attribute scope.

2008-07-15  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: add an updatingVersion 
	state to prevent warning when we are adjusting reference versions.

2008-07-15  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: add a user confirmation for
	disabling the designer on reference removal.  Leave the stetic.gui
	and objects.xml files on disk, though we still remove them from the 
	project.

2008-07-14  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Fixed possible
	  null reference.

2008-07-10  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs (FromProject): return an 
	empty instance for non-DotNetProjects which will report false
	on SupportsDesigner.

2008-07-10  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore/GtkCoreService.cs: Gutted.  Moved everything
	that took a Project parameter to GtkDesignInfo. Removed all the 
	enable/disable/get info methods replaced by GtkDesignInfo.FromProject.
	Killed all the objects file updating. Moved designer support checks
	to DesignInfo.
	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Add FromProject static
	method to replace GtkCoreService.GetGtkInfo. Remove ExportedWidgets
	and IsWidgetLibrary functionality. Enable and disable designer based
	on presence of gtk-sharp reference on projects. Refactor/move code 
	generation to GuiBuilderProject from UpdateGtkFolder. Kill 
	GeneratePartialClasses since it's a simple project property access 
	and all users of GtkDesignInfo access it via the project. Moved 
	Refactory checks from GtkCoreService to encapsulate SupportsDesigner.
	Fix Reference updating checks for Mono.Posix, since the 
	StoredReference returns a simple name for it.
	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs: switched to 
	FromProject api.  Killed ExportedWidget handling.
	* MonoDevelop.GtkCore.Dialogs/GtkFeatureWidget.cs: removed widget
	library checkbox. s/Gtk#/GTK# for consistency. Updated to new
	DesignInfo API.
	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs: removed
	all the Exported Widgets and WidgetLibrary tab stuff, simplified to
	a vbox and hand-written to remove glade taint.
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: 
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs: 
	switched to new DesignInfo API.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: 
	switched to new DesignInfo API. moved gui folder file generation
	here instead of DesignInfo iterating over builder properties.
	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: 
	Added category mangling for ToolboxItems so that they are placed
	by project.
	* MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs: 
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs: 
	* MonoDevelop.GtkCore.NodeBuilders/ProjectNodeBuilder.cs: 
	* MonoDevelop.GtkCore.NodeBuilders/StockIconsNodeBuilder.cs: 
	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolder.cs: 
	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs: 
	switched to new DesignInfo api.
	* templates/Widget.xft.xml: add ToolboxItem attr.
	* templates/WidgetPartial.xft.xml: add ToolboxItem attr.

2008-06-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml: Bump MD version.

2008-05-26  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Explicitly set the resource ids
	  for gui.stetic and objects.xml, since msbuild uses different
	  default ids.

2008-05-26  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs: Track api
	  changes.

2008-05-22  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml: Merged the extension points for
	  project and solution option panels into a single extension point. A
	  single extension point will now be used for all kinds of items.
	  Extension conditions can be used to make panels visible only for
	  some specific item types.

2008-05-22  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs:
	  Replaced ICompilerResult/DefaultCompilerResult/CompilerResults by a
	  new BuildResult class, which has owner information at error level,
	  so it is possible to know which project generated an error when
	  building a solution. Updated Task and TaskService to use the new
	  owner information.

2008-05-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs,
	  MonoDevelop.GtkCore/GtkCoreService.cs,
	  MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs,
	  MonoDevelop.GtkCore/ProjectResourceProvider.cs,
	  MonoDevelop.GtkCore.addin.xml,
	  MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs,
	  MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs,
	  MonoDevelop.GtkCore.mdp,
	  MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs,
	  MonoDevelop.GtkCore.Dialogs/GtkFeatureWidget.cs,
	  MonoDevelop.GtkCore.mds, lib/libsteticui.mdp, lib/libstetic.mdp,
	  Makefile.am,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: New project
	  model changes.

2008-05-20  Mike Kestner <mkestner@novell.com> 

	* templates/Widget.xft.xml:
	* templates/WidgetPartial.xft.xml:
	Mark the custom widgets Visible=false to conform to the Gtk convention
	of widgets being shown explicitly.  [Fixes #364985]

2008-05-15  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: Track API. Mark up
	  for property grid.

2008-05-13  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: use new
	Stetic.ApplicationFactory api.

2008-05-07  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: Track API.

2008-04-30  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore.addin.xml, MonoDevelop.GtkCore.mdp, gtk-gui,
	  gtk-gui/generated.cs, gtk-gui/gui.stetic, Makefile.am,
	  icons/pad-widget-tree-16.png,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDocumentOutline.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProjectPad.cs: Implement
	  IOutlinedDocument instead of custom pad. Set GTK# version to 2.8.

2008-03-07  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.mdp: Removed unneeded dependency.

2008-03-04  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: fixed bugfix (thanks
	  ankit)

2008-03-04  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: Fixed possible null
	  reference exception.

2008-03-04  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Worked on gnome hig
	  compliant alerts.

2008-03-01  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Fixed null ref.

2008-02-29  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Refactored content
	  interfaces

2008-02-28  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.mdp: Set correct makefile ver for files.

2008-02-27  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: Worked on category
	  support for the toolbox service.

2008-02-23  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.mdp, lib/libsteticui.mdp: Removed some unused glade
	  and gnome-sharp references (only the unused). But I'll continue to
	  remove glade, we need to lower the dependency tree a bit.

2008-02-22  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Added IViewContent
	  switching logic (but should be done centrally using the secondaryview
	  paradigmn).

2008-02-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Workaround for mono bug
	  #350432.

2008-02-20  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs: Handle the delete
	  key in TreeViewPad, so it will work event if the shortcut is not
	  defined.

2008-01-29  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml, MonoDevelop.GtkCore.mdp, Makefile.am,
	  icons/pad-widget-tree-16.png: Added widget tree icon.

2008-01-25  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml: Update MD version.

2008-01-23  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.Dialogs/BindDesignDialog.cs,
	  MonoDevelop.GtkCore.Dialogs/ConfirmWindowDeleteDialog.cs,
	  MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs: Made internal
	  some classes that don't need to be public.

2008-01-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Notify file changes
	  through the FileService.

2008-01-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Stetic code must be
	  generated in the GUI thread. Should fix bug #349505.

2008-01-15  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Feed default layout
	  name to Gettext for translation.

2008-01-15  Michael Hutchinson <mhutchinson@novell.com> 

	* templates/WidgetPartial.xft.xml, templates/Widget.xft.xml,
	  templates/WindowPartial.xft.xml, templates/ActionGroupPartial.xft.xml,
	  templates/Window.xft.xml, templates/ActionGroup.xft.xml,
	  templates/DialogPartial.xft.xml, templates/Dialog.xft.xml: Make template
	  categories translatable.

2008-01-08  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Added null check on the
	  result of UpdateFile. Should fix bug #352194.

2008-01-08  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs,
	  MonoDevelop.GtkCore.NodeBuilders/ProjectNodeBuilder.cs,
	  MonoDevelop.GtkCore/GtkDesignInfo.cs,
	  MonoDevelop.GtkCore/GtkCoreService.cs,
	  MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs,
	  MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs: Handle
	  projects which don't support the GTK# designer. Window and widget
	  generation options are hidden, and code is never generated. Fixes bug
	  #350632.

2007-12-14  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Don't update bindings if the
	  file has syntax errors. May fix bug #347590.

2007-12-12  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml: Bump add-in versions.

2007-12-12  Lluis Sanchez Gual <lluis@novell.com> 

	* Makefile.am: Update after build reorg.

2007-12-06  Geoff Norton  <gnorton@novell.com>

	* Makefile.am: Only build the GtkCore addin if we have gnome-sharp 
	  available.

2007-12-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.mdp, lib/libsteticui.mdp, lib/libstetic.mdp,
	  Makefile.am: Directory reorganization.

2007-11-20  Lluis Sanchez Gual <lluis@novell.com> 

	* gui.glade, MonoDevelop.GtkCore.Dialogs/BindDesignDialog.cs: Removed
	  Gnome.FileEntry.

2007-11-09  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs: Track
	  LoggingService API changes.

2007-11-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs: Use RootCombine
	  instead of CurrentOpenCombine when possible.

2007-10-29  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml: Bump MD version.

2007-10-29  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Fix nullref. Happens
	  when removing a project from a solution while one of the windows of that
	  project is open.

2007-10-25  Lluis Sanchez Gual <lluis@novell.com> 

	* templates/ActionGroup.xft.xml, templates/ActionGroupPartial.xft.xml,
	  templates/Dialog.xft.xml, templates/DialogPartial.xft.xml,
	  templates/Widget.xft.xml, templates/WidgetPartial.xft.xml,
	  templates/Window.xft.xml, templates/WindowPartial.xft.xml: Use tango
	  file icons. Removed obsolete icons.

2007-10-23  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.Dialogs/GtkFeatureWidget.cs: Track api changes. Added
	  Description property.

2007-10-23  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.mdp, lib/libstetic.mdp: Project file names updated by
	  change in MD path functions.

2007-10-22  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.mds, Makefile.am: Added custom command for updating
	  the Stetic sources.

2007-10-22  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml: Set a more meaningful category name for
	  addin commands.
	* MonoDevelop.GtkCore.mdp, MonoDevelop.GtkCore.mds: Updated.

2007-10-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: If the current selection
	  can't be deleted, just ignore the delete command, so the default handler
	  will be executed. Fixes bug #325440.

2007-10-16  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libstetic.mdp: Fix required gtk# version.

2007-10-12  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/StockIconsNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs,
	  MonoDevelop.GtkCore/GtkDesignInfo.cs,
	  MonoDevelop.GtkCore/GtkCoreService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: Applied changes that
	  were neccassary for to the new FileService.

2007-10-11  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs: Changed calls for
	  the new StringParser.

2007-10-10  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: In Bind(), don't subscribe the
	  NameChanged event at every call.
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: The designer needs to
	  be explicitely destroyed.

2007-10-03  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: No need to implement
	  IComparable; it's done in the base class now.

2007-09-27  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.Dialogs/GtkFeatureWidget.cs: Assign the selected
	  target gtk# version to the new project.

2007-09-21  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Use ProjectReference.StoredReference
	  rather than ProjectReference.Reference, in order to refer to the actual
	  stored reference string rather than a temporarily bumped version.

2007-09-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml: Bump MD version.

2007-09-20  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Implemented an
	  assembly resolver for the stetic app, so assembly widgets registered
	  with .pc files can be found.
	* MonoDevelop.GtkCore.GuiBuilder/ToolboxLoader.cs: If a widget dll belongs
	  to a package, store it as a package reference in the toolbox index.

2007-09-19  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Allow setting TargetGtkVersion to
	  DefaultGtkVersion when current value is null.

2007-09-19  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Don't touch GTK# assembly versions
	  when a target version is not set. Don't use gtkVersion=null to represent
	  default version.
	* MonoDevelop.GtkCore/GtkCoreService.cs: Set TargetGtkVersion on new
	  projects. Bump default version to 2.8.

2007-09-17  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore.mdp, lib/libsteticui.mdp, lib/libstetic.mdp,
	  lib/Makefile.am, MonoDevelop.GtkCore.mds, Makefile.am: Use projects for
	  imported stetic libraries.

2007-09-17  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Removed access to
	  Component object.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Remove unused method.

2007-09-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.Dialogs/SelectRenamedClassDialog.cs,
	  MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs,
	  MonoDevelop.GtkCore.Dialogs/BindDesignDialog.cs,
	  MonoDevelop.GtkCore.Dialogs/ConfirmWindowDeleteDialog.cs: Fix warnings.

2007-09-13  Michael Hutchinson <mhutchinson@novell.com> 

	* lib/stetic, Makefile.am, lib/Makefile.am: Build stetic from 
	  svn:externals.
	* lib/libsteticui.dll.config, lib/libstetic.dll.config,
	  lib/libstetic.dll, lib/libsteticui.dll: Removed.

2007-09-10  Michael Hutchinson <mhutchinson@novell.com> 

	* templates/WidgetPartial.xft.xml, templates/Widget.xft.xml,
	  templates/WindowPartial.xft.xml, templates/Window.xft.xml,
	  templates/ActionGroupPartial.xft.xml, templates/ActionGroup.xft.xml,
	  templates/DialogPartial.xft.xml, templates/Dialog.xft.xml: Remove
	  deprecated FileOptions element from templates.

2007-09-10  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Changed the way to
	  set the active designer (the api changed). Fixed some renaming issues.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProjectPad.cs: Track api changes.

2007-09-07  Michael Hutchinson <mhutchinson@novell.com> 

	* templates/Window.xft.xml: Oops, PartialTypeSupport should be set to
	  Disabled for non-partial window.

2007-09-07  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.GtkCore.mdp, Makefile.am: Updated.
	* MonoDevelop.GtkCore/GtkDesignInfo.cs,
	  MonoDevelop.GtkCore/GtkCoreService.cs: Use DotNetProject.UsePartialTypes
	  instead of custom setting.
	* MonoDevelop.GtkCore/WidgetFileTemplatePartialClass.cs,
	  MonoDevelop.GtkCore/WidgetFileTemplateFullClass.cs: No longer needed.
	* templates/WidgetPartial.xft.xml, templates/Widget.xft.xml,
	  templates/WindowPartial.xft.xml, templates/Window.xft.xml,
	  templates/ActionGroupPartial.xft.xml, templates/ActionGroup.xft.xml,
	  templates/DialogPartial.xft.xml, templates/Dialog.xft.xml: Use
	  PartialTypes condition instead of custom file template.

2007-09-04  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.
	  Includes fixes for bugs #82671, #82527, #82476, #81763 and #81238.

2007-08-31  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/PropertiesWidget.cs: Changes due to new
	  property infrastructure.

2007-08-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs,
	  MonoDevelop.GtkCore/GtkCoreService.cs: By default use the project name
	  as category name for new custom widgets.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.
	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: Don't show the full
	  name of widgets in the toolbar.

2007-08-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: In FindClass, make
	  sure the getUserClass parameter is taken into account when the found
	  class is not a multi-part class. Fixes bug #82258.

2007-08-09  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml: Removed the CommandService class.
	  Everything is done directly with CommandManager. Moved all extension
	  node types to MD.Components.

2007-08-09  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml,
	  MonoDevelop.GtkCore.NodeBuilders/StockIconsNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs,
	  MonoDevelop.GtkCore.mdp, Makefile.am: Reorganized the extension point
	  hierarchy. Embedded all add-in manifests as resources.
	* lib/libstetic.dll: Updated from stetic module.

2007-08-08  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Improved error
	  reporting.

2007-08-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Converted
	  DispatchService to a static class.

2007-08-01  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libstetic.dll: Updated.

2007-07-31  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Fixed some
	  problems with the target gtk version. It was not assigned to the
	  stetic project. Also fixed some stock icon rendering issues in
	  Stetic.

2007-07-31  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.
	  Includes a nullref fix.

2007-07-30  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll: Updated.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Layout switch
	  delay is not needed anymore.

2007-07-25  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs: Fix nullref
	  when gtk support is not enabled. Patch by Chris Howie.

2007-07-20  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs:
	  Don't try to use the CurrentNode property after adding the file,
	  since it may have changed. Should fix bug #82123.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from Stetic module.
	  Fixes bugs #81846 and #82144.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Fix window
	  source file lookup.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Use the new methods
	  for checking clipboard operations on the current selection.
	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: Include the
	  current project in the list of libraries to show in the toolbox.
	  Fixes bug #82125.

2007-07-10  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll: Updated. Fixes bugs 81977,
	  81810 and 82052.

2007-07-10  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Properly rename
	  fields when the widget name is changed. Fixes bug #81976.

2007-07-09  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProjectPad.cs: Update the
	  properties pad when the focus is on the widget tree pad. Fixes bug
	  #81971.

2007-07-05  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll: Updated from Stetic module.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Added null
	  check.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Track api changes
	  in DesignerSupport. When adding a project reference to a widget
	  library, take into account that widgets may be implemented in a
	  library different from the one providing the widget list.
	* MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: In
	  GetDynamicItems, only return widgets provided by libraries
	  referenced by the project. Don't return widgets from libstetic
	  since those are already included by default in the toolbox.
	  Implemented IToolboxDefaultProvider.

2007-07-03  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Changed a bit
	  because of the removal of custom collections in the Ide project.

2007-06-30 Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* gui.glade: Fixed capitalization.

2007-06-27  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/ToolboxLoader.cs: Don't show windows
	  in the toolbox.
	* lib/libstetic.dll, lib/libsteticui.dll: Updated from Stetic module.

2007-06-22  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll: Updated from Stetic module.

2007-06-20  Lluis Sanchez Gual <lluis@novell.com> 

	* gui.glade, MonoDevelop.GtkCore/GtkDesignInfo.cs,
	  MonoDevelop.GtkCore/GtkCoreService.cs,
	  MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs,
	  MonoDevelop.GtkCore.Dialogs/GtkFeatureWidget.cs: Allow selecting
	  the target GTK# version of the project.
	* MonoDevelop.GtkCore.addin.xml, MonoDevelop.GtkCore.mdp, Makefile.am,
	  MonoDevelop.GtkCore.GuiBuilder/ToolboxLoader.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: Implemented a
	  toolbox loader, which allows registering assemblies in the toolbox.
	  When a widget from a toolbox is dropped to a window, MD will now
	  add a reference to the required assembly.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.

2007-06-11  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll: One last update.

2007-06-11  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll: Updated from Stetic module.

2007-06-11  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/StockIconsNodeBuilder.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Set the import
	  file callback when editing project stock icons.
	* MonoDevelop.GtkCore/ProjectResourceProvider.cs: The GetResources
	  method only returns resource files now.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.

2007-06-06  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProjectPad.cs: Default pad
	  placement is now specified in the xml file.

2007-05-31  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore/GtkCoreService.cs: In GetBaseType, use
	  Project.GetWidgetTypes to get all registered wiget types, including
	  base widget types (which were not provided by GetComponentTypes).
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.
	  Includes fix for bug #81785.

2007-05-31  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore/GtkCoreService.cs: Don't include non-public
	  members to the objects.xml file.

2007-05-30  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.mdp: Updated.
	* MonoDevelop.GtkCore.Dialogs/GtkFeatureWidget.cs: Fix feature message.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from Stetic module.
	  Includes fixes for bugs #81761, #81758 and #81762.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs:
	  (UpdateLibraries) Properly check for library changes.

2007-05-23  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.
	  Fixes bugs #80783 and #81683.

2007-05-19  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.mdp, Makefile.am: Added new dependency.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from svn. Fixes bug
	  #81590.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: When selecting an
	  image file in the widget designer, import the file into the
	  project.

2007-05-18  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Added some delay
	  in the code that changes the workbench layout when selecting the
	  designer. Fixes bug #80963.

2007-05-17  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml, MonoDevelop.GtkCore.mdp, Makefile.am,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderPalettePad.cs: Removed old
	  palette pad.
	* MonoDevelop.GtkCore/GtkCoreService.cs: Set the 'internal' flag for
	  widgets implemented by private classes.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from svn module.
	  Fixes bugs #80875, #81261, #81365.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: If the project
	  is a library, add itself as an internal widget library, so widgets
	  with internal visibility will be shown.
	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: When saving a window,
	  use the visibility of the class to set the visibility of the
	  component. Together with all changes done in stetic, fixes bug
	  #80875.

2007-05-15  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs,
	  MonoDevelop.GtkCore/GtkDesignInfo.cs,
	  MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs,
	  MonoDevelop.GtkCore.Dialogs/ConfirmWindowDeleteDialog.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Track api changes in
	  Stetic.
	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs: Delay
	  library updating until really necessary.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.

2007-05-11  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.mdp: Copy the .addins.xml file to the output dir.

2007-05-11  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.mdp: Copy stetic dlls together with the assembly.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated.

2007-05-09  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.mdp, Makefile.am: Reference shared assemblies
	  from the correct location.

2007-05-04  Wade Berrier  <wberrier@novell.com> 
	* lib/libstetic.dll.config:
	* lib/libsteticui.dll.config:
	Fix os attribute formats (mono-config.c separates oses by comma, 
	and ignores or includes the whole string.)

2007-05-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml, MonoDevelop.GtkCore.mdp, Makefile.am:
	  Migration to Mono.Addins.

2007-04-26  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml, MonoDevelop.GtkCore.mdp,
	  MonoDevelop.GtkCore.Dialogs/GtkFeatureWidget.cs, Makefile.am:
	  Implemented project feature for enabling gtk# support in new
	  projects.
	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs: Use
	  Menu icon size in the project pad.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.

2007-04-18  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs: Show a
	  relative path in the window delete confirm dialog, since the
	  absolute path may take too much space.
	* MonoDevelop.GtkCore.mdp: Updated.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.
	* templates/DialogPartial.xft.xml, templates/Dialog.xft.xml: Add
	  Ok/Cancel buttons by default in new dialogs.

2007-03-28  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.
	  Includes fixes for bugs 81033, 81086, 81239, 81143, 81014 and
	  81015.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Allow pasting when
	  a placeholder is selected. Fixes bug #81246.

2007-03-28  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml,
	  MonoDevelop.GtkCore.NodeBuilders/StockIconsNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs,
	  MonoDevelop.GtkCore.mdp, Makefile.am, icons/image-x-generic.png:
	  Show a "Stock Icons" node in the User Interface folder. It's easier
	  to discover than the context menu option.
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs,
	  MonoDevelop.GtkCore.Commands/GladeCommands.cs: Added menu option
	  for opening the gtk# settings.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Don't crash if
	  the gtk-gui folder doesn't exist. Fixes bug #81152.
	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Hide the border
	  of the combined view notebook.

2007-03-08  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libstetic.dll: Updated from stetic module. Fixes NRE crash.

2007-03-08  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.
	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Fix null ref.

2007-03-06  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml: Register a new toolbox loader. Removed
	  old properties pads.
	* MonoDevelop.GtkCore.mdp, Makefile.am: Added reference to
	  MonoDevelop.DesignerSupport.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from svn module.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/PropertiesWidget.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs: Integrate Stetic
	  widgets in the main toolbox.
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs: Implement
	  ICustomPropertyPadProvider and return the Stetic property pad.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderPropertiesPad.cs: Renamed.
	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Fix warning.

2007-02-20  Lluis Sanchez Gual <lluis@novell.com> 

	Updated from Stetic module. Includes fix for bug #80864.

2007-02-20  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll: Updated from SVN. Fixes some
	  memory leaks and bug #79453.
	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Explicitely
	  destroy notebook children, since notebook doesnt do it because of a
	  gtk bug.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Some fixes in the
	  dispose code.

2007-02-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs: Use
	  ProjectOperations.SaveProject to save projects.

2007-02-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml: Change add-in versions to 0.13.

2007-02-15  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Fix nullref.
	* MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs: Log
	  error message.
	* Makefile.am, MonoDevelop.GtkCore.mdp: Synchronized MD project and
	  makefile.

2007-02-15  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Avoid throwing
	  delayed events after the project has been disposed.

2007-02-14  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Added missing
	  null check.

2007-02-14  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Ask for user
	  confirmation when reloading a designer only when the designer has
	  unsaved changes.

2007-02-14  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs,
	  MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/WindowsFolder.cs,
	  MonoDevelop.GtkCore/GtkDesignInfo.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Detect external
	  changes in the gui.stetic files, and reload it when it changes.
	  Take into account that the load of gui.stetic can fail. Added
	  several workarounds for this case.

2007-02-13  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll: Updated from SVN. Includes
	  fixes for bugs #80722, #79427 and #80127.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Store some
	  Stetic configuration in the MD properties.

2007-02-09  Lluis Sanchez Gual <lluis@novell.com> 

	* gui.glade, MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Added options
	  for enabling/disabling gtk support, and for gettext support.
	* MonoDevelop.GtkCore.addin.xml: Change options panel name.
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs: Make sure the
	  MD project is saved together with the stetic project, if necessary.
	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs,
	  MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs: Avoid saving
	  the MD project twice.
	* MonoDevelop.GtkCore.NodeBuilders/ProjectNodeBuilder.cs: If gtk
	  integration status changes for a project, refresh the tree.
	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolder.cs: Null check.
	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Added support for gettext and
	  gettext class options for generated code.
	* MonoDevelop.GtkCore/GtkCoreService.cs: Added events for notifying
	  when the gtk integration status changes for a project.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.
	* Makefile.am: distcheck fixes
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs,
	  MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: When a designer
	  project is disposed, hide the designer view in the editor.
	* MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs:
	  Factorized some code into GtkDesignInfo.

2007-02-07  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml: Make sure the code generation
	  extension is executed before the last step.
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs:
	  Hide the add window commands when the project is not DotNet
	* MonoDevelop.GtkCore.mdp, lib/libsteticui.dll, lib/libstetic.dll:
	  Updated.

2007-02-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Intercept calls
	  to the IPositionable interface, and show the editor page when
	  jumping to a line.

2007-02-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: When looking for
	  the window class, avoid returning the generated partial class.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Show the editor
	  page when jumping to a signal handler.

2007-02-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Warn the user if
	  the gtk-sharp-2 package can't be found. Some distros don't include
	  the .pc file in the gtk# package, only in the -devel package.

2007-02-02  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libsteticui.dll, lib/libstetic.dll: Updated from Stetic module.

2007-01-31  Lluis Sanchez Gual <lluis@novell.com> 

	* lib/libstetic.dll.config, lib/libsteticui.dll, lib/libstetic.dll,
	  lib/libsteticui.dll.config: Updated from Stetic module.

2007-01-29  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs,
	  MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs: Track api
	  changes in Document class.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated form Stetic module.
	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Removed
	  implementation of all text editor interfaces. Now the view
	  overrides GetContent and calls editor.GetContent when a requested
	  interface is not found.

2007-01-22  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.mdp: Updated.
	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Removed unused namespace.
	* MonoDevelop.GtkCore/GtkCoreService.cs: Use the new base-type property
	  to describe custom widgets. When looking for properties and events,
	  look in the base classes as well as in the widget class.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.
	* Makefile.am,
	  MonoDevelop.GtkCore.WidgetLibrary/ProjectClassDescriptor.cs,
	  MonoDevelop.GtkCore.WidgetLibrary/ProjectSignalDescriptor.cs,
	  MonoDevelop.GtkCore.WidgetLibrary/BaseWidgetLibrary.cs,
	  MonoDevelop.GtkCore.WidgetLibrary/AssemblyReferenceWidgetLibrary.cs,
	  MonoDevelop.GtkCore.WidgetLibrary/ProjectPropertyDescriptor.cs:
	  Removed unused files. All widget library functionality has been
	  moved to stetic.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Removed all
	  widget library management, which has been moved to Stetic.
	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Added some null checks.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Use the new way
	  of managing dependencies in projects.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs,
	  templates/WindowPartial.xft.xml, templates/Window.xft.xml: The
	  window constructor now takes the window type.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Some gui
	  improvements and added some null checks.

2007-01-17  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Don't crash if the
	  designer can't be loaded for some reason.

2007-01-15  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml,
	  MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs,
	  MonoDevelop.GtkCore/GtkCoreService.cs,
	  MonoDevelop.GtkCore/WidgetFileTemplatePartialClass.cs,
	  MonoDevelop.GtkCore/WidgetFileTemplateFullClass.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs,
	  MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs,
	  templates/WidgetPartial.xft.xml, templates/Widget.xft.xml,
	  templates/WindowPartial.xft.xml, templates/Window.xft.xml,
	  templates/ActionGroupPartial.xft.xml,
	  templates/ActionGroup.xft.xml, templates/DialogPartial.xft.xml,
	  templates/Dialog.xft.xml: Implemented support for generating code
	  in partial classes.
	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs: Use the
	  correct method for saving the project.
	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolder.cs: Refresh the user
	  interface folder when the gui project is reloaded.
	* MonoDevelop.GtkCore.mdp: Updated.
	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Added support for partial
	  classes. In the GuiBuilderProject property, don't update the
	  gtk-gui folder since this call may change the contents of the
	  project, and weird things happen when called by the project pad to
	  fill the tree.
	* lib/libsteticui.dll, lib/libstetic.dll: Updated from stetic module.
	* Makefile.am: Added new files.
	* MonoDevelop.GtkCore.WidgetLibrary/BaseWidgetLibrary.cs,
	  MonoDevelop.GtkCore.WidgetLibrary/AssemblyReferenceWidgetLibrary.cs:
	  Make it work even when the assembly it references has been deleted
	  (maybe as a result of cleaning a project). In this case the widget
	  library is shown as empty.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Added support
	  for Loading/Unloading a project, to optimize use of memory for
	  solutions with many gui projects. Implemented support for
	  generating code in partial classes.
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs,
	  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Implemented
	  support for generating code in partial classes. Implemented support
	  for UNDO/REDO.
	* MonoDevelop.GtkCore.GuiBuilder/GtkProjectServiceExtension.cs:
	  Generation of gui code is now done from the Build method of a
	  project service extension. Fixes some issues when building a
	  project which contains custom components.

2006-12-17  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore/GtkCoreService.cs: Track API changes in
	  FileService.

2006-12-13 Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Don't
	generate stetic code if CurrentOpenCombine is null.

2006-12-07 Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* MonoDevelop.GtkCore.mdp: Updated to it can be
	built from MonoDevelop.

2006-11-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Simplified the
	  code by using global events from the Ide, instead of combine
	  events.

2006-10-18 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Added RemoveExportedWidget method.
	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs: track
	  API changes.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: If the name of a
	  widget changes and it is being exported, update it in the objects.xml
	  file. Fixes bug #79656.

2006-09-23 Lluis Sanchez Gual  <lluis@novell.com> 

	* lib/*: Updated from Stetic module. It provides a redesigned API
	  which will allow running designers in a separate process.
	
	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs:
	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs:
	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs:
	* MonoDevelop.GtkCore.Dialogs/ConfirmWindowDeleteDialog.cs:
	* MonoDevelop.GtkCore.WidgetLibrary/AssemblyReferenceWidgetLibrary.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderPropertiesPad.cs:
	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderPalettePad.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProjectPad.cs:
	  Track api changes.
	
	* MonoDevelop.GtkCore.WidgetLibrary/BaseWidgetLibrary.cs: Make sure
	  parse information is up to date before loading an assembly library.
	* MonoDevelop.GtkCore/ProjectResourceProvider.cs: Make sure this object
	  is always alive when remoted.
	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Added null check.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderEditSession.cs: Not needed anymore.
	* MonoDevelop.GtkCore.addin.xml: Removed build step. Code generation
	  is done now before compiling.
	  
	* MonoDevelop.GtkCore.WidgetLibrary/ProjectWidgetLibrary.cs:
	* MonoDevelop.GtkCore.WidgetLibrary/CachedProjectWidgetLibrary.cs:
	* MonoDevelop.GtkCore/GtkDesignInfo.cs: ProjectWidgetLibrary is not used
	  anymore. All libraries are now handled by AssemblyReferenceWidgetLibrary.
	  
	* MonoDevelop.GtkCore.GuiBuilder/MonoDevelopWidgetActionBar.cs:
	* MonoDevelop.GtkCore.GuiBuilder/MonoDevelopActionGroupToolbar.cs:
	  Moved to Stetic.

	* Makefile.am:
	* MonoDevelop.GtkCore.mdp: Updated.

2006-09-23 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Track api changes.

2006-09-19 Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* .: Added svn:ignore for MonoDevelop.GtkCore.pidb

2006-09-01 Lluis Sanchez Gual  <lluis@novell.com> 

	* lib/*: Updated from stetic module. Includes fix for bug #79247.
	
2006-09-01 Lluis Sanchez Gual  <lluis@novell.com>

	* lib/*: Updated from stetic module.
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs:
	  Save the project after editing the icons.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Set the
	  ResourceProvider for the main stetic project. Added null check.

2006-08-30 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Fixed bug about 
	  adding the wrong widget as action designer page.

2006-08-30 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.GtkCore/GtkCoreService.cs: Only export properties which
	  return primitive types. Fixes bug #79195.
	* lib/*: Updated from stetic module.
	* MonoDevelop.GtkCore.Dialogs/BindDesignDialog.cs: Unsubscribe close
	  event when done.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Handle designer
	  commands in its own tab page.
	  
	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderEditSession.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs: Explicitely dispose
	  custom widgets to avoid memory leaks.
	  
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Track api changes.
	
	* MonoDevelop.GtkCore.mdp: Updated.

2006-08-18 Lluis Sanchez Gual  <lluis@novell.com> 

	* gui.glade: Minor fix.
	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs: Track api
	  changes.
	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Stetic files don't need
	  to be added as resource to projects.
	* MonoDevelop.GtkCore.Dialogs/ConfirmWindowDeleteDialog.cs: Make it
	  work for action groups.
	* lib/*: several fixes.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Added method
	  for removing an action group.
	  
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderEditSession.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Track API changes
	  in Stetic. Properly bound edit commands from the main menu.
	
	* MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs:
	* MonoDevelop.GtkCore.addin.xml: Implemented Open and Delete
	  commands for global action groups.
	  
	* MonoDevelop.GtkCore.mdp: Updated.

2006-08-11 Lluis Sanchez Gual  <lluis@novell.com> 

	* lib/*: Updated from Stetic module. Includes fixes for
	  bugs #79043, #79044 and #79045
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs: Don't
	  crash if something goes wrong when binding a class.
	  Fixed nullref.

2006-08-04 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs:
	  CreateContentForFile should not load the file, just create
	  the view.
	  
	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Add
	  support for IEncodedTextContent.

2006-08-01 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderEditSession.cs:
	  Set the resource provider before loading the project.
	  Fixes bug #78966.
	  
	* libs/*: Updated from Stetic module. Fixes several bugs:
	  78938, 78916, 78909, 78956, and 78867.

2006-07-27 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.GtkCore.WidgetLibrary/ProjectClassDescriptor.cs:
	  Added null check.
	  
	* MonoDevelop.GtkCore.WidgetLibrary/AssemblyReferenceWidgetLibrary.cs:
	  Get the parser context using the assembly file name, not the full
	  assembly name.

2006-07-25 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.GtkCore/GtkDesignInfo.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs:
	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Factorized several
	  more or less duplicate methods into GuiBuilderProject, specially
	  methods for locating the class bound to a window. GuiBuilderProject
	  now will explicitelly update the parser database the first time it
	  needs to locate a class, so it will work even if the parser service
	  is busy parsing assemblies.

2006-07-24 Lluis Sanchez Gual  <lluis@novell.com> 

	* lib/libstetic.dll: Updated from stetic module. Fixes a bug
	  in the table wrapper which may cause an endless loop.

2006-07-05 Matej Urbas <matej.urbas@gmail.com>

	* MonoDevelop.GtkCore/GtkCoreService.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs:
	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs:
	* MonoDevelop.GtkCore.WidgetLibrary/BaseWidgetLibrary.cs: Updated to use
	  ReturnType as BaseTypes in IClass instances.

2006-07-03 Lluis Sanchez Gual  <lluis@novell.com> 

	* lib/*: Updated from Stetic module.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Fixed automatic
	  layout switch policy.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Fix showing of
	  action group view.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderEditSession.cs: Properly
	  bind actions when pressing "BindToField".
	  
	* MonoDevelop.GtkCore.addin.xml: Updated versions. 

2006-06-29  Michael Hutchinson <m.j.hutchinson@gmail.com>

	* MonoDevelop.GtkCore.addin.xml: Only display WidgetBuilderOptionPanel 
	for "DotNet" projects.

2006-06-19  Lluis Sanchez Gual  <lluis@novell.com>

	* lib/*: Updated from Stetic module.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Switch to the
	  designer workbench layout when selecting an action group file.
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs: Support jumping
	  to signal hanlder when double-clicking it in the signals editor.
	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Removed debug code.
	
	* templates/ActionGroup.xft.xml:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs: 
	  Fix code generation of action groups.

2006-06-12  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/GtkCoreService.cs: If a member has a [Browsable(false)]
	  attribute, don't add it to the objects.xml file. Also don't add
	  read-only properties.
	* lib/*: Updated from stetic module. Fixes bugs #78622 and #78620.
	  Adds an icon for expander and fixes a bug in ColorButton (fix by ml)

2006-06-11  Lluis Sanchez Gual  <lluis@novell.com>

	* lib/libsteticui.dll:
	* MonoDevelop.GtkCore.GuiBuilder/MonoDevelopWidgetActionBar.cs:
	  Track changes in the api.

2006-06-09  Lluis Sanchez Gual  <lluis@novell.com>

	* libs/*: Updated from stetic module. Several improvements.
	  Also fixes bug #78160.
	
2006-05-30  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderDisplayBinding.cs:
	  Added DisplayName property.

2006-05-29  David Makovský (Yakeen) <yakeen@sannyas-on.net> 

	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: reverted interface changes - missing file change
	
2006-05-29  David Makovský (Yakeen) <yakeen@sannyas-on.net> 

	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: reverted interface changes

2006-05-26  Lluis Sanchez Gual  <lluis@novell.com>

	* libs/*: Updated from stetic module. Adds support for toolbars.

2006-05-23  David Makovský (Yakeen) <yakeen@sannyas-on.net> 

	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: track api changes
	
2006-05-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.Commands/GladeCommands.cs:
	* MonoDevelop.GtkCore.NodeBuilders/ProjectFolderNodeBuilderExtension.cs:
	* MonoDevelop.GtkCore.addin.xml: Added commands for creating
	  an action group and editing the project icons.
	  
	* MonoDevelop.GtkCore.NodeBuilders/WidgetNodeBuilder.cs: Show local
	  action groups as children of the window node.
	
	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolder.cs:
	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs: Moved
	  some event subscriptions to WindowsFolder.cs
	
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: 
	* MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs: Open the
	  corresponding file when clicking on local action groups.
	  
	* Makefile.am:
	* MonoDevelop.GtkCore.mdp: Added action group template.
	
	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs: Added support for
	  action group file templates.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs: Notify changes in
	  local action groups.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Don't show the actions
	  tab until there is at least one action group.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderPropertiesPad.cs: Don't show
	  properties or signals for global actions.
	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Added virtual method
	  OnActiveDocumentChanged, which is called when the view is brought to front.
	  
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderEditSession.cs:
	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Use the new MemberName
	  field when binding fields.
	  
	* MonoDevelop.GtkCore.GuiBuilder/MonoDevelopActionGroupToolbar.cs:
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs: Several minor fixes.
	  
	* lib/*: Updated.
	  

2006-05-12 Lluis Sanchez Gual  <lluis@novell.com>

	* Initial support for the menu editor. Still very unstable!!
	
	* lib/*: Updated from Stetic module.
	* MonoDevelop.GtkCore.addin.xml: Register a node builder and and
	  display binding for action groups.
	* MonoDevelop.GtkCore.NodeBuilders/WindowsFolderNodeBuilder.cs: Update
	  the folder when action groups change.
	* MonoDevelop.GtkCore/GtkCoreService.cs: Fix nullref.
	
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderEditSession.cs: Factorized
	  some code into CodeBinder.cs
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Factorized some
	  code into CombinedDesignView.cs.
	
	* MonoDevelop.GtkCore.NodeBuilders/ActionGroupNodeBuilder.cs: New node
	  builder for action groups.
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupDisplayBinding.cs: New display
	  binding for editing global action groups.
	* MonoDevelop.GtkCore.GuiBuilder/MonoDevelopWidgetActionBar.cs: Moved from
	  GuiBuilderView.cs.
	* MonoDevelop.GtkCore.GuiBuilder/MonoDevelopActionGroupToolbar.cs: A new
	  toolbar for the action group designer.
	* MonoDevelop.GtkCore.GuiBuilder/ActionGroupView.cs: A view for editing
	  global action groups.
	* MonoDevelop.GtkCore.GuiBuilder/CodeBinder.cs: Moved here some code
	  from GuiBuilderEditSession.cs.
	* MonoDevelop.GtkCore.GuiBuilder/CombinedDesignView.cs: Moved here some
	  code from GuiBuilderView.cs.

	* Makefile.am:
	* MonoDevelop.GtkCore.mdp: Added new files.
	
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Track api changes.
	
2006-05-05 Lluis Sanchez Gual  <lluis@novell.com>

	* lib/libstetic.dll: Updated from Stetic module. Includes
	  a fix for bug #78307.

2006-05-04 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.addin.xml: Updated versions.
	* MonoDevelop.GtkCore.mdp: Updated.

2006-05-03 Lluis Sanchez Gual  <lluis@novell.com>

	* lib/*: Updated from Stetic module. Includes fixes for
	  bugs #78266, #78240 and #78276.
	
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderWindow.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderEditSession.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs:
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Track changes
	  in the Stetic API.

2006-04-24 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs: Don't
	  crash if a stetic project can't be loaded. Fixes bug #78169.
	* lib/libstetic.dll: Updated from Stetic module. Fixes bug #78167.

2006-04-18 Lluis Sanchez Gual  <lluis@novell.com>

	* libs/*: Updated from stetic module. Fixed construction of
	  scales and scrollbars.

2006-04-19 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore.WidgetLibrary/ProjectClassDescriptor.cs: When
	  creating a widget from a widget design, remove the signals since
	  those signals reference handlers in the widget class, not the
	  widget container class.

2006-04-18 Lluis Sanchez Gual  <lluis@novell.com>

	* libs/*: Fix nullref in some themes.

2006-04-10 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/WidgetFileDescriptionTemplate.cs: Fix typo.
	* libs/*: Fix for #78111, #78092 and #78090.

2006-04-04 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.GtkCore/ProjectResourceProvider.cs: Save the project
	  after adding or removing a resource.

2006-04-03 Lluis Sanchez Gual  <lluis@novell.com>

	* lib/*: Updated.

2006-03-31 Lluis Sanchez Gual <lluis@novell.com>

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Get open
	  combine events in the GUI thread.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderEditSession.cs: Properly
	  delete signals for which there isn't a handler. Half fixed field
	  renaming.
	* lib/*: Updated.

2006-03-31 Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore/MonoDevelop.GtkCore.addin.xml: Fix ID and
	  description. Added stetic config files to add-in package.

2006-03-30 Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.GtkCore.addin.xml: Updated references.

2006-03-29 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderEditSession.cs:
	  Don't crash if no parse info is available for the file
	  being edited. Should fix #77885.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Don't show
	  the bind to field button for the root container.
	* lib/*: Updated.

2006-03-24 Lluis Sanchez Gual  <lluis@novell.com>   

	* Makefile.am: Use an unified format. Patch by Matze Braun.
	* MonoDevelop.GtkCore.addin.xml: Updated add-in versions.

2006-03-22 Lluis Sanchez Gual  <lluis@novell.com>    

	* MonoDevelop.GtkCore.addin.xml:
	* MonoDevelop.GtkCore.mdp: Removed GladeFileDisplayBinding.
	* lib/*: Updated.
	* Makefile.am: Updated. Some files have been moved to Stetic.
	
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Fixed
	  layout switching. Don't show the widget tree pad by default,
	  since it is already available as a combo in the designer.
	* MonoDevelop.GtkCore.GuiBuilder/GladeFileDisplayBinding.cs: Removed.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderPropertiesPad.cs: use
	  the new property tree instead of the grid.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: The designer
	  toolbar has been moved to Stetic.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProjectPad.cs: Changed
	  default placement.

2006-03-19  Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* .: Added Makefile.in and Makefile to svn:ignore.

2006-03-15 Lluis Sanchez Gual  <lluis@novell.com>    

	* Makefile.am:
	* MonoDevelop.GtkCore.mdp: Updated.
	
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderEditSession.cs:
	* MonoDevelop.GtkCore/GtkDesignInfo.cs: Added support for using
	  resource images in the designer.
	  
	* MonoDevelop.GtkCore/GtkCoreService.cs: Check if the objects.xml
	  file exists before loading it.
	* MonoDevelop.GtkCore/GeneratorBuildStep.cs: Don't generate code
	  if the stetic file has not been modified since the last
	  generation.
	* MonoDevelop.GtkCore.Dialogs/WidgetBuilderOptionPanel.cs: If Gtk
	  support is not enabled, don't enable it if no widgets have
	  been selected.
	* lib/libstetic.dll: Updated.
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Mapped some
	  commands.
	* templates/Window.xft.xml: The constructor of Gtk.Window requires
	  the title of the window.

2006-03-04 Lluis Sanchez Gual  <lluis@novell.com>    

	* MonoDevelop.GtkCore.mdp, Makefile.am: Updated.
	* MonoDevelop.GtkCore/GeneratorBuildStep.cs: When generating
	  code for a project that exports widgets, include the own
	  project library to the generation, since there can be
	  widgets that contain other widgets defined in the project.
	* MonoDevelop.GtkCore.WidgetLibrary/ProjectClassDescriptor.cs:
	  removed some IdeApp dependencies.
	* MonoDevelop.GtkCore.WidgetLibrary/ProjectWidgetLibrary.cs:
	  added method for getting the class information from
	  a project.
	* CachedProjectWidgetLibrary.cs: New widget library class
	  which takes class information from a collection of 
	  ProjectClassInfo objects.
	* MonoDevelop.GtkCore.WidgetLibrary/ProjectPropertyDescriptor.cs:
	  Consider all properties runtime-properties, since they have 
	  been created from class properties.
	* lib/*: Updated.

2006-03-03 Lluis Sanchez Gual  <lluis@novell.com>    

	* Makefile.am: removed debug files.

2006-03-02 Lluis Sanchez Gual  <lluis@novell.com>    
 
	* MonoDevelop.GtkCore.GuiBuilder/GuiBuilderView.cs: Propagate
	  project changes to the editor.
 
2006-03-02 Lluis Sanchez Gual  <lluis@novell.com>   
 
	Initial implementation of the Stetic add-in.