]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkseparator.h
Bug 663856 - Make option-foo accelerators use the right symbol
[~andy/gtk] / gtk / gtkseparator.h
index b2ae0fba0c3a06a76b9a95ad0ef558791d4147c4..cd7828dd2be9aafe2efa8358a0804cd505c4ca05 100644 (file)
@@ -45,21 +45,32 @@ G_BEGIN_DECLS
 #define GTK_SEPARATOR_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_SEPARATOR, GtkSeparatorClass))
 
 
-typedef struct _GtkSeparator       GtkSeparator;
-typedef struct _GtkSeparatorClass  GtkSeparatorClass;
+typedef struct _GtkSeparator              GtkSeparator;
+typedef struct _GtkSeparatorPrivate       GtkSeparatorPrivate;
+typedef struct _GtkSeparatorClass         GtkSeparatorClass;
 
 struct _GtkSeparator
 {
   GtkWidget widget;
+
+  GtkSeparatorPrivate *priv;
 };
 
 struct _GtkSeparatorClass
 {
   GtkWidgetClass parent_class;
+
+  /* Padding for future expansion */
+  void (*_gtk_reserved1) (void);
+  void (*_gtk_reserved2) (void);
+  void (*_gtk_reserved3) (void);
+  void (*_gtk_reserved4) (void);
 };
 
 
 GType       gtk_separator_get_type (void) G_GNUC_CONST;
+GtkWidget * gtk_separator_new      (GtkOrientation orientation);
+
 
 G_END_DECLS