X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=ChangeLog.pre-2-6;h=2e672970f8318ee86d618f1f9f3a8d07bcefca13;hb=607ac1e1b31dc21598830a22930bcc39a77cb5c3;hp=fd26e2cf5c4888b29b8e46595f20bfaf474ca4f3;hpb=c63e37b4b0d9a82c9bcc1bfcd86f61e86a8aad29;p=~andy%2Fgtk diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index fd26e2cf5..2e672970f 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,170 @@ +2001-01-06 Hans Breuer + + * gdk/gdk.def : updated exports + + * gdk/win32/makefile.msc : -DGDK_ENABLE_BROKEN otherwise + gdk won't compile anymore + + * gdk/win32/gdkevents-win32.c : initialize ret_val when + processing GDK_FILTER functions, initialize event.key->hardware_keycode. + Improved gdk_flush () to not only do pending drawing operations + but also process all currently pending events. This should make + the behaviour more similar to the X11 version. + + * gdk/win32/gdkgc-win32.c (predraw_set_background) : a background + option needs to be set even if there is no GDK_GC_BACKGROUND. + (gdk_win32_hdc_get) : use predraw_set_background () independent + of value_mask. This allows to draw dashed lines leaving the original + background intact. + + * gdk/win32/gdkimage-win32.c (gdk_image_new_bitamp) : free data + after processing, because we can't reuse it as the X11 version does. + + * gtk/gtk.def : updated exports + + * gtk/makefile.msc.in : added ATK, removed all test apps. (I + would like to get rid of this file again, and use straight + makefile.msc again, as the other Gtk+ subdirs do) + + * test/makefile.msc (new file) : build the test apps here + +Sat May 5 10:06:24 2001 Owen Taylor + + * Release 1.3.5 + + * configure.in (GTK_MICRO_VERSION): Up to 1.3.5 + + * NEWS: Updated + + * demos/gtk-demo/Makefile.am (EXTRA_DIST): Fix minor + Makefile breakage. + +Sat May 5 09:18:30 2001 Owen Taylor + + * demos/gtk-demo/images.c (progressive_timeout): Fix + typo in filename. + + * gtk/gtktreeview.c (gtk_tree_view_row_activated): Comment + out FIXME warning; just too annoying. + +2001-05-04 Alex Larsson + + * gdk/linux-fb/gdkcolor-fb.c: + Better error messages. + + * gdk/linux-fb/gdkpixmap-fb.c (gdk_pixmap_new): + Initialize abs_x and abs_y. + + * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic): + Correct handling of stipple offset. + + * gdk/linux-fb/gdkvisual-fb.c (gdk_visual_init): + Treat directcolor framebuffers as truecolor. + +Thu May 3 14:13:49 2001 Owen Taylor + + * INSTALL.in HACKING gtk/gtkaccessible.[ch] gtk/gtk.c: Add + dependency on Atk for accessibility support. + + * configure.in **/Makefile.am: Major reworking of substituted + variables for CFLAGS/LIBS to make a lot more sane and + keep the the compile/link lines a bit shorter. + + * gdk/x11/gdkkeys-x11.c: Fix #endif with trailing stuff. + +Thu May 3 08:10:54 2001 Owen Taylor + + * gtk/gtktexttag.c (gtk_text_tag_class_init): Fix return + value to be G_TYPE_BOOLEAN, not G_TYPE_INT, also, + use _gtk_boolean_handled_accumulator. + +Thu May 3 07:00:09 2001 Owen Taylor + + * gtk/gtktextview.c: Patch from Juan Pablo Mendoza Mendoza + to fix things so clicking inside selection leaves cursor + at point where clicked. (#50324) + + * gtk/gtksettings.c (gtk_settings_class_init): Restore + sane value for default double click time. + + * tests/testtext.c (test_init): Really path to input modules. + +2001-05-03 Sven Neumann + + * demos/testpixbuf-save.c: include target-specific headers as + done in testpixbuf-drawable.c + +Wed May 2 20:36:38 2001 Owen Taylor + + * gtk/gtkentry.c (gtk_entry_real_insert_text): Reduce + new_text_length appropriately when we run into the + size limit for the entry. (#53445, reported by Jeff Franks) + + * tests/testgtk.c (create_entry): Remove most of the + property toggle buttons. Replace with a "Props" button + that brings up a property editor. + + * tests/prop-editor.[ch] test/testtreeview.c tests/Makefile.am: + Split the property editor code out for reuse, improve. + +Wed May 2 17:26:22 2001 Owen Taylor + + * gdk/x11/gdkevents-x11.c gdk/x11/gdkwindow-x11.c: Always + trap errors around calls to XSetInputFocus since we have + no way of knowing reliably whether we are viewable or + not. (#53947) + +Tue May 1 09:21:23 2001 Jonathan Blandford + + * gtk/gtktreeview.c (gtk_tree_view_button_release_drag_column): + fix bug in dropping columns. Moving columns now basically works + modula some fine tuning. + +Tue May 1 19:09:21 2001 Jonathan Blandford + + * gtk/gtktreeview.c (gtk_tree_view_horizontal_autoscroll): Add + autoscroll support. It mostly works, but could use some fine + tuning. + * gtk/gtktreeview.c (gtk_tree_view_button_release_drag_column): + Actually move the column. + +Mon Apr 30 20:29:27 2001 Owen Taylor + + * gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtkoptionmenu.c + gtk/gtkspinbutton.c gtk/gtkstyle.c gtk/gtkwidget.c: + New default theme! A slighly improved version of the 2.0 Raleigh + theme, with Windows-esque focus/drawing default. + (GtkWidget::interior_focus defaults to TRUE.) + + * gtk/gtkstyle.[ch]: Add a text_aa color halfway between text and base. + +2001-04-30 Havoc Pennington + + * tests/testtext.c (line_numbers_expose): fix to work with + gtk_paint_layout change + +Mon Apr 30 19:18:07 2001 Owen Taylor + + * gtk/gtkstyle.[ch] gtk/gtkaccellabel.c gtk/gtkcellrenderertext.c + gtk/gtkhruler.c gtk/gtkhscale.c gtk/gtklabel.c gtk/gtkprogressbar.c + gtk/gtkvruler.c gtk/gtkvscale.c: Add an extra parameter + use_text to gtk_paint_label() to deal with style->bg[] vs style->text[]. + + * gtk/gtkbbox.c gtk/gtkdialog.c: Tweak padding some to deal + with GtkWidget::interior_focus = TRUE better. + + * gtk/gtkbutton.c: Switch ::default_spacing to ::default_border, + ::default_outside_border for more flexibility. + + * gtk/gtkwidget.c (gtk_widget_style_get_valist): Remove + G_VALUE_NO_COPY_CONTENTS, to correspond with the recent + change that had to be made with g_object_get. + +Sun Apr 29 20:13:40 2001 Jonathan Blandford + + * gtk/gtktreeview.c (gtk_tree_view_get_columns): new function. + (gtk_tree_view_move_column_after): Clean up interface. + Sun Apr 29 03:02:02 2001 Tim Janik * gtk/gtkpacker.h: