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
|
==========================
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
|