GtkToolbar: move public members to private structure
This commit is contained in:
parent
ca7d3f9081
commit
83c20d4b32
446
gtk/gtktoolbar.c
446
gtk/gtktoolbar.c
File diff suppressed because it is too large
Load Diff
@ -57,29 +57,14 @@ typedef enum
|
|||||||
} GtkToolbarSpaceStyle;
|
} GtkToolbarSpaceStyle;
|
||||||
|
|
||||||
typedef struct _GtkToolbar GtkToolbar;
|
typedef struct _GtkToolbar GtkToolbar;
|
||||||
|
typedef struct _GtkToolbarPriv GtkToolbarPriv;
|
||||||
typedef struct _GtkToolbarClass GtkToolbarClass;
|
typedef struct _GtkToolbarClass GtkToolbarClass;
|
||||||
typedef struct _GtkToolbarPrivate GtkToolbarPrivate;
|
|
||||||
|
|
||||||
struct _GtkToolbar
|
struct _GtkToolbar
|
||||||
{
|
{
|
||||||
GtkContainer container;
|
GtkContainer container;
|
||||||
|
|
||||||
/*< public >*/
|
GtkToolbarPriv *priv;
|
||||||
gint GSEAL (num_children);
|
|
||||||
GList *GSEAL (children);
|
|
||||||
GtkOrientation GSEAL (orientation);
|
|
||||||
GtkToolbarStyle GSEAL (style);
|
|
||||||
GtkIconSize GSEAL (icon_size);
|
|
||||||
|
|
||||||
/*< private >*/
|
|
||||||
gint GSEAL (button_maxw); /* maximum width of homogeneous children */
|
|
||||||
gint GSEAL (button_maxh); /* maximum height of homogeneous children */
|
|
||||||
|
|
||||||
guint _gtk_reserved1;
|
|
||||||
guint _gtk_reserved2;
|
|
||||||
|
|
||||||
guint GSEAL (style_set) : 1;
|
|
||||||
guint GSEAL (icon_size_set) : 1;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GtkToolbarClass
|
struct _GtkToolbarClass
|
||||||
|
Loading…
Reference in New Issue
Block a user