- 04 Apr, 1998 8 commits
-
-
BST 1998 Tony Gale authored
Sat Apr 4 12:23:23 BST 1998 Tony Gale <gale@gtk.org> * docs/gtk_tut.sgml: (gtk-crichton-980403-0) subsections on Aspect Frames and Paned widgets. * examples/paned examples/aspectframe: new examples
-
Owen Taylor authored
Fri Apr 3 23:15:55 1998 Owen Taylor <owt1@cornell.edu> * gtk/gtktext.c: Test for need to recompute geometry with GTK_WIDGET_REALIZED(), not GTK_WIDGET_DRAWABLE().
-
Federico Mena Quintero authored
1998-04-03 Federico Mena Quintero <federico@nuclecu.unam.mx> * gtk/gtkhandlebox.c (draw_textured_frame): New function to draw a nifty "textured metal" frame. Could be useful in gtkstyle.c, maybe. (gtk_handle_box_paint): Paint a handle that does not make you puke when you look at it.
-
Owen Taylor authored
Fri Apr 3 21:03:38 1998 Owen Taylor <owt1@cornell.edu> * gtk/gtktext.c (gtk_text_realize): Call recompute_geometry() upon realization, since it can't be done in the previous size_allocate.
-
Owen Taylor authored
Fri Apr 3 20:36:35 1998 Owen Taylor <owt1@cornell.edu> * gutils.c (g_parse_debug_string): Make debug string parsine case-insensitive Fri Apr 3 20:36:52 1998 Owen Taylor <owt1@cornell.edu> * gdk/gdk.c gtk/gtkmain.c: Accept debug options in the form --g[td]k[-no]-debug=xxx as well
-
Manish Singh authored
-Yosh
-
Owen Taylor authored
Fri Apr 3 18:05:45 1998 Owen Taylor <owt1@cornell.edu> * testglib.c: Removed literal german from strings to appease SGI compiler.
-
Owen Taylor authored
Fri Apr 3 18:33:47 1998 Owen Taylor <owt1@cornell.edu> * gtk-config.in: Added flags --prefix[=dir] and --exec-prefix[=DIR] which allow querying and overriding the configured-in prefix and exec-prefix. * gtk.m4: Added configure flags --with-gtk-prefix= and --with-gtk-exec-prefix= to set the --prefix and --exec-prefix argumetns to gtk.m4
-
- 03 Apr, 1998 3 commits
-
-
Owen Taylor authored
Fri Apr 3 17:14:55 1998 Owen Taylor <owt1@cornell.edu> * gdk/gdk.c: More extensive debugging output
-
Owen Taylor authored
Fri Apr 3 17:14:55 1998 Owen Taylor <owt1@cornell.edu> * gdk/gdk.c: More extensive debugging output * gtk/gtkalignment.c gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtkclist.c gtk/gtkeventbox.c gtk/gtkhandlebox.c gtk/gtk[hv]box.c gtk/gtk[hv]paned.c gtk/gtklist.c gtk/gtkmenu.c gtk/gtkmenubar.c gtk/gtkmenuitem.c gtk/gtknotebook.c gtk/gtktable.c gtk/gtktree.c gtk/gtktreeitem.c gtk/gtkviewport.c Avoid assigning negative values to unsigned allocation.width and height * gtk/gtkwindow.c: Instead of realizing the widget, then size allocating, (resulting in XMoveResizeWindows for all children, do the size allocation first, then realize. In gtk_real_window_move_resize, combine move and resize into a single GDK/X call when possible. * gtk/gtkclist.c gtk/gtkdrawingarea.c: Remove assumption that the widget will be size allocated _after_ it is realized. * gtk/gtklist.c (gtk_list_motion_notify): Removed useless debugging message.
-
Owen Taylor authored
-
- 02 Apr, 1998 3 commits
-
-
BST 1998 Tony Gale authored
Thu Apr 2 17:30:04 BST 1998 Tony Gale <gale@gtk.org> * examples/gtkdial/Makefile, examples/menu/Makefile, examples/tictactoe/Makefile : add correct dependencies
-
Tony Gale authored
Change the date - which I forgot to do earlier
-
BST 1998 Tony Gale authored
Thu Apr 2 13:04:37 BST 1998 Tony Gale <gale@gtk.org> * docs/gtkfaq.sgml: add question on failing GIMP configure
-
- 01 Apr, 1998 1 commit
-
-
Elliot Lee authored
-
- 31 Mar, 1998 6 commits
-
-
Shawn Amundson authored
* Makefile.am: * examples/*: added the rest of the tutorial examples
-
Tim Janik authored
Tue Mar 31 06:37:16 1998 Tim Janik <timj@gtk.org> * gtk/testgtk.c (create_cursors): forgot to set the initial `0' cursor.
-
Arturo Espinosa authored
-
Miguel de Icaza authored
1998-03-30 Miguel de Icaza <miguel@nuclecu.unam.mx> * gdk/gdkdnd.c (gdk_dnd_display_drag_cursor): First fix: Move the window first, display it after (this removes one of the annoying flashing effects).
-
Owen Taylor authored
Mon Mar 30 21:29:43 1998 Owen Taylor <owt1@cornell.edu> * gtk/gtkentry.c: Add a "style_set" callback, so the font can be changed at run time. (needed for GIMP text tool)
-
Tim Janik authored
Tue Mar 31 01:17:23 1998 Tim Janik <timj@gtk.org> * gtk/gtknotebook.c (gtk_notebook_menu_item_create): show the menu_label unconditionally (even if it is not a default label). (gtk_notebook_update_labels): if we have a tab_label, then use its label as the default menu_label.
-
- 30 Mar, 1998 3 commits
-
-
Owen Taylor authored
Mon Mar 30 16:35:57 1998 Owen Taylor <owt1@cornell.edu> * gtk/testgtk.c: Improved main loop test. (Quits main loop properly, makes it more obvious to the user what is going on) * gtk/gtkwidget.c (gtk_widget_unparent): Reset the allocation _after_ clearing the window. * configure.in: If can't find XShmAttach in Xext, check in XextSam (for AIX). * gtk/gtkmain.c (gtk_events_pending): Remember, small numbers are _high_ priority for idle queues. * gtk/gtkmain.c (gtk_handle_current_timeouts): Allow removing the currently running timeout. * gtk/testgtk.c (timeout_test): Use the right prototype for callback.
-
Tim Janik authored
Mon Mar 30 21:40:21 1998 Tim Janik <timj@gtk.org> * gtk/gtkclist.c (gtk_clist_row_from_ypixel): removed this function, it was unneeded and not exported. * gtk/gtkwidget.c (gtk_widget_ref) (gtk_widget_unref): don't check-cast the widgets to volatile GtkObjects (which was there for debugging purposes only). these functions should probably be macros, but that would break binary compatibility again, sigh. (gtk_widget_destroy): removed superfluous check-casts, since the neccessary checks are done in gtk_object_destroy anyways. this should be a macro as well but stays as a function for the above reasoonings.
-
BST 1998 Tony Gale authored
Mon Mar 30 17:21:27 BST 1998 Tony Gale <gale@gimp.org> * docs/gtk_tut.sgml: reflect the change of meaning of the delete_event return value
-
- 29 Mar, 1998 4 commits
-
-
Tony Gale authored
Sun Mar 29 22:25:22 BST 1998 Tony Gale <gale@gimp.org> * docs/gtk_tut.sgml: more on the Text widget, update the tictactoe example to the current code
-
BST 1998 Tony Gale authored
Sun Mar 29 22:25:22 BST 1998 Tony Gale <gale@gimp.org> * docs/gtk_tut.sgml: more on the Text widget, update the tictactoe example to the current code
-
Tim Janik authored
Sun Mar 29 22:29:00 1998 Tim Janik <timj@gtk.org> * gtk/gtkspinbutton.[ch] gtk/testgtk.c (gtk_spin_button_set_wrap): Added wrapping capabilities to GtkSpinButton. New function : gtk_spin_button_set_wrap (Lars Hamann and Stefan Jeske).
-
Owen Taylor authored
Sat Mar 28 21:18:42 1998 Owen Taylor <owt1@cornell.edu> * gtk/gtkcombo.c (gtk_combo_disable_activate): Disconnect from combo->entry, not combo. (From: Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>) * gdk/gdkpixmap.c (gdk_pixmap_colormap_create_from_xpm): Deal better with xpm's with bad colors in them. Plus, 3rd attempt to commit gtklabel changes
-
- 28 Mar, 1998 3 commits
-
-
Owen Taylor authored
Fri Mar 27 21:01:17 1998 Owen Taylor <owt1@cornell.edu> * gdk/gdk.c (gdk_event_translate): Don't call XTranslateCoordinates on a destroyed window. (Why do we do event processing at all on destroyed windows when we throw out the results?) * gtk/gtklabel.c: Clear the background when changing style/ state.
-
PST 1998 Shawn T. Amundson authored
Fri Mar 27 16:35:00 PST 1998 Shawn T. Amundson <amundson@gtk.org> * Released GTK+ 0.99.9 * examples: added a couple more, fixed some Makefiles
-
Owen Taylor authored
Fri Mar 27 17:58:41 1998 Owen Taylor <owt1@cornell.edu> * gtk/gtkhandlebox.c (gtk_handle_box_paint): Don't clear the window on an expose event. On draws, just clear the portion we are redrawing. * gdk/gdkfont.c (gdk_fontset_load): Corrected calculation of fontset ascent/descent. * gtk/gtkwidget.[ch]: Added new function to show a toplevel window and wait for it to be mapped, gtk_window_show_now ()
-
- 27 Mar, 1998 3 commits
-
-
Owen Taylor authored
-
PST 1998 Shawn T. Amundson authored
Fri Mar 27 08:51:17 PST 1998 Shawn T. Amundson <amundson@gtk.org> * docs/Makefile.sgml: some stuff for doing plain text and postscript
-
Owen Taylor authored
Fri Mar 27 00:13:18 1998 Owen Taylor <owt1@cornell.edu> * gtk/gtkmain.c (gtk_propagate_event): If the widget is _not_ a descendant of a Window widget, propagate key presses like other events. * gtk/gtkentry.c gtk/gtktext.c: Ignore multiple simultaneous button presses instead of treating subsequent presses as release/press pairs for tablet compatibility. * configure.in config.h.in: Removed inline checks, because they are duplicated in glib. * gtk/gtkwidget.c (gtk_widget_draw): When gtk_widget_draw () occurs with queued draw already in place, redraw _entire_ widget. (Pointed out by Tim Janik)
-
- 26 Mar, 1998 4 commits
-
-
Tim Janik authored
Thu Mar 26 23:12:54 1998 Tim Janik <timj@gtk.org> * gtk/gtkmain.c (gtk_propagate_event): make a clear distinction between key press/release events, which will be sent to a widgets toplevel ancestor and be forwarded from there, and all other events that need to get propagated up the widget tree (pointed out by Owen Taylor).
-
Tim Janik authored
Thu Mar 26 21:37:57 1998 Tim Janik <timj@gtk.org> * gtk/gtkradiobutton.c (gtk_radio_button_draw_indicator): always display the correct active state. * gtk/gtkcheckbutton.c (gtk_real_check_button_draw_indicator): always display the correct active state. * gtk/gtkwidget.c (gtk_widget_set_arg): CAN_FOCUS and CAN_DEFAULT flag changes need to queue a resize. * gtk/gtkbutton.c (gtk_button_paint): take border_width into consideration for restrict area. * gtk/gtktogglebutton.c (gtk_toggle_button_class_init): enable the draw_default member of GtkButton, otherwise the diplay is messed up for CAN_DEFAULT toggles. (gtk_toggle_button_draw_focus): always display whether the toggle button is active or not. * gtk/gtkwidget.c (gtk_widget_set_state): (gtk_widget_set_sensitive): (gtk_widget_set_parent): (gtk_widget_propagate_state): take into consideration, whether we really want to change childrens states, or just restauration of old states.
-
Owen Taylor authored
Thu Mar 26 15:33:50 1998 Owen Taylor <owt1@cornell.edu> * gtk/gtkwidget.c: When gtk_widget_draw() is called on a REDRAW_PENDING widget, draw it and remove it from the queue instead of doing nothing. * gtk/Makefile.am gdk/Makefile.am: Switch order of includes directories, to make doubly sure that wrong glibconfig.h isn't used. (See also glib/ChangeLog) * gtk/gtkentry.c (gtk_entry_draw_focus): Don't draw the cursor unless the entry is editable. (From: Stefan Jeske <jeske@braunschweig.netsurf.de>)
-
Tim Janik authored
Thu Mar 26 08:31:58 1998 Tim Janik <timj@gtk.org> * gtk/gtkmain.c (gtk_propagate_event): do not propagate unhandled key events on widgets with parent==NULL twice.
-
- 25 Mar, 1998 1 commit
-
-
Tim Janik authored
-timj
-
- 24 Mar, 1998 1 commit
-
-
Tim Janik authored
Tue Mar 24 14:59:50 1998 Tim Janik <timj@gtk.org> * gtk/gtkhandlebox.h: * gtk/gtkhandlebox.c: implemented new flag shrink_on_detach (TRUE by default) which will cause the handle boxes requisition to collapse in case the child is already detached. removed duplicate ChangeLog entry from owen.
-