File: ChangeLog

package info (click to toggle)
vdk2 2.4.0-5.5
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 4,528 kB
  • sloc: cpp: 26,950; sh: 10,974; ansic: 9,220; makefile: 605; perl: 113
file content (1207 lines) | stat: -rw-r--r-- 45,675 bytes parent folder | download | duplicates (7)
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
185/05/2004 Mario Motta <mmotta@guest.net>
	* renamed version 2.4.0
	* vdk 2.4.0 released

	
03/10/05 Mario Motta <mmotta@guest.net>
	* release candidate test passed
	
03/29/04 Mario Motta <mmotta@guest.net>
	* testvdk/testvdk.cc
	Added examples for VDKComboEntry
	
03/28/04 Mario Motta <mmotta@guest.net>
NEW	 * vdkcomboentry.cc/.h
---	 New VDKComboEntry widget that wraps GtkComboBox with entry.
	
03/25/04 Mario Motta <mmotta@guest.net>
NEW	   * entry.cc/.h
---	   Added word completion support to entry widget
	
03/23/04 Mario Motta <mmotta@guest.net>
	   * recompiled under gtk+ 2.4.0
NEW	   * vdkfilechooser.cc/.h
---	   new VDKFileChooser class, wraps new GtkFileChooser widget.

03/06/04 Mario Motta <mmotta@guest.net>
	   * versioning to 2.0.4
	   * this version made to mantain full compatibility
	   with winvdk porting under windows.
	
02/03/04   Mario Motta <mmotta@guest.net>
BUG FIX    * image.cc 
-------       Fixed a bug related to SetImage(NULL);

            * vdkdate.cc /.h
            MakeDate(char* s, int mode = mmddyyy)
            Added argument <mode> to build date both in
            english (mmddyyyy) or european (ddmmyyyy) format
            
24/02/04 Mario Motta <mmotta@guest.net>
CODE BREAK !!!
--------------
            * vdktypes.h/application.h/.cc
            Due to a name clush with Windows following 
            symbolic constants have been redefined:
            
            old             ==>         new
            
            MB_ICONSTOP            VDK_ICONSTOP
            MB_ICONWARNING         VDK_ICONWARNING       
            MB_ICONQUESTION        VDK_ICONQUESTION      
            MB_ICONINFORMATION     VDK_ICONINFORMATION   
            MB_ICONERROR           VDK_ICONERROR         
            MB_ICONMASK            VDK_ICONMASK          

            MB_OK                  VDK_OK                
            MB_YESNO               VDK_YESNO             
            MB_OKCANCEL            VDK_OKCANCEL          
            MB_TYPEMASK            VDK_TYPEMASK          

            IDYES                  VDK_IDYES             
            IDNO                   VDK_IDNO              
            IDOK                   VDK_IDOK              
            IDCANCEL               VDK_IDCANCEL
            
            * also VDKApplication::MessageBox() has been redeclared as
            VDKApplication::VDKMessageBox()

	
2003-06-05 Motta Mario <mmotta@guest.net>
FIX	* numentry.cc
---	Fixed a bug that denied any key typing into this widget
	Bug reported by Michael Vogt <mvogt@acm.org>, Debian maintainer
	
2003-05-19 Motta Mario <mmotta@guest.net>

	*** version 2.0.3 released ***
	
2003-05-11 Motta Mario <mmotta@guest.net>
FIX	* vdk/Makefile.am fixed a incompatibility with newest automake.
---
	* Entire library recompiled under Mandrake 9.1 with gcc 3.2.2
	
2003-02-15 Motta Mario <mmotta@guest.net>
NEW	* vdktreeview.cc .h
---	Enhanced VDKTreeViewIter class, now given a VDKTreeViewIter you can know parent and childs
	if any.. (Suggested by P. Malatray)

2003-01-23 Motta Mario <mmotta@guest.net>
	* VDKTextView and VDKEditor updated with latest cvs version of gtksourceview
NEW	* VDKHLButton widget, (HL stands for HighLighted) it behaves like
---	Mozilla buttons that highlight when mouse cursor is over
NEW	* VDKHLButtonBar new widget, a toolbar to accomodate a set VDKHLButtons
---	Both widgets API left unchanged as in parents.
NEW	* VDKDataBox, restored Roland widget wrapper for gtk 2.x
---
	
2003-01-22 Motta Mario <mmotta@guest.net>
	** versioning to 2.0.3
	
2003-01-13 Motta Mario <mmotta@guest.net>
	** many fixes to compile in gcc 3.2
	Huge commit on CVS
	
2002-05-30 Motta Mario <mmotta@guest.net>
	*** version 2.0.2 released ***
	
2002-05-29 Motta Mario <mmotta@guest.net>
NEW	* vdkeditor.cc
---	VDKEditor now operates on new gtksourceview widget

2002-05-25 Motta Mario <mmotta@guest.net>
BUG FIX	Minor bug fixes related to gcc version 3.1.0
------	Bugs reported by Otmar Struwe <otmar.struwe@web.de>

2002-05-13 Motta Mario <mmotta@guest.net>
BUG FIX	* vdktextview.cc
-------	Fixed a bug into SaveToFile() that wrote a char less than real lenght
	of the text buffer.
	
2002-05-09 Motta Mario <mmotta@guest.net>
BUG FIX	* vdktextview.cc - vdkeditor.cc
-------	Fixed Changed property that was buggy

	
2002-05-02 Motta Mario <mmotta@guest.net>
	* vdktreeview.cc /.h
CODE	Changed VDKTreeViewModel API, many methods such as AppendBlank(), Root(), Next()
BREAK	now requires an iter address as first argument.
----	* vdktreeview.cc
	VDKTreeViewModel::Find() rewritten in a recursive way. Now works properly.
	* testdvdk/treeviewcompo.cc rewritten due to API changes.

2002-04-10 Motta Mario <mmotta@guest.net>
	* versioning to 2.0.2
NEW	* Added a VDKDockerBox widget that provides a box that can be detached from his container
---	and attached (docked) into a separate form. Sources in vdkdockable.h/.cc
	
2002-04-04 Motta Mario <mmotta@guest.net>
	* vdk-2.m4.in changed to fix a bug in aclocal. Changed all "dnl" comments to "##"
	see http://sources.redhat.com/ml/bug-automake/2000/msg00191.html
	Bug reported by Michael Vogt <mvogt@acm.org>

2002-03-29 Motta Mario <mmotta@guest.net>
	*** VDK 2.0.1 released ***
	
2002-03-26 Motta Mario <mmotta@guest.net>
BUG	* image.cc
FIX	Fixed a bug that returned WrappedWidget() always NULL.
--- 
	
2002-03-19 Motta Mario <mmotta@guest.net>
	Version renamed to 2.0.1 for further develop and bug fixes.
	
2002-03-13 Motta Mario <mmotta@guest.net>
	*** VDK 2.0.0  RELEASED ***
	
2002-03-08 Motta Mario <mmotta@guest.net>
	* written an example of VDKDrawArea usage into ./testvdk
	
2002-03-05 Motta Mario <mmotta@guest.net>
NEW	Added new widget: VDKDrawingArea that should substitute deprecated VDKCanvas.
___	However VDKcanvas isn't really deprecated, it will continue to be supported even if
	not more enhanced. Simply VDKDrawingArea is a better widget, much powerfull and easy to use.
	VDKDrawingArea is contained into vdkdrawarea.h/.cc files.
	
2002-02-20 Motta Mario <mmotta@guest.net>
	* canvas.cc .h
	Overridden VDKCanvas::SetFont() that now uses its own font (or default
	one if not set).
	This removes an old problem with canvas setting font into an expose_event response 
	function: VDKcanvas::SetFont() used VDKObject::SetFont() that modifies widget style 
	triggering an expose_event and an infinite loop if used into an expose_event response 
	function. Now resolved using font explicitely without interesting widget style.
	
2002-02-12 Motta Mario <mmotta@guest.net>
CODE	* canvas.cc .h
BREAK	Made an huge clean up of received events.
----	Now events on canvas must be handled with dynamic signals table.
	Removed some properties:
	- Captured
	- EnableDrag
	
2002-01-19 Motta Mario <mmotta@guest.net>
NEW	* Added VDKCalendar widget, wraps GtkCalendar (vdkcalendar.cc /.h)
---	Moved from builder plugins into vdk core library.

2002-01-17 Motta Mario <mmotta@guest.net>
	* vdktreeview.cc/.h
	Improuved VDKTreeView API
	
2001-12-31 Motta Mario <mmotta@guest.net>
	* vdk/vdktreeview.cc /.h
	- Added a VDKTreeViewModel iterator API
	- Added new properties and methods to VDKTreeView API
	* testvdk/treeviewcompo.cc
	* Changed to reflect API changes
	
2001-12-29 Motta Mario <mmotta@guest.net>
NEW	* scrolled.cc/.h
---	Added BorderShadow property to VDKScrolled class
	
2001-12-23 Motta Mario <mmotta@guest.net>
NEW	* value_sem_list.h / dlist.h
---	Added:
	-- decremental operator (both infix and postfix)
	- first(),last() operators.
	To VDKValueListIterator<> and VDKListIterator<> template classes
	
2001-12-17 Motta Mario <mmotta@guest.net>
NEW	* vdktreeview.cc .h
---	Added VDKTreeView class and companions.
	This class wraps GtkTreeView widget.
	(incomplete)
	
2001-12-07 Motta Mario <mmotta@guest.net>
CODE	* vdkprops.h
BREAK	Changed prop value internal assignement made after have calling
-----	setting function. In other words setting function finds prop value
	at old value when called.
	This avoid a subtle bug when is necessary to operate on old prop value
	into the setting function.
	*** Raw setting function calls are now deprecated. ***
	
2001-09-28 Motta Mario <mmotta@guest.net>
NEW	* Added VDKInputChannel class
---	Thanks to Jonathan Hudson  <jonathan@daria.co.uk> .
	
2001-08-22 Motta Mario <mmotta@guest.net>
CODE	* vdkcustom.cc
BREAK	SelectedForeground,Unselectedbackground,UnselectedForeground properties
-----	are now of VDKRgb type to mantain consistency with others color props.
	
2001-08-15 Tim Lorenz <tim@lorenz.nu>
	* Trivial Changes to let sigc-extension work with libsigc++-1.0.3
	under gcc-3.0
	* configure.in:
	Added AC_PREREQ(2.50)
	 
2001-08-15 Motta Mario <mmotta@guest.net>
BUG FIX	* VDKCustom.cc/.h
------	Get rid of SelectedBackground property since it conflicts with
	VDKObject::SelectedBackground.
	Modified overridden SetBackGround
	* testvdk/testvdk.cc
	Modified to reflect above changes.
	(Bug reported by Tim)
	
2001-08-14 Motta Mario <mmotta@guest.net>
BUG	* siglisthandle.h /evlisthandle.h
FIX	Got ride of VDKString in VDK dynamic signal tables.
---	(probably) due to a gcc 2.96.x compiler weirdness on
	const we experienced obscure seg faults during signal table scan.
	VDKString _VDK_Signal_Unit.signal and _VDK_Event_Unit.event 
	substituted with a plain char[]. Sigh :-(
	
2001-08-11 Motta Mario <mmotta@guest.net>
BUG	* vdkclist.cc vdkctree.cc
FIX	Correctly initialized sigwid with gtk+ widget. This bug
---	didn't correctly SignalConnect() under some circustances.
	
2001-07-27 Motta Mario <mmotta@guest.net>
NEW	* Added VDKThread class, a simple wrapper on posix threads.
___	Thanks to Salmaso Raffaele <r.salmaso@flashnet.it>
	that did it on 1999.
	
2001-07-04 Motta Mario <mmotta@guest.net>
	* vdk updated to latest cvs (gtk+ 1.3.7)
	* forms.cc
	GetPosition() changed to use gdk_window_root_origin() to fix a
	coordinate error.
	
2001-05-29  Tim Lorenz  <tim@marder.flotte>
	
	The Long Story of Constness:
	* vdk/vdkeditor.h (VDKEditor::MakeCompletition):
	made arg const
	* vdk/vdkedtior.cc (overlap): second arg is const now
	* vdk/vdkclist.h (class VDKCustomList::_update_pix): consted 
	(SelectionProp::Row): and (Selection::Col): are const methods now.
	(VDKCustomList::UpdateCell): arg s ist const-pointer now.
	* vdk/vdkcsortlist.h (VDKCustomSortedList::FindKey): 
	(VDKCustomSortedList::RemoveKey):
	(VDKCustomSortedList::UpdateCellKey): 
	(VDKCustomSortedList::UpdateKey):
	The key argument is declared const now (as passed to VDKString-Ctor)
	I did some more const changes but did not list them.

	Made type-converter operator of VDKRWProp a const method.
	
2001-05-28  Tim Lorenz  <tim@marder.flotte>
	Tales about const
	* testvdk/edcompo.cc:
	(ToggledSource): also operate on const pointer arg (just to be nice).
	Fixed mem. leak in abortive return (use of std::string would make life
	easier ;-)
	(EditorComponent::HasPage): add const qual. to local var. 'fn'

	* vdk/notebook.h (class VDKNotebook::AddPage): consted one arg 	
	* vdk/vdkcustombutton.h (VDKCustomButton::SetCaption):
	(VDKCustomButton::GetCaption): made string a const char* pointer
	(VDKCustomButton::Caption): 'value_type' now const char*
	(VDKCustomButton::VDKCustomButton()): label-arg is a const-pointer now
	* vdk/label.h (VDKLabel::Caption): 
	set second tpl. arg. to const char* -> VDKRWProp<VDKLabel,const char*>
	(VDKLabel::VDKLabel):  made label-argument const
	(VDKLabel::SetCaption): made argument a const pointer
	(VDKLabel::GetCaption): made return-value a const-pointer
	
	* vdk/notebook.h 
	(VDKNotebook::AddPage): 
	(VDKPage::AddPage): 
	added const-qualifier to signatur -> AddPage(VDKObj*, const char*,
	

	* testvdk/edcompo.cc:
	* vdk/siglisthandle.h: add #include <cstring> and thus use of namespace

2001-05-25  Tim Lorenz  <tim@marder.flotte>

	* several: Changed to include c++-versions of c-headers (like cstring 
	instead of string.h). 
	This  step requires a compiler with proper handling of namespaces,
	gcc-2.95.3 and gcc-3.0 can handle this. 
	Affected files: vdk/vdktextview.cc vdk/vdkdate.cc
        vdk/vdkcolorbrowser.cc vdk/text.cc vdk/rawobj.cc vdk/pixmaps.cc
        vdk/image.cc vdk/vdkprops.h vdk/vdkregex.h vdk/vdkstring.cc 
	vdk/vdkfont.cc vdk/vdkeditor.cc vdk/vdkctree.cc vdk/vdkcsortlist.cc
	vdk/vdkclist.cc vdk/tooltips.cc vdk/rawpixmap.cc vdk/rawpixbuf.cc
	vdk/radiobtngroup.cc vdk/filedlg.cc vdk/combo.cc vdk/chart.cc
	vdk/FileDialog.cc vdk/messagebox.cc vdk/numentry.cc:

	* vdk/label.cc: 
	* vdk/evhandle.h: added #include <cstring>

	* testvdk/testvdk.cc: converted multi-line string to multi string lines
	
2001-05-25 Motta Mario <mmotta@guest.net>
	* dummy commit 

2001-05-22 Motta Mario <mmotta@guest.net>
	* entry.cc
	Modified SetText() to make it  utf8 compliant.

2001-05-14  Tim Lorenz  <tim@lorenz.nu>

	CLEANUP:
	* vdk/vdkcustom.cc (VDKObject::make_gtksigc_connection): removed 
	(no more needed here, see below)(affected files: several ;-)
	* vdk/vdkobj.cc: Removed deprecated Signals: OnKeyPress, OnKeyRelease
	* vdk/vdk.h: removed #include <vdkpacker.h>
	
	GCC-3.0:
	Begun to add support for gcc-3.0
	* added #include <string.h> to several files (needed for gcc 3.0)
	* configure.in: Added namespace to string and auto_ptr test
	(needed for gcc-3.0)
	* vdk/checkbutton.cc (SetForeground): added explicit cast
	(needed for gcc-3.0) same in vdk/spins.cc (SetForeground) and
	(SetBackground)
	* vdk/evhandle.h (ON_EVENT): removed g++-3.0 irritating prenthesis
	
2001-05-06 Motta Mario <mmotta@guest.net>
	
CODE BREAK
--------
	* toolbar.cc/.h
	VDKToolbar properties:
	- Relief
	- Spacing
	- SpaceStyle
	are now themeable properties out of programmer control.
	Therefore even if mantained as void properties for backward compatibility,
	their use is deprecated and will be completely removed in future versions.
	- VDKToolbar::Borderless property, even if deprecated, is mantained operative. 
	However his setting may be overridden changing themes.
	* menus.cc/.h
	VDKMenubar::Shadow property is now themeable, so above considerations apply as well.
	
2001-04-25 Motta Mario <mmotta@guest.net>
CODE BREAK
---------	
	* Removed gtkpacker widget wrapper
	
2001-04-10 Motta Mario <mmotta@guest.net>

	* Gtk+ patched at line 2539 of gtkdnd.c:
	Event handler set to return always FALSE otherwise many widgets became insensitive.
	This gtk+ bug showed a more general and serious bug: returning TRUE from an event
	handler often blocks any further event propagation also in separated connections.
	This bug happened recently on cvs snapshot and 1.3.3 release. Previous snapshots and
	releases didn't show this error. Mailed a msg to gtk-list and made a report to bugzilla.
	* Changed all event handlers on vdk to return FALSE, this fixed many weird bugs and behaviours.
	
	
2001-03-28 Motta Mario <mmotta@guest.net>
	* VDKEditor.cc
	Added ctrl-1 as word completion keystroke. (ctrl-tab conflicts with kde defaults)
	
2001-03-24 Motta Mario <mmotta@guest.net>
CODE BREAK
---------	
REMOVED	 * removed deprecated VDKLabelButton and VDKPixmapButton,
-------	 these widgets are substitued by VDKCustomButton

2001-03-04 Motta Mario <mmotta@guest.net>
NEW	* VDKPixmap (deprecated)
---	Added a bool sensitive arg to constructors (defaults to false), if true pixmap will be
	embedded into an event box, in a normal box otherwise. Not sensitive means that the widget 
	won't react to any signal.
	Tips:
	- in insensitive mode an user that wants pixmap receiving signals should embedd 
	explicitely this widget into a 	VDKEventBox and connect signals to this one instead 
	pixmap directly.
	Tip:
	in insensitive mode to set a tip to a pixmap, embedd it into an event box and set the tip to 
	the event box instead.
	* VDKImage
	Same as above.
NEW	* VDKCustomButton
---	VDKPixmap (deprecated) substituted with a VDKImage.
	* VDKLabelButton and VDKPixmapButton marked as deprecated, will be cut on first vdk2 release.
	
2001-03-01 Motta Mario <mmotta@guest.net>
	* vdkeditor
	Modified SaveToFile() to avoid that 0xFFFC char that is used as image placeholder.
	
2001-02-28 Motta Mario <mmotta@guest.net>
	* combo.cc/.h
	Same as below for entry part of combobox widget.

2001-02-27 Motta Mario <mmotta@guest.net>
	* entry.cc/.h
	Added a data member "buffer" as VDKString.
	Deprecated gtk_entry_get_text() not more used to get Text property, 
	instead is used gtk_editable_get_chars() that loads buffer.
	Getting entry->Text property now returns (char*) buffer.
	** WARNING **
	Accessing to internal VDKString buffer violates OOP data hiding
	concept, user should make a copy of the returned buffer before
	make any modification.
	i.e.
	VDKString my_own_buffer = entry->Text;
	// safely modify:
	my_own_buffer += "tail";
	entry->Text = my_own_buffer; // is safe however
	
2001-02-16 Motta Mario <mmotta@guest.net>
	* vdkobj.cc
	Changed 
	static void VDKObject::VDKEventPipe()
	static void VDKObject::VDKEventUnitPipe()
	to
	static int VDKObject::VDKEventPipe() 
	static int VDKObject::VDKEventUnitPipe()
	as should be.
	
2001-02-15 Motta Mario <mmotta@guest.net>
NEW	* vdk/notebook.cc,.h
---	Added a Child() function member to TabPage object that accesses to the object contained
	into a page.
	Usage:
	notebook->Pages[x]->Child()
	WARNING: since this method could break data hiding concept
	user should avoid manipulating received address or make it at his own risk.
	
2001-02-14 Motta Mario <mmotta@guest.net>
	* Added more examples to testvdk program.
	
2001-02-12 Motta Mario <mmotta@guest.net>
	* VDK 2.0 NOW BASED ON GTK CVS SNAPSHOTS
	----------------------------------------
	To closely track gtk 2.0 developing now vdk 2.0 is based on latest
	glib/pango/gtk+ cvs snapshot.
	Actually vdk 2.0 does not compile in gtk 1.3.2 and requires latest cvs snapshot.
	Gnome cvs instructions:
	a. first download
	$ export CVSROOT=':pserver:anonymous@anoncvs.gnome.org:/cvs/gnome'
	$ cvs login
        (there is no password, just hit return)
	$ cvs -z3 checkout glib pango gtk+
	b. after initial checkout:
	$ cvs -z3 update glib pango gtk+
	
2001-02-12 Motta Mario <mmotta@guest.net>
	* Added: 
	vdk/vdkeditor.h vdk/vdkeditor.cc
	testvdk/tokens.db
NEW	Implemented a nice source editor wrapping Mike Hamerson gtksourceview 0.0.2
WIDGET	(still on alpha), with syntax hilighting and other nice feautures
-----	such as word completion (ctrl-tab) , parent matching, etc.
	See testvdk.cc
CODE	* VDKText widget not more supported and removed from cvs tree,
BREAK	VDKTextView will replace removed widget.
-----	
2001-02-11 Motta Mario <mmotta@guest.net>
	* vdkobj.cc
	VDKObject::Destroy() revisited and hopefully simplified.
2001-02-04 Motta Mario <mmotta@guest.net>
	* Added:
	vdk/rawpixbuf.h vdk/rwapixbuf.cc
	vdk/image.h vdk/image.cc
	testvdk/vitrurian.png
NEW	* New widgets:
WIDGET	- VDKRawPixbuf, wrapper of GdkPixbuff, should substitute VDKRawPixmap now deprecated
------	(more flexible since supports several graph file formats)
NEW	- VDKImage, wrapper of GtkImage should substitute VDKPixmap now deprecated
WIDGET	(more flexible since supports several graph file formats)
------	* Changed testvdk to support VDKImage test.

2001-01-24 Motta Mario <mmotta@guest.net>
	* Added:
	vdk/vdktextview.h vdk/vdktextview.cc (wrapper of GtkTextView)
	
NEW	Implemented VDKTextView a gtktextview wrapper that would substitute
WIDGET	deprecated and buggy VDKText.
-----	
	
2001-01-02 Motta Mario <mmotta@guest.net>
BUG	* gboolean window_is_iconified (GdkWindow *window) (forms.cc)
FIX	now work properly.
---
	
2000-12-24 Motta Mario <mmotta@guest.net>
	* dummy commit, cvs transferred to new amd athlon machine
	
2000-12-09 Motta Mario <mmotta@guest.net>
NEW	* VDKTimer
---	Added a "TickTime" property that permits to change
	timer granularity on the fly.
	Suggested by a request from: wslu <wslu@263.net>
	
2000-12-05 Motta Mario <mmotta@guest.net>
NEW	* application.cc
---	VDKApplication::MessageBox() now uses default gtk+
	dialogs. Api unchanged, some features extended with new
	modal modes. (see application.h)
	* canvas.cc
	Modified DrawString() and DrawText() to new font (pango) stuff.
	* chart.cc
	Modified text drawing for the same reasons as above.
	
	
2000-11-29 Motta Mario <mmotta@guest.net>

BUG	* forms.cc
---	gboolean window_is_iconified (GdkWindow *window)
	disabled for now, returning always false.
	
2000-11-28  Tim Lorenz  <lorenz@extended.de>

	* sigcvdktest
	added directory, contains old test-programm and new one:
	props_test.cc (see below).

NEW	* vdk/vdkprops.h : Added a signal to property for notification
---	of property-changes. see next entry.
	Fixed Value: now returns the value as type S (not T as before).
	Furthermore Value is const now (pointer-types are automatically
	casted to const, someone should prove it with gcc < 2.95.2,
	see test-programm).

	* vdk/sigc_addon.h: introduced template DualSignal#, VDKSignal#
	is now a specialization from this. DualSignal is intended for
	use with signals in VDK..Prop-Template.

2000-11-26  Tim Lorenz  <lorenz@extended.de>

	* vdk/vdkprops.h (class VDKReadWriteValueProp ): made name in ctor
	const. Did the same for class VDKReadOnlyProp.

2000-11-26 Motta Mario <mmotta@guest.net>
BUG	* VDKCustom (vdkcustom.cc, .h)
---	Setting AutoResize property to true sigsegv's
	for an unknown reason.
	Now AutoResize property is "false" by default.
	
2000-11-22 Motta Mario <mmotta@guest.net>
	* VDKText (text.cc,.h)
BUG	POSSIBLY A BUG on gtk+ 1.3.2:
---	- is difficult trap "realize" signal in a safe way using
	  both static and dynamics tables on this widget.
	- a possible work around is to use a lower call to 
	  gtk_signal_connect() and connect with a static function
	  that uses a static buffer on which file selection is stored
	  (inelegant but works).
	- however i have experienced that in most cases is not necessary
	  to connect with a realize signal provided that all font and colors
	  setting are made before adding the widget and file loading made 
	  after.
	Recall that this widget is near to be declared as "deprecated" and
	that will be substituted with new gtk_text based on 
	view-buffer-controller model.
	
NEW	* VDKFont (vdkfont.cc,.h)
---	Changed to support new Pango rendering library, backward 
	compatibility with GdkFont is mantained via (GdkFont*) 
	and AsGdkFont() operators, user should 	gdk_font_unref() 
	after use.
	ie:
	VDKFont* font = new VDKFont(this,"courier bold 12");
	GdkFont* gdkfont = font->AsGdkFont();
	//... use gdkfont
	gdk_font_unref(gdkfont);
	
CODE	Code breaks:
BREAK	-----------
-----	VDKFont::Height( char* s) instead VDKFont::Height(), computes
	an average string height.
	
	* VDKCustom (vdkcustom.cc,.h)
NEW	- SelectedBackground and SelectedForeground changed to be real
---	properties instead public members as they were.
	- UnselectedBackground and UnselectedForeground changed to real
	properties, instead public members as they were, their use is 
	deprecated however and reverts 	to setting colors as 
	NormalBackground and Foreground.
	
2000-11-21 Motta Mario <mmotta@guest.net>
	* Development of a new vdk test program begins
	after having ported ./example/hello and ./example/hello2 on
	vdk 2.0.0 (beta).
	
2000-11-20 Motta Mario <mmotta@guest.net>
	* development of VDK 2.0.0 (beta) based on gtk+ 1.3.2
	begins.
	Gtk+-1.3.2 is an unstable preview of what gtk+2.0 will be,
	porting to gtk+1.3.2 was relatively easy (still in progress),
	few changes was necessary to recompile vdk on new gtk+-1.3.2
	with an unchanged API, so no source code breaks with an
	exception on VDKFont now based on pango library, old VDKFont
	can't remain backward compatible even if with unchanged API.
	Application made with vdk 1.2. series should be source compatibles
	with vdk 2.0 (not binary compatibles however) provided that they
	do not use one of the vdk components based of non-stock gtk+ widgets
	that unfortunately we lost. 

	What we have lost switching to gtk+ 1.3.2:
	- gtkcombobutton
	Used on VDKCustomButton class which is now modified, 
	with API unchanged. I plan to ask to original author if it will
	support gtkcombobutton on new gtk+ version.
	
	- VDKFileTreeDialog
	Based on an old gtkdirtree widget. We won't recover it.
	
	- VDKDatabox
	Based on gtkdatabox, we will recover it if Ionutz has time to
	make the porting after having asked to his original author.
	
	- VDKGrid
	Based on gtksheet, it will be recovered since A.Feiguin assured me
	that he will port gtksheet also on gtk+ 2.0
	
	- VDKFileIconDialog
	Based on gtkiconfilesel, same as above.

	- VDKCoolbar and VDKCoolButton
	We won't recover them, was already "deprecated" on previous vdk 
	versions

	- VDKPanedForm and VDKScrolledForm
	As above, was deprecated.

	- VDKColorBrowser
	It depends on VDKGrid, it will be recovered.

	- VDKLabelToggleButton and VDKPixmapToggleButton
	Won't be recovered, was deprecated and substituted with 
	VDKCustomButtons. (Tim i guess you have to modify your sigc 
	test program).
=======
2002-03-23 George Boutwell <gboutwel@praize.com>
WIN32	* Development on vdkwin32 (beta) project begins.
        Based on gtk+ 2.0 win32 & vdk 2.0.1 (current cvs):
	Gtk+-2.0 win32 should be considered more or less unstable port 
        of gtk+2.0 (*nix), porting to gtk+2.0 (win32) was fairly easy
        (still in progress), a few changes where necessary to recompile 
        vdk on gtk+-2.0 (win32).  Most of them had to do with the lack
	(or more precisely non-use) of an autoconf/automake environement.
        Added an lot of #ifdef HAVE_CONFIG_H...#endifs solve about 3/4
        compile problems.  Added an VDKWIN32 define to makefile.mingw to
        indicate in code vdkwin32 specifics.
	Currently the vdk library (both shared and static), testvdk, &
        testvdkstring code has been successfully compiled under win32 (WinNT 4.0)
	
2002-03-19 Motta Mario <mmotta@guest.net>
	Version renamed to 2.0.1 for further develop and bug fixes.
	
2002-03-13 Motta Mario <mmotta@guest.net>
	*** VDK 2.0.0  RELEASED ***
	
2002-03-08 Motta Mario <mmotta@guest.net>
	* written an example of VDKDrawArea usage into ./testvdk
	
2002-03-05 Motta Mario <mmotta@guest.net>
NEW	Added new widget: VDKDrawingArea that should substitute deprecated VDKCanvas.
___	However VDKcanvas isn't really deprecated, it will continue to be supported even if
	not more enhanced. Simply VDKDrawingArea is a better widget, much powerfull and easy to use.
	VDKDrawingArea is contained into vdkdrawarea.h/.cc files.
	
2002-02-20 Motta Mario <mmotta@guest.net>
	* canvas.cc .h
	Overridden VDKCanvas::SetFont() that now uses its own font (or default
	one if not set).
	This removes an old problem with canvas setting font into an expose_event response 
	function: VDKcanvas::SetFont() used VDKObject::SetFont() that modifies widget style 
	triggering an expose_event and an infinite loop if used into an expose_event response 
	function. Now resolved using font explicitely without interesting widget style.
	
2002-02-12 Motta Mario <mmotta@guest.net>
CODE	* canvas.cc .h
BREAK	Made an huge clean up of received events.
----	Now events on canvas must be handled with dynamic signals table.
	Removed some properties:
	- Captured
	- EnableDrag
	
2002-01-19 Motta Mario <mmotta@guest.net>
NEW	* Added VDKCalendar widget, wraps GtkCalendar (vdkcalendar.cc /.h)
---	Moved from builder plugins into vdk core library.

2002-01-17 Motta Mario <mmotta@guest.net>
	* vdktreeview.cc/.h
	Improuved VDKTreeView API
	
2001-12-31 Motta Mario <mmotta@guest.net>
	* vdk/vdktreeview.cc /.h
	- Added a VDKTreeViewModel iterator API
	- Added new properties and methods to VDKTreeView API
	* testvdk/treeviewcompo.cc
	* Changed to reflect API changes
	
2001-12-29 Motta Mario <mmotta@guest.net>
NEW	* scrolled.cc/.h
---	Added BorderShadow property to VDKScrolled class
	
2001-12-23 Motta Mario <mmotta@guest.net>
NEW	* value_sem_list.h / dlist.h
---	Added:
	-- decremental operator (both infix and postfix)
	- first(),last() operators.
	To VDKValueListIterator<> and VDKListIterator<> template classes
	
2001-12-17 Motta Mario <mmotta@guest.net>
NEW	* vdktreeview.cc .h
---	Added VDKTreeView class and companions.
	This class wraps GtkTreeView widget.
	(incomplete)
	
2001-12-07 Motta Mario <mmotta@guest.net>
CODE	* vdkprops.h
BREAK	Changed prop value internal assignement made after have calling
-----	setting function. In other words setting function finds prop value
	at old value when called.
	This avoid a subtle bug when is necessary to operate on old prop value
	into the setting function.
	*** Raw setting function calls are now deprecated. ***
	
2001-09-28 Motta Mario <mmotta@guest.net>
NEW	* Added VDKInputChannel class
---	Thanks to Jonathan Hudson  <jonathan@daria.co.uk> .
	
2001-08-22 Motta Mario <mmotta@guest.net>
CODE	* vdkcustom.cc
BREAK	SelectedForeground,Unselectedbackground,UnselectedForeground properties
-----	are now of VDKRgb type to mantain consistency with others color props.
	
2001-08-15 Tim Lorenz <tim@lorenz.nu>
	* Trivial Changes to let sigc-extension work with libsigc++-1.0.3
	under gcc-3.0
	* configure.in:
	Added AC_PREREQ(2.50)
	 
2001-08-15 Motta Mario <mmotta@guest.net>
BUG FIX	* VDKCustom.cc/.h
------	Get rid of SelectedBackground property since it conflicts with
	VDKObject::SelectedBackground.
	Modified overridden SetBackGround
	* testvdk/testvdk.cc
	Modified to reflect above changes.
	(Bug reported by Tim)
	
2001-08-14 Motta Mario <mmotta@guest.net>
BUG	* siglisthandle.h /evlisthandle.h
FIX	Got ride of VDKString in VDK dynamic signal tables.
---	(probably) due to a gcc 2.96.x compiler weirdness on
	const we experienced obscure seg faults during signal table scan.
	VDKString _VDK_Signal_Unit.signal and _VDK_Event_Unit.event 
	substituted with a plain char[]. Sigh :-(
	
2001-08-11 Motta Mario <mmotta@guest.net>
BUG	* vdkclist.cc vdkctree.cc
FIX	Correctly initialized sigwid with gtk+ widget. This bug
---	didn't correctly SignalConnect() under some circustances.
	
2001-07-27 Motta Mario <mmotta@guest.net>
NEW	* Added VDKThread class, a simple wrapper on posix threads.
___	Thanks to Salmaso Raffaele <r.salmaso@flashnet.it>
	that did it on 1999.
	
2001-07-04 Motta Mario <mmotta@guest.net>
	* vdk updated to latest cvs (gtk+ 1.3.7)
	* forms.cc
	GetPosition() changed to use gdk_window_root_origin() to fix a
	coordinate error.
	
2001-05-29  Tim Lorenz  <tim@marder.flotte>
	
	The Long Story of Constness:
	* vdk/vdkeditor.h (VDKEditor::MakeCompletition):
	made arg const
	* vdk/vdkedtior.cc (overlap): second arg is const now
	* vdk/vdkclist.h (class VDKCustomList::_update_pix): consted 
	(SelectionProp::Row): and (Selection::Col): are const methods now.
	(VDKCustomList::UpdateCell): arg s ist const-pointer now.
	* vdk/vdkcsortlist.h (VDKCustomSortedList::FindKey): 
	(VDKCustomSortedList::RemoveKey):
	(VDKCustomSortedList::UpdateCellKey): 
	(VDKCustomSortedList::UpdateKey):
	The key argument is declared const now (as passed to VDKString-Ctor)
	I did some more const changes but did not list them.

	Made type-converter operator of VDKRWProp a const method.
	
2001-05-28  Tim Lorenz  <tim@marder.flotte>
	Tales about const
	* testvdk/edcompo.cc:
	(ToggledSource): also operate on const pointer arg (just to be nice).
	Fixed mem. leak in abortive return (use of std::string would make life
	easier ;-)
	(EditorComponent::HasPage): add const qual. to local var. 'fn'

	* vdk/notebook.h (class VDKNotebook::AddPage): consted one arg 	
	* vdk/vdkcustombutton.h (VDKCustomButton::SetCaption):
	(VDKCustomButton::GetCaption): made string a const char* pointer
	(VDKCustomButton::Caption): 'value_type' now const char*
	(VDKCustomButton::VDKCustomButton()): label-arg is a const-pointer now
	* vdk/label.h (VDKLabel::Caption): 
	set second tpl. arg. to const char* -> VDKRWProp<VDKLabel,const char*>
	(VDKLabel::VDKLabel):  made label-argument const
	(VDKLabel::SetCaption): made argument a const pointer
	(VDKLabel::GetCaption): made return-value a const-pointer
	
	* vdk/notebook.h 
	(VDKNotebook::AddPage): 
	(VDKPage::AddPage): 
	added const-qualifier to signatur -> AddPage(VDKObj*, const char*,
	

	* testvdk/edcompo.cc:
	* vdk/siglisthandle.h: add #include <cstring> and thus use of namespace

2001-05-25  Tim Lorenz  <tim@marder.flotte>

	* several: Changed to include c++-versions of c-headers (like cstring 
	instead of string.h). 
	This  step requires a compiler with proper handling of namespaces,
	gcc-2.95.3 and gcc-3.0 can handle this. 
	Affected files: vdk/vdktextview.cc vdk/vdkdate.cc
        vdk/vdkcolorbrowser.cc vdk/text.cc vdk/rawobj.cc vdk/pixmaps.cc
        vdk/image.cc vdk/vdkprops.h vdk/vdkregex.h vdk/vdkstring.cc 
	vdk/vdkfont.cc vdk/vdkeditor.cc vdk/vdkctree.cc vdk/vdkcsortlist.cc
	vdk/vdkclist.cc vdk/tooltips.cc vdk/rawpixmap.cc vdk/rawpixbuf.cc
	vdk/radiobtngroup.cc vdk/filedlg.cc vdk/combo.cc vdk/chart.cc
	vdk/FileDialog.cc vdk/messagebox.cc vdk/numentry.cc:

	* vdk/label.cc: 
	* vdk/evhandle.h: added #include <cstring>

	* testvdk/testvdk.cc: converted multi-line string to multi string lines
	
2001-05-25 Motta Mario <mmotta@guest.net>
	* dummy commit 

2001-05-22 Motta Mario <mmotta@guest.net>
	* entry.cc
	Modified SetText() to make it  utf8 compliant.

2001-05-14  Tim Lorenz  <tim@lorenz.nu>

	CLEANUP:
	* vdk/vdkcustom.cc (VDKObject::make_gtksigc_connection): removed 
	(no more needed here, see below)(affected files: several ;-)
	* vdk/vdkobj.cc: Removed deprecated Signals: OnKeyPress, OnKeyRelease
	* vdk/vdk.h: removed #include <vdkpacker.h>
	
	GCC-3.0:
	Begun to add support for gcc-3.0
	* added #include <string.h> to several files (needed for gcc 3.0)
	* configure.in: Added namespace to string and auto_ptr test
	(needed for gcc-3.0)
	* vdk/checkbutton.cc (SetForeground): added explicit cast
	(needed for gcc-3.0) same in vdk/spins.cc (SetForeground) and
	(SetBackground)
	* vdk/evhandle.h (ON_EVENT): removed g++-3.0 irritating prenthesis
	
2001-05-06 Motta Mario <mmotta@guest.net>
	
CODE BREAK
--------
	* toolbar.cc/.h
	VDKToolbar properties:
	- Relief
	- Spacing
	- SpaceStyle
	are now themeable properties out of programmer control.
	Therefore even if mantained as void properties for backward compatibility,
	their use is deprecated and will be completely removed in future versions.
	- VDKToolbar::Borderless property, even if deprecated, is mantained operative. 
	However his setting may be overridden changing themes.
	* menus.cc/.h
	VDKMenubar::Shadow property is now themeable, so above considerations apply as well.
	
2001-04-25 Motta Mario <mmotta@guest.net>
CODE BREAK
---------	
	* Removed gtkpacker widget wrapper
	
2001-04-10 Motta Mario <mmotta@guest.net>

	* Gtk+ patched at line 2539 of gtkdnd.c:
	Event handler set to return always FALSE otherwise many widgets became insensitive.
	This gtk+ bug showed a more general and serious bug: returning TRUE from an event
	handler often blocks any further event propagation also in separated connections.
	This bug happened recently on cvs snapshot and 1.3.3 release. Previous snapshots and
	releases didn't show this error. Mailed a msg to gtk-list and made a report to bugzilla.
	* Changed all event handlers on vdk to return FALSE, this fixed many weird bugs and behaviours.
	
	
2001-03-28 Motta Mario <mmotta@guest.net>
	* VDKEditor.cc
	Added ctrl-1 as word completion keystroke. (ctrl-tab conflicts with kde defaults)
	
2001-03-24 Motta Mario <mmotta@guest.net>
CODE BREAK
---------	
REMOVED	 * removed deprecated VDKLabelButton and VDKPixmapButton,
-------	 these widgets are substitued by VDKCustomButton

2001-03-04 Motta Mario <mmotta@guest.net>
NEW	* VDKPixmap (deprecated)
---	Added a bool sensitive arg to constructors (defaults to false), if true pixmap will be
	embedded into an event box, in a normal box otherwise. Not sensitive means that the widget 
	won't react to any signal.
	Tips:
	- in insensitive mode an user that wants pixmap receiving signals should embedd 
	explicitely this widget into a 	VDKEventBox and connect signals to this one instead 
	pixmap directly.
	Tip:
	in insensitive mode to set a tip to a pixmap, embedd it into an event box and set the tip to 
	the event box instead.
	* VDKImage
	Same as above.
NEW	* VDKCustomButton
---	VDKPixmap (deprecated) substituted with a VDKImage.
	* VDKLabelButton and VDKPixmapButton marked as deprecated, will be cut on first vdk2 release.
	
2001-03-01 Motta Mario <mmotta@guest.net>
	* vdkeditor
	Modified SaveToFile() to avoid that 0xFFFC char that is used as image placeholder.
	
2001-02-28 Motta Mario <mmotta@guest.net>
	* combo.cc/.h
	Same as below for entry part of combobox widget.

2001-02-27 Motta Mario <mmotta@guest.net>
	* entry.cc/.h
	Added a data member "buffer" as VDKString.
	Deprecated gtk_entry_get_text() not more used to get Text property, 
	instead is used gtk_editable_get_chars() that loads buffer.
	Getting entry->Text property now returns (char*) buffer.
	** WARNING **
	Accessing to internal VDKString buffer violates OOP data hiding
	concept, user should make a copy of the returned buffer before
	make any modification.
	i.e.
	VDKString my_own_buffer = entry->Text;
	// safely modify:
	my_own_buffer += "tail";
	entry->Text = my_own_buffer; // is safe however
	
2001-02-16 Motta Mario <mmotta@guest.net>
	* vdkobj.cc
	Changed 
	static void VDKObject::VDKEventPipe()
	static void VDKObject::VDKEventUnitPipe()
	to
	static int VDKObject::VDKEventPipe() 
	static int VDKObject::VDKEventUnitPipe()
	as should be.
	
2001-02-15 Motta Mario <mmotta@guest.net>
NEW	* vdk/notebook.cc,.h
---	Added a Child() function member to TabPage object that accesses to the object contained
	into a page.
	Usage:
	notebook->Pages[x]->Child()
	WARNING: since this method could break data hiding concept
	user should avoid manipulating received address or make it at his own risk.
	
2001-02-14 Motta Mario <mmotta@guest.net>
	* Added more examples to testvdk program.
	
2001-02-12 Motta Mario <mmotta@guest.net>
	* VDK 2.0 NOW BASED ON GTK CVS SNAPSHOTS
	----------------------------------------
	To closely track gtk 2.0 developing now vdk 2.0 is based on latest
	glib/pango/gtk+ cvs snapshot.
	Actually vdk 2.0 does not compile in gtk 1.3.2 and requires latest cvs snapshot.
	Gnome cvs instructions:
	a. first download
	$ export CVSROOT=':pserver:anonymous@anoncvs.gnome.org:/cvs/gnome'
	$ cvs login
        (there is no password, just hit return)
	$ cvs -z3 checkout glib pango gtk+
	b. after initial checkout:
	$ cvs -z3 update glib pango gtk+
	
2001-02-12 Motta Mario <mmotta@guest.net>
	* Added: 
	vdk/vdkeditor.h vdk/vdkeditor.cc
	testvdk/tokens.db
NEW	Implemented a nice source editor wrapping Mike Hamerson gtksourceview 0.0.2
WIDGET	(still on alpha), with syntax hilighting and other nice feautures
-----	such as word completion (ctrl-tab) , parent matching, etc.
	See testvdk.cc
CODE	* VDKText widget not more supported and removed from cvs tree,
BREAK	VDKTextView will replace removed widget.
-----	
2001-02-11 Motta Mario <mmotta@guest.net>
	* vdkobj.cc
	VDKObject::Destroy() revisited and hopefully simplified.
2001-02-04 Motta Mario <mmotta@guest.net>
	* Added:
	vdk/rawpixbuf.h vdk/rwapixbuf.cc
	vdk/image.h vdk/image.cc
	testvdk/vitrurian.png
NEW	* New widgets:
WIDGET	- VDKRawPixbuf, wrapper of GdkPixbuff, should substitute VDKRawPixmap now deprecated
------	(more flexible since supports several graph file formats)
NEW	- VDKImage, wrapper of GtkImage should substitute VDKPixmap now deprecated
WIDGET	(more flexible since supports several graph file formats)
------	* Changed testvdk to support VDKImage test.

2001-01-24 Motta Mario <mmotta@guest.net>
	* Added:
	vdk/vdktextview.h vdk/vdktextview.cc (wrapper of GtkTextView)
	
NEW	Implemented VDKTextView a gtktextview wrapper that would substitute
WIDGET	deprecated and buggy VDKText.
-----	
	
2001-01-02 Motta Mario <mmotta@guest.net>
BUG	* gboolean window_is_iconified (GdkWindow *window) (forms.cc)
FIX	now work properly.
---
	
2000-12-24 Motta Mario <mmotta@guest.net>
	* dummy commit, cvs transferred to new amd athlon machine
	
2000-12-09 Motta Mario <mmotta@guest.net>
NEW	* VDKTimer
---	Added a "TickTime" property that permits to change
	timer granularity on the fly.
	Suggested by a request from: wslu <wslu@263.net>
	
2000-12-05 Motta Mario <mmotta@guest.net>
NEW	* application.cc
---	VDKApplication::MessageBox() now uses default gtk+
	dialogs. Api unchanged, some features extended with new
	modal modes. (see application.h)
	* canvas.cc
	Modified DrawString() and DrawText() to new font (pango) stuff.
	* chart.cc
	Modified text drawing for the same reasons as above.
	
	
2000-11-29 Motta Mario <mmotta@guest.net>

BUG	* forms.cc
---	gboolean window_is_iconified (GdkWindow *window)
	disabled for now, returning always false.
	
2000-11-28  Tim Lorenz  <lorenz@extended.de>

	* sigcvdktest
	added directory, contains old test-programm and new one:
	props_test.cc (see below).

NEW	* vdk/vdkprops.h : Added a signal to property for notification
---	of property-changes. see next entry.
	Fixed Value: now returns the value as type S (not T as before).
	Furthermore Value is const now (pointer-types are automatically
	casted to const, someone should prove it with gcc < 2.95.2,
	see test-programm).

	* vdk/sigc_addon.h: introduced template DualSignal#, VDKSignal#
	is now a specialization from this. DualSignal is intended for
	use with signals in VDK..Prop-Template.

2000-11-26  Tim Lorenz  <lorenz@extended.de>

	* vdk/vdkprops.h (class VDKReadWriteValueProp ): made name in ctor
	const. Did the same for class VDKReadOnlyProp.

2000-11-26 Motta Mario <mmotta@guest.net>
BUG	* VDKCustom (vdkcustom.cc, .h)
---	Setting AutoResize property to true sigsegv's
	for an unknown reason.
	Now AutoResize property is "false" by default.
	
2000-11-22 Motta Mario <mmotta@guest.net>
	* VDKText (text.cc,.h)
BUG	POSSIBLY A BUG on gtk+ 1.3.2:
---	- is difficult trap "realize" signal in a safe way using
	  both static and dynamics tables on this widget.
	- a possible work around is to use a lower call to 
	  gtk_signal_connect() and connect with a static function
	  that uses a static buffer on which file selection is stored
	  (inelegant but works).
	- however i have experienced that in most cases is not necessary
	  to connect with a realize signal provided that all font and colors
	  setting are made before adding the widget and file loading made 
	  after.
	Recall that this widget is near to be declared as "deprecated" and
	that will be substituted with new gtk_text based on 
	view-buffer-controller model.
	
NEW	* VDKFont (vdkfont.cc,.h)
---	Changed to support new Pango rendering library, backward 
	compatibility with GdkFont is mantained via (GdkFont*) 
	and AsGdkFont() operators, user should 	gdk_font_unref() 
	after use.
	ie:
	VDKFont* font = new VDKFont(this,"courier bold 12");
	GdkFont* gdkfont = font->AsGdkFont();
	//... use gdkfont
	gdk_font_unref(gdkfont);
	
CODE	Code breaks:
BREAK	-----------
-----	VDKFont::Height( char* s) instead VDKFont::Height(), computes
	an average string height.
	
	* VDKCustom (vdkcustom.cc,.h)
NEW	- SelectedBackground and SelectedForeground changed to be real
---	properties instead public members as they were.
	- UnselectedBackground and UnselectedForeground changed to real
	properties, instead public members as they were, their use is 
	deprecated however and reverts 	to setting colors as 
	NormalBackground and Foreground.
	
2000-11-21 Motta Mario <mmotta@guest.net>
	* Development of a new vdk test program begins
	after having ported ./example/hello and ./example/hello2 on
	vdk 2.0.0 (beta).
	
2000-11-20 Motta Mario <mmotta@guest.net>
	* development of VDK 2.0.0 (beta) based on gtk+ 1.3.2
	begins.
	Gtk+-1.3.2 is an unstable preview of what gtk+2.0 will be,
	porting to gtk+1.3.2 was relatively easy (still in progress),
	few changes was necessary to recompile vdk on new gtk+-1.3.2
	with an unchanged API, so no source code breaks with an
	exception on VDKFont now based on pango library, old VDKFont
	can't remain backward compatible even if with unchanged API.
	Application made with vdk 1.2. series should be source compatibles
	with vdk 2.0 (not binary compatibles however) provided that they
	do not use one of the vdk components based of non-stock gtk+ widgets
	that unfortunately we lost. 

	What we have lost switching to gtk+ 1.3.2:
	- gtkcombobutton
	Used on VDKCustomButton class which is now modified, 
	with API unchanged. I plan to ask to original author if it will
	support gtkcombobutton on new gtk+ version.
	
	- VDKFileTreeDialog
	Based on an old gtkdirtree widget. We won't recover it.
	
	- VDKDatabox
	Based on gtkdatabox, we will recover it if Ionutz has time to
	make the porting after having asked to his original author.
	
	- VDKGrid
	Based on gtksheet, it will be recovered since A.Feiguin assured me
	that he will port gtksheet also on gtk+ 2.0
	
	- VDKFileIconDialog
	Based on gtkiconfilesel, same as above.

	- VDKCoolbar and VDKCoolButton
	We won't recover them, was already "deprecated" on previous vdk 
	versions

	- VDKPanedForm and VDKScrolledForm
	As above, was deprecated.

	- VDKColorBrowser
	It depends on VDKGrid, it will be recovered.

	- VDKLabelToggleButton and VDKPixmapToggleButton
	Won't be recovered, was deprecated and substituted with 
	VDKCustomButtons. (Tim i guess you have to modify your sigc 
	test program).