diff options
author | Havoc Pennington <hp@redhat.com> | 2000-10-26 23:05:43 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2000-10-26 23:05:43 +0000 |
commit | a291b0be4c5e90f7e1a15c6de8e8f451c70773d1 (patch) | |
tree | f9ebb76107e152c58b12dafbcb546cd094c750e4 /gtk/gtktextiter.h | |
parent | e279178d1ab883f6517173fa40b793343d683c2e (diff) | |
download | gtk+-a291b0be4c5e90f7e1a15c6de8e8f451c70773d1.tar.gz |
add new marshallers used by the text widget
2000-10-26 Havoc Pennington <hp@redhat.com>
* gtk/gtkmarshal.list: add new marshallers used by the text widget
* gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller
types
* gtk/gtktexttagtable.c (gtk_text_tag_table_class_init): fix
marshaller types
* gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktextdisplay.h,
gtk/gtktextdisplay.c: We need to preserve Tk copyrights and
license on these files.
* gtk/gtktextiter.c (gtk_text_iter_backward_search): Make this
work.
* gtk/gtktextbtree.c (gtk_text_btree_new): init stamps to
runtime random number different for each tree, instead of
a constant I made up.
Diffstat (limited to 'gtk/gtktextiter.h')
-rw-r--r-- | gtk/gtktextiter.h | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/gtk/gtktextiter.h b/gtk/gtktextiter.h index 9a49dfbfab..f9b9202840 100644 --- a/gtk/gtktextiter.h +++ b/gtk/gtktextiter.h @@ -185,17 +185,20 @@ gboolean gtk_text_iter_backward_find_char (GtkTextIter *iter, GtkTextCharPredicate pred, gpointer user_data); -gboolean gtk_text_iter_forward_search (const GtkTextIter *iter, - const gchar *str, - gboolean visible_only, - gboolean slice, - GtkTextIter *match_start, - GtkTextIter *match_end); - -gboolean gtk_text_iter_backward_search (GtkTextIter *iter, - const char *str, - gboolean visible_only, - gboolean slice); +gboolean gtk_text_iter_forward_search (const GtkTextIter *iter, + const gchar *str, + gboolean visible_only, + gboolean slice, + GtkTextIter *match_start, + GtkTextIter *match_end); +gboolean gtk_text_iter_backward_search (const GtkTextIter *iter, + const gchar *str, + gboolean visible_only, + gboolean slice, + GtkTextIter *match_start, + GtkTextIter *match_end); + + /* * Comparisons |