aboutsummaryrefslogtreecommitdiff
path: root/gtksecentry/gtksecentry.h
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2009-04-04 15:00:44 +0200
committerGuido Günther <agx@sigxcpu.org>2009-04-04 15:00:44 +0200
commit61675c0b44f15c2f1760c7f192321e61f174daaa (patch)
tree1d8e5cc6f09fd48a8b695be575b200224af8341f /gtksecentry/gtksecentry.h
parentImported Upstream version 0.8+svn136 (diff)
downloadkrb5-auth-dialog-61675c0b44f15c2f1760c7f192321e61f174daaa.tar.gz
krb5-auth-dialog-61675c0b44f15c2f1760c7f192321e61f174daaa.tar.bz2
krb5-auth-dialog-61675c0b44f15c2f1760c7f192321e61f174daaa.zip
Imported Upstream version 0.8+svn141
Diffstat (limited to 'gtksecentry/gtksecentry.h')
-rw-r--r--gtksecentry/gtksecentry.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gtksecentry/gtksecentry.h b/gtksecentry/gtksecentry.h
index 12736cd..273a4f2 100644
--- a/gtksecentry/gtksecentry.h
+++ b/gtksecentry/gtksecentry.h
@@ -135,6 +135,8 @@ gtk_secure_entry_get_type(void)
G_GNUC_CONST;
GtkWidget *
gtk_secure_entry_new(void);
+GtkWidget *
+gtk_secure_entry_new_with_max_length(gint max);
void
gtk_secure_entry_set_invisible_char(GtkSecureEntry * entry, gunichar ch);
gunichar
@@ -169,6 +171,12 @@ gtk_secure_entry_get_text(GtkSecureEntry * entry);
PangoLayout *
gtk_secure_entry_get_layout(GtkSecureEntry * entry);
+gint
+gtk_secure_entry_layout_index_to_text_index(GtkSecureEntry * entry,
+ gint layout_index);
+gint
+gtk_secure_entry_text_index_to_layout_index(GtkSecureEntry * entry,
+ gint text_index);
void
gtk_secure_entry_get_layout_offsets(GtkSecureEntry * entry,
gint * x, gint * y);
bgstack15