summaryrefslogtreecommitdiff
path: root/gtk/gtkbutton.h
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@gtk.org>1998-05-12 21:30:52 +0000
committerOwen Taylor <otaylor@src.gnome.org>1998-05-12 21:30:52 +0000
commitc9e78a10947a24226f12e74e0985e485f51a664c (patch)
tree166cb7d79bcbd1b194c1de4277f35116033242de /gtk/gtkbutton.h
parentfe6ef6c07a2ebff7ea71d637b86f88c077dc3387 (diff)
downloadgtk+-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/gtkbutton.h')
-rw-r--r--gtk/gtkbutton.h23
1 files changed, 14 insertions, 9 deletions
diff --git a/gtk/gtkbutton.h b/gtk/gtkbutton.h
index 66b5f5eb06..0a74aba7fd 100644
--- a/gtk/gtkbutton.h
+++ b/gtk/gtkbutton.h
@@ -22,6 +22,7 @@
#include <gdk/gdk.h>
#include <gtk/gtkcontainer.h>
+#include <gtk/gtkenums.h>
#ifdef __cplusplus
@@ -47,12 +48,13 @@ struct _GtkButton
guint in_button : 1;
guint button_down : 1;
+ guint relief : 2;
};
struct _GtkButtonClass
{
GtkContainerClass parent_class;
-
+
void (* pressed) (GtkButton *button);
void (* released) (GtkButton *button);
void (* clicked) (GtkButton *button);
@@ -61,14 +63,17 @@ struct _GtkButtonClass
};
-GtkType gtk_button_get_type (void);
-GtkWidget* gtk_button_new (void);
-GtkWidget* gtk_button_new_with_label (const gchar *label);
-void gtk_button_pressed (GtkButton *button);
-void gtk_button_released (GtkButton *button);
-void gtk_button_clicked (GtkButton *button);
-void gtk_button_enter (GtkButton *button);
-void gtk_button_leave (GtkButton *button);
+GtkType gtk_button_get_type (void);
+GtkWidget* gtk_button_new (void);
+GtkWidget* gtk_button_new_with_label (const gchar *label);
+void gtk_button_pressed (GtkButton *button);
+void gtk_button_released (GtkButton *button);
+void gtk_button_clicked (GtkButton *button);
+void gtk_button_enter (GtkButton *button);
+void gtk_button_leave (GtkButton *button);
+void gtk_button_set_relief (GtkButton *button,
+ GtkReliefStyle newstyle);
+GtkReliefStyle gtk_button_get_relief (GtkButton *button);
#ifdef __cplusplus