diff options
author | Havoc Pennington <hp@pobox.com> | 2001-04-24 12:24:35 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-04-24 12:24:35 +0000 |
commit | b84d2f1234b6a6c1fd42cab2541b563f2ad66615 (patch) | |
tree | 44407326be6f5dc11512800930a0164b7f09f411 /gtk/gtktextbuffer.h | |
parent | 60051ff6700171c384257134952110a3db0643e9 (diff) | |
download | gtk+-b84d2f1234b6a6c1fd42cab2541b563f2ad66615.tar.gz |
handle 0-height empty/invisible lines.
2001-04-21 Havoc Pennington <hp@pobox.com>
* gtk/gtktextdisplay.c (gtk_text_layout_draw): handle 0-height
empty/invisible lines.
* gtk/gtktextiter.c (gtk_text_iter_set_visible_line_offset)
(gtk_text_iter_set_visible_line_index): new functions to set
indexes excluding invisible text
* gtk/gtktextlayout.c (line_display_iter_to_index): get visible
index
* gtk/gtktextiter.c (gtk_text_iter_get_visible_line_index)
(gtk_text_iter_get_visible_line_offset): new functions to
get indexes excluding invisible text
* gtk/gtkmessagedialog.c (gtk_message_dialog_init): strip out a
bunch of extra padding that served no purpose
* gtk/gtkdialog.c: Make all the spacings configurable via style
properties, for chubbiness configuration in themes
* tests/testtext.c: fix path to the immodules.
Diffstat (limited to 'gtk/gtktextbuffer.h')
-rw-r--r-- | gtk/gtktextbuffer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtktextbuffer.h b/gtk/gtktextbuffer.h index 54f245e8aa..b6f801f119 100644 --- a/gtk/gtktextbuffer.h +++ b/gtk/gtktextbuffer.h @@ -277,7 +277,8 @@ GtkTextTag *gtk_text_buffer_create_tag (GtkTextBuffer *buffer, ...); /* Obtain iterators pointed at various places, then you can move the - iterator around using the GtkTextIter operators */ + * iterator around using the GtkTextIter operators + */ void gtk_text_buffer_get_iter_at_line_offset (GtkTextBuffer *buffer, GtkTextIter *iter, gint line_number, |