diff options
author | Elliot Lee <sopwith@src.gnome.org> | 1998-01-01 03:31:11 +0000 |
---|---|---|
committer | Elliot Lee <sopwith@src.gnome.org> | 1998-01-01 03:31:11 +0000 |
commit | 0516fcead1091e0f48c45d29ff566911a26582dc (patch) | |
tree | d90a08e8ee20fbcf7bebf5331b4b77c3ba908101 /gtk/gtkentry.h | |
parent | f872397c0c6f3fd532ec867fa2fbc1cb89af1a94 (diff) | |
download | gdk-pixbuf-0516fcead1091e0f48c45d29ff566911a26582dc.tar.gz |
handlebox now lets you set in_root flag (and if you set that, its location as well)
Diffstat (limited to 'gtk/gtkentry.h')
-rw-r--r-- | gtk/gtkentry.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gtk/gtkentry.h b/gtk/gtkentry.h index c631b0cfa..924edf659 100644 --- a/gtk/gtkentry.h +++ b/gtk/gtkentry.h @@ -43,16 +43,16 @@ struct _GtkEntry GdkWindow *text_area; gchar *text; - guint16 text_size; - guint16 text_length; - gint16 current_pos; - gint16 selection_start_pos; - gint16 selection_end_pos; - gint16 scroll_offset; - guint have_selection : 1; - guint visible : 1; - guint32 timer; - GdkIC ic; + guint16 text_size; + guint16 text_length; + gint16 current_pos; + gint16 selection_start_pos; + gint16 selection_end_pos; + gint16 scroll_offset; + gboolean have_selection : 1; + gboolean visible : 1; + guint32 timer; + GdkIC ic; gchar *clipboard_text; }; @@ -86,7 +86,7 @@ void gtk_entry_set_position (GtkEntry *entry, gint position); gchar* gtk_entry_get_text (GtkEntry *entry); void gtk_entry_set_visibility (GtkEntry *entry, - gint visible); + gint visible); #ifdef __cplusplus |