]> Pileus Git - ~andy/gtk/blob - gtk/gtktextlayout.c
Redo the fix for bug #492117, by adding a getter for the private drag
[~andy/gtk] / gtk / gtktextlayout.c
1 /* GTK - The GIMP Toolkit
2  * gtktextlayout.c - calculate the layout of the text
3  *
4  * Copyright (c) 1992-1994 The Regents of the University of California.
5  * Copyright (c) 1994-1997 Sun Microsystems, Inc.
6  * Copyright (c) 2000 Red Hat, Inc.
7  * Tk->Gtk port by Havoc Pennington
8  * Pango support by Owen Taylor
9  *
10  * This file can be used under your choice of two licenses, the LGPL
11  * and the original Tk license.
12  *
13  * LGPL:
14  *
15  * This library is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU Lesser General Public
17  * License as published by the Free Software Foundation; either
18  * version 2 of the License, or (at your option) any later version.
19  *
20  * This library is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
23  * Lesser General Public License for more details.
24  *
25  * You should have received a copy of the GNU Lesser General Public
26  * License along with this library; if not, write to the Free
27  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28  *
29  * Original Tk license:
30  *
31  * This software is copyrighted by the Regents of the University of
32  * California, Sun Microsystems, Inc., and other parties.  The
33  * following terms apply to all files associated with the software
34  * unless explicitly disclaimed in individual files.
35  *
36  * The authors hereby grant permission to use, copy, modify,
37  * distribute, and license this software and its documentation for any
38  * purpose, provided that existing copyright notices are retained in
39  * all copies and that this notice is included verbatim in any
40  * distributions. No written agreement, license, or royalty fee is
41  * required for any of the authorized uses.  Modifications to this
42  * software may be copyrighted by their authors and need not follow
43  * the licensing terms described here, provided that the new terms are
44  * clearly indicated on the first page of each file where they apply.
45  *
46  * IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY
47  * PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
48  * DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION,
49  * OR ANY DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  *
52  * THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
53  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
54  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
55  * NON-INFRINGEMENT.  THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS,
56  * AND THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE
57  * MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
58  *
59  * GOVERNMENT USE: If you are acquiring this software on behalf of the
60  * U.S. government, the Government shall have only "Restricted Rights"
61  * in the software and related documentation as defined in the Federal
62  * Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2).  If you
63  * are acquiring the software on behalf of the Department of Defense,
64  * the software shall be classified as "Commercial Computer Software"
65  * and the Government shall have only "Restricted Rights" as defined
66  * in Clause 252.227-7013 (c) (1) of DFARs.  Notwithstanding the
67  * foregoing, the authors grant the U.S. Government and others acting
68  * in its behalf permission to use and distribute the software in
69  * accordance with the terms specified in this license.
70  *
71  */
72 /*
73  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
74  * file for a list of people on the GTK+ Team.  See the ChangeLog
75  * files for a list of changes.  These files are distributed with
76  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
77  */
78
79 #define GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API
80 #include <config.h>
81 #include "gtkmarshalers.h"
82 #include "gtktextlayout.h"
83 #include "gtktextbtree.h"
84 #include "gtktextiterprivate.h"
85 #include "gtktextutil.h"
86 #include "gtkintl.h"
87 #include "gtkalias.h"
88
89 #include <stdlib.h>
90 #include <string.h>
91
92 #define GTK_TEXT_LAYOUT_GET_PRIVATE(o)  (G_TYPE_INSTANCE_GET_PRIVATE ((o), GTK_TYPE_TEXT_LAYOUT, GtkTextLayoutPrivate))
93
94 typedef struct _GtkTextLayoutPrivate GtkTextLayoutPrivate;
95
96 struct _GtkTextLayoutPrivate
97 {
98   /* Cache the line that the cursor is positioned on, as the keyboard
99      direction only influences the direction of the cursor line.
100   */
101   GtkTextLine *cursor_line;
102 };
103
104 static GtkTextLineData *gtk_text_layout_real_wrap (GtkTextLayout *layout,
105                                                    GtkTextLine *line,
106                                                    /* may be NULL */
107                                                    GtkTextLineData *line_data);
108
109 static void gtk_text_layout_invalidated     (GtkTextLayout     *layout);
110
111 static void gtk_text_layout_real_invalidate        (GtkTextLayout     *layout,
112                                                     const GtkTextIter *start,
113                                                     const GtkTextIter *end);
114 static void gtk_text_layout_real_invalidate_cursors(GtkTextLayout     *layout,
115                                                     const GtkTextIter *start,
116                                                     const GtkTextIter *end);
117 static void gtk_text_layout_invalidate_cache       (GtkTextLayout     *layout,
118                                                     GtkTextLine       *line,
119                                                     gboolean           cursors_only);
120 static void gtk_text_layout_invalidate_cursor_line (GtkTextLayout     *layout,
121                                                     gboolean           cursors_only);
122 static void gtk_text_layout_real_free_line_data    (GtkTextLayout     *layout,
123                                                     GtkTextLine       *line,
124                                                     GtkTextLineData   *line_data);
125 static void gtk_text_layout_emit_changed           (GtkTextLayout     *layout,
126                                                     gint               y,
127                                                     gint               old_height,
128                                                     gint               new_height);
129
130 static void gtk_text_layout_invalidate_all (GtkTextLayout *layout);
131
132 static PangoAttribute *gtk_text_attr_appearance_new (const GtkTextAppearance *appearance);
133
134 static void gtk_text_layout_mark_set_handler    (GtkTextBuffer     *buffer,
135                                                  const GtkTextIter *location,
136                                                  GtkTextMark       *mark,
137                                                  gpointer           data);
138 static void gtk_text_layout_buffer_insert_text  (GtkTextBuffer     *textbuffer,
139                                                  GtkTextIter       *iter,
140                                                  gchar             *str,
141                                                  gint               len,
142                                                  gpointer           data);
143 static void gtk_text_layout_buffer_delete_range (GtkTextBuffer     *textbuffer,
144                                                  GtkTextIter       *start,
145                                                  GtkTextIter       *end,
146                                                  gpointer           data);
147
148 static void gtk_text_layout_update_cursor_line (GtkTextLayout *layout);
149
150 enum {
151   INVALIDATED,
152   CHANGED,
153   ALLOCATE_CHILD,
154   LAST_SIGNAL
155 };
156
157 enum {
158   ARG_0,
159   LAST_ARG
160 };
161
162 #define PIXEL_BOUND(d) (((d) + PANGO_SCALE - 1) / PANGO_SCALE)
163
164 static void gtk_text_layout_finalize (GObject *object);
165
166 static guint signals[LAST_SIGNAL] = { 0 };
167
168 PangoAttrType gtk_text_attr_appearance_type = 0;
169
170 G_DEFINE_TYPE (GtkTextLayout, gtk_text_layout, G_TYPE_OBJECT)
171
172 static void
173 gtk_text_layout_class_init (GtkTextLayoutClass *klass)
174 {
175   GObjectClass *object_class = G_OBJECT_CLASS (klass);
176
177   object_class->finalize = gtk_text_layout_finalize;
178
179   klass->wrap = gtk_text_layout_real_wrap;
180   klass->invalidate = gtk_text_layout_real_invalidate;
181   klass->invalidate_cursors = gtk_text_layout_real_invalidate_cursors;
182   klass->free_line_data = gtk_text_layout_real_free_line_data;
183
184   signals[INVALIDATED] =
185     g_signal_new (I_("invalidated"),
186                   G_OBJECT_CLASS_TYPE (object_class),
187                   G_SIGNAL_RUN_LAST,
188                   G_STRUCT_OFFSET (GtkTextLayoutClass, invalidated),
189                   NULL, NULL,
190                   _gtk_marshal_VOID__VOID,
191                   G_TYPE_NONE,
192                   0);
193
194   signals[CHANGED] =
195     g_signal_new (I_("changed"),
196                   G_OBJECT_CLASS_TYPE (object_class),
197                   G_SIGNAL_RUN_LAST,
198                   G_STRUCT_OFFSET (GtkTextLayoutClass, changed),
199                   NULL, NULL,
200                   _gtk_marshal_VOID__INT_INT_INT,
201                   G_TYPE_NONE,
202                   3,
203                   G_TYPE_INT,
204                   G_TYPE_INT,
205                   G_TYPE_INT);
206
207   signals[ALLOCATE_CHILD] =
208     g_signal_new (I_("allocate_child"),
209                   G_OBJECT_CLASS_TYPE (object_class),
210                   G_SIGNAL_RUN_LAST,
211                   G_STRUCT_OFFSET (GtkTextLayoutClass, allocate_child),
212                   NULL, NULL,
213                   _gtk_marshal_VOID__OBJECT_INT_INT,
214                   G_TYPE_NONE,
215                   3,
216                   GTK_TYPE_OBJECT,
217                   G_TYPE_INT,
218                   G_TYPE_INT);
219   
220   g_type_class_add_private (object_class, sizeof (GtkTextLayoutPrivate));
221 }
222
223 static void
224 gtk_text_layout_init (GtkTextLayout *text_layout)
225 {
226   text_layout->cursor_visible = TRUE;
227 }
228
229 GtkTextLayout*
230 gtk_text_layout_new (void)
231 {
232   return g_object_new (GTK_TYPE_TEXT_LAYOUT, NULL);
233 }
234
235 static void
236 free_style_cache (GtkTextLayout *text_layout)
237 {
238   if (text_layout->one_style_cache)
239     {
240       gtk_text_attributes_unref (text_layout->one_style_cache);
241       text_layout->one_style_cache = NULL;
242     }
243 }
244
245 static void
246 gtk_text_layout_finalize (GObject *object)
247 {
248   GtkTextLayout *layout;
249
250   layout = GTK_TEXT_LAYOUT (object);
251
252   gtk_text_layout_set_buffer (layout, NULL);
253
254   if (layout->default_style)
255     gtk_text_attributes_unref (layout->default_style);
256   layout->default_style = NULL;
257
258   if (layout->ltr_context)
259     {
260       g_object_unref (layout->ltr_context);
261       layout->ltr_context = NULL;
262     }
263   if (layout->rtl_context)
264     {
265       g_object_unref (layout->rtl_context);
266       layout->rtl_context = NULL;
267     }
268   
269   if (layout->one_display_cache) 
270     {
271       GtkTextLineDisplay *tmp_display = layout->one_display_cache;
272       layout->one_display_cache = NULL;
273       gtk_text_layout_free_line_display (layout, tmp_display);
274     }
275
276   if (layout->preedit_string)
277     {
278       g_free (layout->preedit_string);
279       layout->preedit_string = NULL;
280     }
281
282   if (layout->preedit_attrs)
283     {
284       pango_attr_list_unref (layout->preedit_attrs);
285       layout->preedit_attrs = NULL;
286     }
287
288
289   (* G_OBJECT_CLASS (gtk_text_layout_parent_class)->finalize) (object);
290 }
291
292 void
293 gtk_text_layout_set_buffer (GtkTextLayout *layout,
294                             GtkTextBuffer *buffer)
295 {
296   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
297   g_return_if_fail (buffer == NULL || GTK_IS_TEXT_BUFFER (buffer));
298
299   if (layout->buffer == buffer)
300     return;
301
302   free_style_cache (layout);
303
304   if (layout->buffer)
305     {
306       _gtk_text_btree_remove_view (_gtk_text_buffer_get_btree (layout->buffer),
307                                   layout);
308
309       g_signal_handlers_disconnect_by_func (layout->buffer, 
310                                             G_CALLBACK (gtk_text_layout_mark_set_handler), 
311                                             layout);
312       g_signal_handlers_disconnect_by_func (layout->buffer, 
313                                             G_CALLBACK (gtk_text_layout_buffer_insert_text), 
314                                             layout);
315       g_signal_handlers_disconnect_by_func (layout->buffer, 
316                                             G_CALLBACK (gtk_text_layout_buffer_delete_range), 
317                                             layout);
318
319       g_object_unref (layout->buffer);
320       layout->buffer = NULL;
321     }
322
323   if (buffer)
324     {
325       layout->buffer = buffer;
326
327       g_object_ref (buffer);
328
329       _gtk_text_btree_add_view (_gtk_text_buffer_get_btree (buffer), layout);
330
331       /* Bind to all signals that move the insert mark. */
332       g_signal_connect_after (layout->buffer, "mark_set",
333                               G_CALLBACK (gtk_text_layout_mark_set_handler), layout);
334       g_signal_connect_after (layout->buffer, "insert_text",
335                               G_CALLBACK (gtk_text_layout_buffer_insert_text), layout);
336       g_signal_connect_after (layout->buffer, "delete_range",
337                               G_CALLBACK (gtk_text_layout_buffer_delete_range), layout);
338
339       gtk_text_layout_update_cursor_line (layout);
340     }
341 }
342
343 void
344 gtk_text_layout_default_style_changed (GtkTextLayout *layout)
345 {
346   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
347
348   DV (g_print ("invalidating all due to default style change (%s)\n", G_STRLOC));
349   gtk_text_layout_invalidate_all (layout);
350 }
351
352 void
353 gtk_text_layout_set_default_style (GtkTextLayout *layout,
354                                    GtkTextAttributes *values)
355 {
356   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
357   g_return_if_fail (values != NULL);
358
359   if (values == layout->default_style)
360     return;
361
362   gtk_text_attributes_ref (values);
363
364   if (layout->default_style)
365     gtk_text_attributes_unref (layout->default_style);
366
367   layout->default_style = values;
368
369   gtk_text_layout_default_style_changed (layout);
370 }
371
372 void
373 gtk_text_layout_set_contexts (GtkTextLayout *layout,
374                               PangoContext  *ltr_context,
375                               PangoContext  *rtl_context)
376 {
377   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
378
379   if (layout->ltr_context != ltr_context)
380     {
381       if (layout->ltr_context)
382         g_object_unref (layout->ltr_context);
383
384       layout->ltr_context = ltr_context;
385       g_object_ref (layout->ltr_context);
386     }
387
388   if (layout->rtl_context != rtl_context)
389     {
390       if (layout->rtl_context)
391         g_object_unref (layout->rtl_context);
392
393       layout->rtl_context = rtl_context;
394       g_object_ref (layout->rtl_context);
395     }
396
397   DV (g_print ("invalidating all due to new pango contexts (%s)\n", G_STRLOC));
398   gtk_text_layout_invalidate_all (layout);
399 }
400
401 /**
402  * gtk_text_layout_set_overwrite_mode:
403  * @layout: a #GtkTextLayout
404  * @overwrite: overwrite mode
405  *
406  * Sets overwrite mode
407  **/
408 void
409 gtk_text_layout_set_overwrite_mode (GtkTextLayout *layout,
410                                     gboolean       overwrite)
411 {
412   overwrite = overwrite != 0;
413   if (overwrite != layout->overwrite_mode)
414     {
415       layout->overwrite_mode = overwrite;
416       gtk_text_layout_invalidate_cursor_line (layout, TRUE);
417     }
418 }
419
420 /**
421  * gtk_text_layout_set_cursor_direction:
422  * @direction: the new direction(s) for which to draw cursors.
423  *             %GTK_TEXT_DIR_NONE means draw cursors for both
424  *             left-to-right insertion and right-to-left insertion.
425  *             (The two cursors will be visually distinguished.)
426  * 
427  * Sets which text directions (left-to-right and/or right-to-left) for
428  * which cursors will be drawn for the insertion point. The visual
429  * point at which new text is inserted depends on whether the new
430  * text is right-to-left or left-to-right, so it may be desired to
431  * make the drawn position of the cursor depend on the keyboard state.
432  **/
433 void
434 gtk_text_layout_set_cursor_direction (GtkTextLayout   *layout,
435                                       GtkTextDirection direction)
436 {
437   if (direction != layout->cursor_direction)
438     {
439       layout->cursor_direction = direction;
440       gtk_text_layout_invalidate_cursor_line (layout, TRUE);
441     }
442 }
443
444 /**
445  * gtk_text_layout_set_keyboard_direction:
446  * @keyboard_dir: the current direction of the keyboard.
447  *
448  * Sets the keyboard direction; this is used as for the bidirectional
449  * base direction for the line with the cursor if the line contains
450  * only neutral characters.
451  **/
452 void
453 gtk_text_layout_set_keyboard_direction (GtkTextLayout   *layout,
454                                         GtkTextDirection keyboard_dir)
455 {
456   if (keyboard_dir != layout->keyboard_direction)
457     {
458       layout->keyboard_direction = keyboard_dir;
459       gtk_text_layout_invalidate_cursor_line (layout, TRUE);
460     }
461 }
462
463 /**
464  * gtk_text_layout_get_buffer:
465  * @layout: a #GtkTextLayout
466  *
467  * Gets the text buffer used by the layout. See
468  * gtk_text_layout_set_buffer().
469  *
470  * Return value: the text buffer used by the layout.
471  **/
472 GtkTextBuffer *
473 gtk_text_layout_get_buffer (GtkTextLayout *layout)
474 {
475   g_return_val_if_fail (GTK_IS_TEXT_LAYOUT (layout), NULL);
476
477   return layout->buffer;
478 }
479
480 void
481 gtk_text_layout_set_screen_width (GtkTextLayout *layout, gint width)
482 {
483   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
484   g_return_if_fail (width >= 0);
485   g_return_if_fail (layout->wrap_loop_count == 0);
486
487   if (layout->screen_width == width)
488     return;
489
490   layout->screen_width = width;
491
492   DV (g_print ("invalidating all due to new screen width (%s)\n", G_STRLOC));
493   gtk_text_layout_invalidate_all (layout);
494 }
495
496 /**
497  * gtk_text_layout_set_cursor_visible:
498  * @layout: a #GtkTextLayout
499  * @cursor_visible: If %FALSE, then the insertion cursor will not
500  *   be shown, even if the text is editable.
501  *
502  * Sets whether the insertion cursor should be shown. Generally,
503  * widgets using #GtkTextLayout will hide the cursor when the
504  * widget does not have the input focus.
505  **/
506 void
507 gtk_text_layout_set_cursor_visible (GtkTextLayout *layout,
508                                     gboolean       cursor_visible)
509 {
510   cursor_visible = (cursor_visible != FALSE);
511
512   if (layout->cursor_visible != cursor_visible)
513     {
514       GtkTextIter iter;
515       gint y, height;
516
517       layout->cursor_visible = cursor_visible;
518
519       /* Now queue a redraw on the paragraph containing the cursor
520        */
521       gtk_text_buffer_get_iter_at_mark (layout->buffer, &iter,
522                                         gtk_text_buffer_get_mark (layout->buffer, "insert"));
523
524       gtk_text_layout_get_line_yrange (layout, &iter, &y, &height);
525       gtk_text_layout_emit_changed (layout, y, height, height);
526
527       gtk_text_layout_invalidate_cache (layout, _gtk_text_iter_get_text_line (&iter), TRUE);
528     }
529 }
530
531 /**
532  * gtk_text_layout_get_cursor_visible:
533  * @layout: a #GtkTextLayout
534  *
535  * Returns whether the insertion cursor will be shown.
536  *
537  * Return value: if %FALSE, the insertion cursor will not be
538     shown, even if the text is editable.
539  **/
540 gboolean
541 gtk_text_layout_get_cursor_visible (GtkTextLayout *layout)
542 {
543   return layout->cursor_visible;
544 }
545
546 /**
547  * gtk_text_layout_set_preedit_string:
548  * @layout: a #PangoLayout
549  * @preedit_string: a string to display at the insertion point
550  * @preedit_attrs: a #PangoAttrList of attributes that apply to @preedit_string
551  * @cursor_pos: position of cursor within preedit string in chars
552  * 
553  * Set the preedit string and attributes. The preedit string is a
554  * string showing text that is currently being edited and not
555  * yet committed into the buffer.
556  **/
557 void
558 gtk_text_layout_set_preedit_string (GtkTextLayout *layout,
559                                     const gchar   *preedit_string,
560                                     PangoAttrList *preedit_attrs,
561                                     gint           cursor_pos)
562 {
563   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
564   g_return_if_fail (preedit_attrs != NULL || preedit_string == NULL);
565
566   g_free (layout->preedit_string);
567
568   if (layout->preedit_attrs)
569     pango_attr_list_unref (layout->preedit_attrs);
570
571   if (preedit_string)
572     {
573       layout->preedit_string = g_strdup (preedit_string);
574       layout->preedit_len = strlen (layout->preedit_string);
575       pango_attr_list_ref (preedit_attrs);
576       layout->preedit_attrs = preedit_attrs;
577
578       cursor_pos = CLAMP (cursor_pos, 0, g_utf8_strlen (layout->preedit_string, -1));
579       layout->preedit_cursor = g_utf8_offset_to_pointer (layout->preedit_string, cursor_pos) - layout->preedit_string;
580     }
581   else
582     {
583       layout->preedit_string = NULL;
584       layout->preedit_len = 0;
585       layout->preedit_attrs = NULL;
586       layout->preedit_cursor = 0;
587     }
588
589   gtk_text_layout_invalidate_cursor_line (layout, FALSE);
590 }
591
592 void
593 gtk_text_layout_get_size (GtkTextLayout *layout,
594                           gint *width,
595                           gint *height)
596 {
597   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
598
599   if (width)
600     *width = layout->width;
601
602   if (height)
603     *height = layout->height;
604 }
605
606 static void
607 gtk_text_layout_invalidated (GtkTextLayout *layout)
608 {
609   g_signal_emit (layout, signals[INVALIDATED], 0);
610 }
611
612 static void
613 gtk_text_layout_emit_changed (GtkTextLayout *layout,
614                               gint           y,
615                               gint           old_height,
616                               gint           new_height)
617 {
618   g_signal_emit (layout, signals[CHANGED], 0, y, old_height, new_height);
619 }
620
621 static void
622 text_layout_changed (GtkTextLayout *layout,
623                      gint           y,
624                      gint           old_height,
625                      gint           new_height,
626                      gboolean       cursors_only)
627 {
628   /* Check if the range intersects our cached line display,
629    * and invalidate the cached line if so.
630    */
631   if (layout->one_display_cache)
632     {
633       GtkTextLine *line = layout->one_display_cache->line;
634       gint cache_y = _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer),
635                                                     line, layout);
636       gint cache_height = layout->one_display_cache->height;
637
638       if (cache_y + cache_height > y && cache_y < y + old_height)
639         gtk_text_layout_invalidate_cache (layout, line, cursors_only);
640     }
641
642   gtk_text_layout_emit_changed (layout, y, old_height, new_height);
643 }
644
645 void
646 gtk_text_layout_changed (GtkTextLayout *layout,
647                          gint           y,
648                          gint           old_height,
649                          gint           new_height)
650 {
651   text_layout_changed (layout, y, old_height, new_height, FALSE);
652 }
653
654 void
655 gtk_text_layout_cursors_changed (GtkTextLayout *layout,
656                                  gint           y,
657                                  gint           old_height,
658                                  gint           new_height)
659 {
660   text_layout_changed (layout, y, old_height, new_height, TRUE);
661 }
662
663 void
664 gtk_text_layout_free_line_data (GtkTextLayout     *layout,
665                                 GtkTextLine       *line,
666                                 GtkTextLineData   *line_data)
667 {
668   (* GTK_TEXT_LAYOUT_GET_CLASS (layout)->free_line_data)
669     (layout, line, line_data);
670 }
671
672 void
673 gtk_text_layout_invalidate (GtkTextLayout *layout,
674                             const GtkTextIter *start_index,
675                             const GtkTextIter *end_index)
676 {
677   (* GTK_TEXT_LAYOUT_GET_CLASS (layout)->invalidate)
678     (layout, start_index, end_index);
679 }
680
681 void
682 gtk_text_layout_invalidate_cursors (GtkTextLayout *layout,
683                                     const GtkTextIter *start_index,
684                                     const GtkTextIter *end_index)
685 {
686   (* GTK_TEXT_LAYOUT_GET_CLASS (layout)->invalidate_cursors)
687     (layout, start_index, end_index);
688 }
689
690 GtkTextLineData*
691 gtk_text_layout_wrap (GtkTextLayout *layout,
692                       GtkTextLine  *line,
693                       /* may be NULL */
694                       GtkTextLineData *line_data)
695 {
696   return (* GTK_TEXT_LAYOUT_GET_CLASS (layout)->wrap) (layout, line, line_data);
697 }
698
699 GSList*
700 gtk_text_layout_get_lines (GtkTextLayout *layout,
701                            /* [top_y, bottom_y) */
702                            gint top_y,
703                            gint bottom_y,
704                            gint *first_line_y)
705 {
706   GtkTextLine *first_btree_line;
707   GtkTextLine *last_btree_line;
708   GtkTextLine *line;
709   GSList *retval;
710
711   g_return_val_if_fail (GTK_IS_TEXT_LAYOUT (layout), NULL);
712   g_return_val_if_fail (bottom_y > top_y, NULL);
713
714   retval = NULL;
715
716   first_btree_line =
717     _gtk_text_btree_find_line_by_y (_gtk_text_buffer_get_btree (layout->buffer),
718                                    layout, top_y, first_line_y);
719   if (first_btree_line == NULL)
720     {
721       /* off the bottom */
722       return NULL;
723     }
724
725   /* -1 since bottom_y is one past */
726   last_btree_line =
727     _gtk_text_btree_find_line_by_y (_gtk_text_buffer_get_btree (layout->buffer),
728                                     layout, bottom_y - 1, NULL);
729
730   if (!last_btree_line)
731     last_btree_line =
732       _gtk_text_btree_get_end_iter_line (_gtk_text_buffer_get_btree (layout->buffer));
733
734   g_assert (last_btree_line != NULL);
735
736   line = first_btree_line;
737   while (TRUE)
738     {
739       retval = g_slist_prepend (retval, line);
740
741       if (line == last_btree_line)
742         break;
743
744       line = _gtk_text_line_next_excluding_last (line);
745     }
746
747   retval = g_slist_reverse (retval);
748
749   return retval;
750 }
751
752 static void
753 invalidate_cached_style (GtkTextLayout *layout)
754 {
755   free_style_cache (layout);
756 }
757
758 /* These should be called around a loop which wraps a CONTIGUOUS bunch
759  * of display lines. If the lines aren't contiguous you can't call
760  * these.
761  */
762 void
763 gtk_text_layout_wrap_loop_start (GtkTextLayout *layout)
764 {
765   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
766   g_return_if_fail (layout->one_style_cache == NULL);
767
768   layout->wrap_loop_count += 1;
769 }
770
771 void
772 gtk_text_layout_wrap_loop_end (GtkTextLayout *layout)
773 {
774   g_return_if_fail (layout->wrap_loop_count > 0);
775
776   layout->wrap_loop_count -= 1;
777
778   if (layout->wrap_loop_count == 0)
779     {
780       /* We cache a some stuff if we're iterating over some lines wrapping
781        * them. This cleans it up.
782        */
783       /* Nuke our cached style */
784       invalidate_cached_style (layout);
785       g_assert (layout->one_style_cache == NULL);
786     }
787 }
788
789 static void
790 gtk_text_layout_invalidate_all (GtkTextLayout *layout)
791 {
792   GtkTextIter start;
793   GtkTextIter end;
794
795   if (layout->buffer == NULL)
796     return;
797
798   gtk_text_buffer_get_bounds (layout->buffer, &start, &end);
799
800   gtk_text_layout_invalidate (layout, &start, &end);
801 }
802
803 static void
804 gtk_text_layout_invalidate_cache (GtkTextLayout *layout,
805                                   GtkTextLine   *line,
806                                   gboolean       cursors_only)
807 {
808   if (layout->one_display_cache && line == layout->one_display_cache->line)
809     {
810       GtkTextLineDisplay *display = layout->one_display_cache;
811
812       if (cursors_only)
813         {
814           g_slist_foreach (display->cursors, (GFunc)g_free, NULL);
815           g_slist_free (display->cursors);
816           display->cursors = NULL;
817           display->cursors_invalid = TRUE;
818           display->has_block_cursor = FALSE;
819         }
820       else
821         {
822           layout->one_display_cache = NULL;
823           gtk_text_layout_free_line_display (layout, display);
824         }
825     }
826 }
827
828 /* Now invalidate the paragraph containing the cursor
829  */
830 static void
831 gtk_text_layout_invalidate_cursor_line (GtkTextLayout *layout,
832                                         gboolean cursors_only)
833 {
834   GtkTextLayoutPrivate *priv = GTK_TEXT_LAYOUT_GET_PRIVATE (layout);
835   GtkTextLineData *line_data;
836
837   if (priv->cursor_line == NULL)
838     return;
839
840   line_data = _gtk_text_line_get_data (priv->cursor_line, layout);
841   if (line_data)
842     {
843       if (cursors_only)
844           gtk_text_layout_invalidate_cache (layout, priv->cursor_line, TRUE);
845       else
846         {
847           gtk_text_layout_invalidate_cache (layout, priv->cursor_line, FALSE);
848           _gtk_text_line_invalidate_wrap (priv->cursor_line, line_data);
849         }
850
851       gtk_text_layout_invalidated (layout);
852     }
853 }
854
855 static void
856 gtk_text_layout_update_cursor_line(GtkTextLayout *layout)
857 {
858   GtkTextLayoutPrivate *priv = GTK_TEXT_LAYOUT_GET_PRIVATE (layout);
859   GtkTextIter iter;
860
861   gtk_text_buffer_get_iter_at_mark (layout->buffer, &iter,
862                                     gtk_text_buffer_get_mark (layout->buffer, "insert"));
863   
864   priv->cursor_line = _gtk_text_iter_get_text_line (&iter);
865 }
866
867 static void
868 gtk_text_layout_real_invalidate (GtkTextLayout *layout,
869                                  const GtkTextIter *start,
870                                  const GtkTextIter *end)
871 {
872   GtkTextLine *line;
873   GtkTextLine *last_line;
874
875   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
876   g_return_if_fail (layout->wrap_loop_count == 0);
877
878   /* Because we may be invalidating a mark, it's entirely possible
879    * that gtk_text_iter_equal (start, end) in which case we
880    * should still invalidate the line they are both on. i.e.
881    * we always invalidate the line with "start" even
882    * if there's an empty range.
883    */
884   
885 #if 0
886   gtk_text_view_index_spew (start_index, "invalidate start");
887   gtk_text_view_index_spew (end_index, "invalidate end");
888 #endif
889
890   last_line = _gtk_text_iter_get_text_line (end);
891   line = _gtk_text_iter_get_text_line (start);
892
893   while (TRUE)
894     {
895       GtkTextLineData *line_data = _gtk_text_line_get_data (line, layout);
896
897       gtk_text_layout_invalidate_cache (layout, line, FALSE);
898       
899       if (line_data)
900         _gtk_text_line_invalidate_wrap (line, line_data);
901
902       if (line == last_line)
903         break;
904
905       line = _gtk_text_line_next_excluding_last (line);
906     }
907
908   gtk_text_layout_invalidated (layout);
909 }
910
911 static void
912 gtk_text_layout_real_invalidate_cursors (GtkTextLayout     *layout,
913                                          const GtkTextIter *start,
914                                          const GtkTextIter *end)
915 {
916   /* Check if the range intersects our cached line display,
917    * and invalidate the cached line if so.
918    */
919   if (layout->one_display_cache)
920     {
921       GtkTextIter line_start, line_end;
922       GtkTextLine *line = layout->one_display_cache->line;
923
924       _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
925                                         &line_start, line, 0);
926       line_end = line_start;
927       if (!gtk_text_iter_ends_line (&line_end))
928         gtk_text_iter_forward_to_line_end (&line_end);
929
930       if (gtk_text_iter_compare (start, end) > 0)
931         {
932           const GtkTextIter *tmp = start;
933           start = end;
934           end = tmp;
935         }
936
937       if (gtk_text_iter_compare (&line_start, end) <= 0 &&
938           gtk_text_iter_compare (start, &line_end) <= 0)
939         {
940           gtk_text_layout_invalidate_cache (layout, line, TRUE);
941         }
942     }
943
944   gtk_text_layout_invalidated (layout);
945 }
946
947 static void
948 gtk_text_layout_real_free_line_data (GtkTextLayout     *layout,
949                                      GtkTextLine       *line,
950                                      GtkTextLineData   *line_data)
951 {
952   gtk_text_layout_invalidate_cache (layout, line, FALSE);
953
954   g_free (line_data);
955 }
956
957
958
959 /**
960  * gtk_text_layout_is_valid:
961  * @layout: a #GtkTextLayout
962  *
963  * Check if there are any invalid regions in a #GtkTextLayout's buffer
964  *
965  * Return value: %TRUE if any invalid regions were found
966  **/
967 gboolean
968 gtk_text_layout_is_valid (GtkTextLayout *layout)
969 {
970   g_return_val_if_fail (GTK_IS_TEXT_LAYOUT (layout), FALSE);
971
972   return _gtk_text_btree_is_valid (_gtk_text_buffer_get_btree (layout->buffer),
973                                   layout);
974 }
975
976 static void
977 update_layout_size (GtkTextLayout *layout)
978 {
979   _gtk_text_btree_get_view_size (_gtk_text_buffer_get_btree (layout->buffer),
980                                 layout,
981                                 &layout->width, &layout->height);
982 }
983
984 /**
985  * gtk_text_layout_validate_yrange:
986  * @layout: a #GtkTextLayout
987  * @anchor: iter pointing into a line that will be used as the
988  *          coordinate origin
989  * @y0_: offset from the top of the line pointed to by @anchor at
990  *       which to begin validation. (The offset here is in pixels
991  *       after validation.)
992  * @y1_: offset from the top of the line pointed to by @anchor at
993  *       which to end validation. (The offset here is in pixels
994  *       after validation.)
995  *
996  * Ensure that a region of a #GtkTextLayout is valid. The ::changed
997  * signal will be emitted if any lines are validated.
998  **/
999 void
1000 gtk_text_layout_validate_yrange (GtkTextLayout *layout,
1001                                  GtkTextIter   *anchor,
1002                                  gint           y0,
1003                                  gint           y1)
1004 {
1005   GtkTextLine *line;
1006   GtkTextLine *first_line = NULL;
1007   GtkTextLine *last_line = NULL;
1008   gint seen;
1009   gint delta_height = 0;
1010   gint first_line_y = 0;        /* Quiet GCC */
1011   gint last_line_y = 0;         /* Quiet GCC */
1012
1013   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
1014
1015   if (y0 > 0)
1016     y0 = 0;
1017   if (y1 < 0)
1018     y1 = 0;
1019   
1020   /* Validate backwards from the anchor line to y0
1021    */
1022   line = _gtk_text_iter_get_text_line (anchor);
1023   line = _gtk_text_line_previous (line);
1024   seen = 0;
1025   while (line && seen < -y0)
1026     {
1027       GtkTextLineData *line_data = _gtk_text_line_get_data (line, layout);
1028       if (!line_data || !line_data->valid)
1029         {
1030           gint old_height, new_height;
1031           
1032           old_height = line_data ? line_data->height : 0;
1033
1034           _gtk_text_btree_validate_line (_gtk_text_buffer_get_btree (layout->buffer),
1035                                          line, layout);
1036           line_data = _gtk_text_line_get_data (line, layout);
1037
1038           new_height = line_data ? line_data->height : 0;
1039
1040           delta_height += new_height - old_height;
1041           
1042           first_line = line;
1043           first_line_y = -seen - new_height;
1044           if (!last_line)
1045             {
1046               last_line = line;
1047               last_line_y = -seen;
1048             }
1049         }
1050
1051       seen += line_data ? line_data->height : 0;
1052       line = _gtk_text_line_previous (line);
1053     }
1054
1055   /* Validate forwards to y1 */
1056   line = _gtk_text_iter_get_text_line (anchor);
1057   seen = 0;
1058   while (line && seen < y1)
1059     {
1060       GtkTextLineData *line_data = _gtk_text_line_get_data (line, layout);
1061       if (!line_data || !line_data->valid)
1062         {
1063           gint old_height, new_height;
1064           
1065           old_height = line_data ? line_data->height : 0;
1066
1067           _gtk_text_btree_validate_line (_gtk_text_buffer_get_btree (layout->buffer),
1068                                          line, layout);
1069           line_data = _gtk_text_line_get_data (line, layout);
1070           new_height = line_data ? line_data->height : 0;
1071
1072           delta_height += new_height - old_height;
1073           
1074           if (!first_line)
1075             {
1076               first_line = line;
1077               first_line_y = seen;
1078             }
1079           last_line = line;
1080           last_line_y = seen + new_height;
1081         }
1082
1083       seen += line_data ? line_data->height : 0;
1084       line = _gtk_text_line_next_excluding_last (line);
1085     }
1086
1087   /* If we found and validated any invalid lines, update size and
1088    * emit the changed signal
1089    */
1090   if (first_line)
1091     {
1092       gint line_top;
1093
1094       update_layout_size (layout);
1095
1096       line_top = _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer),
1097                                                 first_line, layout);
1098
1099       gtk_text_layout_emit_changed (layout,
1100                                     line_top,
1101                                     last_line_y - first_line_y - delta_height,
1102                                     last_line_y - first_line_y);
1103     }
1104 }
1105
1106 /**
1107  * gtk_text_layout_validate:
1108  * @tree: a #GtkTextLayout
1109  * @max_pixels: the maximum number of pixels to validate. (No more
1110  *              than one paragraph beyond this limit will be validated)
1111  *
1112  * Validate regions of a #GtkTextLayout. The ::changed signal will
1113  * be emitted for each region validated.
1114  **/
1115 void
1116 gtk_text_layout_validate (GtkTextLayout *layout,
1117                           gint           max_pixels)
1118 {
1119   gint y, old_height, new_height;
1120
1121   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
1122
1123   while (max_pixels > 0 &&
1124          _gtk_text_btree_validate (_gtk_text_buffer_get_btree (layout->buffer),
1125                                    layout,  max_pixels,
1126                                    &y, &old_height, &new_height))
1127     {
1128       max_pixels -= new_height;
1129
1130       update_layout_size (layout);
1131       gtk_text_layout_emit_changed (layout, y, old_height, new_height);
1132     }
1133 }
1134
1135 static GtkTextLineData*
1136 gtk_text_layout_real_wrap (GtkTextLayout   *layout,
1137                            GtkTextLine     *line,
1138                            /* may be NULL */
1139                            GtkTextLineData *line_data)
1140 {
1141   GtkTextLineDisplay *display;
1142
1143   g_return_val_if_fail (GTK_IS_TEXT_LAYOUT (layout), NULL);
1144   g_return_val_if_fail (line != NULL, NULL);
1145   
1146   if (line_data == NULL)
1147     {
1148       line_data = _gtk_text_line_data_new (layout, line);
1149       _gtk_text_line_add_data (line, line_data);
1150     }
1151
1152   display = gtk_text_layout_get_line_display (layout, line, TRUE);
1153   line_data->width = display->width;
1154   line_data->height = display->height;
1155   line_data->valid = TRUE;
1156   gtk_text_layout_free_line_display (layout, display);
1157
1158   return line_data;
1159 }
1160
1161 /*
1162  * Layout utility functions
1163  */
1164
1165 /* If you get the style with get_style () you need to call
1166    release_style () to free it. */
1167 static GtkTextAttributes*
1168 get_style (GtkTextLayout *layout,
1169            const GtkTextIter *iter)
1170 {
1171   GtkTextTag** tags;
1172   gint tag_count = 0;
1173   GtkTextAttributes *style;
1174
1175   /* If we have the one-style cache, then it means
1176      that we haven't seen a toggle since we filled in the
1177      one-style cache.
1178   */
1179   if (layout->one_style_cache != NULL)
1180     {
1181       gtk_text_attributes_ref (layout->one_style_cache);
1182       return layout->one_style_cache;
1183     }
1184
1185   g_assert (layout->one_style_cache == NULL);
1186
1187   /* Get the tags at this spot */
1188   tags = _gtk_text_btree_get_tags (iter, &tag_count);
1189
1190   /* No tags, use default style */
1191   if (tags == NULL || tag_count == 0)
1192     {
1193       /* One ref for the return value, one ref for the
1194          layout->one_style_cache reference */
1195       gtk_text_attributes_ref (layout->default_style);
1196       gtk_text_attributes_ref (layout->default_style);
1197       layout->one_style_cache = layout->default_style;
1198
1199       g_free (tags);
1200
1201       return layout->default_style;
1202     }
1203
1204   /* Sort tags in ascending order of priority */
1205   _gtk_text_tag_array_sort (tags, tag_count);
1206
1207   style = gtk_text_attributes_new ();
1208
1209   gtk_text_attributes_copy_values (layout->default_style,
1210                                    style);
1211
1212   _gtk_text_attributes_fill_from_tags (style,
1213                                        tags,
1214                                        tag_count);
1215
1216   g_free (tags);
1217
1218   g_assert (style->refcount == 1);
1219
1220   /* Leave this style as the last one seen */
1221   g_assert (layout->one_style_cache == NULL);
1222   gtk_text_attributes_ref (style); /* ref held by layout->one_style_cache */
1223   layout->one_style_cache = style;
1224
1225   /* Returning yet another refcount */
1226   return style;
1227 }
1228
1229 static void
1230 release_style (GtkTextLayout *layout,
1231                GtkTextAttributes *style)
1232 {
1233   g_return_if_fail (style != NULL);
1234   g_return_if_fail (style->refcount > 0);
1235
1236   gtk_text_attributes_unref (style);
1237 }
1238
1239 /*
1240  * Lines
1241  */
1242
1243 /* This function tries to optimize the case where a line
1244    is completely invisible */
1245 static gboolean
1246 totally_invisible_line (GtkTextLayout *layout,
1247                         GtkTextLine   *line,
1248                         GtkTextIter   *iter)
1249 {
1250   GtkTextLineSegment *seg;
1251   int bytes = 0;
1252
1253   /* Check if the first char is visible, if so we are partially visible.  
1254    * Note that we have to check this since we don't know the current 
1255    * invisible/noninvisible toggle state; this function can use the whole btree 
1256    * to get it right.
1257    */
1258   _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
1259                                     iter, line, 0);
1260   
1261   if (!_gtk_text_btree_char_is_invisible (iter))
1262     return FALSE;
1263
1264   bytes = 0;
1265   seg = line->segments;
1266
1267   while (seg != NULL)
1268     {
1269       if (seg->byte_count > 0)
1270         bytes += seg->byte_count;
1271
1272       /* Note that these two tests can cause us to bail out
1273        * when we shouldn't, because a higher-priority tag
1274        * may override these settings. However the important
1275        * thing is to only invisible really-invisible lines, rather
1276        * than to invisible all really-invisible lines.
1277        */
1278
1279       else if (seg->type == &gtk_text_toggle_on_type)
1280         {
1281           invalidate_cached_style (layout);
1282
1283           /* Bail out if an elision-unsetting tag begins */
1284           if (seg->body.toggle.info->tag->invisible_set &&
1285               !seg->body.toggle.info->tag->values->invisible)
1286             break;
1287         }
1288       else if (seg->type == &gtk_text_toggle_off_type)
1289         {
1290           invalidate_cached_style (layout);
1291
1292           /* Bail out if an elision-setting tag ends */
1293           if (seg->body.toggle.info->tag->invisible_set &&
1294               seg->body.toggle.info->tag->values->invisible)
1295             break;
1296         }
1297
1298       seg = seg->next;
1299     }
1300
1301   if (seg != NULL)       /* didn't reach line end */
1302     return FALSE;
1303
1304   return TRUE;
1305 }
1306
1307 static void
1308 set_para_values (GtkTextLayout      *layout,
1309                  PangoDirection      base_dir,
1310                  GtkTextAttributes  *style,
1311                  GtkTextLineDisplay *display)
1312 {
1313   PangoAlignment pango_align = PANGO_ALIGN_LEFT;
1314   PangoWrapMode pango_wrap = PANGO_WRAP_WORD;
1315
1316   switch (base_dir)
1317     {
1318     /* If no base direction was found, then use the style direction */
1319     case PANGO_DIRECTION_NEUTRAL :
1320       display->direction = style->direction;
1321
1322       /* Override the base direction */
1323       if (display->direction == GTK_TEXT_DIR_RTL)
1324         base_dir = PANGO_DIRECTION_RTL;
1325       else
1326         base_dir = PANGO_DIRECTION_LTR;
1327       
1328       break;
1329     case PANGO_DIRECTION_RTL :
1330       display->direction = GTK_TEXT_DIR_RTL;
1331       break;
1332     default:
1333       display->direction = GTK_TEXT_DIR_LTR;
1334       break;
1335     }
1336   
1337   if (display->direction == GTK_TEXT_DIR_RTL)
1338     display->layout = pango_layout_new (layout->rtl_context);
1339   else
1340     display->layout = pango_layout_new (layout->ltr_context);
1341
1342   switch (style->justification)
1343     {
1344     case GTK_JUSTIFY_LEFT:
1345       pango_align = (base_dir == PANGO_DIRECTION_LTR) ? PANGO_ALIGN_LEFT : PANGO_ALIGN_RIGHT;
1346       break;
1347     case GTK_JUSTIFY_RIGHT:
1348       pango_align = (base_dir == PANGO_DIRECTION_LTR) ? PANGO_ALIGN_RIGHT : PANGO_ALIGN_LEFT;
1349       break;
1350     case GTK_JUSTIFY_CENTER:
1351       pango_align = PANGO_ALIGN_CENTER;
1352       break;
1353     case GTK_JUSTIFY_FILL:
1354       pango_align = (base_dir == PANGO_DIRECTION_LTR) ? PANGO_ALIGN_LEFT : PANGO_ALIGN_RIGHT;
1355       pango_layout_set_justify (display->layout, TRUE);
1356       break;
1357     default:
1358       g_assert_not_reached ();
1359       break;
1360     }
1361
1362   pango_layout_set_alignment (display->layout, pango_align);
1363   pango_layout_set_spacing (display->layout,
1364                             style->pixels_inside_wrap * PANGO_SCALE);
1365
1366   if (style->tabs)
1367     pango_layout_set_tabs (display->layout, style->tabs);
1368
1369   display->top_margin = style->pixels_above_lines;
1370   display->height = style->pixels_above_lines + style->pixels_below_lines;
1371   display->bottom_margin = style->pixels_below_lines;
1372   display->left_margin = style->left_margin;
1373   display->right_margin = style->right_margin;
1374   
1375   display->x_offset = display->left_margin;
1376
1377   pango_layout_set_indent (display->layout,
1378                            style->indent * PANGO_SCALE);
1379
1380   switch (style->wrap_mode)
1381     {
1382     case GTK_WRAP_CHAR:
1383       pango_wrap = PANGO_WRAP_CHAR;
1384       break;
1385     case GTK_WRAP_WORD:
1386       pango_wrap = PANGO_WRAP_WORD;
1387       break;
1388
1389     case GTK_WRAP_WORD_CHAR:
1390       pango_wrap = PANGO_WRAP_WORD_CHAR;
1391       break;
1392
1393     case GTK_WRAP_NONE:
1394       break;
1395     }
1396
1397   if (style->wrap_mode != GTK_WRAP_NONE)
1398     {
1399       int layout_width = (layout->screen_width - display->left_margin - display->right_margin);
1400       pango_layout_set_width (display->layout, layout_width * PANGO_SCALE);
1401       pango_layout_set_wrap (display->layout, pango_wrap);
1402     }
1403
1404   display->total_width = MAX (layout->screen_width, layout->width) - display->left_margin - display->right_margin;
1405   
1406   if (style->pg_bg_color)
1407     display->pg_bg_color = gdk_color_copy (style->pg_bg_color);
1408   else
1409     display->pg_bg_color = NULL;  
1410 }
1411
1412 static PangoAttribute *
1413 gtk_text_attr_appearance_copy (const PangoAttribute *attr)
1414 {
1415   const GtkTextAttrAppearance *appearance_attr = (const GtkTextAttrAppearance *)attr;
1416
1417   return gtk_text_attr_appearance_new (&appearance_attr->appearance);
1418 }
1419
1420 static void
1421 gtk_text_attr_appearance_destroy (PangoAttribute *attr)
1422 {
1423   GtkTextAttrAppearance *appearance_attr = (GtkTextAttrAppearance *)attr;
1424
1425   if (appearance_attr->appearance.bg_stipple)
1426     g_object_unref (appearance_attr->appearance.bg_stipple);
1427   if (appearance_attr->appearance.fg_stipple)
1428     g_object_unref (appearance_attr->appearance.fg_stipple);
1429
1430   g_slice_free (GtkTextAttrAppearance, appearance_attr);
1431 }
1432
1433 static gboolean
1434 gtk_text_attr_appearance_compare (const PangoAttribute *attr1,
1435                                   const PangoAttribute *attr2)
1436 {
1437   const GtkTextAppearance *appearance1 = &((const GtkTextAttrAppearance *)attr1)->appearance;
1438   const GtkTextAppearance *appearance2 = &((const GtkTextAttrAppearance *)attr2)->appearance;
1439
1440   return (gdk_color_equal (&appearance1->fg_color, &appearance2->fg_color) &&
1441           gdk_color_equal (&appearance1->bg_color, &appearance2->bg_color) &&
1442           appearance1->fg_stipple ==  appearance2->fg_stipple &&
1443           appearance1->bg_stipple ==  appearance2->bg_stipple &&
1444           appearance1->underline == appearance2->underline &&
1445           appearance1->strikethrough == appearance2->strikethrough &&
1446           appearance1->draw_bg == appearance2->draw_bg);
1447
1448 }
1449
1450 /**
1451  * gtk_text_attr_appearance_new:
1452  * @desc:
1453  *
1454  * Create a new font description attribute. (This attribute
1455  * allows setting family, style, weight, variant, stretch,
1456  * and size simultaneously.)
1457  *
1458  * Return value:
1459  **/
1460 static PangoAttribute *
1461 gtk_text_attr_appearance_new (const GtkTextAppearance *appearance)
1462 {
1463   static PangoAttrClass klass = {
1464     0,
1465     gtk_text_attr_appearance_copy,
1466     gtk_text_attr_appearance_destroy,
1467     gtk_text_attr_appearance_compare
1468   };
1469
1470   GtkTextAttrAppearance *result;
1471
1472   if (!klass.type)
1473     klass.type = gtk_text_attr_appearance_type =
1474       pango_attr_type_register ("GtkTextAttrAppearance");
1475
1476   result = g_slice_new (GtkTextAttrAppearance);
1477   result->attr.klass = &klass;
1478
1479   result->appearance = *appearance;
1480
1481   if (appearance->bg_stipple)
1482     g_object_ref (appearance->bg_stipple);
1483   if (appearance->fg_stipple)
1484     g_object_ref (appearance->fg_stipple);
1485
1486   return (PangoAttribute *)result;
1487 }
1488
1489
1490 static void
1491 add_generic_attrs (GtkTextLayout      *layout,
1492                    GtkTextAppearance  *appearance,
1493                    gint                byte_count,
1494                    PangoAttrList      *attrs,
1495                    gint                start,
1496                    gboolean            size_only,
1497                    gboolean            is_text)
1498 {
1499   PangoAttribute *attr;
1500
1501   if (appearance->underline != PANGO_UNDERLINE_NONE)
1502     {
1503       attr = pango_attr_underline_new (appearance->underline);
1504       
1505       attr->start_index = start;
1506       attr->end_index = start + byte_count;
1507       
1508       pango_attr_list_insert (attrs, attr);
1509     }
1510
1511   if (appearance->strikethrough)
1512     {
1513       attr = pango_attr_strikethrough_new (appearance->strikethrough);
1514       
1515       attr->start_index = start;
1516       attr->end_index = start + byte_count;
1517       
1518       pango_attr_list_insert (attrs, attr);
1519     }
1520
1521   if (appearance->rise != 0)
1522     {
1523       attr = pango_attr_rise_new (appearance->rise);
1524       
1525       attr->start_index = start;
1526       attr->end_index = start + byte_count;
1527       
1528       pango_attr_list_insert (attrs, attr);
1529     }
1530   
1531   if (!size_only)
1532     {
1533       attr = gtk_text_attr_appearance_new (appearance);
1534       
1535       attr->start_index = start;
1536       attr->end_index = start + byte_count;
1537
1538       ((GtkTextAttrAppearance *)attr)->appearance.is_text = is_text;
1539       
1540       pango_attr_list_insert (attrs, attr);
1541     }
1542 }
1543
1544 static void
1545 add_text_attrs (GtkTextLayout      *layout,
1546                 GtkTextAttributes  *style,
1547                 gint                byte_count,
1548                 PangoAttrList      *attrs,
1549                 gint                start,
1550                 gboolean            size_only)
1551 {
1552   PangoAttribute *attr;
1553
1554   attr = pango_attr_font_desc_new (style->font);
1555   attr->start_index = start;
1556   attr->end_index = start + byte_count;
1557
1558   pango_attr_list_insert (attrs, attr);
1559
1560   if (style->font_scale != 1.0)
1561     {
1562       attr = pango_attr_scale_new (style->font_scale);
1563
1564       attr->start_index = start;
1565       attr->end_index = start + byte_count;
1566       
1567       pango_attr_list_insert (attrs, attr);
1568     }
1569 }
1570
1571 static void
1572 add_pixbuf_attrs (GtkTextLayout      *layout,
1573                   GtkTextLineDisplay *display,
1574                   GtkTextAttributes  *style,
1575                   GtkTextLineSegment *seg,
1576                   PangoAttrList      *attrs,
1577                   gint                start)
1578 {
1579   PangoAttribute *attr;
1580   PangoRectangle logical_rect;
1581   GtkTextPixbuf *pixbuf = &seg->body.pixbuf;
1582   gint width, height;
1583
1584   width = gdk_pixbuf_get_width (pixbuf->pixbuf);
1585   height = gdk_pixbuf_get_height (pixbuf->pixbuf);
1586
1587   logical_rect.x = 0;
1588   logical_rect.y = -height * PANGO_SCALE;
1589   logical_rect.width = width * PANGO_SCALE;
1590   logical_rect.height = height * PANGO_SCALE;
1591
1592   attr = pango_attr_shape_new_with_data (&logical_rect, &logical_rect,
1593                                          pixbuf->pixbuf, NULL, NULL);
1594   attr->start_index = start;
1595   attr->end_index = start + seg->byte_count;
1596   pango_attr_list_insert (attrs, attr);
1597
1598   display->shaped_objects =
1599     g_slist_append (display->shaped_objects, pixbuf->pixbuf);
1600 }
1601
1602 static void
1603 add_child_attrs (GtkTextLayout      *layout,
1604                  GtkTextLineDisplay *display,
1605                  GtkTextAttributes  *style,
1606                  GtkTextLineSegment *seg,
1607                  PangoAttrList      *attrs,
1608                  gint                start)
1609 {
1610   PangoAttribute *attr;
1611   PangoRectangle logical_rect;
1612   gint width, height;
1613   GSList *tmp_list;
1614   GtkWidget *widget;
1615
1616   width = 1;
1617   height = 1;
1618   
1619   tmp_list = seg->body.child.widgets;
1620   while (tmp_list != NULL)
1621     {
1622       GtkWidget *child = tmp_list->data;
1623
1624       if (_gtk_anchored_child_get_layout (child) == layout)
1625         {
1626           /* Found it */
1627           GtkRequisition req;
1628
1629           gtk_widget_get_child_requisition (child, &req);
1630           
1631           width = req.width;
1632           height = req.height;
1633
1634           widget = child;
1635           
1636           break;
1637         }
1638       
1639       tmp_list = g_slist_next (tmp_list);
1640     }
1641
1642   if (tmp_list == NULL)
1643     {
1644       /* If tmp_list == NULL then there is no widget at this anchor in
1645        * this display; not an error. We make up an arbitrary size
1646        * to use, just so the programmer can see the blank spot.
1647        * We also put a NULL in the shaped objects list, to keep
1648        * the correspondence between the list and the shaped chars in
1649        * the layout. A bad hack, yes.
1650        */
1651
1652       width = 30;
1653       height = 20;
1654
1655       widget = NULL;
1656     }
1657
1658   display->shaped_objects = g_slist_append (display->shaped_objects, widget);
1659   
1660   logical_rect.x = 0;
1661   logical_rect.y = -height * PANGO_SCALE;
1662   logical_rect.width = width * PANGO_SCALE;
1663   logical_rect.height = height * PANGO_SCALE;
1664
1665   attr = pango_attr_shape_new_with_data (&logical_rect, &logical_rect,
1666                                          widget, NULL, NULL);
1667   attr->start_index = start;
1668   attr->end_index = start + seg->byte_count;
1669   pango_attr_list_insert (attrs, attr);
1670 }
1671
1672 /**
1673  * get_block_cursor:
1674  * @layout: a #GtkTextLayout
1675  * @display: a #GtkTextLineDisplay
1676  * @insert_iter: iter pointing to the cursor location
1677  * @insert_index: cursor offset in the @display's layout, it may
1678  * be different from @insert_iter's offset in case when preedit
1679  * string is present.
1680  * @pos: location to store cursor position
1681  * @cursor_at_line_end: whether cursor is at the end of line
1682  *
1683  * Checks whether layout should display block cursor at given position.
1684  * For this layout must be in overwrite mode and text at @insert_iter 
1685  * must be editable.
1686  **/
1687 static gboolean
1688 get_block_cursor (GtkTextLayout      *layout,
1689                   GtkTextLineDisplay *display,
1690                   const GtkTextIter  *insert_iter,
1691                   gint                insert_index,
1692                   GdkRectangle       *pos,
1693                   gboolean           *cursor_at_line_end)
1694 {
1695   PangoRectangle pango_pos;
1696
1697   if (layout->overwrite_mode &&
1698       gtk_text_iter_editable (insert_iter, TRUE) &&
1699       _gtk_text_util_get_block_cursor_location (display->layout,
1700                                                 insert_index,
1701                                                 &pango_pos,
1702                                                 cursor_at_line_end))
1703     {
1704       if (pos)
1705         {
1706           pos->x = PANGO_PIXELS (pango_pos.x);
1707           pos->y = PANGO_PIXELS (pango_pos.y);
1708           pos->width = PANGO_PIXELS (pango_pos.width);
1709           pos->height = PANGO_PIXELS (pango_pos.height);
1710         }
1711
1712       return TRUE;
1713     }
1714   else
1715     return FALSE;
1716 }
1717
1718 static void
1719 add_cursor (GtkTextLayout      *layout,
1720             GtkTextLineDisplay *display,
1721             GtkTextLineSegment *seg,
1722             gint                start)
1723 {
1724   PangoRectangle strong_pos, weak_pos;
1725   GtkTextCursorDisplay *cursor = NULL; /* Quiet GCC */
1726   gboolean add_weak = FALSE;
1727   gboolean add_strong = FALSE;
1728   
1729   /* Hide insertion cursor when we have a selection or the layout
1730    * user has hidden the cursor.
1731    */
1732   if (_gtk_text_btree_mark_is_insert (_gtk_text_buffer_get_btree (layout->buffer),
1733                                      seg->body.mark.obj) &&
1734       (!layout->cursor_visible ||
1735        gtk_text_buffer_get_selection_bounds (layout->buffer, NULL, NULL)))
1736     return;
1737
1738   if (layout->overwrite_mode &&
1739       _gtk_text_btree_mark_is_insert (_gtk_text_buffer_get_btree (layout->buffer),
1740                                       seg->body.mark.obj))
1741     {
1742       GtkTextIter iter;
1743       gboolean cursor_at_line_end;
1744
1745       _gtk_text_btree_get_iter_at_mark (_gtk_text_buffer_get_btree (layout->buffer),
1746                                         &iter, seg->body.mark.obj);
1747
1748       if (get_block_cursor (layout, display, &iter, start,
1749                             &display->block_cursor,
1750                             &cursor_at_line_end))
1751         {
1752           display->has_block_cursor = TRUE;
1753           display->cursor_at_line_end = cursor_at_line_end;
1754           return;
1755         }
1756     }
1757
1758   pango_layout_get_cursor_pos (display->layout, start, &strong_pos, &weak_pos);
1759
1760   if (layout->cursor_direction == GTK_TEXT_DIR_NONE)
1761     {
1762       add_strong = TRUE;
1763       add_weak = TRUE;
1764     }
1765   else if (display->direction == layout->cursor_direction)
1766     add_strong = TRUE;
1767   else
1768     add_weak = TRUE;
1769
1770   if (add_strong)
1771     {
1772       cursor = g_new (GtkTextCursorDisplay, 1);
1773
1774       cursor->x = PANGO_PIXELS (strong_pos.x);
1775       cursor->y = PANGO_PIXELS (strong_pos.y);
1776       cursor->height = PANGO_PIXELS (strong_pos.height);
1777       cursor->is_strong = TRUE;
1778       cursor->is_weak = (layout->cursor_direction == GTK_TEXT_DIR_NONE) ? FALSE : TRUE;
1779       display->cursors = g_slist_prepend (display->cursors, cursor);
1780     }
1781   
1782   if (add_weak)
1783     {
1784       if (weak_pos.x == strong_pos.x && add_strong)
1785         cursor->is_weak = TRUE;
1786       else
1787         {
1788           cursor = g_new (GtkTextCursorDisplay, 1);
1789           
1790           cursor->x = PANGO_PIXELS (weak_pos.x);
1791           cursor->y = PANGO_PIXELS (weak_pos.y);
1792           cursor->height = PANGO_PIXELS (weak_pos.height);
1793           cursor->is_strong = (layout->cursor_direction == GTK_TEXT_DIR_NONE) ? FALSE : TRUE;
1794           cursor->is_weak = TRUE;
1795           display->cursors = g_slist_prepend (display->cursors, cursor);
1796         }
1797     }
1798 }
1799
1800 static gboolean
1801 is_shape (PangoLayoutRun *run)
1802 {
1803   GSList *tmp_list = run->item->analysis.extra_attrs;
1804     
1805   while (tmp_list)
1806     {
1807       PangoAttribute *attr = tmp_list->data;
1808
1809       if (attr->klass->type == PANGO_ATTR_SHAPE)
1810         return TRUE;
1811
1812       tmp_list = tmp_list->next;
1813     }
1814
1815   return FALSE;
1816 }
1817
1818 static void
1819 allocate_child_widgets (GtkTextLayout      *text_layout,
1820                         GtkTextLineDisplay *display)
1821 {
1822   GSList *shaped = display->shaped_objects;
1823   PangoLayout *layout = display->layout;
1824   PangoLayoutIter *iter;
1825   
1826   iter = pango_layout_get_iter (layout);
1827   
1828   do
1829     {
1830       PangoLayoutRun *run = pango_layout_iter_get_run_readonly (iter);
1831
1832       if (run && is_shape (run))
1833         {
1834           GObject *shaped_object = shaped->data;
1835           shaped = shaped->next;
1836
1837           /* shaped_object is NULL for child anchors with no
1838            * widgets stored at them
1839            */
1840           if (shaped_object && GTK_IS_WIDGET (shaped_object))
1841             {
1842               PangoRectangle extents;
1843
1844               /* We emit "allocate_child" with the x,y of
1845                * the widget with respect to the top of the line
1846                * and the left side of the buffer
1847                */
1848               
1849               pango_layout_iter_get_run_extents (iter,
1850                                                  NULL,
1851                                                  &extents);
1852               
1853               g_signal_emit (text_layout,
1854                              signals[ALLOCATE_CHILD],
1855                              0,
1856                              shaped_object,
1857                              PANGO_PIXELS (extents.x) + display->x_offset,
1858                              PANGO_PIXELS (extents.y) + display->top_margin);
1859             }
1860         }
1861     }
1862   while (pango_layout_iter_next_run (iter));
1863   
1864   pango_layout_iter_free (iter);
1865 }
1866
1867 static void
1868 convert_color (GdkColor       *result,
1869                PangoAttrColor *attr)
1870 {
1871   result->red = attr->color.red;
1872   result->blue = attr->color.blue;
1873   result->green = attr->color.green;
1874 }
1875
1876 /* This function is used to convert the preedit string attributes, which are
1877  * standard PangoAttributes, into the custom attributes used by the text
1878  * widget and insert them into a attr list with a given offset.
1879  */
1880 static void
1881 add_preedit_attrs (GtkTextLayout     *layout,
1882                    GtkTextAttributes *style,
1883                    PangoAttrList     *attrs,
1884                    gint               offset,
1885                    gboolean           size_only)
1886 {
1887   PangoAttrIterator *iter = pango_attr_list_get_iterator (layout->preedit_attrs);
1888
1889   do
1890     {
1891       GtkTextAppearance appearance = style->appearance;
1892       PangoFontDescription *font_desc = pango_font_description_copy_static (style->font);
1893       PangoAttribute *insert_attr;
1894       GSList *extra_attrs = NULL;
1895       GSList *tmp_list;
1896       PangoLanguage *language;
1897       gint start, end;
1898
1899       pango_attr_iterator_range (iter, &start, &end);
1900
1901       if (end == G_MAXINT)
1902         end = layout->preedit_len;
1903       
1904       if (end == start)
1905         continue;
1906
1907       pango_attr_iterator_get_font (iter, font_desc, &language, &extra_attrs);
1908       
1909       tmp_list = extra_attrs;
1910       while (tmp_list)
1911         {
1912           PangoAttribute *attr = tmp_list->data;
1913           
1914           switch (attr->klass->type)
1915             {
1916             case PANGO_ATTR_FOREGROUND:
1917               convert_color (&appearance.fg_color, (PangoAttrColor *)attr);
1918               break;
1919             case PANGO_ATTR_BACKGROUND:
1920               convert_color (&appearance.bg_color, (PangoAttrColor *)attr);
1921               appearance.draw_bg = TRUE;
1922               break;
1923             case PANGO_ATTR_UNDERLINE:
1924               appearance.underline = ((PangoAttrInt *)attr)->value;
1925               break;
1926             case PANGO_ATTR_STRIKETHROUGH:
1927               appearance.strikethrough = ((PangoAttrInt *)attr)->value;
1928               break;
1929             case PANGO_ATTR_RISE:
1930               appearance.rise = ((PangoAttrInt *)attr)->value;
1931               break;
1932             default:
1933               break;
1934             }
1935           
1936           pango_attribute_destroy (attr);
1937           tmp_list = tmp_list->next;
1938         }
1939       
1940       g_slist_free (extra_attrs);
1941       
1942       insert_attr = pango_attr_font_desc_new (font_desc);
1943       insert_attr->start_index = start + offset;
1944       insert_attr->end_index = end + offset;
1945       
1946       pango_attr_list_insert (attrs, insert_attr);
1947
1948       if (language)
1949         {
1950           insert_attr = pango_attr_language_new (language);
1951           insert_attr->start_index = start + offset;
1952           insert_attr->end_index = end + offset;
1953           
1954           pango_attr_list_insert (attrs, insert_attr);
1955         }
1956
1957       add_generic_attrs (layout, &appearance, end - start,
1958                          attrs, start + offset,
1959                          size_only, TRUE);
1960       
1961       pango_font_description_free (font_desc);
1962     }
1963   while (pango_attr_iterator_next (iter));
1964
1965   pango_attr_iterator_destroy (iter);
1966 }
1967
1968 /* Iterate over the line and fill in display->cursors.
1969  * It's a stripped copy of gtk_text_layout_get_line_display() */
1970 static void
1971 update_text_display_cursors (GtkTextLayout      *layout,
1972                              GtkTextLine        *line,
1973                              GtkTextLineDisplay *display)
1974 {
1975   GtkTextLineSegment *seg;
1976   GtkTextIter iter;
1977   gint layout_byte_offset, buffer_byte_offset;
1978   GSList *cursor_byte_offsets = NULL;
1979   GSList *cursor_segs = NULL;
1980   GSList *tmp_list1, *tmp_list2;
1981
1982   if (!display->cursors_invalid)
1983     return;
1984
1985   display->cursors_invalid = FALSE;
1986
1987   _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
1988                                     &iter, line, 0);
1989
1990   /* Special-case optimization for completely
1991    * invisible lines; makes it faster to deal
1992    * with sequences of invisible lines.
1993    */
1994   if (totally_invisible_line (layout, line, &iter))
1995     return;
1996
1997   /* Iterate over segments */
1998   layout_byte_offset = 0; /* position in the layout text (includes preedit, does not include invisible text) */
1999   buffer_byte_offset = 0; /* position in the buffer line */
2000   seg = _gtk_text_iter_get_any_segment (&iter);
2001   while (seg != NULL)
2002     {
2003       /* Displayable segments */
2004       if (seg->type == &gtk_text_char_type ||
2005           seg->type == &gtk_text_pixbuf_type ||
2006           seg->type == &gtk_text_child_type)
2007         {
2008           _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
2009                                             &iter, line,
2010                                             buffer_byte_offset);
2011
2012           if (!_gtk_text_btree_char_is_invisible (&iter))
2013             layout_byte_offset += seg->byte_count;
2014
2015           buffer_byte_offset += seg->byte_count;
2016         }
2017
2018       /* Marks */
2019       else if (seg->type == &gtk_text_right_mark_type ||
2020                seg->type == &gtk_text_left_mark_type)
2021         {
2022           gint cursor_offset = 0;
2023
2024           /* At the insertion point, add the preedit string, if any */
2025
2026           if (_gtk_text_btree_mark_is_insert (_gtk_text_buffer_get_btree (layout->buffer),
2027                                               seg->body.mark.obj))
2028             {
2029               display->insert_index = layout_byte_offset;
2030
2031               if (layout->preedit_len > 0)
2032                 {
2033                   layout_byte_offset += layout->preedit_len;
2034                   /* DO NOT increment the buffer byte offset for preedit */
2035                   cursor_offset = layout->preedit_cursor - layout->preedit_len;
2036                 }
2037             }
2038
2039           /* Display visible marks */
2040
2041           if (seg->body.mark.visible)
2042             {
2043               cursor_byte_offsets = g_slist_prepend (cursor_byte_offsets,
2044                                                      GINT_TO_POINTER (layout_byte_offset + cursor_offset));
2045               cursor_segs = g_slist_prepend (cursor_segs, seg);
2046             }
2047         }
2048
2049       /* Toggles */
2050       else if (seg->type == &gtk_text_toggle_on_type ||
2051                seg->type == &gtk_text_toggle_off_type)
2052         {
2053         }
2054
2055       else
2056         g_error ("Unknown segment type: %s", seg->type->name);
2057
2058       seg = seg->next;
2059     }
2060
2061   tmp_list1 = cursor_byte_offsets;
2062   tmp_list2 = cursor_segs;
2063   while (tmp_list1)
2064     {
2065       add_cursor (layout, display, tmp_list2->data,
2066                   GPOINTER_TO_INT (tmp_list1->data));
2067       tmp_list1 = tmp_list1->next;
2068       tmp_list2 = tmp_list2->next;
2069     }
2070   g_slist_free (cursor_byte_offsets);
2071   g_slist_free (cursor_segs);
2072 }
2073
2074 GtkTextLineDisplay *
2075 gtk_text_layout_get_line_display (GtkTextLayout *layout,
2076                                   GtkTextLine   *line,
2077                                   gboolean       size_only)
2078 {
2079   GtkTextLayoutPrivate *priv = GTK_TEXT_LAYOUT_GET_PRIVATE (layout);
2080   GtkTextLineDisplay *display;
2081   GtkTextLineSegment *seg;
2082   GtkTextIter iter;
2083   GtkTextAttributes *style;
2084   gchar *text;
2085   PangoAttrList *attrs;
2086   gint text_allocated, layout_byte_offset, buffer_byte_offset;
2087   PangoRectangle extents;
2088   gboolean para_values_set = FALSE;
2089   GSList *cursor_byte_offsets = NULL;
2090   GSList *cursor_segs = NULL;
2091   GSList *tmp_list1, *tmp_list2;
2092   gboolean saw_widget = FALSE;
2093   PangoDirection base_dir;
2094   
2095   g_return_val_if_fail (line != NULL, NULL);
2096
2097   if (layout->one_display_cache)
2098     {
2099       if (line == layout->one_display_cache->line &&
2100           (size_only || !layout->one_display_cache->size_only))
2101         {
2102           if (!size_only)
2103             update_text_display_cursors (layout, line, layout->one_display_cache);
2104           return layout->one_display_cache;
2105         }
2106       else
2107         {
2108           GtkTextLineDisplay *tmp_display = layout->one_display_cache;
2109           layout->one_display_cache = NULL;
2110           gtk_text_layout_free_line_display (layout, tmp_display);
2111         }
2112     }
2113
2114   DV (g_print ("creating one line display cache (%s)\n", G_STRLOC));
2115
2116   display = g_new0 (GtkTextLineDisplay, 1);
2117
2118   display->size_only = size_only;
2119   display->line = line;
2120   display->insert_index = -1;
2121
2122   _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
2123                                     &iter, line, 0);
2124
2125   /* Special-case optimization for completely
2126    * invisible lines; makes it faster to deal
2127    * with sequences of invisible lines.
2128    */
2129   if (totally_invisible_line (layout, line, &iter))
2130     {
2131       if (display->direction == GTK_TEXT_DIR_RTL)
2132         display->layout = pango_layout_new (layout->rtl_context);
2133       else
2134         display->layout = pango_layout_new (layout->ltr_context);
2135       
2136       return display;
2137     }
2138
2139   /* Find the bidi base direction */
2140   base_dir = line->dir_propagated_forward;
2141   if (base_dir == PANGO_DIRECTION_NEUTRAL)
2142     base_dir = line->dir_propagated_back;
2143
2144   if (line == priv->cursor_line &&
2145       line->dir_strong == PANGO_DIRECTION_NEUTRAL)
2146     {
2147       base_dir = (layout->keyboard_direction == GTK_TEXT_DIR_LTR) ?
2148          PANGO_DIRECTION_LTR : PANGO_DIRECTION_RTL;
2149     }
2150   
2151   /* Allocate space for flat text for buffer
2152    */
2153   text_allocated = _gtk_text_line_byte_count (line);
2154   text = g_malloc (text_allocated);
2155
2156   attrs = pango_attr_list_new ();
2157
2158   /* Iterate over segments, creating display chunks for them. */
2159   layout_byte_offset = 0; /* current length of layout text (includes preedit, does not include invisible text) */
2160   buffer_byte_offset = 0; /* position in the buffer line */
2161   seg = _gtk_text_iter_get_any_segment (&iter);
2162   while (seg != NULL)
2163     {
2164       /* Displayable segments */
2165       if (seg->type == &gtk_text_char_type ||
2166           seg->type == &gtk_text_pixbuf_type ||
2167           seg->type == &gtk_text_child_type)
2168         {
2169           _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
2170                                             &iter, line,
2171                                             buffer_byte_offset);
2172           style = get_style (layout, &iter);
2173
2174           /* We have to delay setting the paragraph values until we
2175            * hit the first pixbuf or text segment because toggles at
2176            * the beginning of the paragraph should affect the
2177            * paragraph-global values
2178            */
2179           if (!para_values_set)
2180             {
2181               set_para_values (layout, base_dir, style, display);
2182               para_values_set = TRUE;
2183             }
2184
2185           /* First see if the chunk is invisible, and ignore it if so. Tk
2186            * looked at tabs, wrap mode, etc. before doing this, but
2187            * that made no sense to me, so I am just skipping the
2188            * invisible chunks
2189            */
2190           if (!style->invisible)
2191             {
2192               if (seg->type == &gtk_text_char_type)
2193                 {
2194                   /* We don't want to split segments because of marks,
2195                    * so we scan forward for more segments only
2196                    * separated from us by marks. In theory, we should
2197                    * also merge segments with identical styles, even
2198                    * if there are toggles in-between
2199                    */
2200
2201                   gint bytes = 0;
2202                   GtkTextLineSegment *prev_seg = NULL;
2203   
2204                   while (seg)
2205                     {
2206                       if (seg->type == &gtk_text_char_type)
2207                         {
2208                           memcpy (text + layout_byte_offset, seg->body.chars, seg->byte_count);
2209                           layout_byte_offset += seg->byte_count;
2210                           buffer_byte_offset += seg->byte_count;
2211                           bytes += seg->byte_count;
2212                         }
2213                       else if (seg->type == &gtk_text_right_mark_type ||
2214                                seg->type == &gtk_text_left_mark_type)
2215                         {
2216                           /* If we have preedit string, break out of this loop - we'll almost
2217                            * certainly have different attributes on the preedit string
2218                            */
2219
2220                           if (layout->preedit_len > 0 &&
2221                               _gtk_text_btree_mark_is_insert (_gtk_text_buffer_get_btree (layout->buffer),
2222                                                              seg->body.mark.obj))
2223                             break;
2224
2225                           if (seg->body.mark.visible)
2226                             {
2227                               cursor_byte_offsets = g_slist_prepend (cursor_byte_offsets, GINT_TO_POINTER (layout_byte_offset));
2228                               cursor_segs = g_slist_prepend (cursor_segs, seg);
2229                               if (_gtk_text_btree_mark_is_insert (_gtk_text_buffer_get_btree (layout->buffer),
2230                                                                   seg->body.mark.obj))
2231                                 display->insert_index = layout_byte_offset;
2232                             }
2233                         }
2234                       else
2235                         break;
2236
2237                       prev_seg = seg;
2238                       seg = seg->next;
2239                     }
2240
2241                   seg = prev_seg; /* Back up one */
2242                   add_generic_attrs (layout, &style->appearance,
2243                                      bytes,
2244                                      attrs, layout_byte_offset - bytes,
2245                                      size_only, TRUE);
2246                   add_text_attrs (layout, style, bytes, attrs,
2247                                   layout_byte_offset - bytes, size_only);
2248                 }
2249               else if (seg->type == &gtk_text_pixbuf_type)
2250                 {
2251                   add_generic_attrs (layout,
2252                                      &style->appearance,
2253                                      seg->byte_count,
2254                                      attrs, layout_byte_offset,
2255                                      size_only, FALSE);
2256                   add_pixbuf_attrs (layout, display, style,
2257                                     seg, attrs, layout_byte_offset);
2258                   memcpy (text + layout_byte_offset, gtk_text_unknown_char_utf8,
2259                           seg->byte_count);
2260                   layout_byte_offset += seg->byte_count;
2261                   buffer_byte_offset += seg->byte_count;
2262                 }
2263               else if (seg->type == &gtk_text_child_type)
2264                 {
2265                   saw_widget = TRUE;
2266                   
2267                   add_generic_attrs (layout, &style->appearance,
2268                                      seg->byte_count,
2269                                      attrs, layout_byte_offset,
2270                                      size_only, FALSE);
2271                   add_child_attrs (layout, display, style,
2272                                    seg, attrs, layout_byte_offset);
2273                   memcpy (text + layout_byte_offset, gtk_text_unknown_char_utf8,
2274                           seg->byte_count);
2275                   layout_byte_offset += seg->byte_count;
2276                   buffer_byte_offset += seg->byte_count;
2277                 }
2278               else
2279                 {
2280                   /* We don't know this segment type */
2281                   g_assert_not_reached ();
2282                 }
2283               
2284             } /* if (segment was visible) */
2285           else
2286             {
2287               /* Invisible segment */
2288               buffer_byte_offset += seg->byte_count;
2289             }
2290
2291           release_style (layout, style);
2292         }
2293
2294       /* Toggles */
2295       else if (seg->type == &gtk_text_toggle_on_type ||
2296                seg->type == &gtk_text_toggle_off_type)
2297         {
2298           /* Style may have changed, drop our
2299              current cached style */
2300           invalidate_cached_style (layout);
2301         }
2302
2303       /* Marks */
2304       else if (seg->type == &gtk_text_right_mark_type ||
2305                seg->type == &gtk_text_left_mark_type)
2306         {
2307           gint cursor_offset = 0;
2308           
2309           /* At the insertion point, add the preedit string, if any */
2310           
2311           if (_gtk_text_btree_mark_is_insert (_gtk_text_buffer_get_btree (layout->buffer),
2312                                              seg->body.mark.obj))
2313             {
2314               display->insert_index = layout_byte_offset;
2315               
2316               if (layout->preedit_len > 0)
2317                 {
2318                   text_allocated += layout->preedit_len;
2319                   text = g_realloc (text, text_allocated);
2320
2321                   style = get_style (layout, &iter);
2322                   add_preedit_attrs (layout, style, attrs, layout_byte_offset, size_only);
2323                   release_style (layout, style);
2324                   
2325                   memcpy (text + layout_byte_offset, layout->preedit_string, layout->preedit_len);
2326                   layout_byte_offset += layout->preedit_len;
2327                   /* DO NOT increment the buffer byte offset for preedit */
2328                   
2329                   cursor_offset = layout->preedit_cursor - layout->preedit_len;
2330                 }
2331             }
2332           
2333
2334           /* Display visible marks */
2335
2336           if (seg->body.mark.visible)
2337             {
2338               cursor_byte_offsets = g_slist_prepend (cursor_byte_offsets,
2339                                                      GINT_TO_POINTER (layout_byte_offset + cursor_offset));
2340               cursor_segs = g_slist_prepend (cursor_segs, seg);
2341             }
2342         }
2343
2344       else
2345         g_error ("Unknown segment type: %s", seg->type->name);
2346
2347       seg = seg->next;
2348     }
2349   
2350   if (!para_values_set)
2351     {
2352       style = get_style (layout, &iter);
2353       set_para_values (layout, base_dir, style, display);
2354       release_style (layout, style);
2355     }
2356   
2357   /* Pango doesn't want the trailing paragraph delimiters */
2358
2359   {
2360     /* Only one character has type G_UNICODE_PARAGRAPH_SEPARATOR in
2361      * Unicode 3.0; update this if that changes.
2362      */
2363 #define PARAGRAPH_SEPARATOR 0x2029
2364     gunichar ch = 0;
2365
2366     if (layout_byte_offset > 0)
2367       {
2368         const char *prev = g_utf8_prev_char (text + layout_byte_offset);
2369         ch = g_utf8_get_char (prev);
2370         if (ch == PARAGRAPH_SEPARATOR || ch == '\r' || ch == '\n')
2371           layout_byte_offset = prev - text; /* chop off */
2372
2373         if (ch == '\n' && layout_byte_offset > 0)
2374           {
2375             /* Possibly chop a CR as well */
2376             prev = g_utf8_prev_char (text + layout_byte_offset);
2377             if (*prev == '\r')
2378               --layout_byte_offset;
2379           }
2380       }
2381   }
2382   
2383   pango_layout_set_text (display->layout, text, layout_byte_offset);
2384   pango_layout_set_attributes (display->layout, attrs);
2385
2386   tmp_list1 = cursor_byte_offsets;
2387   tmp_list2 = cursor_segs;
2388   while (tmp_list1)
2389     {
2390       add_cursor (layout, display, tmp_list2->data,
2391                   GPOINTER_TO_INT (tmp_list1->data));
2392       tmp_list1 = tmp_list1->next;
2393       tmp_list2 = tmp_list2->next;
2394     }
2395   g_slist_free (cursor_byte_offsets);
2396   g_slist_free (cursor_segs);
2397
2398   pango_layout_get_extents (display->layout, NULL, &extents);
2399
2400   display->width = PIXEL_BOUND (extents.width) + display->left_margin + display->right_margin;
2401   display->height += PANGO_PIXELS (extents.height);
2402
2403   /* If we aren't wrapping, we need to do the alignment of each
2404    * paragraph ourselves.
2405    */
2406   if (pango_layout_get_width (display->layout) < 0)
2407     {
2408       gint excess = display->total_width - display->width;
2409
2410       switch (pango_layout_get_alignment (display->layout))
2411         {
2412         case PANGO_ALIGN_LEFT:
2413           break;
2414         case PANGO_ALIGN_CENTER:
2415           display->x_offset += excess / 2;
2416           break;
2417         case PANGO_ALIGN_RIGHT:
2418           display->x_offset += excess;
2419           break;
2420         }
2421     }
2422   
2423   /* Free this if we aren't in a loop */
2424   if (layout->wrap_loop_count == 0)
2425     invalidate_cached_style (layout);
2426
2427   g_free (text);
2428   pango_attr_list_unref (attrs);
2429
2430   layout->one_display_cache = display;
2431
2432   if (saw_widget)
2433     allocate_child_widgets (layout, display);
2434   
2435   return display;
2436 }
2437
2438 void
2439 gtk_text_layout_free_line_display (GtkTextLayout      *layout,
2440                                    GtkTextLineDisplay *display)
2441 {
2442   if (display != layout->one_display_cache)
2443     {
2444       if (display->layout)
2445         g_object_unref (display->layout);
2446
2447       if (display->cursors)
2448         {
2449           g_slist_foreach (display->cursors, (GFunc)g_free, NULL);
2450           g_slist_free (display->cursors);
2451         }
2452       g_slist_free (display->shaped_objects);
2453       
2454       if (display->pg_bg_color)
2455         gdk_color_free (display->pg_bg_color);
2456
2457       g_free (display);
2458     }
2459 }
2460
2461 /* Functions to convert iter <=> index for the line of a GtkTextLineDisplay
2462  * taking into account the preedit string and invisible text if necessary.
2463  */
2464 static gint
2465 line_display_iter_to_index (GtkTextLayout      *layout,
2466                             GtkTextLineDisplay *display,
2467                             const GtkTextIter  *iter)
2468 {
2469   gint index;
2470
2471   g_return_val_if_fail (_gtk_text_iter_get_text_line (iter) == display->line, 0);
2472
2473   index = gtk_text_iter_get_visible_line_index (iter);
2474   
2475   if (layout->preedit_len > 0 && display->insert_index >= 0)
2476     {
2477       if (index >= display->insert_index)
2478         index += layout->preedit_len;
2479     }
2480
2481   return index;
2482 }
2483
2484 static void
2485 line_display_index_to_iter (GtkTextLayout      *layout,
2486                             GtkTextLineDisplay *display,
2487                             GtkTextIter        *iter,
2488                             gint                index,
2489                             gint                trailing)
2490 {
2491   g_return_if_fail (!_gtk_text_line_is_last (display->line,
2492                                              _gtk_text_buffer_get_btree (layout->buffer)));
2493   
2494   if (layout->preedit_len > 0 && display->insert_index >= 0)
2495     {
2496       if (index >= display->insert_index + layout->preedit_len)
2497         index -= layout->preedit_len;
2498       else if (index > display->insert_index)
2499         {
2500           index = display->insert_index;
2501           trailing = 0;
2502         }
2503     }
2504
2505   _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
2506                                     iter, display->line, 0);
2507
2508   gtk_text_iter_set_visible_line_index (iter, index);
2509   
2510   if (_gtk_text_iter_get_text_line (iter) != display->line)
2511     {
2512       /* Clamp to end of line - really this clamping should have been done
2513        * before here, maybe in Pango, this is a broken band-aid I think
2514        */
2515       _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
2516                                         iter, display->line, 0);
2517
2518       if (!gtk_text_iter_ends_line (iter))
2519         gtk_text_iter_forward_to_line_end (iter);
2520     }
2521   
2522   gtk_text_iter_forward_chars (iter, trailing);
2523 }
2524
2525 static void
2526 get_line_at_y (GtkTextLayout *layout,
2527                gint           y,
2528                GtkTextLine  **line,
2529                gint          *line_top)
2530 {
2531   if (y < 0)
2532     y = 0;
2533   if (y > layout->height)
2534     y = layout->height;
2535
2536   *line = _gtk_text_btree_find_line_by_y (_gtk_text_buffer_get_btree (layout->buffer),
2537                                          layout, y, line_top);
2538   if (*line == NULL)
2539     {
2540       *line = _gtk_text_btree_get_end_iter_line (_gtk_text_buffer_get_btree (layout->buffer));
2541       
2542       if (line_top)
2543         *line_top =
2544           _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer),
2545                                         *line, layout);
2546     }
2547 }
2548
2549 /**
2550  * gtk_text_layout_get_line_at_y:
2551  * @layout: a #GtkLayout
2552  * @target_iter: the iterator in which the result is stored
2553  * @y: the y positition
2554  * @line_top: location to store the y coordinate of the
2555  *            top of the line. (Can by %NULL.)
2556  *
2557  * Get the iter at the beginning of the line which is displayed
2558  * at the given y.
2559  **/
2560 void
2561 gtk_text_layout_get_line_at_y (GtkTextLayout *layout,
2562                                GtkTextIter   *target_iter,
2563                                gint           y,
2564                                gint          *line_top)
2565 {
2566   GtkTextLine *line;
2567
2568   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
2569   g_return_if_fail (target_iter != NULL);
2570
2571   get_line_at_y (layout, y, &line, line_top);
2572   _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
2573                                    target_iter, line, 0);
2574 }
2575
2576 void
2577 gtk_text_layout_get_iter_at_pixel (GtkTextLayout *layout,
2578                                    GtkTextIter   *target_iter,
2579                                    gint           x, 
2580                                    gint           y)
2581 {
2582   gint trailing;
2583
2584   gtk_text_layout_get_iter_at_position (layout, target_iter, &trailing, x, y);
2585
2586   gtk_text_iter_forward_chars (target_iter, trailing);  
2587 }
2588
2589 void gtk_text_layout_get_iter_at_position (GtkTextLayout     *layout,
2590                                            GtkTextIter       *target_iter,
2591                                            gint              *trailing,
2592                                            gint               x,
2593                                            gint               y)
2594 {
2595   GtkTextLine *line;
2596   gint byte_index;
2597   gint line_top;
2598   GtkTextLineDisplay *display;
2599
2600   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
2601   g_return_if_fail (target_iter != NULL);
2602
2603   get_line_at_y (layout, y, &line, &line_top);
2604
2605   display = gtk_text_layout_get_line_display (layout, line, FALSE);
2606
2607   x -= display->x_offset;
2608   y -= line_top + display->top_margin;
2609
2610   /* If we are below the layout, position the cursor at the last character
2611    * of the line.
2612    */
2613   if (y > display->height - display->top_margin - display->bottom_margin)
2614     {
2615       byte_index = _gtk_text_line_byte_count (line);
2616       *trailing = 0;
2617     }
2618   else
2619     {
2620        /* Ignore the "outside" return value from pango. Pango is doing
2621         * the right thing even if we are outside the layout in the
2622         * x-direction.
2623         */
2624       pango_layout_xy_to_index (display->layout, x * PANGO_SCALE, y * PANGO_SCALE,
2625                                 &byte_index, trailing);
2626     }
2627
2628   line_display_index_to_iter (layout, display, target_iter, byte_index, 0);
2629
2630   gtk_text_layout_free_line_display (layout, display);
2631 }
2632
2633
2634 /**
2635  * gtk_text_layout_get_cursor_locations:
2636  * @layout: a #GtkTextLayout
2637  * @iter: a #GtkTextIter
2638  * @strong_pos: location to store the strong cursor position (may be %NULL)
2639  * @weak_pos: location to store the weak cursor position (may be %NULL)
2640  *
2641  * Given an iterator within a text layout, determine the positions of the
2642  * strong and weak cursors if the insertion point is at that
2643  * iterator. The position of each cursor is stored as a zero-width
2644  * rectangle. The strong cursor location is the location where
2645  * characters of the directionality equal to the base direction of the
2646  * paragraph are inserted.  The weak cursor location is the location
2647  * where characters of the directionality opposite to the base
2648  * direction of the paragraph are inserted.
2649  **/
2650 void
2651 gtk_text_layout_get_cursor_locations (GtkTextLayout  *layout,
2652                                       GtkTextIter    *iter,
2653                                       GdkRectangle   *strong_pos,
2654                                       GdkRectangle   *weak_pos)
2655 {
2656   GtkTextLine *line;
2657   GtkTextLineDisplay *display;
2658   gint line_top;
2659   gint index;
2660   GtkTextIter insert_iter;
2661
2662   PangoRectangle pango_strong_pos;
2663   PangoRectangle pango_weak_pos;
2664
2665   g_return_if_fail (layout != NULL);
2666   g_return_if_fail (iter != NULL);
2667
2668   line = _gtk_text_iter_get_text_line (iter);
2669   display = gtk_text_layout_get_line_display (layout, line, FALSE);
2670   index = line_display_iter_to_index (layout, display, iter);
2671   
2672   line_top = _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer),
2673                                            line, layout);
2674   
2675   gtk_text_buffer_get_iter_at_mark (layout->buffer, &insert_iter,
2676                                     gtk_text_buffer_get_mark (layout->buffer,
2677                                                               "insert"));
2678
2679   if (gtk_text_iter_equal (iter, &insert_iter))
2680     index += layout->preedit_cursor - layout->preedit_len;
2681   
2682   pango_layout_get_cursor_pos (display->layout, index,
2683                                strong_pos ? &pango_strong_pos : NULL,
2684                                weak_pos ? &pango_weak_pos : NULL);
2685
2686   if (strong_pos)
2687     {
2688       strong_pos->x = display->x_offset + pango_strong_pos.x / PANGO_SCALE;
2689       strong_pos->y = line_top + display->top_margin + pango_strong_pos.y / PANGO_SCALE;
2690       strong_pos->width = 0;
2691       strong_pos->height = pango_strong_pos.height / PANGO_SCALE;
2692     }
2693
2694   if (weak_pos)
2695     {
2696       weak_pos->x = display->x_offset + pango_weak_pos.x / PANGO_SCALE;
2697       weak_pos->y = line_top + display->top_margin + pango_weak_pos.y / PANGO_SCALE;
2698       weak_pos->width = 0;
2699       weak_pos->height = pango_weak_pos.height / PANGO_SCALE;
2700     }
2701
2702   gtk_text_layout_free_line_display (layout, display);
2703 }
2704
2705 /**
2706  * _gtk_text_layout_get_block_cursor:
2707  * @layout: a #GtkTextLayout
2708  * @pos: a #GdkRectangle to store block cursor position
2709  *
2710  * If layout is to display a block cursor, calculates its position
2711  * and returns %TRUE. Otherwise it returns %FALSE. In case when
2712  * cursor is visible, it simply returns the position stored in
2713  * the line display, otherwise it has to compute the position
2714  * (see get_block_cursor()).
2715  **/
2716 gboolean
2717 _gtk_text_layout_get_block_cursor (GtkTextLayout *layout,
2718                                    GdkRectangle  *pos)
2719 {
2720   GtkTextLine *line;
2721   GtkTextLineDisplay *display;
2722   GtkTextIter iter;
2723   GdkRectangle rect;
2724   gboolean block = FALSE;
2725
2726   g_return_val_if_fail (layout != NULL, FALSE);
2727
2728   gtk_text_buffer_get_iter_at_mark (layout->buffer, &iter,
2729                                     gtk_text_buffer_get_insert (layout->buffer));
2730   line = _gtk_text_iter_get_text_line (&iter);
2731   display = gtk_text_layout_get_line_display (layout, line, FALSE);
2732
2733   if (display->has_block_cursor)
2734     {
2735       block = TRUE;
2736       rect = display->block_cursor;
2737     }
2738   else
2739     {
2740       gint index = display->insert_index;
2741
2742       if (index < 0)
2743         index = gtk_text_iter_get_line_index (&iter);
2744
2745       if (get_block_cursor (layout, display, &iter, index, &rect, NULL))
2746         block = TRUE;
2747     }
2748
2749   if (block && pos)
2750     {
2751       gint line_top;
2752
2753       line_top = _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer),
2754                                                 line, layout);
2755
2756       *pos = rect;
2757       pos->x += display->x_offset;
2758       pos->y += line_top + display->top_margin;
2759     }
2760
2761   gtk_text_layout_free_line_display (layout, display);
2762   return block;
2763 }
2764
2765 /**
2766  * gtk_text_layout_get_line_yrange:
2767  * @layout: a #GtkTextLayout
2768  * @iter:   a #GtkTextIter
2769  * @y:      location to store the top of the paragraph in pixels,
2770  *          or %NULL.
2771  * @height  location to store the height of the paragraph in pixels,
2772  *          or %NULL.
2773  *
2774  * Find the range of y coordinates for the paragraph containing
2775  * the given iter.
2776  **/
2777 void
2778 gtk_text_layout_get_line_yrange (GtkTextLayout     *layout,
2779                                  const GtkTextIter *iter,
2780                                  gint              *y,
2781                                  gint              *height)
2782 {
2783   GtkTextLine *line;
2784
2785   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
2786   g_return_if_fail (_gtk_text_iter_get_btree (iter) == _gtk_text_buffer_get_btree (layout->buffer));
2787
2788   line = _gtk_text_iter_get_text_line (iter);
2789
2790   if (y)
2791     *y = _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer),
2792                                        line, layout);
2793   if (height)
2794     {
2795       GtkTextLineData *line_data = _gtk_text_line_get_data (line, layout);
2796       if (line_data)
2797         *height = line_data->height;
2798       else
2799         *height = 0;
2800     }
2801 }
2802
2803 /**
2804  * _gtk_text_layout_get_line_xrange:
2805  * @layout: a #GtkTextLayout
2806  * @iter:   a #GtkTextIter
2807  * @x:      location to store the top of the paragraph in pixels,
2808  *          or %NULL.
2809  * @width  location to store the height of the paragraph in pixels,
2810  *          or %NULL.
2811  *
2812  * Find the range of X coordinates for the paragraph containing
2813  * the given iter. Private for 2.0 due to API freeze, could
2814  * be made public for 2.2.
2815  **/
2816 void
2817 _gtk_text_layout_get_line_xrange (GtkTextLayout     *layout,
2818                                   const GtkTextIter *iter,
2819                                   gint              *x,
2820                                   gint              *width)
2821 {
2822   GtkTextLine *line;
2823
2824   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
2825   g_return_if_fail (_gtk_text_iter_get_btree (iter) == _gtk_text_buffer_get_btree (layout->buffer));
2826
2827   line = _gtk_text_iter_get_text_line (iter);
2828
2829   if (x)
2830     *x = 0; /* FIXME This is wrong; should represent the first available cursor position */
2831   
2832   if (width)
2833     {
2834       GtkTextLineData *line_data = _gtk_text_line_get_data (line, layout);
2835       if (line_data)
2836         *width = line_data->width;
2837       else
2838         *width = 0;
2839     }
2840 }
2841
2842 void
2843 gtk_text_layout_get_iter_location (GtkTextLayout     *layout,
2844                                    const GtkTextIter *iter,
2845                                    GdkRectangle      *rect)
2846 {
2847   PangoRectangle pango_rect;
2848   GtkTextLine *line;
2849   GtkTextBTree *tree;
2850   GtkTextLineDisplay *display;
2851   gint byte_index;
2852   gint x_offset;
2853   
2854   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
2855   g_return_if_fail (_gtk_text_iter_get_btree (iter) == _gtk_text_buffer_get_btree (layout->buffer));
2856   g_return_if_fail (rect != NULL);
2857
2858   tree = _gtk_text_iter_get_btree (iter);
2859   line = _gtk_text_iter_get_text_line (iter);
2860
2861   display = gtk_text_layout_get_line_display (layout, line, FALSE);
2862
2863   rect->y = _gtk_text_btree_find_line_top (tree, line, layout);
2864
2865   x_offset = display->x_offset * PANGO_SCALE;
2866
2867   byte_index = gtk_text_iter_get_line_index (iter);
2868   
2869   pango_layout_index_to_pos (display->layout, byte_index, &pango_rect);
2870   
2871   rect->x = PANGO_PIXELS (x_offset + pango_rect.x);
2872   rect->y += PANGO_PIXELS (pango_rect.y) + display->top_margin;
2873   rect->width = PANGO_PIXELS (pango_rect.width);
2874   rect->height = PANGO_PIXELS (pango_rect.height);
2875
2876   gtk_text_layout_free_line_display (layout, display);
2877 }
2878
2879 /* FFIXX */
2880
2881 /* Find the iter for the logical beginning of the first display line whose
2882  * top y is >= y. If none exists, move the iter to the logical beginning
2883  * of the last line in the buffer.
2884  */
2885 static void
2886 find_display_line_below (GtkTextLayout *layout,
2887                          GtkTextIter   *iter,
2888                          gint           y)
2889 {
2890   GtkTextLine *line, *next;
2891   GtkTextLine *found_line = NULL;
2892   gint line_top;
2893   gint found_byte = 0;
2894
2895   line = _gtk_text_btree_find_line_by_y (_gtk_text_buffer_get_btree (layout->buffer),
2896                                         layout, y, &line_top);
2897   if (!line)
2898     {
2899       line =
2900         _gtk_text_btree_get_end_iter_line (_gtk_text_buffer_get_btree (layout->buffer));
2901
2902       line_top =
2903         _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer),
2904                                       line, layout);
2905     }
2906
2907   while (line && !found_line)
2908     {
2909       GtkTextLineDisplay *display = gtk_text_layout_get_line_display (layout, line, FALSE);
2910       PangoLayoutIter *layout_iter;
2911
2912       layout_iter = pango_layout_get_iter (display->layout);
2913
2914       line_top += display->top_margin;
2915
2916       do
2917         {
2918           gint first_y, last_y;
2919           PangoLayoutLine *layout_line = pango_layout_iter_get_line_readonly (layout_iter);
2920
2921           found_byte = layout_line->start_index;
2922           
2923           if (line_top >= y)
2924             {
2925               found_line = line;
2926               break;
2927             }
2928
2929           pango_layout_iter_get_line_yrange (layout_iter, &first_y, &last_y);
2930           line_top += (last_y - first_y) / PANGO_SCALE;
2931         }
2932       while (pango_layout_iter_next_line (layout_iter));
2933
2934       pango_layout_iter_free (layout_iter);
2935       
2936       line_top += display->bottom_margin;
2937       gtk_text_layout_free_line_display (layout, display);
2938
2939       next = _gtk_text_line_next_excluding_last (line);
2940       if (!next)
2941         found_line = line;
2942
2943       line = next;
2944     }
2945
2946   _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
2947                                    iter, found_line, found_byte);
2948 }
2949
2950 /* Find the iter for the logical beginning of the last display line whose
2951  * top y is >= y. If none exists, move the iter to the logical beginning
2952  * of the first line in the buffer.
2953  */
2954 static void
2955 find_display_line_above (GtkTextLayout *layout,
2956                          GtkTextIter   *iter,
2957                          gint           y)
2958 {
2959   GtkTextLine *line;
2960   GtkTextLine *found_line = NULL;
2961   gint line_top;
2962   gint found_byte = 0;
2963
2964   line = _gtk_text_btree_find_line_by_y (_gtk_text_buffer_get_btree (layout->buffer), layout, y, &line_top);
2965   if (!line)
2966     {
2967       line = _gtk_text_btree_get_end_iter_line (_gtk_text_buffer_get_btree (layout->buffer));
2968       
2969       line_top = _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer), line, layout);
2970     }
2971
2972   while (line && !found_line)
2973     {
2974       GtkTextLineDisplay *display = gtk_text_layout_get_line_display (layout, line, FALSE);
2975       PangoRectangle logical_rect;
2976       PangoLayoutIter *layout_iter;
2977       gint tmp_top;
2978
2979       layout_iter = pango_layout_get_iter (display->layout);
2980       
2981       line_top -= display->top_margin + display->bottom_margin;
2982       pango_layout_iter_get_layout_extents (layout_iter, NULL, &logical_rect);
2983       line_top -= logical_rect.height / PANGO_SCALE;
2984
2985       tmp_top = line_top + display->top_margin;
2986
2987       do
2988         {
2989           gint first_y, last_y;
2990           PangoLayoutLine *layout_line = pango_layout_iter_get_line_readonly (layout_iter);
2991
2992           found_byte = layout_line->start_index;
2993
2994           pango_layout_iter_get_line_yrange (layout_iter, &first_y, &last_y);
2995           
2996           tmp_top -= (last_y - first_y) / PANGO_SCALE;
2997
2998           if (tmp_top < y)
2999             {
3000               found_line = line;
3001               pango_layout_iter_free (layout_iter);
3002               goto done;
3003             }
3004         }
3005       while (pango_layout_iter_next_line (layout_iter));
3006
3007       pango_layout_iter_free (layout_iter);
3008       
3009       gtk_text_layout_free_line_display (layout, display);
3010
3011       line = _gtk_text_line_previous (line);
3012     }
3013
3014  done:
3015   
3016   if (found_line)
3017     _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
3018                                      iter, found_line, found_byte);
3019   else
3020     gtk_text_buffer_get_iter_at_offset (layout->buffer, iter, 0);
3021 }
3022
3023 /**
3024  * gtk_text_layout_clamp_iter_to_vrange:
3025  * @layout: a #GtkTextLayout
3026  * @iter:   a #GtkTextIter
3027  * @top:    the top of the range
3028  * @bottom: the bottom the range
3029  *
3030  * If the iterator is not fully in the range @top <= y < @bottom,
3031  * then, if possible, move it the minimum distance so that the
3032  * iterator in this range.
3033  *
3034  * Returns: %TRUE if the iterator was moved, otherwise %FALSE.
3035  **/
3036 gboolean
3037 gtk_text_layout_clamp_iter_to_vrange (GtkTextLayout *layout,
3038                                       GtkTextIter   *iter,
3039                                       gint           top,
3040                                       gint           bottom)
3041 {
3042   GdkRectangle iter_rect;
3043
3044   gtk_text_layout_get_iter_location (layout, iter, &iter_rect);
3045
3046   /* If the iter is at least partially above the range, put the iter
3047    * at the first fully visible line after the range.
3048    */
3049   if (iter_rect.y < top)
3050     {
3051       find_display_line_below (layout, iter, top);
3052
3053       return TRUE;
3054     }
3055   /* Otherwise, if the iter is at least partially below the screen, put the
3056    * iter on the last logical position of the last completely visible
3057    * line on screen
3058    */
3059   else if (iter_rect.y + iter_rect.height > bottom)
3060     {
3061       find_display_line_above (layout, iter, bottom);
3062
3063       return TRUE;
3064     }
3065   else
3066     return FALSE;
3067 }
3068
3069 /**
3070  * gtk_text_layout_move_iter_to_previous_line:
3071  * @layout: a #GtkLayout
3072  * @iter:   a #GtkTextIter
3073  *
3074  * Move the iterator to the beginning of the previous line. The lines
3075  * of a wrapped paragraph are treated as distinct for this operation.
3076  **/
3077 gboolean
3078 gtk_text_layout_move_iter_to_previous_line (GtkTextLayout *layout,
3079                                             GtkTextIter   *iter)
3080 {
3081   GtkTextLine *line;
3082   GtkTextLineDisplay *display;
3083   gint line_byte;
3084   GSList *tmp_list;
3085   PangoLayoutLine *layout_line;
3086   GtkTextIter orig;
3087   gboolean update_byte = FALSE;
3088   
3089   g_return_val_if_fail (GTK_IS_TEXT_LAYOUT (layout), FALSE);
3090   g_return_val_if_fail (iter != NULL, FALSE);
3091
3092   orig = *iter;
3093
3094
3095   line = _gtk_text_iter_get_text_line (iter);
3096   display = gtk_text_layout_get_line_display (layout, line, FALSE);
3097   line_byte = line_display_iter_to_index (layout, display, iter);
3098
3099   /* If display->height == 0 then the line is invisible, so don't
3100    * move onto it.
3101    */
3102   while (display->height == 0)
3103     {
3104       GtkTextLine *prev_line;
3105
3106       prev_line = _gtk_text_line_previous (line);
3107
3108       if (prev_line == NULL)
3109         {
3110           line_display_index_to_iter (layout, display, iter, 0, 0);
3111           goto out;
3112         }
3113
3114       gtk_text_layout_free_line_display (layout, display);
3115
3116       line = prev_line;
3117       display = gtk_text_layout_get_line_display (layout, prev_line, FALSE);
3118       update_byte = TRUE;
3119     }
3120   
3121   tmp_list = pango_layout_get_lines_readonly (display->layout);
3122   layout_line = tmp_list->data;
3123
3124   if (update_byte)
3125     {
3126       line_byte = layout_line->start_index + layout_line->length;
3127     }
3128
3129   if (line_byte < layout_line->length || !tmp_list->next) /* first line of paragraph */
3130     {
3131       GtkTextLine *prev_line;
3132
3133       prev_line = _gtk_text_line_previous (line);
3134
3135       /* first line of the whole buffer, do not move the iter and return FALSE */
3136       if (prev_line == NULL)
3137         goto out;
3138
3139       while (prev_line)
3140         {
3141           gtk_text_layout_free_line_display (layout, display);
3142
3143           display = gtk_text_layout_get_line_display (layout, prev_line, FALSE);
3144
3145           if (display->height > 0)
3146             {
3147               tmp_list = g_slist_last (pango_layout_get_lines_readonly (display->layout));
3148               layout_line = tmp_list->data;
3149
3150               line_display_index_to_iter (layout, display, iter,
3151                                           layout_line->start_index + layout_line->length, 0);
3152               break;
3153             }
3154
3155           prev_line = _gtk_text_line_previous (prev_line);
3156         }
3157     }
3158   else
3159     {
3160       gint prev_offset = layout_line->start_index;
3161
3162       tmp_list = tmp_list->next;
3163       while (tmp_list)
3164         {
3165           layout_line = tmp_list->data;
3166
3167           if (line_byte < layout_line->start_index + layout_line->length ||
3168               !tmp_list->next)
3169             {
3170               line_display_index_to_iter (layout, display, iter, prev_offset, 0);
3171               break;
3172             }
3173
3174           prev_offset = layout_line->start_index;
3175           tmp_list = tmp_list->next;
3176         }
3177     }
3178
3179  out:
3180   
3181   gtk_text_layout_free_line_display (layout, display);
3182
3183   return
3184     !gtk_text_iter_equal (iter, &orig) &&
3185     !gtk_text_iter_is_end (iter);
3186 }
3187
3188 /**
3189  * gtk_text_layout_move_iter_to_next_line:
3190  * @layout: a #GtkLayout
3191  * @iter:   a #GtkTextIter
3192  *
3193  * Move the iterator to the beginning of the next line. The
3194  * lines of a wrapped paragraph are treated as distinct for
3195  * this operation.
3196  **/
3197 gboolean
3198 gtk_text_layout_move_iter_to_next_line (GtkTextLayout *layout,
3199                                         GtkTextIter   *iter)
3200 {
3201   GtkTextLine *line;
3202   GtkTextLineDisplay *display;
3203   gint line_byte;
3204   GtkTextIter orig;
3205   gboolean found = FALSE;
3206   gboolean found_after = FALSE;
3207   gboolean first = TRUE;
3208
3209   g_return_val_if_fail (GTK_IS_TEXT_LAYOUT (layout), FALSE);
3210   g_return_val_if_fail (iter != NULL, FALSE);
3211
3212   orig = *iter;
3213   
3214   line = _gtk_text_iter_get_text_line (iter);
3215
3216   while (line && !found_after)
3217     {
3218       GSList *tmp_list;
3219
3220       display = gtk_text_layout_get_line_display (layout, line, FALSE);
3221
3222       if (display->height == 0)
3223         goto next;
3224       
3225       if (first)
3226         {
3227           line_byte = line_display_iter_to_index (layout, display, iter);
3228           first = FALSE;
3229         }
3230       else
3231         line_byte = 0;
3232         
3233       tmp_list = pango_layout_get_lines_readonly (display->layout);
3234       while (tmp_list && !found_after)
3235         {
3236           PangoLayoutLine *layout_line = tmp_list->data;
3237
3238           if (found)
3239             {
3240               line_display_index_to_iter (layout, display, iter,
3241                                           layout_line->start_index, 0);
3242               found_after = TRUE;
3243             }
3244           else if (line_byte < layout_line->start_index + layout_line->length || !tmp_list->next)
3245             found = TRUE;
3246           
3247           tmp_list = tmp_list->next;
3248         }
3249
3250     next:
3251       
3252       gtk_text_layout_free_line_display (layout, display);
3253
3254       line = _gtk_text_line_next_excluding_last (line);
3255     }
3256
3257   if (!found_after)
3258     gtk_text_buffer_get_end_iter (layout->buffer, iter);
3259   
3260   return
3261     !gtk_text_iter_equal (iter, &orig) &&
3262     !gtk_text_iter_is_end (iter);
3263 }
3264
3265 /**
3266  * gtk_text_layout_move_iter_to_line_end:
3267  * @layout: a #GtkTextLayout
3268  * @direction: if negative, move to beginning of line, otherwise
3269                move to end of line.
3270  *
3271  * Move to the beginning or end of a display line.
3272  **/
3273 gboolean
3274 gtk_text_layout_move_iter_to_line_end (GtkTextLayout *layout,
3275                                        GtkTextIter   *iter,
3276                                        gint           direction)
3277 {
3278   GtkTextLine *line;
3279   GtkTextLineDisplay *display;
3280   gint line_byte;
3281   GSList *tmp_list;
3282   GtkTextIter orig;
3283   
3284   g_return_val_if_fail (GTK_IS_TEXT_LAYOUT (layout), FALSE);
3285   g_return_val_if_fail (iter != NULL, FALSE);
3286
3287   orig = *iter;
3288   
3289   line = _gtk_text_iter_get_text_line (iter);
3290   display = gtk_text_layout_get_line_display (layout, line, FALSE);
3291   line_byte = line_display_iter_to_index (layout, display, iter);
3292
3293   tmp_list = pango_layout_get_lines_readonly (display->layout);
3294   while (tmp_list)
3295     {
3296       PangoLayoutLine *layout_line = tmp_list->data;
3297
3298       if (line_byte < layout_line->start_index + layout_line->length || !tmp_list->next)
3299         {
3300           line_display_index_to_iter (layout, display, iter,
3301                                       direction < 0 ? layout_line->start_index : layout_line->start_index + layout_line->length,
3302                                       0);
3303
3304           /* FIXME: As a bad hack, we move back one position when we
3305            * are inside a paragraph to avoid going to next line on a
3306            * forced break not at whitespace. Real fix is to keep track
3307            * of whether marks are at leading or trailing edge?  */
3308           if (direction > 0 && layout_line->length > 0 && 
3309               !gtk_text_iter_ends_line (iter) && 
3310               !_gtk_text_btree_char_is_invisible (iter))
3311             gtk_text_iter_backward_char (iter);
3312           break;
3313         }
3314       
3315       tmp_list = tmp_list->next;
3316     }
3317
3318   gtk_text_layout_free_line_display (layout, display);
3319
3320   return
3321     !gtk_text_iter_equal (iter, &orig) &&
3322     !gtk_text_iter_is_end (iter);
3323 }
3324
3325
3326 /**
3327  * gtk_text_layout_iter_starts_line:
3328  * @layout: a #GtkTextLayout
3329  * @iter: iterator to test
3330  *
3331  * Tests whether an iterator is at the start of a display line.
3332  **/
3333 gboolean
3334 gtk_text_layout_iter_starts_line (GtkTextLayout       *layout,
3335                                   const GtkTextIter   *iter)
3336 {
3337   GtkTextLine *line;
3338   GtkTextLineDisplay *display;
3339   gint line_byte;
3340   GSList *tmp_list;
3341   
3342   g_return_val_if_fail (GTK_IS_TEXT_LAYOUT (layout), FALSE);
3343   g_return_val_if_fail (iter != NULL, FALSE);
3344
3345   line = _gtk_text_iter_get_text_line (iter);
3346   display = gtk_text_layout_get_line_display (layout, line, FALSE);
3347   line_byte = line_display_iter_to_index (layout, display, iter);
3348
3349   tmp_list = pango_layout_get_lines_readonly (display->layout);
3350   while (tmp_list)
3351     {
3352       PangoLayoutLine *layout_line = tmp_list->data;
3353
3354       if (line_byte < layout_line->start_index + layout_line->length ||
3355           !tmp_list->next)
3356         {
3357           /* We're located on this line or the para delimiters before
3358            * it
3359            */
3360           gtk_text_layout_free_line_display (layout, display);
3361           
3362           if (line_byte == layout_line->start_index)
3363             return TRUE;
3364           else
3365             return FALSE;
3366         }
3367       
3368       tmp_list = tmp_list->next;
3369     }
3370
3371   g_assert_not_reached ();
3372   return FALSE;
3373 }
3374
3375 void
3376 gtk_text_layout_get_iter_at_line (GtkTextLayout  *layout,
3377                                   GtkTextIter    *iter,
3378                                   GtkTextLine    *line,
3379                                   gint            byte_offset)
3380 {
3381   _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
3382                                     iter, line, byte_offset);
3383 }
3384
3385
3386 /**
3387  * gtk_text_layout_move_iter_to_x:
3388  * @layout: a #GtkTextLayout
3389  * @iter:   a #GtkTextIter
3390  * @x:      X coordinate
3391  *
3392  * Keeping the iterator on the same line of the layout, move it to the
3393  * specified X coordinate. The lines of a wrapped paragraph are
3394  * treated as distinct for this operation.
3395  **/
3396 void
3397 gtk_text_layout_move_iter_to_x (GtkTextLayout *layout,
3398                                 GtkTextIter   *iter,
3399                                 gint           x)
3400 {
3401   GtkTextLine *line;
3402   GtkTextLineDisplay *display;
3403   gint line_byte;
3404   PangoLayoutIter *layout_iter;
3405   
3406   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
3407   g_return_if_fail (iter != NULL);
3408
3409   line = _gtk_text_iter_get_text_line (iter);
3410
3411   display = gtk_text_layout_get_line_display (layout, line, FALSE);
3412   line_byte = line_display_iter_to_index (layout, display, iter);
3413
3414   layout_iter = pango_layout_get_iter (display->layout);
3415
3416   do
3417     {
3418       PangoLayoutLine *layout_line = pango_layout_iter_get_line_readonly (layout_iter);
3419
3420       if (line_byte < layout_line->start_index + layout_line->length ||
3421           pango_layout_iter_at_last_line (layout_iter))
3422         {
3423           PangoRectangle logical_rect;
3424           gint byte_index, trailing;
3425           gint x_offset = display->x_offset * PANGO_SCALE;
3426
3427           pango_layout_iter_get_line_extents (layout_iter, NULL, &logical_rect);
3428
3429           pango_layout_line_x_to_index (layout_line,
3430                                         x * PANGO_SCALE - x_offset - logical_rect.x,
3431                                         &byte_index, &trailing);
3432
3433           line_display_index_to_iter (layout, display, iter, byte_index, trailing);
3434
3435           break;
3436         }
3437     }
3438   while (pango_layout_iter_next_line (layout_iter));
3439
3440   pango_layout_iter_free (layout_iter);
3441   
3442   gtk_text_layout_free_line_display (layout, display);
3443 }
3444
3445 /**
3446  * gtk_text_layout_move_iter_visually:
3447  * @layout:  a #GtkTextLayout
3448  * @iter:    a #GtkTextIter
3449  * @count:   number of characters to move (negative moves left, positive moves right)
3450  *
3451  * Move the iterator a given number of characters visually, treating
3452  * it as the strong cursor position. If @count is positive, then the
3453  * new strong cursor position will be @count positions to the right of
3454  * the old cursor position. If @count is negative then the new strong
3455  * cursor position will be @count positions to the left of the old
3456  * cursor position.
3457  *
3458  * In the presence of bidirection text, the correspondence
3459  * between logical and visual order will depend on the direction
3460  * of the current run, and there may be jumps when the cursor
3461  * is moved off of the end of a run.
3462  **/
3463
3464 gboolean
3465 gtk_text_layout_move_iter_visually (GtkTextLayout *layout,
3466                                     GtkTextIter   *iter,
3467                                     gint           count)
3468 {
3469   GtkTextLineDisplay *display = NULL;
3470   GtkTextIter orig;
3471   GtkTextIter lineiter;
3472   
3473   g_return_val_if_fail (layout != NULL, FALSE);
3474   g_return_val_if_fail (iter != NULL, FALSE);
3475
3476   orig = *iter;
3477   
3478   while (count != 0)
3479     {
3480       GtkTextLine *line = _gtk_text_iter_get_text_line (iter);
3481       gint line_byte;
3482       gint extra_back = 0;
3483       gboolean strong;
3484
3485       int byte_count = _gtk_text_line_byte_count (line);
3486
3487       int new_index;
3488       int new_trailing;
3489
3490       if (!display)
3491         display = gtk_text_layout_get_line_display (layout, line, FALSE);
3492
3493       if (layout->cursor_direction == GTK_TEXT_DIR_NONE)
3494         strong = TRUE;
3495       else
3496         strong = display->direction == layout->cursor_direction;
3497
3498       line_byte = line_display_iter_to_index (layout, display, iter);
3499
3500       if (count > 0)
3501         {
3502           pango_layout_move_cursor_visually (display->layout, strong, line_byte, 0, 1, &new_index, &new_trailing);
3503           count--;
3504         }
3505       else
3506         {
3507           pango_layout_move_cursor_visually (display->layout, strong, line_byte, 0, -1, &new_index, &new_trailing);
3508           count++;
3509         }
3510
3511       /* We need to handle the preedit string specially. Well, we don't really need to
3512        * handle it specially, since hopefully calling gtk_im_context_reset() will
3513        * remove the preedit string; but if we start off in front of the preedit
3514        * string (logically) and end up in or on the back edge of the preedit string,
3515        * we should move the iter one place farther.
3516        */
3517       if (layout->preedit_len > 0 && display->insert_index >= 0)
3518         {
3519           if (line_byte == display->insert_index + layout->preedit_len &&
3520               new_index < display->insert_index + layout->preedit_len)
3521             {
3522               line_byte = display->insert_index;
3523               extra_back = 1;
3524             }
3525         }
3526       
3527       if (new_index < 0 || (new_index == 0 && extra_back))
3528         {
3529           do
3530             {
3531               line = _gtk_text_line_previous (line);
3532
3533               if (!line)
3534                 goto done;
3535               
3536               _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
3537                                                 &lineiter, line, 0);
3538             }
3539           while (totally_invisible_line (layout, line, &lineiter));
3540           
3541           gtk_text_layout_free_line_display (layout, display);
3542           display = gtk_text_layout_get_line_display (layout, line, FALSE);
3543           gtk_text_iter_forward_to_line_end (&lineiter);
3544           new_index = gtk_text_iter_get_visible_line_index (&lineiter);
3545         }
3546       else if (new_index > byte_count)
3547         {
3548           do
3549             {
3550               line = _gtk_text_line_next_excluding_last (line);
3551               if (!line)
3552                 goto done;
3553
3554               _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
3555                                                 &lineiter, line, 0);
3556             }
3557           while (totally_invisible_line (layout, line, &lineiter));
3558   
3559           gtk_text_layout_free_line_display (layout, display);
3560           display = gtk_text_layout_get_line_display (layout, line, FALSE);
3561           new_index = 0;
3562         }
3563       
3564        line_display_index_to_iter (layout, display, iter, new_index, new_trailing);
3565        if (extra_back)
3566          gtk_text_iter_backward_char (iter);
3567     }
3568
3569   gtk_text_layout_free_line_display (layout, display);
3570
3571  done:
3572   
3573   return
3574     !gtk_text_iter_equal (iter, &orig) &&
3575     !gtk_text_iter_is_end (iter);
3576 }
3577
3578 void
3579 gtk_text_layout_spew (GtkTextLayout *layout)
3580 {
3581 #if 0
3582   GtkTextDisplayLine *iter;
3583   guint wrapped = 0;
3584   guint paragraphs = 0;
3585   GtkTextLine *last_line = NULL;
3586
3587   iter = layout->line_list;
3588   while (iter != NULL)
3589     {
3590       if (iter->line != last_line)
3591         {
3592           printf ("%5u  paragraph (%p)\n", paragraphs, iter->line);
3593           ++paragraphs;
3594           last_line = iter->line;
3595         }
3596
3597       printf ("  %5u  y: %d len: %d start: %d bytes: %d\n",
3598               wrapped, iter->y, iter->length, iter->byte_offset,
3599               iter->byte_count);
3600
3601       ++wrapped;
3602       iter = iter->next;
3603     }
3604
3605   printf ("Layout %s recompute\n",
3606           layout->need_recompute ? "needs" : "doesn't need");
3607
3608   printf ("Layout pars: %u lines: %u size: %d x %d Screen width: %d\n",
3609           paragraphs, wrapped, layout->width,
3610           layout->height, layout->screen_width);
3611 #endif
3612 }
3613
3614 /* Catch all situations that move the insertion point.
3615  */
3616 static void
3617 gtk_text_layout_mark_set_handler (GtkTextBuffer     *buffer,
3618                                   const GtkTextIter *location,
3619                                   GtkTextMark       *mark,
3620                                   gpointer           data)
3621 {
3622   GtkTextLayout *layout = GTK_TEXT_LAYOUT (data);
3623
3624   if (mark == gtk_text_buffer_get_insert (buffer))
3625     gtk_text_layout_update_cursor_line (layout);
3626 }
3627
3628 static void
3629 gtk_text_layout_buffer_insert_text (GtkTextBuffer *textbuffer,
3630                                     GtkTextIter   *iter,
3631                                     gchar         *str,
3632                                     gint           len,
3633                                     gpointer       data)
3634 {
3635   GtkTextLayout *layout = GTK_TEXT_LAYOUT (data);
3636
3637   gtk_text_layout_update_cursor_line (layout);
3638 }
3639
3640 static void
3641 gtk_text_layout_buffer_delete_range (GtkTextBuffer *textbuffer,
3642                                      GtkTextIter   *start,
3643                                      GtkTextIter   *end,
3644                                      gpointer       data)
3645 {
3646   GtkTextLayout *layout = GTK_TEXT_LAYOUT (data);
3647
3648   gtk_text_layout_update_cursor_line (layout);
3649 }
3650
3651 #define __GTK_TEXT_LAYOUT_C__
3652 #include "gtkaliasdef.c"