]> Pileus Git - ~andy/gtk/blob - NEWS
changed scrolled window inheritance, it inherits from GtkBin now.
[~andy/gtk] / NEWS
1 What is new in GTK+ 1.1.6:
2
3 * GtkScrolledWindow inherits from GtkBin now.
4 * Lots of API clean ups.
5 * Incremental freezing abilities.
6 * Integrated widgets from the GNOME tree: GtkLayout, GtkPlug and GtkSocket.
7 * Read doc/Changes-1.2 to properly adapt your code.
8
9 What is new in GTK+ 1.1.5:
10
11 * Theme integration
12 * Widget style modification is now handled through GtkRcStyles
13 * GtkPixmaps now grey out pixmaps when insensitive
14 * Notebook enhancements
15 * Shadow configurability for menubars and handleboxes
16 * DND enhancements
17 * gtkfilesel now supports automounters better
18 * Implementation of expose compression
19 * Queued redraws of partial areas
20 * Scrolledwindow (+Viewport) source incompatibilities, children that are added
21   to a scrolled window don't get an automatic viewport anymore. a convenience
22   function gtk_scrolled_window_add_with_viewport() is suplied for this task
23 * Deprecated functions will now issue a message, informing the programmer about
24   the use of this function. These functions will get removed in future versions
25 * Non-functional functions got removed entirely
26 * gtk_widget_new() and gtk_object_new() will now auto-construct new objects.
27   A new function gtk_object_default_construct() is provided now which should
28   be called after every gtk_type_new() to perfom the auto-construction
29 * Improved argument support of several widgets
30 * Bug Fixes
31
32 What is new in GTK+ 1.1.3:
33
34 * GtkCList/GtkCTree now have the ability to:
35     - hide/show individual columns
36     - disable/enable column resizing
37     - set min and max for column widths
38     - set expander style of the ctree
39     - set/get row and cell styles
40     - set spacing between tree expander and cell contents in ctree
41     - toggle auto_resize for columns
42 * Must enhanced DND support, removed old DND code
43 * Idle functions are now implemented via GHook, giving a slight speed
44   improvement
45 * An environment variable GTK_MODULES which takes a colon seperated
46   list of module names GTK+ will now automatically load at gtk_init() startup
47 * GtkFontSel now has support for an extra 'base' filter
48 * New function gdk_window_set_root_origin to get the real geometry taking
49   into account window manager offsets
50 * New function gtk_text_set_line_wrap to toggle line wrapping
51 * New function gtk_widget_add_events which safely adds additional
52   events to a widget's event mask
53 * New function gdk_event_get_time to get the timestamp from a generic
54   event
55 * New widget GtkCalendar
56 * New widget GtkInvisible - InputOnly offscreen windows used for reliable
57   pointer grabs and selection handling in DND code
58 * New functions gtk_object_remove_no_notify[_by_id] to remove a certain
59   data portion without invokation of its destroy notifier 
60 * gtk_spin_button_construct is now deprecated, use gtk_spin_button_configure
61   instead 
62 * gtk_clist_set_border is now deprecated, use gtk_clist_set_shadow_type 
63   instead
64 * Removed functions gtk_object_set_data_destroy[_by_id] 
65 * Documentation additions/updates 
66 * HTML and plain text files are now included in the distribution
67 * Bug fixes, typeness corrections, and general fixups
68
69 What is new in GTK+ 1.1.2:
70
71 * Gtk+ is now featuring runtime loading of dynamic modules via the
72   --gtk-modules= command line switch. such modules have to export a
73   G_MODULE_EXPORT void gtk_module_init (gint *argc, gchar ***argv);
74   function which will be invoked to initialize the module. since such
75   modules may create new widget types, they are always resident.
76 * The tutorial has been updated again.
77 * Changes to menus including tearoff menus and accelerators.
78 * Better support for modal dialogs.
79 * Removed CAN_FOCUS by default from scrollbars and button children of toolbar.
80 * More improvements and fixes for GtkCList and GtkCTree (i.e. row sorting).
81 * GtkCTree rows can be unselectable now.
82 * The GtkCTree API has undergone major renames (see ChangeLog entry from Lars
83   Hamann on Tue Aug 18 00:29:13 1998).
84 * A bunch of varargs functions changed to get va_lists working on systems that
85   implement va_lists as arrays.
86 * Improvements to the gdkrgb code.
87 * Improvements to Gdk color handling so we greatly reduce server traffic and
88   don't leak colors anymore.
89 * Improved internal widget tree iterators (the GtkContainer::foreach signal
90   vanished because of this).
91 * Option menus can have the keyboard focus now.
92 * More fixups to the text widget.
93 * GtkFileSelection should behave much more nicely in combination with AFS now.
94 * Support for label underlining.
95 * Support for GLib 1.1.3 log domains.
96 * Documentation improvements.
97 * Configuration fixes on various platforms.
98 * Miscellaneous fixes to XInput support.
99 * Build with shared library dependencies on Linux
100 * Fix for a major bug in the type systems memory allocation code that could
101   cause random crashes.
102 * Libtool update to version 1.2b.
103 * Lots of bugfixes and cleanups again ;)
104
105
106 What is new in GTK+ 1.1.1:
107
108 * Tutorial updates and additions.
109 * Key binding support for GtkListItems and GtkList.
110 * Extended selection mode and autoscrolling for GtkLists.
111 * A GtkCtree now operates on GtkCTreeNode* structures rather than GList*.
112 * GtkCTreeNodes can now be created from GNode trees.
113 * Bug fixes for GtkNotebook, GtkCList, GtkCombo and GdkWindow reparentation.
114
115
116 What is new in GTK+ 1.1.0:
117
118 * New widget GtkFontSelector.
119 * New featurefull progress bar.
120 * New container widget GtkPacker.
121 * New object GtkItemFactory, GtkMenuFactory is deprecated.
122 * New key binding system, configurable via rcfiles, similar to styles.
123 * New widget GtkCTree with drag selections and keyboard movement and
124   and horizontal scrolling. Features also implemented for GtkCList.
125 * Significant speedups to widget creation and destruction through caching
126   colormap and visual queries to the XServer.
127 * Speedups for type creation and especially gtk_type_is_a() checks.
128 * Speedups in signal lookup, creation and emissions and connection handling.
129 * Minor speedups with object data allocation and destruction.
130 * Additions to the signal handling API (e.g. *_emitv).
131 * Support for rc-file reparsing.
132 * Resizing logic is now implemented on container widget basis, rather than
133   for toplevel GtkWindows only.
134 * Buttons support relief styles now.
135 * Some widgets are now allocated through memchunks to behave more memory wise.
136 * Newly included file gtkfeatures.h which defines compatibility macros to
137   test for certain API features upon program compilation.
138 * Child arguments support for container widgets.
139 * Far better support for object arguments, revamp of the underlying
140   mechanism for speed and reusability. Child/object arguments don't
141   need to be preceeded by the "GtkType::" portion anymore.
142 * Removed GtkAcceleratorTable in favour of GtkAccelGroup, accelerator display
143   is now performed by a new widget GtkAccelLabel.
144 * Overhaul of the resizing code. Resizing behaviour can now be specified
145   on GtkContainer basis, so the underlying algorithm isn't only available
146   for GtkWindows.
147 * GtkTables are now fully resizable.
148 * The GtkType system now supports an additional base class initialization
149   function.
150 * GtkStyles and key bindings can now be looked up depending on the base
151   types of a widget, through a new keyword `class' in rc files.
152 * GtkButton derives from GtkBin (finally).  
153 * More descriptive error messages on rc parsing.  
154 * Runtime information is available to query enum/flag definition values.
155 * Upgrade to libtool-1.2
156 * Legions of bug fixes, memory leaks, segfaults, of-by-something errors...
157   including those that already went into the 1.0.x branch.
158 * A big bunch of features and cosmetic fixups that just got lost in
159   the masses of changes.