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