]> Pileus Git - ~andy/gtk/blobdiff - ChangeLog.pre-2-2
removed default initialization check, people must use gtk_type_init();
[~andy/gtk] / ChangeLog.pre-2-2
index 37b37b7d1ba34c90b9bff5b2d2d6f81a2fdf5376..fbff378b66245d8849b90131ee45cc5a4ee7c7ed 100644 (file)
@@ -1,3 +1,135 @@
+Sun Nov 29 06:12:01 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtktypeutils.c (gtk_type_unique): removed default initialization
+       check, people must use gtk_type_init();
+
+       * gtk/gtkwidget.h: 
+       * gtk/gtkwidget.c: added gtk_widget_set_composite_name() which is meant
+       for internal use by containers, that want to assign specific composite
+       names to their composite children.
+       added gtk_widget_get_composite_name() which will return a newly
+       allocated string, containing the composite name of a widget. valid
+       composite names can only be retrived from widgets that have a parent
+       assigned and are flagged as GTK_COMPOSITE_CHILD.
+
+       * gtk/gtkcontainer.h:
+       * gtk/gtkcontainer.c: added a new function
+       gtk_container_child_default_composite_name() which will return a
+       newly allocated string, holding the composite name of a containers
+       child. a default implementation is provided which will compose the
+       composite name out of the widgets type and its sequential children
+       id. this implementation can be overidden through a new class function
+       *(composite_name)().
+
+Sat Nov 28 10:57:59 1998  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkwindow.c (gtk_window_expose_event): Removed bogus
+       expose_event handler - we had two expose_event
+       handlers!
+
+Sat Nov 28 03:13:42 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtkscrolledwindow.h: 
+       * gtk/gtkscrolledwindow.c: changed scrolled window inheritance,
+       it inherits from GtkBin now.
+
+       * gtk/gtkbin.c (gtk_bin_unmap): removed superfluous check for
+       visibility of child.
+       (gtk_bin_draw): removed superfluous check for GTK_WIDGET_DRAWABLE().
+       added check so a child gets only drawn if it's visible.
+
+       * gtk/gtkwidget.h: 
+       * gtk/gtkwidget.c: removed gtk_widget_draw_children().
+
+       * gtk/gtkstyle.h: 
+       * gtk/gtkstyle.c: rmoved gtk_reset_widget_shapes.
+
+       * gtk/gtkwidget.h: 
+       * gtk/gtkwidget.c: removed crufty relict: gtk_widget_is_child().
+       added internal function gtk_widget_reset_shapes() from gtkstyle.c.
+
+       * gtk/gtkrc.h:
+       * gtk/gtkrc.c: (gtk_rc_find_pixmap_in_path): removed bogus gscanner
+       argument, changed callers.
+
+       * gtk/gtkmenufactory.c: GtkMenuFactory is deprecated for a long time,
+       it will issue a warning now.
+
+       * gtk/gtkcompat.h: new file to #define aliases for historic
+       function names.
+
+       * changed 8 function names for consistency and provided aliases to keep
+       source compatibility in gtkcompat.h:
+       (gtk_accel_label_get_accel_width): renamed from gtk_accel_label_accelerator_width
+       (gtk_container_set_border_width): renamed from gtk_container_border_width
+       (gtk_notebook_get_current_page): renamed from gtk_notebook_current_page
+       (gtk_packer_configure): renamed from gtk_packer_set_child_packing
+       (gtk_paned_set_gutter_size): renamed from gtk_paned_gutter_size
+       (gtk_paned_set_handle_size): renamed from gtk_paned_handle_size
+       (gtk_scale_get_value_width): renamed from gtk_scale_value_width
+       (gtk_window_set_position): renamed from gtk_window_position
+
+       * renamed a few recently added funtions for consistency:
+       (gtk_notebook_get_tab_label): renamed from gtk_notebook_query_tab_label.
+       (gtk_notebook_get_menu_label): renamed from gtk_notebook_query_menu_label.
+        (gtk_progress_configure): renamed from gtk_progress_reconfigure.
+
+Fri Nov 27 18:57:20 PST 1998 Manish Singh <yosh@gimp.org>
+
+       * gtk/gtkscrolledwindow.c (gtk_scrolled_window_add_with_viewport):
+       check for existing viewport first, and don't add one if there
+       already is one
+
+Sat Nov 28 00:06:49 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtkwidget.h: 
+       * gtk/gtkwidget.c: deprecated gtk_widget_freeze_accelerators and
+       gtk_widget_thaw_accelerators, we provide gtk_widget_lock_accelerators
+       and gtk_widget_unlock_accelerators.
+
+       * gtk/gtklayout.h:
+       * gtk/gtklayout.c: implemented incremental freezing facility.
+
+       * gtk/gtktext.h: 
+       * gtk/gtktext.c: implemented incremental freezing facility.
+
+       * gtk/gtkenums.h:
+       * gtk/gtkaccelgroup.h: moved enum GtkAccelFlags into this place.
+
+       * gtk/gtkentry.h:
+       * gtk/gtkentry.c:
+       deprecated gtk_entry_adjust_scroll().
+       
+       * random GtkType, macro and indentation fixes.
+
+Fri Nov 27 22:50:15 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtkclist.h: 
+       * gtk/gtkclist.c: implemented incremental freezing facility, added
+       a new class member (*refresh)() which takes over the thaw
+       functionality. the clist FROZEN flag got removed on the way.
+       * gtk/gtkctree.c: adaptions to feature the clist refresh functionality
+       and incremental freezing.
+
+       * gtk/gtkcalendar.c: implemented incremental freezing facility.
+
+Fri Nov 27 11:41:27 1998  Raph Levien  <raph@gimp.org>
+
+       * gdk/gdkinputcommon.h (gdk_input_common_init): Fixed it so that
+       it still includes the core pointer in gdk_input_devices even
+       if the XInput extension is not present in the X server.
+
+Fri Nov 27 12:17:15 1998  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkdnd.[ch] (gtk_drag_get_source_widget): New function to
+       get the source widget of a drag.
+
+       * gtk/gtkdnd.[ch]: Target flags GTK_TARGET_SAME_[WIDGET/APP]
+       to restrict certain targets to the same widget or to
+       the same application.
+
+       * gtk/testdnd.c: Test gtk_drag_get_source_widget().
+       
 Thu Nov 26 19:11:46 1998  Lars Hamann  <lars@gtk.org>
 
        * gtk/gtk-boxed.defs (GtkCTreeNode): define GtkCTreeNode as boxed type