summaryrefslogtreecommitdiff
path: root/gtk/gtkeventbox.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2003-09-08 20:04:49 +0000
committerAlexander Larsson <alexl@src.gnome.org>2003-09-08 20:04:49 +0000
commit0217c9dbfba418b562e4404ff2da8f18ba5170dc (patch)
tree72852331aedd889311858e6f8a39e5ed40bd2d7d /gtk/gtkeventbox.h
parent51f98b6a707552b29ccdf3134b4da7eb2c5e2aa3 (diff)
downloadgtk+-0217c9dbfba418b562e4404ff2da8f18ba5170dc.tar.gz
Implement gtk_event_box_get/set_input_only()
2003-09-08 Alexander Larsson <alexl@redhat.com> * gtk/gtkeventbox.[hc]: Implement gtk_event_box_get/set_input_only() * tests/testgtk.c: Tests for the new input only event boxes
Diffstat (limited to 'gtk/gtkeventbox.h')
-rw-r--r--gtk/gtkeventbox.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/gtk/gtkeventbox.h b/gtk/gtkeventbox.h
index 7ce5c51289..5a5586b7d5 100644
--- a/gtk/gtkeventbox.h
+++ b/gtk/gtkeventbox.h
@@ -44,7 +44,6 @@ extern "C" {
#define GTK_IS_EVENT_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_EVENT_BOX))
#define GTK_EVENT_BOX_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_EVENT_BOX, GtkEventBoxClass))
-
typedef struct _GtkEventBox GtkEventBox;
typedef struct _GtkEventBoxClass GtkEventBoxClass;
@@ -58,8 +57,14 @@ struct _GtkEventBoxClass
GtkBinClass parent_class;
};
-GType gtk_event_box_get_type (void) G_GNUC_CONST;
-GtkWidget* gtk_event_box_new (void);
+GType gtk_event_box_get_type (void) G_GNUC_CONST;
+GtkWidget* gtk_event_box_new (void);
+gboolean gtk_event_box_get_visible_window (GtkEventBox *event_box);
+void gtk_event_box_set_visible_window (GtkEventBox *event_box,
+ gboolean visible_window);
+gboolean gtk_event_box_get_above_child (GtkEventBox *event_box);
+void gtk_event_box_set_above_child (GtkEventBox *event_box,
+ gboolean above_child);
#ifdef __cplusplus
}