GtkEntry: pack GtkEntryPrivate a bit better

This commit is contained in:
Matthias Clasen
2012-08-30 22:14:23 -04:00
parent 9d3c8122f1
commit ee2ad441ca

View File

@@ -142,7 +142,6 @@ struct _GtkEntryPrivate
GtkEntryBuffer *buffer;
GtkIMContext *im_context;
GtkShadowType shadow_type;
GtkWidget *popup_menu;
GdkDevice *device;
@@ -189,6 +188,7 @@ struct _GtkEntryPrivate
guint16 preedit_length; /* length of preedit string, in bytes */
guint16 preedit_cursor; /* offset of cursor within preedit string, in chars */
guint shadow_type : 4;
guint editable : 1;
guint in_drag : 1;
guint overwrite_mode : 1;
@@ -10458,3 +10458,14 @@ gtk_entry_get_input_hints (GtkEntry *entry)
return hints;
}
void
gtk_entry_set_attributes (GtkEntry *entry,
PangoAttrList *attrs)
{
}
PangoAttrList *
gtk_entry_get_attributes (GtkEntry *attrs)
{
}