summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* hm, initital refcount revolution commit ;)Tim Janik1998-01-3056-1657/+2026
| | | | | still some gnits left, but keep working on it ;) -timj
* make toolbar Child structure accesible from appsRadek Doulik1998-01-302-52/+53
|
* Close the polygon if it isn't already. (To match gtk_draw_polygon)Owen Taylor1998-01-308-36/+76
| | | | | | | | | | Thu Jan 29 22:57:39 1998 Owen Taylor <owt1@cornell.edu> * gtk/gtkstyle.c (gtk_default_draw_polygon): Close the polygon if it isn't already. (To match gtk_draw_polygon) Simplified logic. (Appearance could probably be improved for objects with gradual curves by adding in some intermediate edge coloration)
* discovered and documented a new bug ;)Tim Janik1998-01-301-0/+7
| | | | -timj
* some bugs worked out.Tim Janik1998-01-303-136/+14
| | | | | comment cleanups -timj
* new function to gather information about a certain signal.Tim Janik1998-01-297-0/+182
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Thu Jan 29 21:36:14 1998 Tim Janik <timj@gimp.org> * gtk/gtksignal.c (gtk_signal_query): new function to gather information about a certain signal. * gtk/gtksignal.c (gtk_signal_newv): new function similar to gtk_signal_new(). * gtk/gtksignal.c (gtk_signal_real_emit): check for function_offset == 0. * gtk/gtksignal.c (gtk_signal_connect_by_type): perform a signal id lookup on the parent as well. * gtk/gtkobject.c (gtk_object_class_add_user_signal): new function for implementation of user defined signals. * gtk/gtkobject.c (gtk_object_class_add_signals): free old signal id array. * gtk/gtkobject.h: this holds the typedefs for GtkSignalFunc and GtkSignalMarshaller now, because they are used for gtk_object_class_add_user_signal. * gtk/gtktypeutils.c (gtk_type_class_init): reset object_class->signals and object_class->nsignals for new object classes.
* new user signal, and possibility to query signal information.Tim Janik1998-01-295-40/+216
| | | | -timj
* this goes to *all* widget writers,Tim Janik1998-01-291-2/+6
| | | | | | you have to follow the gtk+ nameing scheme, otherwise bad things will happen (in e.g. signal/argument/type lookups). -timj
* removed a FIXME that i had forgotten earlier.Tim Janik1998-01-291-1/+0
|
* The list sort functions compared things backwards. Fixed.Manish Singh1998-01-295-11/+18
| | | | | | The list iterator macros now check for NULL args -Yosh
* Small fix to my previous GtkTable commit -miguelArturo Espinosa1998-01-281-0/+2
|
* Oops, forgot a clean-up - FedericoArturo Espinosa1998-01-281-3/+0
|
* The auto_shrink policy of the floating window is now set to TRUE. ThisFederico Mena1998-01-2811-22/+111
| | | | | | | | | | | Tue Jan 27 15:52:48 1998 Federico Mena <federico@bananoid.nuclecu.unam.mx> * gtk/gtkhandlebox.c (gtk_handle_box_realize): The auto_shrink policy of the floating window is now set to TRUE. This fixes the problem of the floating window being too big when the handlebox child is small. (gtk_handle_box_motion): Now we use GDK_POINTER_MOTION_HINT_MASK to improve movement.
* Tables autoresize now -miguelArturo Espinosa1998-01-272-25/+71
|
* More changes from Tony Gale.Shawn Amundson1998-01-279-152/+374
|
* g_string_prepend* had interchanged src and dest params. Fixed.Manish Singh1998-01-272-2/+7
| | | | -Yosh
* Fixed a really lame error where g_slist_insert didn't hook the dataManish Singh1998-01-272-19/+29
| | | | | | in! Reworked the routine a bit too. -Yosh
* Shows the widgets properly. -JayJay Painter1998-01-271-4/+5
|
* Fixed widget sensitivity for the treeitem - please review at leisureElliot Lee1998-01-271-3/+10
|
* additions/changes from new FAQ maintainers Nathan Froyd and Tony Gale.CST 1998 Shawn T. Amundson1998-01-269-136/+305
| | | | | | | Mon Jan 26 17:12:12 CST 1998 Shawn T. Amundson <amundson@gimp.org> * docs/gtkfaq.sgml: additions/changes from new FAQ maintainers Nathan Froyd and Tony Gale.
* additions/changes from Gregory A. McLeanCST 1998 Shawn T. Amundson1998-01-268-85/+1370
| | | | | | Mon Jan 26 16:54:02 CST 1998 Shawn T. Amundson <amundson@gimp.org> * docs/gtk.texi: additions/changes from Gregory A. McLean
* added a bunch of checks for window != NULL and private->destroyed. (don'tTim Janik1998-01-2623-203/+563
| | | | | | | | | | | | | | | Mon Jan 26 02:15:29 1998 Tim Janik <timj@gimp.org> * gdk/gdkdraw.c: * gdk/gdkgc.c: * gdk/gdkimage.c: * gdk/gdkinput.c: * gdk/gdkpixmap.c: * gdk/gdkproperty.c: * gdk/gdkselection.c: * gdk/gdkwindow.c: added a bunch of checks for window != NULL and private->destroyed. (don't trust this cvs commit message, i didn't modify that many files!)
* Fixed a resizing bug with CList where you could loose the end of the lastJay Painter1998-01-262-22/+27
| | | | column; I also fixed a small cosmetic problem with the fileselect. -Jay
* added new widget flag GTK_LEAVE_PENDING. if a widget has GTK_LEAVE_PENDINGTim Janik1998-01-2510-13/+272
| | | | | | | | | | | | | | Sun Jan 25 19:15:32 1998 Tim Janik <timj@gimp.org> * gtk/gtkwidget.h (enum): added new widget flag GTK_LEAVE_PENDING. * gtk/gtkmain.c (gtk_main_iteration_do): if a widget has GTK_LEAVE_PENDING set, send it its LEAVE_NOTIFY event, regardless of a grab or sensitivity. changed the compression code for enter/leave notify events to free *both* compressed event, and removed an unneccessary call to g_list_remove. * ChangeLog: finally catched up with the recent changes on my part.
* forgot a printf() line ;)Tim Janik1998-01-241-1/+0
| | | | -timj
* gtk_object_query_args() now returns the args in the corret order.Tim Janik1998-01-242-12/+21
| | | | -timj
* Changed static function names/reorganized to make more sense. -JayJay Painter1998-01-242-681/+728
|
* added BUGS. -timjTim Janik1998-01-243-4/+211
| | | | | added BUGS. -timj
* new element n_args in GtkObjectClass.Tim Janik1998-01-232-0/+5
| | | | -timj
* Switched the file to GNU indentation, for consistency.Federico Mena1998-01-239-2344/+2582
| | | | | | Thu Jan 22 18:58:44 1998 Federico Mena <federico@bananoid.nuclecu.unam.mx> * gdk/gdkcc.c: Switched the file to GNU indentation, for consistency.
* Picky, picky... fix two lines with wrong indentation :-)Federico Mena1998-01-238-2/+37
| | | | | | | Thu Jan 22 18:58:44 1998 Federico Mena <federico@bananoid.nuclecu.unam.mx> * gdk/gdktypes.h (struct _GdkColorContext): Picky, picky... fix two lines with wrong indentation :-)
* gtk/Makefile.am: Fixed the called to runelisp to use $(SHELL).scott1998-01-228-2/+37
| | | | | (Cannot rely on the script having execute permissions.) --sg
* Release GTK+ 0.99.3.Shawn Amundson1998-01-2111-3/+55
|
* some gtk_*_set_arg fixesTim Janik1998-01-218-0/+26
| | | | -timj
* Added FAQ to the tree in prep for others to start working on it...GTK_0_99_3Shawn Amundson1998-01-215-1/+939
|
* Added in Jay's new gtk_clist_column_titles_passive() call.Ian Main1998-01-211-0/+2
| | | | Ian
* sigh, it wasn't so simple - first correctionTim Janik1998-01-212-10/+16
| | | | -timj
* Forgot to free GList on destroy, and to destroy fileop dialog boxes.Ian Main1998-01-211-8/+26
| | | | Ian
* GtkCList Updates. -JayJay Painter1998-01-212-78/+156
|
* Small fix for the optionmenu.Ian Main1998-01-211-1/+9
| | | | Ian
* new function gdk_pointer_is_grabbed(). extremely simple ;)Tim Janik1998-01-213-4/+62
| | | | -timj
* New file selection dialog. Converted to use clist, added Mac-like pulldown,Ian Main1998-01-212-325/+656
| | | | | | | and a few simple file operations. Ian Main <slow@intergate.bc.ca
* strdup changed to g_strdupShawn Amundson1998-01-219-2/+37
| | | | -Shawn
* Got rid of -z text for Solaris x86... again... sigh.Shawn Amundson1998-01-211-1/+4
| | | | -Shawn
* removed some superfluous variables that duplicated widget->state.Tim Janik1998-01-2110-14/+79
| | | | | updated ChangeLog. -timj
* Applied patch from (Raja R Harinath <harinath@cs.umn.edu>) to add functionTim Janik1998-01-216-2/+53
| | | | | | | | | | | Wed Jan 21 01:13:25 1998 Tim Janik <timj@psynet.net> * Applied patch from (Raja R Harinath <harinath@cs.umn.edu>) to add function g_snprintf. * configure.in (AC_CHECK_FUNCS): Check for vsnprintf. * glib.h: Add prototype for g_snprintf. * glibconfig.h.in: Add HAVE_VSNPRINTF. * gutils.c (g_snprintf): new function.
* Use browse mode on the listElliot Lee1998-01-211-1/+1
|
* sensitivity and state setting combination.Tim Janik1998-01-202-148/+175
| | | | -timj
* glib aclocal stuff -timjTim Janik1998-01-201-1/+4
| | | | | glib aclocal stuff -timj
* Conversion to use Paolo Molaro's GtkCombo instead of GtkComboBoxOwen Taylor1998-01-2015-499/+682
|