]> Pileus Git - ~andy/gtk/blobdiff - ChangeLog.pre-2-0
removed default initialization check, people must use gtk_type_init();
[~andy/gtk] / ChangeLog.pre-2-0
index 3f09102f8e374fa57d64cb9eef0993d76fb257d6..fbff378b66245d8849b90131ee45cc5a4ee7c7ed 100644 (file)
@@ -1,3 +1,180 @@
+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
+       * gtk/gtkctree.c (gtk_ctree_class_init): use GTK_CTREE_NODE_TYPE
+       instead of GTK_TYPE_POINTER in signal definitions.
+       (patch from James Henstridge <james@daa.com.au>)
+
+Thu Nov 26 18:48:44 1998  Lars Hamann  <lars@gtk.org>
+
+       * gtk/gtkclist.c (set_cell_contents)
+       * gtk/gtkctree.c (set_cell_contents): call column_auto_resize only
+       if auto.resize == TRUE
+
+       * gtk/gtknotebook.c (gtk_notebook_set_shape) (gtk_notebook_expose):
+       don't draw tab, if show_tabs == FALSE
+       (bug reports from Alexis Mikhailov / Dave Cole)
+       (gtk_notebook_focus_changed) (gtk_notebook_draw_focus): draw only
+       the focus rectangle, not the hole tab.
+
+Thu Nov 26 03:18:08 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtkclist.h: 
+       * gtk/gtkctree.h: 
+       * gtk/gtkclist.c:
+       * gtk/gtkctree.c: reverted bogus and undocumented!!! changes from
+       Jay Cox (98/11/23 13:53:26) which `const' qualified char* arrays.
+
+       * gtk/maketypes.awk: changed underline substitution, so we get
+       GTK_TYPE_CTREE_POS instead of the broken GTK_TYPE_C_TREE_POS.
+       * gtk/makeenums.pl: likewise.
+       * gtk/gtkctree.c: adapted type names accordingly.
+
+Tue Nov 24 11:31:06 1998  Owen Taylor  <otaylor@redhat.com>
+
+       * docs/Changes-1.2.txt: Edited section on the ScrolledWindow.
+
+       * gtk/gtklayout.c (gtk_layout_set_[hv]adjustment): Remove
+       some code duplication.
+
+       * gtk/gtklayout.[ch] Fixed mapping and unmapping of child windows
+       and child widgets when scrolling greater than 32k pixels.
+
+       * testgtk.c: Modified layout test to test scrolling over 
+       long distances.
+
 Tue Nov 24 11:11:05 1998  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtklayout.[ch]: Fixed up copyright message.