diff options
author | Matthias Clasen <mclasen@redhat.com> | 2017-08-19 14:07:59 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-06-03 09:43:28 -0400 |
commit | 7e9ae85dd4f2ce9b3402b6aac60e424c70194dbc (patch) | |
tree | 29551d24ed14787f665316d5b6e3fd6ba9ad3512 /gtk/gtkentryprivate.h | |
parent | d0f73642604df41d5eb8a2c1b0872a173d825908 (diff) | |
download | gtk+-7e9ae85dd4f2ce9b3402b6aac60e424c70194dbc.tar.gz |
Export some entry functions privately
This will be used in the following commits.
Diffstat (limited to 'gtk/gtkentryprivate.h')
-rw-r--r-- | gtk/gtkentryprivate.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gtk/gtkentryprivate.h b/gtk/gtkentryprivate.h index 53a90785d6..048d92aacf 100644 --- a/gtk/gtkentryprivate.h +++ b/gtk/gtkentryprivate.h @@ -95,6 +95,12 @@ void _gtk_entry_grab_focus (GtkEntry *entry, /* in gtkspinbutton.c (because I'm too lazy to create gtkspinbuttonprivate.h) */ gint gtk_spin_button_get_text_width (GtkSpinButton *spin_button); +void gtk_entry_enter_text (GtkEntry *entry, + const char *text); +void gtk_entry_set_positions (GtkEntry *entry, + int current_pos, + int selection_bound); + G_END_DECLS #endif /* __GTK_ENTRY_PRIVATE_H__ */ |