==========================
What's new in version 2.4.0
==========================
This release does fit new gtk release 2.4.0 and requires it to be compiled.
Changes from previous releases:
NEWS:
* VDKTextView and VDKEditor updated with latest cvs version of gtksourceview
* VDKHLButton widget, (HL stands for HighLighted) it behaves like
Mozilla buttons that highlight when mouse cursor is over
* VDKHLButtonBar new widget, a toolbar to accomodate a set    VDKHLButtons Both widgets API left unchanged as in parents.
* VDKDataBox, restored Roland widget wrapper for gtk 2.x
* Enhanced VDKTreeViewIter class, now given a VDKTreeViewIter you can know parent and childs 	if any.. (Suggested by P. Malatray)

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()

*   Added word completion support to entry widget
*   New VDKFileChooser class, wraps new GtkFileChooser widget.
*   New VDKComboEntry widget that wraps GtkComboBox with entry.

==========================
What's new in version 2.0
==========================

Overall library had a huge rewriting to be compatible with Gtk+ 2.0.
Users upgrading from VDK 1.2.5 should suffer little code breaks since
API had little or no changes.
Some widgets are now deprecated even if still supported for compatibility
reason. Newly written code should not use them.

Deprecated widgets:
------------------
VDKCustomList
VDKCustomTree
VDKPixmap

Widget not more supported:
--------------------------
- gtkcombobutton
	Used on VDKCustomButton class which is now modified, 
	with API unchanged.

- VDKFileTreeDialog
	Based on an old gtkdirtree widget
	
- VDKDatabox
	Based on gtkdatabox.
	
- VDKGrid
	Based on gtksheet.
	
- VDKFileIconDialog
	Based on gtkiconfilesel, same as above.

- VDKCoolbar and VDKCoolButton
	Was already "deprecated" on previous vdk 
	versions.

- VDKPanedForm and VDKScrolledForm
	As above, was deprecated.

- VDKColorBrowser
	It depends on VDKGrid

- VDKLabelToggleButton and VDKPixmapToggleButton
	Deprecated and substituted with VDKCustomButtons.

- VDKPacker

- VDKText


New widgets and features:
------------------------
- VDKTextView 
	A GtkTextView wrapper that would substitute
	deprecated and buggy VDKText.

- VDKEditor
	A nice source editor wrapping Mike Hamerson gtksourceview 0.0.2
	(still on alpha), with syntax hilighting and other nice feautures
	such as word completion (ctrl-tab) , parent matching, etc.

- VDKImage
	A GtkImage wrapper that should substitute VDKPixmap.

- VDKThread
	A simple wrapper on posix threads.

- VDKInputChannel
	A wrapper for gdk_input
	Thanks to Jonathan Hudson  <jonathan@daria.co.uk> .

- VDKTreeView
	A wrapper for GtkTreeView

- VDKCalendar
	A wrapper for GtkCalendar
