]> Pileus Git - ~andy/gtk/blob - gtk/gtktextutil.c
textview: Replace GdkGC * argument with gpointer
[~andy/gtk] / gtk / gtktextutil.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2001.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include "config.h"
28
29 #include "gtktextview.h"
30 #include "gtktextutil.h"
31
32 #define GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API
33
34 #include "gtktextdisplay.h"
35 #include "gtktextbuffer.h"
36 #include "gtkmenuitem.h"
37 #include "gtkintl.h"
38
39 #define DRAG_ICON_MAX_WIDTH 250
40 #define DRAG_ICON_MAX_HEIGHT 250
41 #define DRAG_ICON_LAYOUT_BORDER 5
42 #define DRAG_ICON_MAX_LINES 7
43 #define ELLIPSIS_CHARACTER "\xe2\x80\xa6"
44
45 typedef struct _GtkUnicodeMenuEntry GtkUnicodeMenuEntry;
46 typedef struct _GtkTextUtilCallbackInfo GtkTextUtilCallbackInfo;
47
48 struct _GtkUnicodeMenuEntry {
49   const char *label;
50   gunichar ch;
51 };
52
53 struct _GtkTextUtilCallbackInfo
54 {
55   GtkTextUtilCharChosenFunc func;
56   gpointer data;
57 };
58
59 static const GtkUnicodeMenuEntry bidi_menu_entries[] = {
60   { N_("LRM _Left-to-right mark"), 0x200E },
61   { N_("RLM _Right-to-left mark"), 0x200F },
62   { N_("LRE Left-to-right _embedding"), 0x202A },
63   { N_("RLE Right-to-left e_mbedding"), 0x202B },
64   { N_("LRO Left-to-right _override"), 0x202D },
65   { N_("RLO Right-to-left o_verride"), 0x202E },
66   { N_("PDF _Pop directional formatting"), 0x202C },
67   { N_("ZWS _Zero width space"), 0x200B },
68   { N_("ZWJ Zero width _joiner"), 0x200D },
69   { N_("ZWNJ Zero width _non-joiner"), 0x200C }
70 };
71
72 static GtkTextUtilCallbackInfo *
73 callback_info_new (GtkTextUtilCharChosenFunc  func,
74                    gpointer                   data)
75 {
76   GtkTextUtilCallbackInfo *info;
77
78   info = g_slice_new (GtkTextUtilCallbackInfo);
79
80   info->func = func;
81   info->data = data;
82
83   return info;
84 }
85
86 static void
87 callback_info_free (GtkTextUtilCallbackInfo *info)
88 {
89   g_slice_free (GtkTextUtilCallbackInfo, info);
90 }
91
92 static void
93 activate_cb (GtkWidget *menu_item,
94              gpointer   data)
95 {
96   GtkUnicodeMenuEntry *entry;
97   GtkTextUtilCallbackInfo *info = data;
98   char buf[7];
99   
100   entry = g_object_get_data (G_OBJECT (menu_item), "gtk-unicode-menu-entry");
101
102   buf[g_unichar_to_utf8 (entry->ch, buf)] = '\0';
103   
104   (* info->func) (buf, info->data);
105 }
106
107 /*
108  * _gtk_text_util_append_special_char_menuitems
109  * @menushell: a #GtkMenuShell
110  * @callback:  call this when an item is chosen
111  * @data: data for callback
112  * 
113  * Add menuitems for various bidi control characters  to a menu;
114  * the menuitems, when selected, will call the given function
115  * with the chosen character.
116  *
117  * This function is private/internal in GTK 2.0, the functionality may
118  * become public sometime, but it probably needs more thought first.
119  * e.g. maybe there should be a way to just get the list of items,
120  * instead of requiring the menu items to be created.
121  */
122 void
123 _gtk_text_util_append_special_char_menuitems (GtkMenuShell              *menushell,
124                                               GtkTextUtilCharChosenFunc  func,
125                                               gpointer                   data)
126 {
127   int i;
128
129   for (i = 0; i < G_N_ELEMENTS (bidi_menu_entries); i++)
130     {
131       GtkWidget *menuitem;
132       GtkTextUtilCallbackInfo *info;
133
134       info = callback_info_new (func, data);
135
136       menuitem = gtk_menu_item_new_with_mnemonic (_(bidi_menu_entries[i].label));
137       g_object_set_data (G_OBJECT (menuitem), I_("gtk-unicode-menu-entry"),
138                          (gpointer)&bidi_menu_entries[i]);
139
140       g_signal_connect_data (menuitem, "activate",
141                              G_CALLBACK (activate_cb),
142                              info, (GClosureNotify) callback_info_free, 0);
143
144       gtk_widget_show (menuitem);
145       gtk_menu_shell_append (menushell, menuitem);
146     }
147 }
148
149 static void
150 append_n_lines (GString *str, const gchar *text, GSList *lines, gint n_lines)
151 {
152   PangoLayoutLine *line;
153   gint i;
154
155   for (i = 0; i < n_lines; i++)
156     {
157       line = lines->data;
158       g_string_append_len (str, &text[line->start_index], line->length);
159       lines = lines->next;
160     }
161 }
162
163 static void
164 limit_layout_lines (PangoLayout *layout)
165 {
166   const gchar *text;
167   GString     *str;
168   GSList      *lines, *elem;
169   gint         n_lines;
170
171   n_lines = pango_layout_get_line_count (layout);
172   
173   if (n_lines >= DRAG_ICON_MAX_LINES)
174     {
175       text  = pango_layout_get_text (layout);
176       str   = g_string_new (NULL);
177       lines = pango_layout_get_lines_readonly (layout);
178
179       /* get first lines */
180       elem = lines;
181       append_n_lines (str, text, elem,
182                       DRAG_ICON_MAX_LINES / 2);
183
184       g_string_append (str, "\n" ELLIPSIS_CHARACTER "\n");
185
186       /* get last lines */
187       elem = g_slist_nth (lines, n_lines - DRAG_ICON_MAX_LINES / 2);
188       append_n_lines (str, text, elem,
189                       DRAG_ICON_MAX_LINES / 2);
190
191       pango_layout_set_text (layout, str->str, -1);
192       g_string_free (str, TRUE);
193     }
194 }
195
196 /*
197  * _gtk_text_util_create_drag_icon
198  * @widget: #GtkWidget to extract the pango context
199  * @text: a #gchar to render the icon
200  * @len: length of @text, or -1 for NUL-terminated text
201  *
202  * Creates a drag and drop icon from @text.
203  *
204  * Returns: a #GdkPixmap to use as DND icon
205  */
206 GdkPixmap *
207 _gtk_text_util_create_drag_icon (GtkWidget *widget, 
208                                  gchar     *text,
209                                  gsize      len)
210 {
211   GdkDrawable  *drawable = NULL;
212   PangoContext *context;
213   PangoLayout  *layout;
214   cairo_t      *cr;
215   gint          pixmap_height, pixmap_width;
216   gint          layout_width, layout_height;
217
218   g_return_val_if_fail (widget != NULL, NULL);
219   g_return_val_if_fail (text != NULL, NULL);
220
221   context = gtk_widget_get_pango_context (widget);
222   layout  = pango_layout_new (context);
223
224   pango_layout_set_text (layout, text, len);
225   pango_layout_set_wrap (layout, PANGO_WRAP_WORD_CHAR);
226   pango_layout_get_size (layout, &layout_width, &layout_height);
227
228   layout_width = MIN (layout_width, DRAG_ICON_MAX_WIDTH * PANGO_SCALE);
229   pango_layout_set_width (layout, layout_width);
230
231   limit_layout_lines (layout);
232
233   /* get again layout extents, they may have changed */
234   pango_layout_get_size (layout, &layout_width, &layout_height);
235
236   pixmap_width  = layout_width  / PANGO_SCALE + DRAG_ICON_LAYOUT_BORDER * 2;
237   pixmap_height = layout_height / PANGO_SCALE + DRAG_ICON_LAYOUT_BORDER * 2;
238
239   drawable = gdk_pixmap_new (widget->window,
240                              pixmap_width  + 2,
241                              pixmap_height + 2,
242                              -1);
243   cr = gdk_cairo_create (drawable);
244
245   gdk_cairo_set_source_color (cr, &widget->style->base [gtk_widget_get_state (widget)]);
246   cairo_paint (cr);
247
248   gdk_cairo_set_source_color (cr, &widget->style->text [gtk_widget_get_state (widget)]);
249   cairo_move_to (cr, 1 + DRAG_ICON_LAYOUT_BORDER, 1 + DRAG_ICON_LAYOUT_BORDER);
250   pango_cairo_show_layout (cr, layout);
251
252   cairo_set_source_rgb (cr, 0, 0, 0);
253   cairo_rectangle (cr, 0.5, 0.5, pixmap_width + 1, pixmap_height + 1);
254   cairo_set_line_width (cr, 1.0);
255   cairo_stroke (cr);
256
257   cairo_destroy (cr);
258   g_object_unref (layout);
259
260   return drawable;
261 }
262
263 static void
264 gtk_text_view_set_attributes_from_style (GtkTextView        *text_view,
265                                          GtkTextAttributes  *values,
266                                          GtkStyle           *style)
267 {
268   values->appearance.bg_color = style->base[GTK_STATE_NORMAL];
269   values->appearance.fg_color = style->text[GTK_STATE_NORMAL];
270
271   if (values->font)
272     pango_font_description_free (values->font);
273
274   values->font = pango_font_description_copy (style->font_desc);
275 }
276
277 GdkPixmap *
278 _gtk_text_util_create_rich_drag_icon (GtkWidget     *widget,
279                                       GtkTextBuffer *buffer,
280                                       GtkTextIter   *start,
281                                       GtkTextIter   *end)
282 {
283   GdkDrawable       *drawable = NULL;
284   gint               pixmap_height, pixmap_width;
285   gint               layout_width, layout_height;
286   GtkTextBuffer     *new_buffer;
287   GtkTextLayout     *layout;
288   GtkTextAttributes *style;
289   PangoContext      *ltr_context, *rtl_context;
290   GtkTextIter        iter;
291   cairo_t           *cr;
292
293    g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
294    g_return_val_if_fail (GTK_IS_TEXT_BUFFER (buffer), NULL);
295    g_return_val_if_fail (start != NULL, NULL);
296    g_return_val_if_fail (end != NULL, NULL);
297
298    new_buffer = gtk_text_buffer_new (gtk_text_buffer_get_tag_table (buffer));
299    gtk_text_buffer_get_start_iter (new_buffer, &iter);
300
301    gtk_text_buffer_insert_range (new_buffer, &iter, start, end);
302
303    gtk_text_buffer_get_start_iter (new_buffer, &iter);
304
305    layout = gtk_text_layout_new ();
306
307    ltr_context = gtk_widget_create_pango_context (widget);
308    pango_context_set_base_dir (ltr_context, PANGO_DIRECTION_LTR);
309    rtl_context = gtk_widget_create_pango_context (widget);
310    pango_context_set_base_dir (rtl_context, PANGO_DIRECTION_RTL);
311
312    gtk_text_layout_set_contexts (layout, ltr_context, rtl_context);
313
314    g_object_unref (ltr_context);
315    g_object_unref (rtl_context);
316
317    style = gtk_text_attributes_new ();
318
319    layout_width = widget->allocation.width;
320
321    if (GTK_IS_TEXT_VIEW (widget))
322      {
323        gtk_widget_ensure_style (widget);
324        gtk_text_view_set_attributes_from_style (GTK_TEXT_VIEW (widget),
325                                                 style, widget->style);
326
327        layout_width = layout_width
328          - gtk_text_view_get_border_window_size (GTK_TEXT_VIEW (widget), GTK_TEXT_WINDOW_LEFT)
329          - gtk_text_view_get_border_window_size (GTK_TEXT_VIEW (widget), GTK_TEXT_WINDOW_RIGHT);
330      }
331
332    style->direction = gtk_widget_get_direction (widget);
333    style->wrap_mode = PANGO_WRAP_WORD_CHAR;
334
335    gtk_text_layout_set_default_style (layout, style);
336    gtk_text_attributes_unref (style);
337
338    gtk_text_layout_set_buffer (layout, new_buffer);
339    gtk_text_layout_set_cursor_visible (layout, FALSE);
340    gtk_text_layout_set_screen_width (layout, layout_width);
341
342    gtk_text_layout_validate (layout, DRAG_ICON_MAX_HEIGHT);
343    gtk_text_layout_get_size (layout, &layout_width, &layout_height);
344
345    layout_width = MIN (layout_width, DRAG_ICON_MAX_WIDTH);
346    layout_height = MIN (layout_height, DRAG_ICON_MAX_HEIGHT);
347
348    pixmap_width  = layout_width + DRAG_ICON_LAYOUT_BORDER * 2;
349    pixmap_height = layout_height + DRAG_ICON_LAYOUT_BORDER * 2;
350
351    drawable = gdk_pixmap_new (widget->window,
352                               pixmap_width  + 2, pixmap_height + 2, -1);
353
354    cr = gdk_cairo_create (drawable);
355
356    gdk_cairo_set_source_color (cr, &widget->style->base [gtk_widget_get_state (widget)]);
357    cairo_paint (cr);
358
359    gtk_text_layout_draw (layout, widget, drawable,
360                          NULL,
361                          - (1 + DRAG_ICON_LAYOUT_BORDER),
362                          - (1 + DRAG_ICON_LAYOUT_BORDER),
363                          0, 0,
364                          pixmap_width, pixmap_height, NULL);
365
366    cairo_set_source_rgb (cr, 0, 0, 0);
367    cairo_rectangle (cr, 0.5, 0.5, pixmap_width + 1, pixmap_height + 1);
368    cairo_set_line_width (cr, 1.0);
369    cairo_stroke (cr);
370
371    cairo_destroy (cr);
372    g_object_unref (layout);
373    g_object_unref (new_buffer);
374
375    return drawable;
376 }
377
378
379 static gint
380 layout_get_char_width (PangoLayout *layout)
381 {
382   gint width;
383   PangoFontMetrics *metrics;
384   const PangoFontDescription *font_desc;
385   PangoContext *context = pango_layout_get_context (layout);
386
387   font_desc = pango_layout_get_font_description (layout);
388   if (!font_desc)
389     font_desc = pango_context_get_font_description (context);
390
391   metrics = pango_context_get_metrics (context, font_desc, NULL);
392   width = pango_font_metrics_get_approximate_char_width (metrics);
393   pango_font_metrics_unref (metrics);
394
395   return width;
396 }
397
398 /*
399  * _gtk_text_util_get_block_cursor_location
400  * @layout: a #PangoLayout
401  * @index: index at which cursor is located
402  * @pos: cursor location
403  * @at_line_end: whether cursor is drawn at line end, not over some
404  * character
405  *
406  * Returns: whether cursor should actually be drawn as a rectangle.
407  *     It may not be the case if character at index is invisible.
408  */
409 gboolean
410 _gtk_text_util_get_block_cursor_location (PangoLayout    *layout,
411                                           gint            index,
412                                           PangoRectangle *pos,
413                                           gboolean       *at_line_end)
414 {
415   PangoRectangle strong_pos, weak_pos;
416   PangoLayoutLine *layout_line;
417   gboolean rtl;
418   gint line_no;
419   const gchar *text;
420
421   g_return_val_if_fail (layout != NULL, FALSE);
422   g_return_val_if_fail (index >= 0, FALSE);
423   g_return_val_if_fail (pos != NULL, FALSE);
424
425   pango_layout_index_to_pos (layout, index, pos);
426
427   if (pos->width != 0)
428     {
429       /* cursor is at some visible character, good */
430       if (at_line_end)
431         *at_line_end = FALSE;
432       if (pos->width < 0)
433         {
434           pos->x += pos->width;
435           pos->width = -pos->width;
436         }
437       return TRUE;
438     }
439
440   pango_layout_index_to_line_x (layout, index, FALSE, &line_no, NULL);
441   layout_line = pango_layout_get_line_readonly (layout, line_no);
442   g_return_val_if_fail (layout_line != NULL, FALSE);
443
444   text = pango_layout_get_text (layout);
445
446   if (index < layout_line->start_index + layout_line->length)
447     {
448       /* this may be a zero-width character in the middle of the line,
449        * or it could be a character where line is wrapped, we do want
450        * block cursor in latter case */
451       if (g_utf8_next_char (text + index) - text !=
452           layout_line->start_index + layout_line->length)
453         {
454           /* zero-width character in the middle of the line, do not
455            * bother with block cursor */
456           return FALSE;
457         }
458     }
459
460   /* Cursor is at the line end. It may be an empty line, or it could
461    * be on the left or on the right depending on text direction, or it
462    * even could be in the middle of visual layout in bidi text. */
463
464   pango_layout_get_cursor_pos (layout, index, &strong_pos, &weak_pos);
465
466   if (strong_pos.x != weak_pos.x)
467     {
468       /* do not show block cursor in this case, since the character typed
469        * in may or may not appear at the cursor position */
470       return FALSE;
471     }
472
473   /* In case when index points to the end of line, pos->x is always most right
474    * pixel of the layout line, so we need to correct it for RTL text. */
475   if (layout_line->length)
476     {
477       if (layout_line->resolved_dir == PANGO_DIRECTION_RTL)
478         {
479           PangoLayoutIter *iter;
480           PangoRectangle line_rect;
481           gint i;
482           gint left, right;
483           const gchar *p;
484
485           p = g_utf8_prev_char (text + index);
486
487           pango_layout_line_index_to_x (layout_line, p - text, FALSE, &left);
488           pango_layout_line_index_to_x (layout_line, p - text, TRUE, &right);
489           pos->x = MIN (left, right);
490
491           iter = pango_layout_get_iter (layout);
492           for (i = 0; i < line_no; i++)
493             pango_layout_iter_next_line (iter);
494           pango_layout_iter_get_line_extents (iter, NULL, &line_rect);
495           pango_layout_iter_free (iter);
496
497           rtl = TRUE;
498           pos->x += line_rect.x;
499         }
500       else
501         rtl = FALSE;
502     }
503   else
504     {
505       PangoContext *context = pango_layout_get_context (layout);
506       rtl = pango_context_get_base_dir (context) == PANGO_DIRECTION_RTL;
507     }
508
509   pos->width = layout_get_char_width (layout);
510
511   if (rtl)
512     pos->x -= pos->width - 1;
513
514   if (at_line_end)
515     *at_line_end = TRUE;
516
517   return pos->width != 0;
518 }