]> Pileus Git - ~andy/gtk/blobdiff - ChangeLog
build in the backend dir after auto-generating files
[~andy/gtk] / ChangeLog
index 18f53f75018651dbd466a20b345beffb68035648..e8f8700636928224aa3ebf2568edb5f25a9f6ab4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,172 @@
+2001-07-29  Hans Breuer  <hans@breuer.org>
+
+       * gdk/makefile.msc : build in the backend dir after
+       auto-generating files
+
+       * gdk/win32/gdkfont-win32.c (gdk_font_load) : reimplement
+       with code from win32-production-branch.
+
+       *  gdk/win32/gdkwindow-win32.c : set the private->destroyed flag
+       before calling DestroyWindow, which indirectly calls 
+       gdk_window_destroy_notify ()
+
+       (performance patch merged from win32-production-branch)
+       * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_segments): 
+       Use PatBlt() instead of LineTo() when possible (solid single-pixel pen, 
+       R2_COPYPEN rop). It is claimed to be much faster.
+
+Fri Jul 27 11:31:15 2001  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_property):
+       add an "attributes" property to the text renderer for ATK.
+
+2001-07-26  Alex Larsson  <alexl@redhat.com>
+
+       * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image):
+       Initialize image->bits_per_pixel from the drawable, not from
+       the root window.
+
+       * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_get_depth):
+       Fix cast. argument is an IMPL already.
+
+2001-07-15  James Henstridge  <james@daa.com.au>
+
+       * gtk/gtkwindow.c (gtk_window_add_accel_group): cast to GObject.
+       (gtk_window_remove_accel_group): same here.
+       (gtk_window_key_press_event): same here.
+
+       * gtk/gtkwidget.c (gtk_widget_add_accelerator): cast to GObject.
+       (gtk_widget_remove_accelerator): same here.
+       (gtk_widget_remove_accelerators): same here.
+
+       * gtk/gtkplug.c (gtk_plug_accel_entries_changed): same here.
+
+       * gtk/gtkmenushell.c (gtk_menu_shell_key_press): cast to GObject
+       instead of GtkObject.
+
+       * gtk/gtkmenu.c (gtk_menu_key_press): update since GtkAccelGroup
+       now takes GObjects.
+
+       * gtk/gtkitemfactory.c (gtk_item_factory_propagate_accelerator):
+       pass a GObject to gtk_accel_group_entries_from_object.
+       (gtk_item_factory_create_item): s/accel_widget/accel_object/
+
+       * gtk/gtk-boxed.defs: remove GtkAccelGroup boxed def.
+
+       * gtk/gtkaccellabel.c: convert to handle GObject accel objects.
+
+       * gtk/gtkaccellabel.h: fix header to reflect that arbitrary
+       GObjects can have accelerators set now.  Add compatibility
+       defines.
+
+       * gtk/gtkmarshal.list: add missing marshallers.
+
+       * gtk/gtkaccelgroup.[ch]: convert to a GObject, and allow setting
+       accelerators on plain GObjects.  gtk_accel_group_object_destroy
+       has been converted into a weak reference, and
+       gtk_accel_group_delete_entries is now a destroy notify for that
+       piece of data.
+
+2001-07-23  Ron Steinke  <rsteinke@w-link.net>
+
+       * gdk/gdkdraw.c: Added a check on the colormap depth to
+       gdk_drawable_set_colormap()
+       * gdk/x11/gdkimage-x11.c: combination of Matthias Clasen's
+       patch to fix colorsel and my patch to fix gdk_drawable_get_image()
+       for pixmaps without visuals (more specifically, bitmaps)
+       * gdk/x11/gdkpixmap-x11.c: Fixed gdk_pixmap_new() so it
+       doesn't set a colormap with the wrong depth
+
+
+2001-07-22  Anders Carlsson  <andersca@gnome.org>
+
+       * gtk/gtktreeview.c (gtk_tree_view_class_init): Replace the
+       expander_height and expander_width properties with a single
+       property, expander_size.
+       (gtk_tree_view_init): Set the tab_offset to expander_size
+       plus some padding.
+       (gtk_tree_view_unrealize): Remove the expand/collapse
+       timeout if it exists.
+       (coords_are_over_arrow): Fix a small bug.
+       (gtk_tree_view_motion_draw_column_motion_arrow): Use
+       expander_size.
+       (gtk_tree_view_draw_focus): Use "treeview" instead of
+       "add-mode" as detail when drawing the focus.
+       (gtk_tree_view_bin_expose): Use "treeview-drop-indicator"
+       instead of "add-mode" as detail when drawing the focus.
+       (gtk_tree_view_deleted): If we have a node currently being
+       expanded or collapsed, remove the timeout and set the node 
+       to NULL.
+       (gtk_tree_view_queue_draw_arrow): New function that just
+       redraws the arrow of a node.
+       (gtk_tree_view_draw_arrow): Use expander_size instead of
+       expander_width/expander_height, also pass a different
+       expander_style to gtk_paint_expander depending on the 
+       state of the node being drawn.
+       (expand_collapse_timeout): New function for expanding 
+       or collapsing a node depending on the previous state.
+       (gtk_tree_view_real_expand_row): Add timeout and set 
+       correct state for node being expanded.
+       (gtk_tree_view_real_collapse_row): Add timeout and set
+       correct state for node being collapsed.
+
+       * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): Add
+       information about the node currently being expanded or
+       collapsed, and also a timeout id.
+
+       * gtk/gtkstyle.h (struct _GtkStyleClass): Replace is_open
+       with expander_style for draw_expander.
+
+       * gtk/gtkstyle.c (gtk_draw_expander): Replace is_open with
+       expander_style.
+       (create_expander_affine): New function for creating an 
+       expander affine.
+       (apply_affine_on_point): New function for applying an 
+       affine to a point.
+       (gtk_default_draw_expander): Modified to take expander_style
+       instead of is_open, and to draw the rectangle rotated differently
+       depending on the expander style.
+       (gtk_paint_expander): Replace is_open with expander_style.
+
+       * gtk/gtkrbtree.h: Add expander states to GtkRBNodeColor.
+
+       * gtk/gtkenums.h: Add expander style enum.
+
+2001-07-21  Jonas Borgström  <jonas@codefactory.se>
+
+       * gtk/gtktreemodel.c (gtk_tree_model_foreach): Check the return
+       value from gtk_tree_model_get_iter, the model might be empty.
+
+2001-07-20  Hans Breuer  <hans@breuer.org>
+
+       * gdk/win32/gdkinput-win32.c : gdk_device_get_history moved to
+       gdk/gdkinput.c like the other backends
+
+       * gdk/win32/gdkinput-win32.h :
+       * gdk/win32/gdkinput.c :
+       * gdk/win32/gdkvisual-win32.c :
+       * gdk/win32/gdkwin32.h : mechanical adaption to GdkDevice and
+       GdkVisual GObjectification. UNTESTED for pen-devices because
+       I simply have none.
+
+       * gdk/gdk.def :
+       * gtk/gtk.def : updated externals
+
+       * gtk/gtkiconfactory.c :
+       * gtk/gtkoldeditable.c : GError *error needs to be initialized (= NULL) 
+       before passing &error to functions to avoid strange crashes
+       
+       * gtk/gtkcontainer.c (gtk_container_real_set_focus_child) : is static
+
+       * gtk/gtkwidget.c (gtk_widget_get_child_visible): use g_return_val_if_fail
+
+       * gtk/makefile.msc.in : updated
+
+Thu Jul 19 15:35:32 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_vadjustment):
+       Add property support. (#51858)
+
 Thu Jul 19 14:56:33 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkaccellabel.c (gtk_accel_label_class_init)