summaryrefslogtreecommitdiff
path: root/gtk/gtkfontsel.h
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-06-05 02:17:48 +0200
committerJavier Jardón <jjardon@gnome.org>2010-07-13 19:40:47 +0200
commit6fe5203c0adcf6d40f0a550d540d8796539b1450 (patch)
tree9657a840ffb8a5b764a46719c57860f4305730e1 /gtk/gtkfontsel.h
parent324ab58710ac0a055a2f56d36afc2d5c1c53095a (diff)
downloadgtk+-6fe5203c0adcf6d40f0a550d540d8796539b1450.tar.gz
GtkFontSelection: move public members to private structure
Diffstat (limited to 'gtk/gtkfontsel.h')
-rw-r--r--gtk/gtkfontsel.h21
1 files changed, 5 insertions, 16 deletions
diff --git a/gtk/gtkfontsel.h b/gtk/gtkfontsel.h
index 912d38111a..b829464ea5 100644
--- a/gtk/gtkfontsel.h
+++ b/gtk/gtkfontsel.h
@@ -59,6 +59,7 @@ G_BEGIN_DECLS
typedef struct _GtkFontSelection GtkFontSelection;
+typedef struct _GtkFontSelectionPriv GtkFontSelectionPriv;
typedef struct _GtkFontSelectionClass GtkFontSelectionClass;
typedef struct _GtkFontSelectionDialog GtkFontSelectionDialog;
@@ -68,22 +69,9 @@ typedef struct _GtkFontSelectionDialogClass GtkFontSelectionDialogClass;
struct _GtkFontSelection
{
GtkVBox parent_instance;
-
- GtkWidget *GSEAL (font_entry); /* Used _get_family_entry() for consistency, -mr */
- GtkWidget *GSEAL (family_list);
- GtkWidget *GSEAL (font_style_entry); /* Used _get_face_entry() for consistency, -mr */
- GtkWidget *GSEAL (face_list);
- GtkWidget *GSEAL (size_entry);
- GtkWidget *GSEAL (size_list);
- GtkWidget *GSEAL (pixels_button); /* Unused, -mr */
- GtkWidget *GSEAL (points_button); /* Unused, -mr */
- GtkWidget *GSEAL (filter_button); /* Unused, -mr */
- GtkWidget *GSEAL (preview_entry);
-
- PangoFontFamily *GSEAL (family); /* Current family */
- PangoFontFace *GSEAL (face); /* Current face */
-
- gint GSEAL (size);
+
+ /* <private> */
+ GtkFontSelectionPriv *priv;
};
struct _GtkFontSelectionClass
@@ -97,6 +85,7 @@ struct _GtkFontSelectionClass
void (*_gtk_reserved4) (void);
};
+
struct _GtkFontSelectionDialog
{
GtkDialog parent_instance;