summaryrefslogtreecommitdiff
path: root/gtk/gtkeventbox.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-01-04 10:31:19 -0500
committerMatthias Clasen <mclasen@redhat.com>2011-01-04 10:33:33 -0500
commit06f6f7bd93365c69072432282edd130c567bb4c2 (patch)
tree2961e7c8b5f68c269f6b1da2a4baa166dd3b1690 /gtk/gtkeventbox.h
parent68aa336f5fa3a57346db82de53fb1a652f62cf67 (diff)
downloadgtk+-06f6f7bd93365c69072432282edd130c567bb4c2.tar.gz
Move GtkEventBox docs inline
At the same time, add a private pointer, and generally clean things up.
Diffstat (limited to 'gtk/gtkeventbox.h')
-rw-r--r--gtk/gtkeventbox.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/gtk/gtkeventbox.h b/gtk/gtkeventbox.h
index fddd76a2b4..aac154ab5e 100644
--- a/gtk/gtkeventbox.h
+++ b/gtk/gtkeventbox.h
@@ -8,7 +8,7 @@
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
@@ -44,12 +44,16 @@ G_BEGIN_DECLS
#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;
+typedef struct _GtkEventBox GtkEventBox;
+typedef struct _GtkEventBoxClass GtkEventBoxClass;
+typedef struct _GtkEventBoxPrivate GtkEventBoxPrivate;
struct _GtkEventBox
{
GtkBin bin;
+
+ /*< private >*/
+ GtkEventBoxPrivate *priv;
};
struct _GtkEventBoxClass
@@ -63,14 +67,14 @@ struct _GtkEventBoxClass
void (*_gtk_reserved4) (void);
};
-GType gtk_event_box_get_type (void) G_GNUC_CONST;
+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 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);
+ gboolean above_child);
G_END_DECLS