]> Pileus Git - ~andy/gtk/blobdiff - ChangeLog.pre-2-2
fixed ifndef..define typo
[~andy/gtk] / ChangeLog.pre-2-2
index 0c47a61033fcdbb08f5a1501fd0466860a9454a3..a1e35ac1845eeac29015c9d638fbbf03647d2666 100644 (file)
@@ -1,5 +1,162 @@
-Sat Feb 28 15:18:36 1998  Tim Janik  <timj@gimp.org>
+Mon Mar  2 18:27:09 CST 1998 Shawn T. Amundson <amundson@gimp.org>
+
+        * gtk/gtkstatusbar.h: fixed ifndef..define typo
+
+Mon Mar  2 17:48:38 1998  Owen Taylor  <owt1@cornell.edu>
+
+       Miscellaneous minor fixes to remove ANSI C incompatibilities
+
+       * gdk/gdkregion.c gtk/gtkclist.c: fix // comments
+
+       * gdk/gdkdnd.c gdk/gdkinputcommon.h: change types of
+       some arguments to ANSI functions
+
+       * gtk/gtkcombo.c gtk/gtktree.c: fix casts of function pointers
+         to void *
+
+       * gtk/gtkmain.c: An actual bug! (in deprecated gtk_input_add_interp)
+
+       * gtk/gtknotebook.h: Bitfields must be gint or guint. (and should
+         be guint)
+
+       * gtk/gtkstatusbar.c: trailing ';'
+
+       * gtk/testgtk.c: GList where there should have been GSList
+
+Mon Mar  2 12:26:59 1998  Owen Taylor  <owt1@cornell.edu>
+
+       * gtk/gtkentry.c: Changed 'entry != NULL' to 'editable != NULL'
+         in three spots.
+
+Sun Mar  1 18:29:58 PST 1998 Shawn T. amundson <amundson@gimp.org>
+
+        * Released GTK 0.99.4.
+
+Sun Mar  1 16:47:29 PST 1998 Shawn T. Amundson <amundson@gimp.org>
+
+        * gtk/testgtk.c: small fix to notebook portion
+
+Sun Mar  1 15:18:38 PST 1998 Shawn T. Amundson <amundson@gimp.org>
+
+        * Required changes for version change to 0.99.4
+
+        * gtk/gtktree.[ch]: patch from J. Bolliet to correct some bugs
+        * gtk/testgtk.c: added test here from J. Bolliet, removed testtree
+
+        * gtk/clist: gtk-abilleira-981602-0, allows gtk_clist_set_pixmap 
+          and gtk_clist_set_pixtext to not require a mask
+        
+        * gdk/gdkdraw.c,gdk.h: gtk-trow-980217-0
+          adds gdk_draw_lines and fixes some things about 
+          gdk_draw_polygon         
+
+Sun Mar  1 17:40:58 1998  Owen Taylor  <owt1@cornell.edu>
+
+       * gdk/gdkpixmap.c: Make sure either the window or
+       the depth is given when creating a pixmap.
+
+Sun Mar  1 22:59:09 1998  Tim Janik  <timj@gimp.org>
+
+       * gtk/gtkstatusbar.h: 
+       * gtk/gtkstatusbar.c: complete api change to honour message contexts.
+       unfortunaltely this also involved argument changes on the signal
+       emissions which will not be caught by the compiler. your callbacks
+       should look like:
+       void  message_text_popped (GtkStatusbar   *statusbar,
+                                  guint           context_id,
+                                  const gchar    *text,
+                                  gpointer        func_data);
+
+       * gtk/gtkwidget.c (gtk_widget_set_rc_style): eliminated bug about
+       initial signal emission.
+       (gtk_widget_set_parent): don't ensure style, just call
+       gtk_widget_set_style_recurse.
+       (gtk_widget_set_style_recurse): only change a widget's rc styles if
+       if there has already been a lookup.
        
+       * gtk/testgtk.c: adaptions for statusbar widget.
+       substituted notebook pixmaps with pixmaps from fvwm, since
+       we don't know where the originals came from.
+       
+       * gtk/gtkobject.c (gtk_object_data_destroy): call the destroy
+       notifier with the objects data, not its internal structure.
+       
+       * gtk/gtkspinbutton.c (gtk_spin_button_button_press): small
+       fix from lars.
+
+Sun Mar  1 15:08:13 CST 1998 Shawn T. Amundson <amundson@gimp.org>
+
+       * docs/*.texi changes from Greg Mclean.
+
+Sun Mar  1 18:41:07 1998  Tim Janik  <timj@gimp.org>
+
+       * gtk/gtkwidget.c (gtk_widget_restore_default_style): hm if we save the
+       default style, we should also provide a function to restore it ;).
+
+       * gtk/main.[hc]: small fixups to idle handlers, added support for quit
+       handlers.
+
+Sun Mar  1 05:18:11 1998  Owen Taylor  <owt1@cornell.edu>
+
+       * gtk/gtkentry.c gtk/gtktext.c gtkeditable.[ch]
+
+       Changed interface to cut/copy/paste so it makes sense
+       when triggered by say, menu items.
+
+Sun Mar  1 03:20:39 1998  Owen Taylor  <owt1@cornell.edu>
+
+       * gtk/gtkentry.[ch] gtk/gtktext.[ch] gtkeditable.[ch]
+
+       Turned off debugging in gtktext.c
+
+       Bug fixes for cutting, pasting, deleting, etc. 
+
+       Some of the bugs that were there before have definitely
+       been fixed. 
+       
+       * gtk/testgtk.c gtk/testgtkrc: Removed my ugly orange backgrounds,
+       to make things look nicer. 
+       
+Sat Feb 28 23:58:54 1998  Owen Taylor  <owt1@cornell.edu>
+
+       * gtk/gtkentry.[ch] gtktext.[ch] gtkeditable.[ch]
+
+       Created a new base widget type Editable for the entry and
+       text widgets, which encapsulates most of the selection and
+       clipboard handling stuff, plus some common signals.
+
+       Changed the Entry widget extensively to support this, 
+       but the interface and appearance should be the same.
+
+       Changed the Text widget moderately to support this.
+
+       It now supports:
+
+       - Selection style cut and paste
+       - Clipboard style cut and paste
+       - Emacs style key bindings (~same as Entry)
+       - Word motion
+       - "changed" signal
+
+       There are definitely still some bugs in the new stuff.
+
+       Use style->base for the background and style->text for
+       the foreground.
+       
+       * gtkfilesel.c gtkspinbutton.c testgtk.c: small changes
+       to fit the new interface more exactly.
+       
+Sat Feb 28 19:29:09 1998  Tim Janik  <timj@gimp.org>
+
+       * gtk/gtkclist.c (gtk_clist_new_with_titles): retrive the clist widget
+       from gtk_type_new (gtk_clist_get_type ()), not gtk_clist_new(),
+       otherwise gtk_clist_construct() gets called twice.
+
+       * gtk/gtkhandlebox.h:
+       * gtk/gtkhandlebox.c: emit signals when the child is attached/detached.
+
+Sat Feb 28 15:18:36 1998  Tim Janik  <timj@gimp.org>
+
        * gtk/gtkpreview.c: fix behavior of gtk_preview_put() with
        srcx/srcy != 0, gtk-shige-980127-0.patch.gz by
        AOSASA Shigeru <aozasa@sakuranet.or.jp>.
@@ -195,11 +352,6 @@ Sat Feb 21 14:49:17 1998  Tim Janik  <timj@gimp.org>
        gchar *tooltip_private_text as argument to fully support the underlying
        call to gtk_tooltip_set_tip.
 
-Fri Feb 20 16:44:57 GMT 1998 Tony Gale <gale@gimp.org>
-
-       * docs/gtkfaq.sgml: added to list of GTK apps, added permissions notice
-               new GDK section - needs some Q&A's added
-
 Fri Feb 20 06:40:00 1998  Tim Janik  <timj@gimp.org>
 
        * gtk/gtktipsquery.h: