diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-05-28 00:55:28 +0000 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-05-28 00:55:28 +0000 |
commit | e11c1fcb91ff62df6cb4c530ecb60741c8ea0317 (patch) | |
tree | 6ae45ac749be6fa87965862123f44664dce19f9c /gtk/gtkfontbutton.h | |
parent | dbdb137428f814d60301fb7342b7864f4aeedba6 (diff) | |
download | gtk+-e11c1fcb91ff62df6cb4c530ecb60741c8ea0317.tar.gz |
font button: Make final
Diffstat (limited to 'gtk/gtkfontbutton.h')
-rw-r--r-- | gtk/gtkfontbutton.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/gtk/gtkfontbutton.h b/gtk/gtkfontbutton.h index a05653c030..659cd3288f 100644 --- a/gtk/gtkfontbutton.h +++ b/gtk/gtkfontbutton.h @@ -35,38 +35,11 @@ G_BEGIN_DECLS -/* GtkFontButton is a button widget that allow user to select a font. - */ - #define GTK_TYPE_FONT_BUTTON (gtk_font_button_get_type ()) #define GTK_FONT_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_FONT_BUTTON, GtkFontButton)) -#define GTK_FONT_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_FONT_BUTTON, GtkFontButtonClass)) #define GTK_IS_FONT_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_FONT_BUTTON)) -#define GTK_IS_FONT_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_FONT_BUTTON)) -#define GTK_FONT_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FONT_BUTTON, GtkFontButtonClass)) typedef struct _GtkFontButton GtkFontButton; -typedef struct _GtkFontButtonClass GtkFontButtonClass; - -struct _GtkFontButton -{ - GtkWidget parent_instance; -}; - -struct _GtkFontButtonClass -{ - GtkWidgetClass parent_class; - - /* font_set signal is emitted when font is chosen */ - void (* font_set) (GtkFontButton *gfp); - - /* Padding for future expansion */ - void (*_gtk_reserved1) (void); - void (*_gtk_reserved2) (void); - void (*_gtk_reserved3) (void); - void (*_gtk_reserved4) (void); -}; - GDK_AVAILABLE_IN_ALL GType gtk_font_button_get_type (void) G_GNUC_CONST; |