diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-05-28 00:56:41 +0000 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-05-28 00:56:41 +0000 |
commit | 1b34e158937603df52081824c43ed3c85a123b8a (patch) | |
tree | d7f0316b3cf7cefa7069573330b7c9a2c168171c | |
parent | e11c1fcb91ff62df6cb4c530ecb60741c8ea0317 (diff) | |
download | gtk+-1b34e158937603df52081824c43ed3c85a123b8a.tar.gz |
font chooser widget: Make final
-rw-r--r-- | gtk/gtkfontchooserwidget.c | 15 | ||||
-rw-r--r-- | gtk/gtkfontchooserwidget.h | 34 |
2 files changed, 15 insertions, 34 deletions
diff --git a/gtk/gtkfontchooserwidget.c b/gtk/gtkfontchooserwidget.c index a7f1ff6e0a..15a39783cf 100644 --- a/gtk/gtkfontchooserwidget.c +++ b/gtk/gtkfontchooserwidget.c @@ -96,6 +96,21 @@ * GtkFontChooserWidget has a single CSS node with name fontchooser. */ +typedef struct _GtkFontChooserWidgetPrivate GtkFontChooserWidgetPrivate; +typedef struct _GtkFontChooserWidgetClass GtkFontChooserWidgetClass; + +struct _GtkFontChooserWidget +{ + GtkWidget parent_instance; + + GtkFontChooserWidgetPrivate *priv; +}; + +struct _GtkFontChooserWidgetClass +{ + GtkWidgetClass parent_class; +}; + struct _GtkFontChooserWidgetPrivate { GtkWidget *stack; diff --git a/gtk/gtkfontchooserwidget.h b/gtk/gtkfontchooserwidget.h index 7729dcc213..149c685ad9 100644 --- a/gtk/gtkfontchooserwidget.h +++ b/gtk/gtkfontchooserwidget.h @@ -28,43 +28,9 @@ G_BEGIN_DECLS #define GTK_TYPE_FONT_CHOOSER_WIDGET (gtk_font_chooser_widget_get_type ()) #define GTK_FONT_CHOOSER_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_FONT_CHOOSER_WIDGET, GtkFontChooserWidget)) -#define GTK_FONT_CHOOSER_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_FONT_CHOOSER_WIDGET, GtkFontChooserWidgetClass)) #define GTK_IS_FONT_CHOOSER_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_FONT_CHOOSER_WIDGET)) -#define GTK_IS_FONT_CHOOSER_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_FONT_CHOOSER_WIDGET)) -#define GTK_FONT_CHOOSER_WIDGET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FONT_CHOOSER_WIDGET, GtkFontChooserWidgetClass)) typedef struct _GtkFontChooserWidget GtkFontChooserWidget; -typedef struct _GtkFontChooserWidgetPrivate GtkFontChooserWidgetPrivate; -typedef struct _GtkFontChooserWidgetClass GtkFontChooserWidgetClass; - -struct _GtkFontChooserWidget -{ - GtkWidget parent_instance; - - /*< private >*/ - GtkFontChooserWidgetPrivate *priv; -}; - -/** - * GtkFontChooserWidgetClass: - * @parent_class: The parent class. - */ -struct _GtkFontChooserWidgetClass -{ - GtkWidgetClass parent_class; - - /*< private >*/ - - /* Padding for future expansion */ - void (*_gtk_reserved1) (void); - void (*_gtk_reserved2) (void); - void (*_gtk_reserved3) (void); - void (*_gtk_reserved4) (void); - void (*_gtk_reserved5) (void); - void (*_gtk_reserved6) (void); - void (*_gtk_reserved7) (void); - void (*_gtk_reserved8) (void); -}; GDK_AVAILABLE_IN_ALL GType gtk_font_chooser_widget_get_type (void) G_GNUC_CONST; |