]> Pileus Git - ~andy/gtk/blob - gtk/gtktextlayout.c
Get rid of unused shaped_object list in _GtkTextLineDisplay
[~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           g_slist_foreach (display->cursors, (GFunc)g_free, NULL);
831           g_slist_free (display->cursors);
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->invisible_set &&
1287               !seg->body.toggle.info->tag->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->invisible_set &&
1296               seg->body.toggle.info->tag->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
1414 static PangoAttribute *
1415 gtk_text_attr_appearance_copy (const PangoAttribute *attr)
1416 {
1417   const GtkTextAttrAppearance *appearance_attr = (const GtkTextAttrAppearance *)attr;
1418
1419   return gtk_text_attr_appearance_new (&appearance_attr->appearance);
1420 }
1421
1422 static void
1423 gtk_text_attr_appearance_destroy (PangoAttribute *attr)
1424 {
1425   GtkTextAttrAppearance *appearance_attr = (GtkTextAttrAppearance *)attr;
1426
1427   g_slice_free (GtkTextAttrAppearance, appearance_attr);
1428 }
1429
1430 static gboolean
1431 gtk_text_attr_appearance_compare (const PangoAttribute *attr1,
1432                                   const PangoAttribute *attr2)
1433 {
1434   const GtkTextAppearance *appearance1 = &((const GtkTextAttrAppearance *)attr1)->appearance;
1435   const GtkTextAppearance *appearance2 = &((const GtkTextAttrAppearance *)attr2)->appearance;
1436
1437   return (gdk_color_equal (&appearance1->fg_color, &appearance2->fg_color) &&
1438           gdk_color_equal (&appearance1->bg_color, &appearance2->bg_color) &&
1439           appearance1->underline == appearance2->underline &&
1440           appearance1->strikethrough == appearance2->strikethrough &&
1441           appearance1->draw_bg == appearance2->draw_bg);
1442 }
1443
1444 /*
1445  * gtk_text_attr_appearance_new:
1446  * @desc:
1447  *
1448  * Create a new font description attribute. (This attribute
1449  * allows setting family, style, weight, variant, stretch,
1450  * and size simultaneously.)
1451  *
1452  * Return value:
1453  */
1454 static PangoAttribute *
1455 gtk_text_attr_appearance_new (const GtkTextAppearance *appearance)
1456 {
1457   static PangoAttrClass klass = {
1458     0,
1459     gtk_text_attr_appearance_copy,
1460     gtk_text_attr_appearance_destroy,
1461     gtk_text_attr_appearance_compare
1462   };
1463
1464   GtkTextAttrAppearance *result;
1465
1466   if (!klass.type)
1467     klass.type = gtk_text_attr_appearance_type =
1468       pango_attr_type_register ("GtkTextAttrAppearance");
1469
1470   result = g_slice_new (GtkTextAttrAppearance);
1471   result->attr.klass = &klass;
1472
1473   result->appearance = *appearance;
1474
1475   return (PangoAttribute *)result;
1476 }
1477
1478 static void
1479 add_generic_attrs (GtkTextLayout      *layout,
1480                    GtkTextAppearance  *appearance,
1481                    gint                byte_count,
1482                    PangoAttrList      *attrs,
1483                    gint                start,
1484                    gboolean            size_only,
1485                    gboolean            is_text)
1486 {
1487   PangoAttribute *attr;
1488
1489   if (appearance->underline != PANGO_UNDERLINE_NONE)
1490     {
1491       attr = pango_attr_underline_new (appearance->underline);
1492       
1493       attr->start_index = start;
1494       attr->end_index = start + byte_count;
1495       
1496       pango_attr_list_insert (attrs, attr);
1497     }
1498
1499   if (appearance->strikethrough)
1500     {
1501       attr = pango_attr_strikethrough_new (appearance->strikethrough);
1502       
1503       attr->start_index = start;
1504       attr->end_index = start + byte_count;
1505       
1506       pango_attr_list_insert (attrs, attr);
1507     }
1508
1509   if (appearance->rise != 0)
1510     {
1511       attr = pango_attr_rise_new (appearance->rise);
1512       
1513       attr->start_index = start;
1514       attr->end_index = start + byte_count;
1515       
1516       pango_attr_list_insert (attrs, attr);
1517     }
1518   
1519   if (!size_only)
1520     {
1521       attr = gtk_text_attr_appearance_new (appearance);
1522       
1523       attr->start_index = start;
1524       attr->end_index = start + byte_count;
1525
1526       ((GtkTextAttrAppearance *)attr)->appearance.is_text = is_text;
1527       
1528       pango_attr_list_insert (attrs, attr);
1529     }
1530 }
1531
1532 static void
1533 add_text_attrs (GtkTextLayout      *layout,
1534                 GtkTextAttributes  *style,
1535                 gint                byte_count,
1536                 PangoAttrList      *attrs,
1537                 gint                start,
1538                 gboolean            size_only)
1539 {
1540   PangoAttribute *attr;
1541
1542   attr = pango_attr_font_desc_new (style->font);
1543   attr->start_index = start;
1544   attr->end_index = start + byte_count;
1545
1546   pango_attr_list_insert (attrs, attr);
1547
1548   if (style->font_scale != 1.0)
1549     {
1550       attr = pango_attr_scale_new (style->font_scale);
1551
1552       attr->start_index = start;
1553       attr->end_index = start + byte_count;
1554       
1555       pango_attr_list_insert (attrs, attr);
1556     }
1557 }
1558
1559 static void
1560 add_pixbuf_attrs (GtkTextLayout      *layout,
1561                   GtkTextLineDisplay *display,
1562                   GtkTextAttributes  *style,
1563                   GtkTextLineSegment *seg,
1564                   PangoAttrList      *attrs,
1565                   gint                start)
1566 {
1567   PangoAttribute *attr;
1568   PangoRectangle logical_rect;
1569   GtkTextPixbuf *pixbuf = &seg->body.pixbuf;
1570   gint width, height;
1571
1572   width = gdk_pixbuf_get_width (pixbuf->pixbuf);
1573   height = gdk_pixbuf_get_height (pixbuf->pixbuf);
1574
1575   logical_rect.x = 0;
1576   logical_rect.y = -height * PANGO_SCALE;
1577   logical_rect.width = width * PANGO_SCALE;
1578   logical_rect.height = height * PANGO_SCALE;
1579
1580   attr = pango_attr_shape_new_with_data (&logical_rect, &logical_rect,
1581                                          pixbuf->pixbuf, NULL, NULL);
1582   attr->start_index = start;
1583   attr->end_index = start + seg->byte_count;
1584   pango_attr_list_insert (attrs, attr);
1585 }
1586
1587 static void
1588 add_child_attrs (GtkTextLayout      *layout,
1589                  GtkTextLineDisplay *display,
1590                  GtkTextAttributes  *style,
1591                  GtkTextLineSegment *seg,
1592                  PangoAttrList      *attrs,
1593                  gint                start)
1594 {
1595   PangoAttribute *attr;
1596   PangoRectangle logical_rect;
1597   gint width, height;
1598   GSList *tmp_list;
1599   GtkWidget *widget;
1600
1601   width = 1;
1602   height = 1;
1603   
1604   tmp_list = seg->body.child.widgets;
1605   while (tmp_list != NULL)
1606     {
1607       GtkWidget *child = tmp_list->data;
1608
1609       if (_gtk_anchored_child_get_layout (child) == layout)
1610         {
1611           /* Found it */
1612           GtkRequisition req;
1613
1614           gtk_widget_get_preferred_size (child, &req, NULL);
1615
1616           width = req.width;
1617           height = req.height;
1618
1619           widget = child;
1620           
1621           break;
1622         }
1623       
1624       tmp_list = g_slist_next (tmp_list);
1625     }
1626
1627   if (tmp_list == NULL)
1628     {
1629       /* If tmp_list == NULL then there is no widget at this anchor in
1630        * this display; not an error. We make up an arbitrary size
1631        * to use, just so the programmer can see the blank spot.
1632        * We also put a NULL in the shaped objects list, to keep
1633        * the correspondence between the list and the shaped chars in
1634        * the layout. A bad hack, yes.
1635        */
1636
1637       width = 30;
1638       height = 20;
1639
1640       widget = NULL;
1641     }
1642
1643   logical_rect.x = 0;
1644   logical_rect.y = -height * PANGO_SCALE;
1645   logical_rect.width = width * PANGO_SCALE;
1646   logical_rect.height = height * PANGO_SCALE;
1647
1648   attr = pango_attr_shape_new_with_data (&logical_rect, &logical_rect,
1649                                          widget, NULL, NULL);
1650   attr->start_index = start;
1651   attr->end_index = start + seg->byte_count;
1652   pango_attr_list_insert (attrs, attr);
1653 }
1654
1655 /*
1656  * get_block_cursor:
1657  * @layout: a #GtkTextLayout
1658  * @display: a #GtkTextLineDisplay
1659  * @insert_iter: iter pointing to the cursor location
1660  * @insert_index: cursor offset in the @display's layout, it may
1661  * be different from @insert_iter's offset in case when preedit
1662  * string is present.
1663  * @pos: location to store cursor position
1664  * @cursor_at_line_end: whether cursor is at the end of line
1665  *
1666  * Checks whether layout should display block cursor at given position.
1667  * For this layout must be in overwrite mode and text at @insert_iter 
1668  * must be editable.
1669  */
1670 static gboolean
1671 get_block_cursor (GtkTextLayout      *layout,
1672                   GtkTextLineDisplay *display,
1673                   const GtkTextIter  *insert_iter,
1674                   gint                insert_index,
1675                   GdkRectangle       *pos,
1676                   gboolean           *cursor_at_line_end)
1677 {
1678   PangoRectangle pango_pos;
1679
1680   if (layout->overwrite_mode &&
1681       gtk_text_iter_editable (insert_iter, TRUE) &&
1682       _gtk_text_util_get_block_cursor_location (display->layout,
1683                                                 insert_index,
1684                                                 &pango_pos,
1685                                                 cursor_at_line_end))
1686     {
1687       if (pos)
1688         {
1689           pos->x = PANGO_PIXELS (pango_pos.x);
1690           pos->y = PANGO_PIXELS (pango_pos.y);
1691           pos->width = PANGO_PIXELS (pango_pos.width);
1692           pos->height = PANGO_PIXELS (pango_pos.height);
1693         }
1694
1695       return TRUE;
1696     }
1697   else
1698     return FALSE;
1699 }
1700
1701 static void
1702 add_cursor (GtkTextLayout      *layout,
1703             GtkTextLineDisplay *display,
1704             GtkTextLineSegment *seg,
1705             gint                start)
1706 {
1707   PangoRectangle strong_pos, weak_pos;
1708   GtkTextCursorDisplay *cursor = NULL; /* Quiet GCC */
1709   gboolean add_weak = FALSE;
1710   gboolean add_strong = FALSE;
1711   
1712   /* Hide insertion cursor when we have a selection or the layout
1713    * user has hidden the cursor.
1714    */
1715   if (_gtk_text_btree_mark_is_insert (_gtk_text_buffer_get_btree (layout->buffer),
1716                                      seg->body.mark.obj) &&
1717       (!layout->cursor_visible ||
1718        gtk_text_buffer_get_selection_bounds (layout->buffer, NULL, NULL)))
1719     return;
1720
1721   if (layout->overwrite_mode &&
1722       _gtk_text_btree_mark_is_insert (_gtk_text_buffer_get_btree (layout->buffer),
1723                                       seg->body.mark.obj))
1724     {
1725       GtkTextIter iter;
1726       gboolean cursor_at_line_end;
1727
1728       _gtk_text_btree_get_iter_at_mark (_gtk_text_buffer_get_btree (layout->buffer),
1729                                         &iter, seg->body.mark.obj);
1730
1731       if (get_block_cursor (layout, display, &iter, start,
1732                             &display->block_cursor,
1733                             &cursor_at_line_end))
1734         {
1735           display->has_block_cursor = TRUE;
1736           display->cursor_at_line_end = cursor_at_line_end;
1737           return;
1738         }
1739     }
1740
1741   pango_layout_get_cursor_pos (display->layout, start, &strong_pos, &weak_pos);
1742
1743   if (layout->cursor_direction == GTK_TEXT_DIR_NONE)
1744     {
1745       add_strong = TRUE;
1746       add_weak = TRUE;
1747     }
1748   else if (display->direction == layout->cursor_direction)
1749     add_strong = TRUE;
1750   else
1751     add_weak = TRUE;
1752
1753   if (add_strong)
1754     {
1755       cursor = g_new (GtkTextCursorDisplay, 1);
1756
1757       cursor->x = PANGO_PIXELS (strong_pos.x);
1758       cursor->y = PANGO_PIXELS (strong_pos.y);
1759       cursor->height = PANGO_PIXELS (strong_pos.height);
1760       cursor->is_strong = TRUE;
1761       cursor->is_weak = (layout->cursor_direction == GTK_TEXT_DIR_NONE) ? FALSE : TRUE;
1762       display->cursors = g_slist_prepend (display->cursors, cursor);
1763     }
1764   
1765   if (add_weak)
1766     {
1767       if (weak_pos.x == strong_pos.x && add_strong)
1768         cursor->is_weak = TRUE;
1769       else
1770         {
1771           cursor = g_new (GtkTextCursorDisplay, 1);
1772           
1773           cursor->x = PANGO_PIXELS (weak_pos.x);
1774           cursor->y = PANGO_PIXELS (weak_pos.y);
1775           cursor->height = PANGO_PIXELS (weak_pos.height);
1776           cursor->is_strong = (layout->cursor_direction == GTK_TEXT_DIR_NONE) ? FALSE : TRUE;
1777           cursor->is_weak = TRUE;
1778           display->cursors = g_slist_prepend (display->cursors, cursor);
1779         }
1780     }
1781 }
1782
1783 static gboolean
1784 is_shape (PangoLayoutRun *run)
1785 {
1786   GSList *tmp_list = run->item->analysis.extra_attrs;
1787     
1788   while (tmp_list)
1789     {
1790       PangoAttribute *attr = tmp_list->data;
1791
1792       if (attr->klass->type == PANGO_ATTR_SHAPE)
1793         return TRUE;
1794
1795       tmp_list = tmp_list->next;
1796     }
1797
1798   return FALSE;
1799 }
1800
1801 static void
1802 allocate_child_widgets (GtkTextLayout      *text_layout,
1803                         GtkTextLineDisplay *display)
1804 {
1805   PangoLayout *layout = display->layout;
1806   PangoLayoutIter *run_iter;
1807
1808   run_iter = pango_layout_get_iter (layout);
1809   do
1810     {
1811       PangoLayoutRun *run = pango_layout_iter_get_run_readonly (run_iter);
1812
1813       if (run && is_shape (run))
1814         {
1815           gint byte_index;
1816           GtkTextIter text_iter;
1817           GtkTextChildAnchor *anchor = NULL;
1818           GList *widgets = NULL;
1819           GList *l;
1820
1821           /* The pango iterator iterates in visual order.
1822            * We use the byte index to find the child widget.
1823            */
1824           byte_index = pango_layout_iter_get_index (run_iter);
1825           line_display_index_to_iter (text_layout, display, &text_iter, byte_index, 0);
1826           anchor = gtk_text_iter_get_child_anchor (&text_iter);
1827           if (anchor)
1828             widgets = gtk_text_child_anchor_get_widgets (anchor);
1829
1830           for (l = widgets; l; l = l->next)
1831             {
1832               PangoRectangle extents;
1833               GtkWidget *child = l->data;
1834
1835               if (_gtk_anchored_child_get_layout (child) == text_layout)
1836                 {
1837
1838                   /* We emit "allocate_child" with the x,y of
1839                    * the widget with respect to the top of the line
1840                    * and the left side of the buffer
1841                    */
1842                   pango_layout_iter_get_run_extents (run_iter,
1843                                                      NULL,
1844                                                      &extents);
1845
1846                   g_signal_emit (text_layout,
1847                                  signals[ALLOCATE_CHILD],
1848                                  0,
1849                                  child,
1850                                  PANGO_PIXELS (extents.x) + display->x_offset,
1851                                  PANGO_PIXELS (extents.y) + display->top_margin);
1852                 }
1853             }
1854
1855           g_list_free (widgets);
1856         }
1857     }
1858   while (pango_layout_iter_next_run (run_iter));
1859
1860   pango_layout_iter_free (run_iter);
1861 }
1862
1863 static void
1864 convert_color (GdkColor       *result,
1865                PangoAttrColor *attr)
1866 {
1867   result->red = attr->color.red;
1868   result->blue = attr->color.blue;
1869   result->green = attr->color.green;
1870 }
1871
1872 /* This function is used to convert the preedit string attributes, which are
1873  * standard PangoAttributes, into the custom attributes used by the text
1874  * widget and insert them into a attr list with a given offset.
1875  */
1876 static void
1877 add_preedit_attrs (GtkTextLayout     *layout,
1878                    GtkTextAttributes *style,
1879                    PangoAttrList     *attrs,
1880                    gint               offset,
1881                    gboolean           size_only)
1882 {
1883   PangoAttrIterator *iter = pango_attr_list_get_iterator (layout->preedit_attrs);
1884
1885   do
1886     {
1887       GtkTextAppearance appearance = style->appearance;
1888       PangoFontDescription *font_desc = pango_font_description_copy_static (style->font);
1889       PangoAttribute *insert_attr;
1890       GSList *extra_attrs = NULL;
1891       GSList *tmp_list;
1892       PangoLanguage *language;
1893       gint start, end;
1894
1895       pango_attr_iterator_range (iter, &start, &end);
1896
1897       if (end == G_MAXINT)
1898         end = layout->preedit_len;
1899       
1900       if (end == start)
1901         continue;
1902
1903       pango_attr_iterator_get_font (iter, font_desc, &language, &extra_attrs);
1904       
1905       tmp_list = extra_attrs;
1906       while (tmp_list)
1907         {
1908           PangoAttribute *attr = tmp_list->data;
1909           
1910           switch (attr->klass->type)
1911             {
1912             case PANGO_ATTR_FOREGROUND:
1913               convert_color (&appearance.fg_color, (PangoAttrColor *)attr);
1914               break;
1915             case PANGO_ATTR_BACKGROUND:
1916               convert_color (&appearance.bg_color, (PangoAttrColor *)attr);
1917               appearance.draw_bg = TRUE;
1918               break;
1919             case PANGO_ATTR_UNDERLINE:
1920               appearance.underline = ((PangoAttrInt *)attr)->value;
1921               break;
1922             case PANGO_ATTR_STRIKETHROUGH:
1923               appearance.strikethrough = ((PangoAttrInt *)attr)->value;
1924               break;
1925             case PANGO_ATTR_RISE:
1926               appearance.rise = ((PangoAttrInt *)attr)->value;
1927               break;
1928             default:
1929               break;
1930             }
1931           
1932           pango_attribute_destroy (attr);
1933           tmp_list = tmp_list->next;
1934         }
1935       
1936       g_slist_free (extra_attrs);
1937       
1938       insert_attr = pango_attr_font_desc_new (font_desc);
1939       insert_attr->start_index = start + offset;
1940       insert_attr->end_index = end + offset;
1941       
1942       pango_attr_list_insert (attrs, insert_attr);
1943
1944       if (language)
1945         {
1946           insert_attr = pango_attr_language_new (language);
1947           insert_attr->start_index = start + offset;
1948           insert_attr->end_index = end + offset;
1949           
1950           pango_attr_list_insert (attrs, insert_attr);
1951         }
1952
1953       add_generic_attrs (layout, &appearance, end - start,
1954                          attrs, start + offset,
1955                          size_only, TRUE);
1956       
1957       pango_font_description_free (font_desc);
1958     }
1959   while (pango_attr_iterator_next (iter));
1960
1961   pango_attr_iterator_destroy (iter);
1962 }
1963
1964 /* Iterate over the line and fill in display->cursors.
1965  * It's a stripped copy of gtk_text_layout_get_line_display() */
1966 static void
1967 update_text_display_cursors (GtkTextLayout      *layout,
1968                              GtkTextLine        *line,
1969                              GtkTextLineDisplay *display)
1970 {
1971   GtkTextLineSegment *seg;
1972   GtkTextIter iter;
1973   gint layout_byte_offset, buffer_byte_offset;
1974   GSList *cursor_byte_offsets = NULL;
1975   GSList *cursor_segs = NULL;
1976   GSList *tmp_list1, *tmp_list2;
1977
1978   if (!display->cursors_invalid)
1979     return;
1980
1981   display->cursors_invalid = FALSE;
1982
1983   _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
1984                                     &iter, line, 0);
1985
1986   /* Special-case optimization for completely
1987    * invisible lines; makes it faster to deal
1988    * with sequences of invisible lines.
1989    */
1990   if (totally_invisible_line (layout, line, &iter))
1991     return;
1992
1993   /* Iterate over segments */
1994   layout_byte_offset = 0; /* position in the layout text (includes preedit, does not include invisible text) */
1995   buffer_byte_offset = 0; /* position in the buffer line */
1996   seg = _gtk_text_iter_get_any_segment (&iter);
1997   while (seg != NULL)
1998     {
1999       /* Displayable segments */
2000       if (seg->type == &gtk_text_char_type ||
2001           seg->type == &gtk_text_pixbuf_type ||
2002           seg->type == &gtk_text_child_type)
2003         {
2004           _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
2005                                             &iter, line,
2006                                             buffer_byte_offset);
2007
2008           if (!_gtk_text_btree_char_is_invisible (&iter))
2009             layout_byte_offset += seg->byte_count;
2010
2011           buffer_byte_offset += seg->byte_count;
2012         }
2013
2014       /* Marks */
2015       else if (seg->type == &gtk_text_right_mark_type ||
2016                seg->type == &gtk_text_left_mark_type)
2017         {
2018           gint cursor_offset = 0;
2019
2020           /* At the insertion point, add the preedit string, if any */
2021
2022           if (_gtk_text_btree_mark_is_insert (_gtk_text_buffer_get_btree (layout->buffer),
2023                                               seg->body.mark.obj))
2024             {
2025               display->insert_index = layout_byte_offset;
2026
2027               if (layout->preedit_len > 0)
2028                 {
2029                   layout_byte_offset += layout->preedit_len;
2030                   /* DO NOT increment the buffer byte offset for preedit */
2031                   cursor_offset = layout->preedit_cursor - layout->preedit_len;
2032                 }
2033             }
2034
2035           /* Display visible marks */
2036
2037           if (seg->body.mark.visible)
2038             {
2039               cursor_byte_offsets = g_slist_prepend (cursor_byte_offsets,
2040                                                      GINT_TO_POINTER (layout_byte_offset + cursor_offset));
2041               cursor_segs = g_slist_prepend (cursor_segs, seg);
2042             }
2043         }
2044
2045       /* Toggles */
2046       else if (seg->type == &gtk_text_toggle_on_type ||
2047                seg->type == &gtk_text_toggle_off_type)
2048         {
2049         }
2050
2051       else
2052         g_error ("Unknown segment type: %s", seg->type->name);
2053
2054       seg = seg->next;
2055     }
2056
2057   tmp_list1 = cursor_byte_offsets;
2058   tmp_list2 = cursor_segs;
2059   while (tmp_list1)
2060     {
2061       add_cursor (layout, display, tmp_list2->data,
2062                   GPOINTER_TO_INT (tmp_list1->data));
2063       tmp_list1 = tmp_list1->next;
2064       tmp_list2 = tmp_list2->next;
2065     }
2066   g_slist_free (cursor_byte_offsets);
2067   g_slist_free (cursor_segs);
2068 }
2069
2070 /* Same as _gtk_text_btree_get_tags(), except it returns GPtrArray,
2071  * to be used in gtk_text_layout_get_line_display(). */
2072 static GPtrArray *
2073 get_tags_array_at_iter (GtkTextIter *iter)
2074 {
2075   GtkTextTag **tags;
2076   GPtrArray *array = NULL;
2077   gint n_tags;
2078
2079   tags = _gtk_text_btree_get_tags (iter, &n_tags);
2080
2081   if (n_tags > 0)
2082     {
2083       array = g_ptr_array_sized_new (n_tags);
2084       g_ptr_array_set_size (array, n_tags);
2085       memcpy (array->pdata, tags, n_tags * sizeof (GtkTextTag*));
2086     }
2087
2088   g_free (tags);
2089   return array;
2090 }
2091
2092 /* Add the tag to the array if it's not there already, and remove
2093  * it otherwise. It keeps the array sorted by tags priority. */
2094 static GPtrArray *
2095 tags_array_toggle_tag (GPtrArray  *array,
2096                        GtkTextTag *tag)
2097 {
2098   gint pos;
2099   GtkTextTag **tags;
2100
2101   if (array == NULL)
2102     array = g_ptr_array_new ();
2103
2104   tags = (GtkTextTag**) array->pdata;
2105
2106   for (pos = 0; pos < array->len && tags[pos]->priority < tag->priority; pos++) ;
2107
2108   if (pos < array->len && tags[pos] == tag)
2109     g_ptr_array_remove_index (array, pos);
2110   else
2111     {
2112       g_ptr_array_set_size (array, array->len + 1);
2113       if (pos < array->len - 1)
2114         memmove (array->pdata + pos + 1, array->pdata + pos,
2115                  (array->len - pos - 1) * sizeof (GtkTextTag*));
2116       array->pdata[pos] = tag;
2117     }
2118
2119   return array;
2120 }
2121
2122 GtkTextLineDisplay *
2123 gtk_text_layout_get_line_display (GtkTextLayout *layout,
2124                                   GtkTextLine   *line,
2125                                   gboolean       size_only)
2126 {
2127   GtkTextLayoutPrivate *priv = GTK_TEXT_LAYOUT_GET_PRIVATE (layout);
2128   GtkTextLineDisplay *display;
2129   GtkTextLineSegment *seg;
2130   GtkTextIter iter;
2131   GtkTextAttributes *style;
2132   gchar *text;
2133   PangoAttrList *attrs;
2134   gint text_allocated, layout_byte_offset, buffer_byte_offset;
2135   PangoRectangle extents;
2136   gboolean para_values_set = FALSE;
2137   GSList *cursor_byte_offsets = NULL;
2138   GSList *cursor_segs = NULL;
2139   GSList *tmp_list1, *tmp_list2;
2140   gboolean saw_widget = FALSE;
2141   PangoDirection base_dir;
2142   GPtrArray *tags;
2143   gboolean initial_toggle_segments;
2144   
2145   g_return_val_if_fail (line != NULL, NULL);
2146
2147   if (layout->one_display_cache)
2148     {
2149       if (line == layout->one_display_cache->line &&
2150           (size_only || !layout->one_display_cache->size_only))
2151         {
2152           if (!size_only)
2153             update_text_display_cursors (layout, line, layout->one_display_cache);
2154           return layout->one_display_cache;
2155         }
2156       else
2157         {
2158           GtkTextLineDisplay *tmp_display = layout->one_display_cache;
2159           layout->one_display_cache = NULL;
2160           gtk_text_layout_free_line_display (layout, tmp_display);
2161         }
2162     }
2163
2164   DV (g_print ("creating one line display cache (%s)\n", G_STRLOC));
2165
2166   display = g_new0 (GtkTextLineDisplay, 1);
2167
2168   display->size_only = size_only;
2169   display->line = line;
2170   display->insert_index = -1;
2171
2172   _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
2173                                     &iter, line, 0);
2174
2175   /* Special-case optimization for completely
2176    * invisible lines; makes it faster to deal
2177    * with sequences of invisible lines.
2178    */
2179   if (totally_invisible_line (layout, line, &iter))
2180     {
2181       if (display->direction == GTK_TEXT_DIR_RTL)
2182         display->layout = pango_layout_new (layout->rtl_context);
2183       else
2184         display->layout = pango_layout_new (layout->ltr_context);
2185       
2186       return display;
2187     }
2188
2189   /* Find the bidi base direction */
2190   base_dir = line->dir_propagated_forward;
2191   if (base_dir == PANGO_DIRECTION_NEUTRAL)
2192     base_dir = line->dir_propagated_back;
2193
2194   if (line == priv->cursor_line &&
2195       line->dir_strong == PANGO_DIRECTION_NEUTRAL)
2196     {
2197       base_dir = (layout->keyboard_direction == GTK_TEXT_DIR_LTR) ?
2198          PANGO_DIRECTION_LTR : PANGO_DIRECTION_RTL;
2199     }
2200   
2201   /* Allocate space for flat text for buffer
2202    */
2203   text_allocated = _gtk_text_line_byte_count (line);
2204   text = g_malloc (text_allocated);
2205
2206   attrs = pango_attr_list_new ();
2207
2208   /* Iterate over segments, creating display chunks for them, and updating the tags array. */
2209   layout_byte_offset = 0; /* current length of layout text (includes preedit, does not include invisible text) */
2210   buffer_byte_offset = 0; /* position in the buffer line */
2211   seg = _gtk_text_iter_get_any_segment (&iter);
2212   tags = get_tags_array_at_iter (&iter);
2213   initial_toggle_segments = TRUE;
2214   while (seg != NULL)
2215     {
2216       /* Displayable segments */
2217       if (seg->type == &gtk_text_char_type ||
2218           seg->type == &gtk_text_pixbuf_type ||
2219           seg->type == &gtk_text_child_type)
2220         {
2221           style = get_style (layout, tags);
2222           initial_toggle_segments = FALSE;
2223
2224           /* We have to delay setting the paragraph values until we
2225            * hit the first pixbuf or text segment because toggles at
2226            * the beginning of the paragraph should affect the
2227            * paragraph-global values
2228            */
2229           if (!para_values_set)
2230             {
2231               set_para_values (layout, base_dir, style, display);
2232               para_values_set = TRUE;
2233             }
2234
2235           /* First see if the chunk is invisible, and ignore it if so. Tk
2236            * looked at tabs, wrap mode, etc. before doing this, but
2237            * that made no sense to me, so I am just skipping the
2238            * invisible chunks
2239            */
2240           if (!style->invisible)
2241             {
2242               if (seg->type == &gtk_text_char_type)
2243                 {
2244                   /* We don't want to split segments because of marks,
2245                    * so we scan forward for more segments only
2246                    * separated from us by marks. In theory, we should
2247                    * also merge segments with identical styles, even
2248                    * if there are toggles in-between
2249                    */
2250
2251                   gint bytes = 0;
2252                   GtkTextLineSegment *prev_seg = NULL;
2253   
2254                   while (seg)
2255                     {
2256                       if (seg->type == &gtk_text_char_type)
2257                         {
2258                           memcpy (text + layout_byte_offset, seg->body.chars, seg->byte_count);
2259                           layout_byte_offset += seg->byte_count;
2260                           buffer_byte_offset += seg->byte_count;
2261                           bytes += seg->byte_count;
2262                         }
2263                       else if (seg->type == &gtk_text_right_mark_type ||
2264                                seg->type == &gtk_text_left_mark_type)
2265                         {
2266                           /* If we have preedit string, break out of this loop - we'll almost
2267                            * certainly have different attributes on the preedit string
2268                            */
2269
2270                           if (layout->preedit_len > 0 &&
2271                               _gtk_text_btree_mark_is_insert (_gtk_text_buffer_get_btree (layout->buffer),
2272                                                              seg->body.mark.obj))
2273                             break;
2274
2275                           if (seg->body.mark.visible)
2276                             {
2277                               cursor_byte_offsets = g_slist_prepend (cursor_byte_offsets, GINT_TO_POINTER (layout_byte_offset));
2278                               cursor_segs = g_slist_prepend (cursor_segs, seg);
2279                               if (_gtk_text_btree_mark_is_insert (_gtk_text_buffer_get_btree (layout->buffer),
2280                                                                   seg->body.mark.obj))
2281                                 display->insert_index = layout_byte_offset;
2282                             }
2283                         }
2284                       else
2285                         break;
2286
2287                       prev_seg = seg;
2288                       seg = seg->next;
2289                     }
2290
2291                   seg = prev_seg; /* Back up one */
2292                   add_generic_attrs (layout, &style->appearance,
2293                                      bytes,
2294                                      attrs, layout_byte_offset - bytes,
2295                                      size_only, TRUE);
2296                   add_text_attrs (layout, style, bytes, attrs,
2297                                   layout_byte_offset - bytes, size_only);
2298                 }
2299               else if (seg->type == &gtk_text_pixbuf_type)
2300                 {
2301                   add_generic_attrs (layout,
2302                                      &style->appearance,
2303                                      seg->byte_count,
2304                                      attrs, layout_byte_offset,
2305                                      size_only, FALSE);
2306                   add_pixbuf_attrs (layout, display, style,
2307                                     seg, attrs, layout_byte_offset);
2308                   memcpy (text + layout_byte_offset, _gtk_text_unknown_char_utf8,
2309                           seg->byte_count);
2310                   layout_byte_offset += seg->byte_count;
2311                   buffer_byte_offset += seg->byte_count;
2312                 }
2313               else if (seg->type == &gtk_text_child_type)
2314                 {
2315                   saw_widget = TRUE;
2316                   
2317                   add_generic_attrs (layout, &style->appearance,
2318                                      seg->byte_count,
2319                                      attrs, layout_byte_offset,
2320                                      size_only, FALSE);
2321                   add_child_attrs (layout, display, style,
2322                                    seg, attrs, layout_byte_offset);
2323                   memcpy (text + layout_byte_offset, _gtk_text_unknown_char_utf8,
2324                           seg->byte_count);
2325                   layout_byte_offset += seg->byte_count;
2326                   buffer_byte_offset += seg->byte_count;
2327                 }
2328               else
2329                 {
2330                   /* We don't know this segment type */
2331                   g_assert_not_reached ();
2332                 }
2333               
2334             } /* if (segment was visible) */
2335           else
2336             {
2337               /* Invisible segment */
2338               buffer_byte_offset += seg->byte_count;
2339             }
2340
2341           release_style (layout, style);
2342         }
2343
2344       /* Toggles */
2345       else if (seg->type == &gtk_text_toggle_on_type ||
2346                seg->type == &gtk_text_toggle_off_type)
2347         {
2348           /* Style may have changed, drop our
2349              current cached style */
2350           invalidate_cached_style (layout);
2351           /* Add the tag only after we have seen some non-toggle non-mark segment,
2352            * otherwise the tag is already accounted for by _gtk_text_btree_get_tags(). */
2353           if (!initial_toggle_segments)
2354             tags = tags_array_toggle_tag (tags, seg->body.toggle.info->tag);
2355         }
2356
2357       /* Marks */
2358       else if (seg->type == &gtk_text_right_mark_type ||
2359                seg->type == &gtk_text_left_mark_type)
2360         {
2361           gint cursor_offset = 0;
2362           
2363           /* At the insertion point, add the preedit string, if any */
2364           
2365           if (_gtk_text_btree_mark_is_insert (_gtk_text_buffer_get_btree (layout->buffer),
2366                                              seg->body.mark.obj))
2367             {
2368               display->insert_index = layout_byte_offset;
2369               
2370               if (layout->preedit_len > 0)
2371                 {
2372                   text_allocated += layout->preedit_len;
2373                   text = g_realloc (text, text_allocated);
2374
2375                   style = get_style (layout, tags);
2376                   add_preedit_attrs (layout, style, attrs, layout_byte_offset, size_only);
2377                   release_style (layout, style);
2378                   
2379                   memcpy (text + layout_byte_offset, layout->preedit_string, layout->preedit_len);
2380                   layout_byte_offset += layout->preedit_len;
2381                   /* DO NOT increment the buffer byte offset for preedit */
2382                   
2383                   cursor_offset = layout->preedit_cursor - layout->preedit_len;
2384                 }
2385             }
2386           
2387
2388           /* Display visible marks */
2389
2390           if (seg->body.mark.visible)
2391             {
2392               cursor_byte_offsets = g_slist_prepend (cursor_byte_offsets,
2393                                                      GINT_TO_POINTER (layout_byte_offset + cursor_offset));
2394               cursor_segs = g_slist_prepend (cursor_segs, seg);
2395             }
2396         }
2397
2398       else
2399         g_error ("Unknown segment type: %s", seg->type->name);
2400
2401       seg = seg->next;
2402     }
2403   
2404   if (!para_values_set)
2405     {
2406       style = get_style (layout, tags);
2407       set_para_values (layout, base_dir, style, display);
2408       release_style (layout, style);
2409     }
2410   
2411   /* Pango doesn't want the trailing paragraph delimiters */
2412
2413   {
2414     /* Only one character has type G_UNICODE_PARAGRAPH_SEPARATOR in
2415      * Unicode 3.0; update this if that changes.
2416      */
2417 #define PARAGRAPH_SEPARATOR 0x2029
2418     gunichar ch = 0;
2419
2420     if (layout_byte_offset > 0)
2421       {
2422         const char *prev = g_utf8_prev_char (text + layout_byte_offset);
2423         ch = g_utf8_get_char (prev);
2424         if (ch == PARAGRAPH_SEPARATOR || ch == '\r' || ch == '\n')
2425           layout_byte_offset = prev - text; /* chop off */
2426
2427         if (ch == '\n' && layout_byte_offset > 0)
2428           {
2429             /* Possibly chop a CR as well */
2430             prev = g_utf8_prev_char (text + layout_byte_offset);
2431             if (*prev == '\r')
2432               --layout_byte_offset;
2433           }
2434       }
2435   }
2436   
2437   pango_layout_set_text (display->layout, text, layout_byte_offset);
2438   pango_layout_set_attributes (display->layout, attrs);
2439
2440   tmp_list1 = cursor_byte_offsets;
2441   tmp_list2 = cursor_segs;
2442   while (tmp_list1)
2443     {
2444       add_cursor (layout, display, tmp_list2->data,
2445                   GPOINTER_TO_INT (tmp_list1->data));
2446       tmp_list1 = tmp_list1->next;
2447       tmp_list2 = tmp_list2->next;
2448     }
2449   g_slist_free (cursor_byte_offsets);
2450   g_slist_free (cursor_segs);
2451
2452   pango_layout_get_extents (display->layout, NULL, &extents);
2453
2454   display->width = PIXEL_BOUND (extents.width) + display->left_margin + display->right_margin;
2455   display->height += PANGO_PIXELS (extents.height);
2456
2457   /* If we aren't wrapping, we need to do the alignment of each
2458    * paragraph ourselves.
2459    */
2460   if (pango_layout_get_width (display->layout) < 0)
2461     {
2462       gint excess = display->total_width - display->width;
2463
2464       switch (pango_layout_get_alignment (display->layout))
2465         {
2466         case PANGO_ALIGN_LEFT:
2467           break;
2468         case PANGO_ALIGN_CENTER:
2469           display->x_offset += excess / 2;
2470           break;
2471         case PANGO_ALIGN_RIGHT:
2472           display->x_offset += excess;
2473           break;
2474         }
2475     }
2476   
2477   /* Free this if we aren't in a loop */
2478   if (layout->wrap_loop_count == 0)
2479     invalidate_cached_style (layout);
2480
2481   g_free (text);
2482   pango_attr_list_unref (attrs);
2483   if (tags != NULL)
2484     g_ptr_array_free (tags, TRUE);
2485
2486   layout->one_display_cache = display;
2487
2488   if (saw_widget)
2489     allocate_child_widgets (layout, display);
2490   
2491   return display;
2492 }
2493
2494 void
2495 gtk_text_layout_free_line_display (GtkTextLayout      *layout,
2496                                    GtkTextLineDisplay *display)
2497 {
2498   if (display != layout->one_display_cache)
2499     {
2500       if (display->layout)
2501         g_object_unref (display->layout);
2502
2503       if (display->cursors)
2504         {
2505           g_slist_foreach (display->cursors, (GFunc)g_free, NULL);
2506           g_slist_free (display->cursors);
2507         }
2508
2509       if (display->pg_bg_color)
2510         gdk_color_free (display->pg_bg_color);
2511
2512       g_free (display);
2513     }
2514 }
2515
2516 /* Functions to convert iter <=> index for the line of a GtkTextLineDisplay
2517  * taking into account the preedit string and invisible text if necessary.
2518  */
2519 static gint
2520 line_display_iter_to_index (GtkTextLayout      *layout,
2521                             GtkTextLineDisplay *display,
2522                             const GtkTextIter  *iter)
2523 {
2524   gint index;
2525
2526   g_return_val_if_fail (_gtk_text_iter_get_text_line (iter) == display->line, 0);
2527
2528   index = gtk_text_iter_get_visible_line_index (iter);
2529   
2530   if (layout->preedit_len > 0 && display->insert_index >= 0)
2531     {
2532       if (index >= display->insert_index)
2533         index += layout->preedit_len;
2534     }
2535
2536   return index;
2537 }
2538
2539 static void
2540 line_display_index_to_iter (GtkTextLayout      *layout,
2541                             GtkTextLineDisplay *display,
2542                             GtkTextIter        *iter,
2543                             gint                index,
2544                             gint                trailing)
2545 {
2546   g_return_if_fail (!_gtk_text_line_is_last (display->line,
2547                                              _gtk_text_buffer_get_btree (layout->buffer)));
2548   
2549   if (layout->preedit_len > 0 && display->insert_index >= 0)
2550     {
2551       if (index >= display->insert_index + layout->preedit_len)
2552         index -= layout->preedit_len;
2553       else if (index > display->insert_index)
2554         {
2555           index = display->insert_index;
2556           trailing = 0;
2557         }
2558     }
2559
2560   _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
2561                                     iter, display->line, 0);
2562
2563   gtk_text_iter_set_visible_line_index (iter, index);
2564   
2565   if (_gtk_text_iter_get_text_line (iter) != display->line)
2566     {
2567       /* Clamp to end of line - really this clamping should have been done
2568        * before here, maybe in Pango, this is a broken band-aid I think
2569        */
2570       _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
2571                                         iter, display->line, 0);
2572
2573       if (!gtk_text_iter_ends_line (iter))
2574         gtk_text_iter_forward_to_line_end (iter);
2575     }
2576   
2577   gtk_text_iter_forward_chars (iter, trailing);
2578 }
2579
2580 static void
2581 get_line_at_y (GtkTextLayout *layout,
2582                gint           y,
2583                GtkTextLine  **line,
2584                gint          *line_top)
2585 {
2586   if (y < 0)
2587     y = 0;
2588   if (y > layout->height)
2589     y = layout->height;
2590
2591   *line = _gtk_text_btree_find_line_by_y (_gtk_text_buffer_get_btree (layout->buffer),
2592                                          layout, y, line_top);
2593   if (*line == NULL)
2594     {
2595       *line = _gtk_text_btree_get_end_iter_line (_gtk_text_buffer_get_btree (layout->buffer));
2596       
2597       if (line_top)
2598         *line_top =
2599           _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer),
2600                                         *line, layout);
2601     }
2602 }
2603
2604 /**
2605  * gtk_text_layout_get_line_at_y:
2606  * @layout: a #GtkLayout
2607  * @target_iter: the iterator in which the result is stored
2608  * @y: the y positition
2609  * @line_top: location to store the y coordinate of the
2610  *            top of the line. (Can by %NULL)
2611  *
2612  * Get the iter at the beginning of the line which is displayed
2613  * at the given y.
2614  */
2615 void
2616 gtk_text_layout_get_line_at_y (GtkTextLayout *layout,
2617                                GtkTextIter   *target_iter,
2618                                gint           y,
2619                                gint          *line_top)
2620 {
2621   GtkTextLine *line;
2622
2623   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
2624   g_return_if_fail (target_iter != NULL);
2625
2626   get_line_at_y (layout, y, &line, line_top);
2627   _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
2628                                    target_iter, line, 0);
2629 }
2630
2631 void
2632 gtk_text_layout_get_iter_at_pixel (GtkTextLayout *layout,
2633                                    GtkTextIter   *target_iter,
2634                                    gint           x, 
2635                                    gint           y)
2636 {
2637   gint trailing;
2638
2639   gtk_text_layout_get_iter_at_position (layout, target_iter, &trailing, x, y);
2640
2641   gtk_text_iter_forward_chars (target_iter, trailing);  
2642 }
2643
2644 void gtk_text_layout_get_iter_at_position (GtkTextLayout     *layout,
2645                                            GtkTextIter       *target_iter,
2646                                            gint              *trailing,
2647                                            gint               x,
2648                                            gint               y)
2649 {
2650   GtkTextLine *line;
2651   gint byte_index;
2652   gint line_top;
2653   GtkTextLineDisplay *display;
2654
2655   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
2656   g_return_if_fail (target_iter != NULL);
2657
2658   get_line_at_y (layout, y, &line, &line_top);
2659
2660   display = gtk_text_layout_get_line_display (layout, line, FALSE);
2661
2662   x -= display->x_offset;
2663   y -= line_top + display->top_margin;
2664
2665   /* If we are below the layout, position the cursor at the last character
2666    * of the line.
2667    */
2668   if (y > display->height - display->top_margin - display->bottom_margin)
2669     {
2670       byte_index = _gtk_text_line_byte_count (line);
2671       if (trailing)
2672         *trailing = 0;
2673     }
2674   else
2675     {
2676        /* Ignore the "outside" return value from pango. Pango is doing
2677         * the right thing even if we are outside the layout in the
2678         * x-direction.
2679         */
2680       pango_layout_xy_to_index (display->layout, x * PANGO_SCALE, y * PANGO_SCALE,
2681                                 &byte_index, trailing);
2682     }
2683
2684   line_display_index_to_iter (layout, display, target_iter, byte_index, 0);
2685
2686   gtk_text_layout_free_line_display (layout, display);
2687 }
2688
2689
2690 /**
2691  * gtk_text_layout_get_cursor_locations:
2692  * @layout: a #GtkTextLayout
2693  * @iter: a #GtkTextIter
2694  * @strong_pos: (allow-none): location to store the strong cursor position (may be %NULL)
2695  * @weak_pos: (allow-none): location to store the weak cursor position (may be %NULL)
2696  *
2697  * Given an iterator within a text layout, determine the positions of the
2698  * strong and weak cursors if the insertion point is at that
2699  * iterator. The position of each cursor is stored as a zero-width
2700  * rectangle. The strong cursor location is the location where
2701  * characters of the directionality equal to the base direction of the
2702  * paragraph are inserted.  The weak cursor location is the location
2703  * where characters of the directionality opposite to the base
2704  * direction of the paragraph are inserted.
2705  **/
2706 void
2707 gtk_text_layout_get_cursor_locations (GtkTextLayout  *layout,
2708                                       GtkTextIter    *iter,
2709                                       GdkRectangle   *strong_pos,
2710                                       GdkRectangle   *weak_pos)
2711 {
2712   GtkTextLine *line;
2713   GtkTextLineDisplay *display;
2714   gint line_top;
2715   gint index;
2716   GtkTextIter insert_iter;
2717
2718   PangoRectangle pango_strong_pos;
2719   PangoRectangle pango_weak_pos;
2720
2721   g_return_if_fail (layout != NULL);
2722   g_return_if_fail (iter != NULL);
2723
2724   line = _gtk_text_iter_get_text_line (iter);
2725   display = gtk_text_layout_get_line_display (layout, line, FALSE);
2726   index = line_display_iter_to_index (layout, display, iter);
2727   
2728   line_top = _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer),
2729                                            line, layout);
2730   
2731   gtk_text_buffer_get_iter_at_mark (layout->buffer, &insert_iter,
2732                                     gtk_text_buffer_get_insert (layout->buffer));
2733
2734   if (gtk_text_iter_equal (iter, &insert_iter))
2735     index += layout->preedit_cursor - layout->preedit_len;
2736   
2737   pango_layout_get_cursor_pos (display->layout, index,
2738                                strong_pos ? &pango_strong_pos : NULL,
2739                                weak_pos ? &pango_weak_pos : NULL);
2740
2741   if (strong_pos)
2742     {
2743       strong_pos->x = display->x_offset + pango_strong_pos.x / PANGO_SCALE;
2744       strong_pos->y = line_top + display->top_margin + pango_strong_pos.y / PANGO_SCALE;
2745       strong_pos->width = 0;
2746       strong_pos->height = pango_strong_pos.height / PANGO_SCALE;
2747     }
2748
2749   if (weak_pos)
2750     {
2751       weak_pos->x = display->x_offset + pango_weak_pos.x / PANGO_SCALE;
2752       weak_pos->y = line_top + display->top_margin + pango_weak_pos.y / PANGO_SCALE;
2753       weak_pos->width = 0;
2754       weak_pos->height = pango_weak_pos.height / PANGO_SCALE;
2755     }
2756
2757   gtk_text_layout_free_line_display (layout, display);
2758 }
2759
2760 /**
2761  * _gtk_text_layout_get_block_cursor:
2762  * @layout: a #GtkTextLayout
2763  * @pos: a #GdkRectangle to store block cursor position
2764  *
2765  * If layout is to display a block cursor, calculates its position
2766  * and returns %TRUE. Otherwise it returns %FALSE. In case when
2767  * cursor is visible, it simply returns the position stored in
2768  * the line display, otherwise it has to compute the position
2769  * (see get_block_cursor()).
2770  **/
2771 gboolean
2772 _gtk_text_layout_get_block_cursor (GtkTextLayout *layout,
2773                                    GdkRectangle  *pos)
2774 {
2775   GtkTextLine *line;
2776   GtkTextLineDisplay *display;
2777   GtkTextIter iter;
2778   GdkRectangle rect;
2779   gboolean block = FALSE;
2780
2781   g_return_val_if_fail (layout != NULL, FALSE);
2782
2783   gtk_text_buffer_get_iter_at_mark (layout->buffer, &iter,
2784                                     gtk_text_buffer_get_insert (layout->buffer));
2785   line = _gtk_text_iter_get_text_line (&iter);
2786   display = gtk_text_layout_get_line_display (layout, line, FALSE);
2787
2788   if (display->has_block_cursor)
2789     {
2790       block = TRUE;
2791       rect = display->block_cursor;
2792     }
2793   else
2794     {
2795       gint index = display->insert_index;
2796
2797       if (index < 0)
2798         index = gtk_text_iter_get_line_index (&iter);
2799
2800       if (get_block_cursor (layout, display, &iter, index, &rect, NULL))
2801         block = TRUE;
2802     }
2803
2804   if (block && pos)
2805     {
2806       gint line_top;
2807
2808       line_top = _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer),
2809                                                 line, layout);
2810
2811       *pos = rect;
2812       pos->x += display->x_offset;
2813       pos->y += line_top + display->top_margin;
2814     }
2815
2816   gtk_text_layout_free_line_display (layout, display);
2817   return block;
2818 }
2819
2820 /**
2821  * gtk_text_layout_get_line_yrange:
2822  * @layout: a #GtkTextLayout
2823  * @iter:   a #GtkTextIter
2824  * @y:      location to store the top of the paragraph in pixels,
2825  *          or %NULL.
2826  * @height  location to store the height of the paragraph in pixels,
2827  *          or %NULL.
2828  *
2829  * Find the range of y coordinates for the paragraph containing
2830  * the given iter.
2831  **/
2832 void
2833 gtk_text_layout_get_line_yrange (GtkTextLayout     *layout,
2834                                  const GtkTextIter *iter,
2835                                  gint              *y,
2836                                  gint              *height)
2837 {
2838   GtkTextLine *line;
2839
2840   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
2841   g_return_if_fail (_gtk_text_iter_get_btree (iter) == _gtk_text_buffer_get_btree (layout->buffer));
2842
2843   line = _gtk_text_iter_get_text_line (iter);
2844
2845   if (y)
2846     *y = _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer),
2847                                        line, layout);
2848   if (height)
2849     {
2850       GtkTextLineData *line_data = _gtk_text_line_get_data (line, layout);
2851       if (line_data)
2852         *height = line_data->height;
2853       else
2854         *height = 0;
2855     }
2856 }
2857
2858 /**
2859  * _gtk_text_layout_get_line_xrange:
2860  * @layout: a #GtkTextLayout
2861  * @iter:   a #GtkTextIter
2862  * @x:      location to store the top of the paragraph in pixels,
2863  *          or %NULL.
2864  * @width  location to store the height of the paragraph in pixels,
2865  *          or %NULL.
2866  *
2867  * Find the range of X coordinates for the paragraph containing
2868  * the given iter. Private for 2.0 due to API freeze, could
2869  * be made public for 2.2.
2870  **/
2871 void
2872 _gtk_text_layout_get_line_xrange (GtkTextLayout     *layout,
2873                                   const GtkTextIter *iter,
2874                                   gint              *x,
2875                                   gint              *width)
2876 {
2877   GtkTextLine *line;
2878
2879   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
2880   g_return_if_fail (_gtk_text_iter_get_btree (iter) == _gtk_text_buffer_get_btree (layout->buffer));
2881
2882   line = _gtk_text_iter_get_text_line (iter);
2883
2884   if (x)
2885     *x = 0; /* FIXME This is wrong; should represent the first available cursor position */
2886   
2887   if (width)
2888     {
2889       GtkTextLineData *line_data = _gtk_text_line_get_data (line, layout);
2890       if (line_data)
2891         *width = line_data->width;
2892       else
2893         *width = 0;
2894     }
2895 }
2896
2897 void
2898 gtk_text_layout_get_iter_location (GtkTextLayout     *layout,
2899                                    const GtkTextIter *iter,
2900                                    GdkRectangle      *rect)
2901 {
2902   PangoRectangle pango_rect;
2903   GtkTextLine *line;
2904   GtkTextBTree *tree;
2905   GtkTextLineDisplay *display;
2906   gint byte_index;
2907   gint x_offset;
2908   
2909   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
2910   g_return_if_fail (_gtk_text_iter_get_btree (iter) == _gtk_text_buffer_get_btree (layout->buffer));
2911   g_return_if_fail (rect != NULL);
2912
2913   tree = _gtk_text_iter_get_btree (iter);
2914   line = _gtk_text_iter_get_text_line (iter);
2915
2916   display = gtk_text_layout_get_line_display (layout, line, FALSE);
2917
2918   rect->y = _gtk_text_btree_find_line_top (tree, line, layout);
2919
2920   x_offset = display->x_offset * PANGO_SCALE;
2921
2922   byte_index = gtk_text_iter_get_line_index (iter);
2923   
2924   pango_layout_index_to_pos (display->layout, byte_index, &pango_rect);
2925   
2926   rect->x = PANGO_PIXELS (x_offset + pango_rect.x);
2927   rect->y += PANGO_PIXELS (pango_rect.y) + display->top_margin;
2928   rect->width = PANGO_PIXELS (pango_rect.width);
2929   rect->height = PANGO_PIXELS (pango_rect.height);
2930
2931   gtk_text_layout_free_line_display (layout, display);
2932 }
2933
2934 /* FFIXX */
2935
2936 /* Find the iter for the logical beginning of the first display line whose
2937  * top y is >= y. If none exists, move the iter to the logical beginning
2938  * of the last line in the buffer.
2939  */
2940 static void
2941 find_display_line_below (GtkTextLayout *layout,
2942                          GtkTextIter   *iter,
2943                          gint           y)
2944 {
2945   GtkTextLine *line, *next;
2946   GtkTextLine *found_line = NULL;
2947   gint line_top;
2948   gint found_byte = 0;
2949
2950   line = _gtk_text_btree_find_line_by_y (_gtk_text_buffer_get_btree (layout->buffer),
2951                                         layout, y, &line_top);
2952   if (!line)
2953     {
2954       line =
2955         _gtk_text_btree_get_end_iter_line (_gtk_text_buffer_get_btree (layout->buffer));
2956
2957       line_top =
2958         _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer),
2959                                       line, layout);
2960     }
2961
2962   while (line && !found_line)
2963     {
2964       GtkTextLineDisplay *display = gtk_text_layout_get_line_display (layout, line, FALSE);
2965       PangoLayoutIter *layout_iter;
2966
2967       layout_iter = pango_layout_get_iter (display->layout);
2968
2969       line_top += display->top_margin;
2970
2971       do
2972         {
2973           gint first_y, last_y;
2974           PangoLayoutLine *layout_line = pango_layout_iter_get_line_readonly (layout_iter);
2975
2976           found_byte = layout_line->start_index;
2977           
2978           if (line_top >= y)
2979             {
2980               found_line = line;
2981               break;
2982             }
2983
2984           pango_layout_iter_get_line_yrange (layout_iter, &first_y, &last_y);
2985           line_top += (last_y - first_y) / PANGO_SCALE;
2986         }
2987       while (pango_layout_iter_next_line (layout_iter));
2988
2989       pango_layout_iter_free (layout_iter);
2990       
2991       line_top += display->bottom_margin;
2992       gtk_text_layout_free_line_display (layout, display);
2993
2994       next = _gtk_text_line_next_excluding_last (line);
2995       if (!next)
2996         found_line = line;
2997
2998       line = next;
2999     }
3000
3001   _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
3002                                    iter, found_line, found_byte);
3003 }
3004
3005 /* Find the iter for the logical beginning of the last display line whose
3006  * top y is >= y. If none exists, move the iter to the logical beginning
3007  * of the first line in the buffer.
3008  */
3009 static void
3010 find_display_line_above (GtkTextLayout *layout,
3011                          GtkTextIter   *iter,
3012                          gint           y)
3013 {
3014   GtkTextLine *line;
3015   GtkTextLine *found_line = NULL;
3016   gint line_top;
3017   gint found_byte = 0;
3018
3019   line = _gtk_text_btree_find_line_by_y (_gtk_text_buffer_get_btree (layout->buffer), layout, y, &line_top);
3020   if (!line)
3021     {
3022       line = _gtk_text_btree_get_end_iter_line (_gtk_text_buffer_get_btree (layout->buffer));
3023       
3024       line_top = _gtk_text_btree_find_line_top (_gtk_text_buffer_get_btree (layout->buffer), line, layout);
3025     }
3026
3027   while (line && !found_line)
3028     {
3029       GtkTextLineDisplay *display = gtk_text_layout_get_line_display (layout, line, FALSE);
3030       PangoRectangle logical_rect;
3031       PangoLayoutIter *layout_iter;
3032       gint tmp_top;
3033
3034       layout_iter = pango_layout_get_iter (display->layout);
3035       
3036       line_top -= display->top_margin + display->bottom_margin;
3037       pango_layout_iter_get_layout_extents (layout_iter, NULL, &logical_rect);
3038       line_top -= logical_rect.height / PANGO_SCALE;
3039
3040       tmp_top = line_top + display->top_margin;
3041
3042       do
3043         {
3044           gint first_y, last_y;
3045           PangoLayoutLine *layout_line = pango_layout_iter_get_line_readonly (layout_iter);
3046
3047           found_byte = layout_line->start_index;
3048
3049           pango_layout_iter_get_line_yrange (layout_iter, &first_y, &last_y);
3050           
3051           tmp_top -= (last_y - first_y) / PANGO_SCALE;
3052
3053           if (tmp_top < y)
3054             {
3055               found_line = line;
3056               pango_layout_iter_free (layout_iter);
3057               goto done;
3058             }
3059         }
3060       while (pango_layout_iter_next_line (layout_iter));
3061
3062       pango_layout_iter_free (layout_iter);
3063       
3064       gtk_text_layout_free_line_display (layout, display);
3065
3066       line = _gtk_text_line_previous (line);
3067     }
3068
3069  done:
3070   
3071   if (found_line)
3072     _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
3073                                      iter, found_line, found_byte);
3074   else
3075     gtk_text_buffer_get_iter_at_offset (layout->buffer, iter, 0);
3076 }
3077
3078 /**
3079  * gtk_text_layout_clamp_iter_to_vrange:
3080  * @layout: a #GtkTextLayout
3081  * @iter:   a #GtkTextIter
3082  * @top:    the top of the range
3083  * @bottom: the bottom the range
3084  *
3085  * If the iterator is not fully in the range @top <= y < @bottom,
3086  * then, if possible, move it the minimum distance so that the
3087  * iterator in this range.
3088  *
3089  * Returns: %TRUE if the iterator was moved, otherwise %FALSE.
3090  **/
3091 gboolean
3092 gtk_text_layout_clamp_iter_to_vrange (GtkTextLayout *layout,
3093                                       GtkTextIter   *iter,
3094                                       gint           top,
3095                                       gint           bottom)
3096 {
3097   GdkRectangle iter_rect;
3098
3099   gtk_text_layout_get_iter_location (layout, iter, &iter_rect);
3100
3101   /* If the iter is at least partially above the range, put the iter
3102    * at the first fully visible line after the range.
3103    */
3104   if (iter_rect.y < top)
3105     {
3106       find_display_line_below (layout, iter, top);
3107
3108       return TRUE;
3109     }
3110   /* Otherwise, if the iter is at least partially below the screen, put the
3111    * iter on the last logical position of the last completely visible
3112    * line on screen
3113    */
3114   else if (iter_rect.y + iter_rect.height > bottom)
3115     {
3116       find_display_line_above (layout, iter, bottom);
3117
3118       return TRUE;
3119     }
3120   else
3121     return FALSE;
3122 }
3123
3124 /**
3125  * gtk_text_layout_move_iter_to_previous_line:
3126  * @layout: a #GtkLayout
3127  * @iter:   a #GtkTextIter
3128  *
3129  * Move the iterator to the beginning of the previous line. The lines
3130  * of a wrapped paragraph are treated as distinct for this operation.
3131  **/
3132 gboolean
3133 gtk_text_layout_move_iter_to_previous_line (GtkTextLayout *layout,
3134                                             GtkTextIter   *iter)
3135 {
3136   GtkTextLine *line;
3137   GtkTextLineDisplay *display;
3138   gint line_byte;
3139   GSList *tmp_list;
3140   PangoLayoutLine *layout_line;
3141   GtkTextIter orig;
3142   gboolean update_byte = FALSE;
3143   
3144   g_return_val_if_fail (GTK_IS_TEXT_LAYOUT (layout), FALSE);
3145   g_return_val_if_fail (iter != NULL, FALSE);
3146
3147   orig = *iter;
3148
3149
3150   line = _gtk_text_iter_get_text_line (iter);
3151   display = gtk_text_layout_get_line_display (layout, line, FALSE);
3152   line_byte = line_display_iter_to_index (layout, display, iter);
3153
3154   /* If display->height == 0 then the line is invisible, so don't
3155    * move onto it.
3156    */
3157   while (display->height == 0)
3158     {
3159       GtkTextLine *prev_line;
3160
3161       prev_line = _gtk_text_line_previous (line);
3162
3163       if (prev_line == NULL)
3164         {
3165           line_display_index_to_iter (layout, display, iter, 0, 0);
3166           goto out;
3167         }
3168
3169       gtk_text_layout_free_line_display (layout, display);
3170
3171       line = prev_line;
3172       display = gtk_text_layout_get_line_display (layout, prev_line, FALSE);
3173       update_byte = TRUE;
3174     }
3175   
3176   tmp_list = pango_layout_get_lines_readonly (display->layout);
3177   layout_line = tmp_list->data;
3178
3179   if (update_byte)
3180     {
3181       line_byte = layout_line->start_index + layout_line->length;
3182     }
3183
3184   if (line_byte < layout_line->length || !tmp_list->next) /* first line of paragraph */
3185     {
3186       GtkTextLine *prev_line;
3187
3188       prev_line = _gtk_text_line_previous (line);
3189
3190       /* first line of the whole buffer, do not move the iter and return FALSE */
3191       if (prev_line == NULL)
3192         goto out;
3193
3194       while (prev_line)
3195         {
3196           gtk_text_layout_free_line_display (layout, display);
3197
3198           display = gtk_text_layout_get_line_display (layout, prev_line, FALSE);
3199
3200           if (display->height > 0)
3201             {
3202               tmp_list = g_slist_last (pango_layout_get_lines_readonly (display->layout));
3203               layout_line = tmp_list->data;
3204
3205               line_display_index_to_iter (layout, display, iter,
3206                                           layout_line->start_index + layout_line->length, 0);
3207               break;
3208             }
3209
3210           prev_line = _gtk_text_line_previous (prev_line);
3211         }
3212     }
3213   else
3214     {
3215       gint prev_offset = layout_line->start_index;
3216
3217       tmp_list = tmp_list->next;
3218       while (tmp_list)
3219         {
3220           layout_line = tmp_list->data;
3221
3222           if (line_byte < layout_line->start_index + layout_line->length ||
3223               !tmp_list->next)
3224             {
3225               line_display_index_to_iter (layout, display, iter, prev_offset, 0);
3226               break;
3227             }
3228
3229           prev_offset = layout_line->start_index;
3230           tmp_list = tmp_list->next;
3231         }
3232     }
3233
3234  out:
3235   
3236   gtk_text_layout_free_line_display (layout, display);
3237
3238   return
3239     !gtk_text_iter_equal (iter, &orig) &&
3240     !gtk_text_iter_is_end (iter);
3241 }
3242
3243 /**
3244  * gtk_text_layout_move_iter_to_next_line:
3245  * @layout: a #GtkLayout
3246  * @iter:   a #GtkTextIter
3247  *
3248  * Move the iterator to the beginning of the next line. The
3249  * lines of a wrapped paragraph are treated as distinct for
3250  * this operation.
3251  **/
3252 gboolean
3253 gtk_text_layout_move_iter_to_next_line (GtkTextLayout *layout,
3254                                         GtkTextIter   *iter)
3255 {
3256   GtkTextLine *line;
3257   GtkTextLineDisplay *display;
3258   gint line_byte;
3259   GtkTextIter orig;
3260   gboolean found = FALSE;
3261   gboolean found_after = FALSE;
3262   gboolean first = TRUE;
3263
3264   g_return_val_if_fail (GTK_IS_TEXT_LAYOUT (layout), FALSE);
3265   g_return_val_if_fail (iter != NULL, FALSE);
3266
3267   orig = *iter;
3268   
3269   line = _gtk_text_iter_get_text_line (iter);
3270
3271   while (line && !found_after)
3272     {
3273       GSList *tmp_list;
3274
3275       display = gtk_text_layout_get_line_display (layout, line, FALSE);
3276
3277       if (display->height == 0)
3278         goto next;
3279       
3280       if (first)
3281         {
3282           line_byte = line_display_iter_to_index (layout, display, iter);
3283           first = FALSE;
3284         }
3285       else
3286         line_byte = 0;
3287         
3288       tmp_list = pango_layout_get_lines_readonly (display->layout);
3289       while (tmp_list && !found_after)
3290         {
3291           PangoLayoutLine *layout_line = tmp_list->data;
3292
3293           if (found)
3294             {
3295               line_display_index_to_iter (layout, display, iter,
3296                                           layout_line->start_index, 0);
3297               found_after = TRUE;
3298             }
3299           else if (line_byte < layout_line->start_index + layout_line->length || !tmp_list->next)
3300             found = TRUE;
3301           
3302           tmp_list = tmp_list->next;
3303         }
3304
3305     next:
3306       
3307       gtk_text_layout_free_line_display (layout, display);
3308
3309       line = _gtk_text_line_next_excluding_last (line);
3310     }
3311
3312   if (!found_after)
3313     gtk_text_buffer_get_end_iter (layout->buffer, iter);
3314   
3315   return
3316     !gtk_text_iter_equal (iter, &orig) &&
3317     !gtk_text_iter_is_end (iter);
3318 }
3319
3320 /**
3321  * gtk_text_layout_move_iter_to_line_end:
3322  * @layout: a #GtkTextLayout
3323  * @direction: if negative, move to beginning of line, otherwise
3324                move to end of line.
3325  *
3326  * Move to the beginning or end of a display line.
3327  **/
3328 gboolean
3329 gtk_text_layout_move_iter_to_line_end (GtkTextLayout *layout,
3330                                        GtkTextIter   *iter,
3331                                        gint           direction)
3332 {
3333   GtkTextLine *line;
3334   GtkTextLineDisplay *display;
3335   gint line_byte;
3336   GSList *tmp_list;
3337   GtkTextIter orig;
3338   
3339   g_return_val_if_fail (GTK_IS_TEXT_LAYOUT (layout), FALSE);
3340   g_return_val_if_fail (iter != NULL, FALSE);
3341
3342   orig = *iter;
3343   
3344   line = _gtk_text_iter_get_text_line (iter);
3345   display = gtk_text_layout_get_line_display (layout, line, FALSE);
3346   line_byte = line_display_iter_to_index (layout, display, iter);
3347
3348   tmp_list = pango_layout_get_lines_readonly (display->layout);
3349   while (tmp_list)
3350     {
3351       PangoLayoutLine *layout_line = tmp_list->data;
3352
3353       if (line_byte < layout_line->start_index + layout_line->length || !tmp_list->next)
3354         {
3355           line_display_index_to_iter (layout, display, iter,
3356                                       direction < 0 ? layout_line->start_index : layout_line->start_index + layout_line->length,
3357                                       0);
3358
3359           /* FIXME: As a bad hack, we move back one position when we
3360            * are inside a paragraph to avoid going to next line on a
3361            * forced break not at whitespace. Real fix is to keep track
3362            * of whether marks are at leading or trailing edge?  */
3363           if (direction > 0 && layout_line->length > 0 && 
3364               !gtk_text_iter_ends_line (iter) && 
3365               !_gtk_text_btree_char_is_invisible (iter))
3366             gtk_text_iter_backward_char (iter);
3367           break;
3368         }
3369       
3370       tmp_list = tmp_list->next;
3371     }
3372
3373   gtk_text_layout_free_line_display (layout, display);
3374
3375   return
3376     !gtk_text_iter_equal (iter, &orig) &&
3377     !gtk_text_iter_is_end (iter);
3378 }
3379
3380
3381 /**
3382  * gtk_text_layout_iter_starts_line:
3383  * @layout: a #GtkTextLayout
3384  * @iter: iterator to test
3385  *
3386  * Tests whether an iterator is at the start of a display line.
3387  **/
3388 gboolean
3389 gtk_text_layout_iter_starts_line (GtkTextLayout       *layout,
3390                                   const GtkTextIter   *iter)
3391 {
3392   GtkTextLine *line;
3393   GtkTextLineDisplay *display;
3394   gint line_byte;
3395   GSList *tmp_list;
3396   
3397   g_return_val_if_fail (GTK_IS_TEXT_LAYOUT (layout), FALSE);
3398   g_return_val_if_fail (iter != NULL, FALSE);
3399
3400   line = _gtk_text_iter_get_text_line (iter);
3401   display = gtk_text_layout_get_line_display (layout, line, FALSE);
3402   line_byte = line_display_iter_to_index (layout, display, iter);
3403
3404   tmp_list = pango_layout_get_lines_readonly (display->layout);
3405   while (tmp_list)
3406     {
3407       PangoLayoutLine *layout_line = tmp_list->data;
3408
3409       if (line_byte < layout_line->start_index + layout_line->length ||
3410           !tmp_list->next)
3411         {
3412           /* We're located on this line or the para delimiters before
3413            * it
3414            */
3415           gtk_text_layout_free_line_display (layout, display);
3416           
3417           if (line_byte == layout_line->start_index)
3418             return TRUE;
3419           else
3420             return FALSE;
3421         }
3422       
3423       tmp_list = tmp_list->next;
3424     }
3425
3426   g_assert_not_reached ();
3427   return FALSE;
3428 }
3429
3430 void
3431 gtk_text_layout_get_iter_at_line (GtkTextLayout  *layout,
3432                                   GtkTextIter    *iter,
3433                                   GtkTextLine    *line,
3434                                   gint            byte_offset)
3435 {
3436   _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
3437                                     iter, line, byte_offset);
3438 }
3439
3440
3441 /**
3442  * gtk_text_layout_move_iter_to_x:
3443  * @layout: a #GtkTextLayout
3444  * @iter:   a #GtkTextIter
3445  * @x:      X coordinate
3446  *
3447  * Keeping the iterator on the same line of the layout, move it to the
3448  * specified X coordinate. The lines of a wrapped paragraph are
3449  * treated as distinct for this operation.
3450  **/
3451 void
3452 gtk_text_layout_move_iter_to_x (GtkTextLayout *layout,
3453                                 GtkTextIter   *iter,
3454                                 gint           x)
3455 {
3456   GtkTextLine *line;
3457   GtkTextLineDisplay *display;
3458   gint line_byte;
3459   PangoLayoutIter *layout_iter;
3460   
3461   g_return_if_fail (GTK_IS_TEXT_LAYOUT (layout));
3462   g_return_if_fail (iter != NULL);
3463
3464   line = _gtk_text_iter_get_text_line (iter);
3465
3466   display = gtk_text_layout_get_line_display (layout, line, FALSE);
3467   line_byte = line_display_iter_to_index (layout, display, iter);
3468
3469   layout_iter = pango_layout_get_iter (display->layout);
3470
3471   do
3472     {
3473       PangoLayoutLine *layout_line = pango_layout_iter_get_line_readonly (layout_iter);
3474
3475       if (line_byte < layout_line->start_index + layout_line->length ||
3476           pango_layout_iter_at_last_line (layout_iter))
3477         {
3478           PangoRectangle logical_rect;
3479           gint byte_index, trailing;
3480           gint x_offset = display->x_offset * PANGO_SCALE;
3481
3482           pango_layout_iter_get_line_extents (layout_iter, NULL, &logical_rect);
3483
3484           pango_layout_line_x_to_index (layout_line,
3485                                         x * PANGO_SCALE - x_offset - logical_rect.x,
3486                                         &byte_index, &trailing);
3487
3488           line_display_index_to_iter (layout, display, iter, byte_index, trailing);
3489
3490           break;
3491         }
3492     }
3493   while (pango_layout_iter_next_line (layout_iter));
3494
3495   pango_layout_iter_free (layout_iter);
3496   
3497   gtk_text_layout_free_line_display (layout, display);
3498 }
3499
3500 /**
3501  * gtk_text_layout_move_iter_visually:
3502  * @layout:  a #GtkTextLayout
3503  * @iter:    a #GtkTextIter
3504  * @count:   number of characters to move (negative moves left, positive moves right)
3505  *
3506  * Move the iterator a given number of characters visually, treating
3507  * it as the strong cursor position. If @count is positive, then the
3508  * new strong cursor position will be @count positions to the right of
3509  * the old cursor position. If @count is negative then the new strong
3510  * cursor position will be @count positions to the left of the old
3511  * cursor position.
3512  *
3513  * In the presence of bidirection text, the correspondence
3514  * between logical and visual order will depend on the direction
3515  * of the current run, and there may be jumps when the cursor
3516  * is moved off of the end of a run.
3517  **/
3518
3519 gboolean
3520 gtk_text_layout_move_iter_visually (GtkTextLayout *layout,
3521                                     GtkTextIter   *iter,
3522                                     gint           count)
3523 {
3524   GtkTextLineDisplay *display = NULL;
3525   GtkTextIter orig;
3526   GtkTextIter lineiter;
3527   
3528   g_return_val_if_fail (layout != NULL, FALSE);
3529   g_return_val_if_fail (iter != NULL, FALSE);
3530
3531   orig = *iter;
3532   
3533   while (count != 0)
3534     {
3535       GtkTextLine *line = _gtk_text_iter_get_text_line (iter);
3536       gint line_byte;
3537       gint extra_back = 0;
3538       gboolean strong;
3539
3540       int byte_count = _gtk_text_line_byte_count (line);
3541
3542       int new_index;
3543       int new_trailing;
3544
3545       if (!display)
3546         display = gtk_text_layout_get_line_display (layout, line, FALSE);
3547
3548       if (layout->cursor_direction == GTK_TEXT_DIR_NONE)
3549         strong = TRUE;
3550       else
3551         strong = display->direction == layout->cursor_direction;
3552
3553       line_byte = line_display_iter_to_index (layout, display, iter);
3554
3555       if (count > 0)
3556         {
3557           pango_layout_move_cursor_visually (display->layout, strong, line_byte, 0, 1, &new_index, &new_trailing);
3558           count--;
3559         }
3560       else
3561         {
3562           pango_layout_move_cursor_visually (display->layout, strong, line_byte, 0, -1, &new_index, &new_trailing);
3563           count++;
3564         }
3565
3566       /* We need to handle the preedit string specially. Well, we don't really need to
3567        * handle it specially, since hopefully calling gtk_im_context_reset() will
3568        * remove the preedit string; but if we start off in front of the preedit
3569        * string (logically) and end up in or on the back edge of the preedit string,
3570        * we should move the iter one place farther.
3571        */
3572       if (layout->preedit_len > 0 && display->insert_index >= 0)
3573         {
3574           if (line_byte == display->insert_index + layout->preedit_len &&
3575               new_index < display->insert_index + layout->preedit_len)
3576             {
3577               line_byte = display->insert_index;
3578               extra_back = 1;
3579             }
3580         }
3581       
3582       if (new_index < 0 || (new_index == 0 && extra_back))
3583         {
3584           do
3585             {
3586               line = _gtk_text_line_previous (line);
3587
3588               if (!line)
3589                 goto done;
3590               
3591               _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
3592                                                 &lineiter, line, 0);
3593             }
3594           while (totally_invisible_line (layout, line, &lineiter));
3595           
3596           gtk_text_layout_free_line_display (layout, display);
3597           display = gtk_text_layout_get_line_display (layout, line, FALSE);
3598           gtk_text_iter_forward_to_line_end (&lineiter);
3599           new_index = gtk_text_iter_get_visible_line_index (&lineiter);
3600         }
3601       else if (new_index > byte_count)
3602         {
3603           do
3604             {
3605               line = _gtk_text_line_next_excluding_last (line);
3606               if (!line)
3607                 goto done;
3608
3609               _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
3610                                                 &lineiter, line, 0);
3611             }
3612           while (totally_invisible_line (layout, line, &lineiter));
3613   
3614           gtk_text_layout_free_line_display (layout, display);
3615           display = gtk_text_layout_get_line_display (layout, line, FALSE);
3616           new_index = 0;
3617         }
3618       
3619        line_display_index_to_iter (layout, display, iter, new_index, new_trailing);
3620        if (extra_back)
3621          gtk_text_iter_backward_char (iter);
3622     }
3623
3624   gtk_text_layout_free_line_display (layout, display);
3625
3626  done:
3627   
3628   return
3629     !gtk_text_iter_equal (iter, &orig) &&
3630     !gtk_text_iter_is_end (iter);
3631 }
3632
3633 void
3634 gtk_text_layout_spew (GtkTextLayout *layout)
3635 {
3636 #if 0
3637   GtkTextDisplayLine *iter;
3638   guint wrapped = 0;
3639   guint paragraphs = 0;
3640   GtkTextLine *last_line = NULL;
3641
3642   iter = layout->line_list;
3643   while (iter != NULL)
3644     {
3645       if (iter->line != last_line)
3646         {
3647           printf ("%5u  paragraph (%p)\n", paragraphs, iter->line);
3648           ++paragraphs;
3649           last_line = iter->line;
3650         }
3651
3652       printf ("  %5u  y: %d len: %d start: %d bytes: %d\n",
3653               wrapped, iter->y, iter->length, iter->byte_offset,
3654               iter->byte_count);
3655
3656       ++wrapped;
3657       iter = iter->next;
3658     }
3659
3660   printf ("Layout %s recompute\n",
3661           layout->need_recompute ? "needs" : "doesn't need");
3662
3663   printf ("Layout pars: %u lines: %u size: %d x %d Screen width: %d\n",
3664           paragraphs, wrapped, layout->width,
3665           layout->height, layout->screen_width);
3666 #endif
3667 }
3668
3669 /* Catch all situations that move the insertion point.
3670  */
3671 static void
3672 gtk_text_layout_mark_set_handler (GtkTextBuffer     *buffer,
3673                                   const GtkTextIter *location,
3674                                   GtkTextMark       *mark,
3675                                   gpointer           data)
3676 {
3677   GtkTextLayout *layout = GTK_TEXT_LAYOUT (data);
3678
3679   if (mark == gtk_text_buffer_get_insert (buffer))
3680     gtk_text_layout_update_cursor_line (layout);
3681 }
3682
3683 static void
3684 gtk_text_layout_buffer_insert_text (GtkTextBuffer *textbuffer,
3685                                     GtkTextIter   *iter,
3686                                     gchar         *str,
3687                                     gint           len,
3688                                     gpointer       data)
3689 {
3690   GtkTextLayout *layout = GTK_TEXT_LAYOUT (data);
3691
3692   gtk_text_layout_update_cursor_line (layout);
3693 }
3694
3695 static void
3696 gtk_text_layout_buffer_delete_range (GtkTextBuffer *textbuffer,
3697                                      GtkTextIter   *start,
3698                                      GtkTextIter   *end,
3699                                      gpointer       data)
3700 {
3701   GtkTextLayout *layout = GTK_TEXT_LAYOUT (data);
3702
3703   gtk_text_layout_update_cursor_line (layout);
3704 }