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

ChangeLog « MonoDevelop.GtkCore « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22d33b1fbfc9dea3fddb28502dd8dfcd743c3e1c (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
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.