diff options
author | Owen Taylor <otaylor@gtk.org> | 1998-05-12 21:30:52 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 1998-05-12 21:30:52 +0000 |
commit | c9e78a10947a24226f12e74e0985e485f51a664c (patch) | |
tree | 166cb7d79bcbd1b194c1de4277f35116033242de /gtk/gtktoolbar.h | |
parent | fe6ef6c07a2ebff7ea71d637b86f88c077dc3387 (diff) | |
download | gtk+-c9e78a10947a24226f12e74e0985e485f51a664c.tar.gz |
(James A <jamesa@demon.net> : gtk-jamesa-980511-4.patch)
Tue May 12 16:54:15 1998 Owen Taylor <otaylor@gtk.org>
(James A <jamesa@demon.net> : gtk-jamesa-980511-4.patch)
* glib.h gstring.c gmessages.c: Added some missing
const to arguments.
* gutils.c (g_strsignal.c): Added missing return statements.
Tue May 12 16:56:35 1998 Owen Taylor <otaylor@gtk.org>
(James A <jamesa@demon.net> : gtk-jamesa-980511-4.patch)
* gtk/gtkbbox.h gtk/gtkcolorsel.h gtk/gtkvbbox.h:
Changed #include "gtkfoo.h" to #include <gtk/gtkfoo.h>
* gtk/gtkwindow.[ch]: Added const to gtk_window_set_wmclass
Tue May 12 15:16:10 1998 Owen Taylor <otaylor@gtk.org>
(From: Christopher James Lahey <clahey@umich.edu>)
* gtk/gtkbutton.[ch] gtk/gtkenums.h gtk/gtktoolbar.[ch]
gtk/testgtk.c:
Added 'relief' for buttons - they can be either GTK_RELIEF_NORMAL
(old style), or GTK_RELIEF_NONE - no relief in the NORMAL
state. Added gtk_toolbar_{set,get}_button_relief, which set/get
the default relief for the toolbars buttons. Added an
toggle for the toolbar test in testgtk.c.
Diffstat (limited to 'gtk/gtktoolbar.h')
-rw-r--r-- | gtk/gtktoolbar.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk/gtktoolbar.h b/gtk/gtktoolbar.h index 8e81abf9ab..ea689460be 100644 --- a/gtk/gtktoolbar.h +++ b/gtk/gtktoolbar.h @@ -75,6 +75,7 @@ struct _GtkToolbar gint button_maxw; gint button_maxh; + GtkReliefStyle relief; }; struct _GtkToolbarClass @@ -178,6 +179,9 @@ void gtk_toolbar_set_space_size (GtkToolbar *toolbar, gint space_size); void gtk_toolbar_set_tooltips (GtkToolbar *toolbar, gint enable); +void gtk_toolbar_set_button_relief (GtkToolbar *toolbar, + GtkReliefStyle relief); +GtkReliefStyle gtk_toolbar_get_button_relief (GtkToolbar *toolbar); #ifdef __cplusplus |