mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 01:40:10 +00:00
Seal GtkLabel
svn path=/trunk/; revision=20541
This commit is contained in:
parent
ba917629a4
commit
9dcddb61dc
@ -56,30 +56,30 @@ struct _GtkLabel
|
|||||||
GtkMisc misc;
|
GtkMisc misc;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
gchar *label;
|
gchar *GSEAL (label);
|
||||||
guint jtype : 2;
|
guint GSEAL (jtype) : 2;
|
||||||
guint wrap : 1;
|
guint GSEAL (wrap) : 1;
|
||||||
guint use_underline : 1;
|
guint GSEAL (use_underline) : 1;
|
||||||
guint use_markup : 1;
|
guint GSEAL (use_markup) : 1;
|
||||||
guint ellipsize : 3;
|
guint GSEAL (ellipsize) : 3;
|
||||||
guint single_line_mode : 1;
|
guint GSEAL (single_line_mode) : 1;
|
||||||
guint have_transform : 1;
|
guint GSEAL (have_transform) : 1;
|
||||||
guint in_click : 1;
|
guint GSEAL (in_click) : 1;
|
||||||
guint wrap_mode : 3;
|
guint GSEAL (wrap_mode) : 3;
|
||||||
guint pattern_set : 1;
|
guint GSEAL (pattern_set) : 1;
|
||||||
|
|
||||||
guint mnemonic_keyval;
|
guint GSEAL (mnemonic_keyval);
|
||||||
|
|
||||||
gchar *text;
|
gchar *GSEAL (text);
|
||||||
PangoAttrList *attrs;
|
PangoAttrList *GSEAL (attrs);
|
||||||
PangoAttrList *effective_attrs;
|
PangoAttrList *GSEAL (effective_attrs);
|
||||||
|
|
||||||
PangoLayout *layout;
|
PangoLayout *GSEAL (layout);
|
||||||
|
|
||||||
GtkWidget *mnemonic_widget;
|
GtkWidget *GSEAL (mnemonic_widget);
|
||||||
GtkWindow *mnemonic_window;
|
GtkWindow *GSEAL (mnemonic_window);
|
||||||
|
|
||||||
GtkLabelSelectionInfo *select_info;
|
GtkLabelSelectionInfo *GSEAL (select_info);
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GtkLabelClass
|
struct _GtkLabelClass
|
||||||
|
Loading…
Reference in New Issue
Block a user