]> Pileus Git - ~andy/gtk/blob - gtk/gtklabel.c
GtkLabel: move public members to private structure
[~andy/gtk] / gtk / gtklabel.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 Free
16  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18
19 /*
20  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
21  * file for a list of people on the GTK+ Team.  See the ChangeLog
22  * files for a list of changes.  These files are distributed with
23  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
24  */
25
26 #include "config.h"
27
28 #include <math.h>
29 #include <string.h>
30
31 #include "gtklabel.h"
32 #include "gtkaccellabel.h"
33 #include "gtkdnd.h"
34 #include "gtkmain.h"
35 #include "gtkmarshalers.h"
36 #include "gtkwindow.h"
37 #include "gdk/gdkkeysyms.h"
38 #include "gtkclipboard.h"
39 #include "gtkimagemenuitem.h"
40 #include "gtkintl.h"
41 #include "gtkseparatormenuitem.h"
42 #include "gtktextutil.h"
43 #include "gtkmenuitem.h"
44 #include "gtknotebook.h"
45 #include "gtkstock.h"
46 #include "gtkbindings.h"
47 #include "gtkbuildable.h"
48 #include "gtkimage.h"
49 #include "gtkshow.h"
50 #include "gtktooltip.h"
51 #include "gtksizerequest.h"
52 #include "gtkprivate.h"
53
54
55 struct _GtkLabelPriv
56 {
57   GtkLabelSelectionInfo *select_info;
58   GtkWidget *mnemonic_widget;
59   GtkWindow *mnemonic_window;
60
61   PangoAttrList *attrs;
62   PangoAttrList *effective_attrs;
63   PangoLayout   *layout;
64
65   gboolean mnemonics_visible;
66
67   gchar   *label;
68   gchar   *text;
69
70   guint    jtype            : 2;
71   guint    wrap             : 1;
72   guint    use_underline    : 1;
73   guint    use_markup       : 1;
74   guint    ellipsize        : 3;
75   guint    single_line_mode : 1;
76   guint    have_transform   : 1;
77   guint    in_click         : 1;
78   guint    wrap_mode        : 3;
79   guint    pattern_set      : 1;
80   guint    track_links      : 1;
81
82   guint    mnemonic_keyval;
83
84   gint     wrap_width;
85   gint     width_chars;
86   gint     max_width_chars;
87 };
88
89 /* Notes about the handling of links:
90  *
91  * Links share the GtkLabelSelectionInfo struct with selectable labels.
92  * There are some new fields for links. The links field contains the list
93  * of GtkLabelLink structs that describe the links which are embedded in
94  * the label. The active_link field points to the link under the mouse
95  * pointer. For keyboard navigation, the 'focus' link is determined by
96  * finding the link which contains the selection_anchor position.
97  * The link_clicked field is used with button press and release events
98  * to ensure that pressing inside a link and releasing outside of it
99  * does not activate the link.
100  *
101  * Links are rendered with the link-color/visited-link-color colors
102  * that are determined by the style and with an underline. When the mouse
103  * pointer is over a link, the pointer is changed to indicate the link,
104  * and the background behind the link is rendered with the base[PRELIGHT]
105  * color. While a button is pressed over a link, the background is rendered
106  * with the base[ACTIVE] color.
107  *
108  * Labels with links accept keyboard focus, and it is possible to move
109  * the focus between the embedded links using Tab/Shift-Tab. The focus
110  * is indicated by a focus rectangle that is drawn around the link text.
111  * Pressing Enter activates the focussed link, and there is a suitable
112  * context menu for links that can be opened with the Menu key. Pressing
113  * Control-C copies the link URI to the clipboard.
114  *
115  * In selectable labels with links, link functionality is only available
116  * when the selection is empty.
117  */
118 typedef struct
119 {
120   gchar *uri;
121   gchar *title;     /* the title attribute, used as tooltip */
122   gboolean visited; /* get set when the link is activated; this flag
123                      * gets preserved over later set_markup() calls
124                      */
125   gint start;       /* position of the link in the PangoLayout */
126   gint end;
127 } GtkLabelLink;
128
129 struct _GtkLabelSelectionInfo
130 {
131   GdkWindow *window;
132   gint selection_anchor;
133   gint selection_end;
134   GtkWidget *popup_menu;
135
136   GList *links;
137   GtkLabelLink *active_link;
138
139   gint drag_start_x;
140   gint drag_start_y;
141
142   guint in_drag      : 1;
143   guint select_words : 1;
144   guint selectable   : 1;
145   guint link_clicked : 1;
146 };
147
148 enum {
149   MOVE_CURSOR,
150   COPY_CLIPBOARD,
151   POPULATE_POPUP,
152   ACTIVATE_LINK,
153   ACTIVATE_CURRENT_LINK,
154   LAST_SIGNAL
155 };
156
157 enum {
158   PROP_0,
159   PROP_LABEL,
160   PROP_ATTRIBUTES,
161   PROP_USE_MARKUP,
162   PROP_USE_UNDERLINE,
163   PROP_JUSTIFY,
164   PROP_PATTERN,
165   PROP_WRAP,
166   PROP_WRAP_MODE,
167   PROP_SELECTABLE,
168   PROP_MNEMONIC_KEYVAL,
169   PROP_MNEMONIC_WIDGET,
170   PROP_CURSOR_POSITION,
171   PROP_SELECTION_BOUND,
172   PROP_ELLIPSIZE,
173   PROP_WIDTH_CHARS,
174   PROP_SINGLE_LINE_MODE,
175   PROP_ANGLE,
176   PROP_MAX_WIDTH_CHARS,
177   PROP_TRACK_VISITED_LINKS
178 };
179
180 /* When rotating ellipsizable text we want the natural size to request 
181  * more to ensure the label wont ever ellipsize in an allocation of full natural size.
182  * */
183 #define ROTATION_ELLIPSIZE_PADDING 2
184
185 static guint signals[LAST_SIGNAL] = { 0 };
186
187 static const GdkColor default_link_color = { 0, 0, 0, 0xeeee };
188 static const GdkColor default_visited_link_color = { 0, 0x5555, 0x1a1a, 0x8b8b };
189
190 static void gtk_label_set_property      (GObject          *object,
191                                          guint             prop_id,
192                                          const GValue     *value,
193                                          GParamSpec       *pspec);
194 static void gtk_label_get_property      (GObject          *object,
195                                          guint             prop_id,
196                                          GValue           *value,
197                                          GParamSpec       *pspec);
198 static void gtk_label_destroy           (GtkObject        *object);
199 static void gtk_label_finalize          (GObject          *object);
200 static void gtk_label_size_allocate     (GtkWidget        *widget,
201                                          GtkAllocation    *allocation);
202 static void gtk_label_state_changed     (GtkWidget        *widget,
203                                          GtkStateType      state);
204 static void gtk_label_style_set         (GtkWidget        *widget,
205                                          GtkStyle         *previous_style);
206 static void gtk_label_direction_changed (GtkWidget        *widget,
207                                          GtkTextDirection  previous_dir);
208 static gint gtk_label_expose            (GtkWidget        *widget,
209                                          GdkEventExpose   *event);
210 static gboolean gtk_label_focus         (GtkWidget         *widget,
211                                          GtkDirectionType   direction);
212
213 static void gtk_label_realize           (GtkWidget        *widget);
214 static void gtk_label_unrealize         (GtkWidget        *widget);
215 static void gtk_label_map               (GtkWidget        *widget);
216 static void gtk_label_unmap             (GtkWidget        *widget);
217
218 static gboolean gtk_label_button_press      (GtkWidget        *widget,
219                                              GdkEventButton   *event);
220 static gboolean gtk_label_button_release    (GtkWidget        *widget,
221                                              GdkEventButton   *event);
222 static gboolean gtk_label_motion            (GtkWidget        *widget,
223                                              GdkEventMotion   *event);
224 static gboolean gtk_label_leave_notify      (GtkWidget        *widget,
225                                              GdkEventCrossing *event);
226
227 static void     gtk_label_grab_focus        (GtkWidget        *widget);
228
229 static gboolean gtk_label_query_tooltip     (GtkWidget        *widget,
230                                              gint              x,
231                                              gint              y,
232                                              gboolean          keyboard_tip,
233                                              GtkTooltip       *tooltip);
234
235 static void gtk_label_set_text_internal          (GtkLabel      *label,
236                                                   gchar         *str);
237 static void gtk_label_set_label_internal         (GtkLabel      *label,
238                                                   gchar         *str);
239 static void gtk_label_set_use_markup_internal    (GtkLabel      *label,
240                                                   gboolean       val);
241 static void gtk_label_set_use_underline_internal (GtkLabel      *label,
242                                                   gboolean       val);
243 static void gtk_label_set_attributes_internal    (GtkLabel      *label,
244                                                   PangoAttrList *attrs);
245 static void gtk_label_set_uline_text_internal    (GtkLabel      *label,
246                                                   const gchar   *str);
247 static void gtk_label_set_pattern_internal       (GtkLabel      *label,
248                                                   const gchar   *pattern,
249                                                   gboolean       is_mnemonic);
250 static void gtk_label_set_markup_internal        (GtkLabel      *label,
251                                                   const gchar   *str,
252                                                   gboolean       with_uline);
253 static void gtk_label_recalculate                (GtkLabel      *label);
254 static void gtk_label_hierarchy_changed          (GtkWidget     *widget,
255                                                   GtkWidget     *old_toplevel);
256 static void gtk_label_screen_changed             (GtkWidget     *widget,
257                                                   GdkScreen     *old_screen);
258 static gboolean gtk_label_popup_menu             (GtkWidget     *widget);
259
260 static void gtk_label_create_window       (GtkLabel *label);
261 static void gtk_label_destroy_window      (GtkLabel *label);
262 static void gtk_label_ensure_select_info  (GtkLabel *label);
263 static void gtk_label_clear_select_info   (GtkLabel *label);
264 static void gtk_label_update_cursor       (GtkLabel *label);
265 static void gtk_label_clear_layout        (GtkLabel *label);
266 static void gtk_label_ensure_layout       (GtkLabel *label, gboolean guess_wrap_width);
267 static void gtk_label_invalidate_wrap_width (GtkLabel *label);
268 static void gtk_label_select_region_index (GtkLabel *label,
269                                            gint      anchor_index,
270                                            gint      end_index);
271
272 static gboolean gtk_label_mnemonic_activate (GtkWidget         *widget,
273                                              gboolean           group_cycling);
274 static void     gtk_label_setup_mnemonic    (GtkLabel          *label,
275                                              guint              last_key);
276 static void     gtk_label_drag_data_get     (GtkWidget         *widget,
277                                              GdkDragContext    *context,
278                                              GtkSelectionData  *selection_data,
279                                              guint              info,
280                                              guint              time);
281
282 static void     gtk_label_buildable_interface_init     (GtkBuildableIface *iface);
283 static gboolean gtk_label_buildable_custom_tag_start   (GtkBuildable     *buildable,
284                                                         GtkBuilder       *builder,
285                                                         GObject          *child,
286                                                         const gchar      *tagname,
287                                                         GMarkupParser    *parser,
288                                                         gpointer         *data);
289
290 static void     gtk_label_buildable_custom_finished    (GtkBuildable     *buildable,
291                                                         GtkBuilder       *builder,
292                                                         GObject          *child,
293                                                         const gchar      *tagname,
294                                                         gpointer          user_data);
295
296
297 static void connect_mnemonics_visible_notify    (GtkLabel   *label);
298 static gboolean      separate_uline_pattern     (const gchar  *str,
299                                                  guint        *accel_key,
300                                                  gchar       **new_str,
301                                                  gchar       **pattern);
302
303
304 /* For selectable labels: */
305 static void gtk_label_move_cursor        (GtkLabel        *label,
306                                           GtkMovementStep  step,
307                                           gint             count,
308                                           gboolean         extend_selection);
309 static void gtk_label_copy_clipboard     (GtkLabel        *label);
310 static void gtk_label_select_all         (GtkLabel        *label);
311 static void gtk_label_do_popup           (GtkLabel        *label,
312                                           GdkEventButton  *event);
313 static gint gtk_label_move_forward_word  (GtkLabel        *label,
314                                           gint             start);
315 static gint gtk_label_move_backward_word (GtkLabel        *label,
316                                           gint             start);
317
318 /* For links: */
319 static void          gtk_label_rescan_links     (GtkLabel  *label);
320 static void          gtk_label_clear_links      (GtkLabel  *label);
321 static gboolean      gtk_label_activate_link    (GtkLabel    *label,
322                                                  const gchar *uri);
323 static void          gtk_label_activate_current_link (GtkLabel *label);
324 static GtkLabelLink *gtk_label_get_current_link (GtkLabel  *label);
325 static void          gtk_label_get_link_colors  (GtkWidget  *widget,
326                                                  GdkColor  **link_color,
327                                                  GdkColor  **visited_link_color);
328 static void          emit_activate_link         (GtkLabel     *label,
329                                                  GtkLabelLink *link);
330
331 static void               gtk_label_size_request_init     (GtkSizeRequestIface *iface);
332 static GtkSizeRequestMode gtk_label_get_request_mode      (GtkSizeRequest      *widget);
333 static void               gtk_label_get_width             (GtkSizeRequest      *widget,
334                                                            gint                *minimum_size,
335                                                            gint                *natural_size);
336 static void               gtk_label_get_height            (GtkSizeRequest      *widget,
337                                                            gint                *minimum_size,
338                                                            gint                *natural_size);
339 static void               gtk_label_get_width_for_height  (GtkSizeRequest      *widget,
340                                                            gint                 height,
341                                                            gint                *minimum_width,
342                                                            gint                *natural_width);
343 static void               gtk_label_get_height_for_width  (GtkSizeRequest      *widget,
344                                                            gint                 width,
345                                                            gint                *minimum_height,
346                                                            gint                *natural_height);
347
348 static GQuark quark_angle = 0;
349
350 static GtkBuildableIface *buildable_parent_iface = NULL;
351
352 G_DEFINE_TYPE_WITH_CODE (GtkLabel, gtk_label, GTK_TYPE_MISC,
353                          G_IMPLEMENT_INTERFACE (GTK_TYPE_BUILDABLE,
354                                                 gtk_label_buildable_interface_init)
355                          G_IMPLEMENT_INTERFACE (GTK_TYPE_SIZE_REQUEST,
356                                                 gtk_label_size_request_init));
357
358 static void
359 add_move_binding (GtkBindingSet  *binding_set,
360                   guint           keyval,
361                   guint           modmask,
362                   GtkMovementStep step,
363                   gint            count)
364 {
365   g_return_if_fail ((modmask & GDK_SHIFT_MASK) == 0);
366   
367   gtk_binding_entry_add_signal (binding_set, keyval, modmask,
368                                 "move-cursor", 3,
369                                 G_TYPE_ENUM, step,
370                                 G_TYPE_INT, count,
371                                 G_TYPE_BOOLEAN, FALSE);
372
373   /* Selection-extending version */
374   gtk_binding_entry_add_signal (binding_set, keyval, modmask | GDK_SHIFT_MASK,
375                                 "move-cursor", 3,
376                                 G_TYPE_ENUM, step,
377                                 G_TYPE_INT, count,
378                                 G_TYPE_BOOLEAN, TRUE);
379 }
380
381 static void
382 gtk_label_class_init (GtkLabelClass *class)
383 {
384   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
385   GtkObjectClass *object_class = GTK_OBJECT_CLASS (class);
386   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
387   GtkBindingSet *binding_set;
388
389   quark_angle = g_quark_from_static_string ("angle");
390
391   gobject_class->set_property = gtk_label_set_property;
392   gobject_class->get_property = gtk_label_get_property;
393   gobject_class->finalize = gtk_label_finalize;
394
395   object_class->destroy = gtk_label_destroy;
396
397   widget_class->size_allocate = gtk_label_size_allocate;
398   widget_class->state_changed = gtk_label_state_changed;
399   widget_class->style_set = gtk_label_style_set;
400   widget_class->query_tooltip = gtk_label_query_tooltip;
401   widget_class->direction_changed = gtk_label_direction_changed;
402   widget_class->expose_event = gtk_label_expose;
403   widget_class->realize = gtk_label_realize;
404   widget_class->unrealize = gtk_label_unrealize;
405   widget_class->map = gtk_label_map;
406   widget_class->unmap = gtk_label_unmap;
407   widget_class->button_press_event = gtk_label_button_press;
408   widget_class->button_release_event = gtk_label_button_release;
409   widget_class->motion_notify_event = gtk_label_motion;
410   widget_class->leave_notify_event = gtk_label_leave_notify;
411   widget_class->hierarchy_changed = gtk_label_hierarchy_changed;
412   widget_class->screen_changed = gtk_label_screen_changed;
413   widget_class->mnemonic_activate = gtk_label_mnemonic_activate;
414   widget_class->drag_data_get = gtk_label_drag_data_get;
415   widget_class->grab_focus = gtk_label_grab_focus;
416   widget_class->popup_menu = gtk_label_popup_menu;
417   widget_class->focus = gtk_label_focus;
418
419   class->move_cursor = gtk_label_move_cursor;
420   class->copy_clipboard = gtk_label_copy_clipboard;
421   class->activate_link = gtk_label_activate_link;
422
423   /**
424    * GtkLabel::move-cursor:
425    * @entry: the object which received the signal
426    * @step: the granularity of the move, as a #GtkMovementStep
427    * @count: the number of @step units to move
428    * @extend_selection: %TRUE if the move should extend the selection
429    *
430    * The ::move-cursor signal is a
431    * <link linkend="keybinding-signals">keybinding signal</link>
432    * which gets emitted when the user initiates a cursor movement.
433    * If the cursor is not visible in @entry, this signal causes
434    * the viewport to be moved instead.
435    *
436    * Applications should not connect to it, but may emit it with
437    * g_signal_emit_by_name() if they need to control the cursor
438    * programmatically.
439    *
440    * The default bindings for this signal come in two variants,
441    * the variant with the Shift modifier extends the selection,
442    * the variant without the Shift modifer does not.
443    * There are too many key combinations to list them all here.
444    * <itemizedlist>
445    * <listitem>Arrow keys move by individual characters/lines</listitem>
446    * <listitem>Ctrl-arrow key combinations move by words/paragraphs</listitem>
447    * <listitem>Home/End keys move to the ends of the buffer</listitem>
448    * </itemizedlist>
449    */
450   signals[MOVE_CURSOR] = 
451     g_signal_new (I_("move-cursor"),
452                   G_OBJECT_CLASS_TYPE (gobject_class),
453                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
454                   G_STRUCT_OFFSET (GtkLabelClass, move_cursor),
455                   NULL, NULL,
456                   _gtk_marshal_VOID__ENUM_INT_BOOLEAN,
457                   G_TYPE_NONE, 3,
458                   GTK_TYPE_MOVEMENT_STEP,
459                   G_TYPE_INT,
460                   G_TYPE_BOOLEAN);
461
462    /**
463    * GtkLabel::copy-clipboard:
464    * @label: the object which received the signal
465    *
466    * The ::copy-clipboard signal is a
467    * <link linkend="keybinding-signals">keybinding signal</link>
468    * which gets emitted to copy the selection to the clipboard.
469    *
470    * The default binding for this signal is Ctrl-c.
471    */ 
472   signals[COPY_CLIPBOARD] =
473     g_signal_new (I_("copy-clipboard"),
474                   G_OBJECT_CLASS_TYPE (gobject_class),
475                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
476                   G_STRUCT_OFFSET (GtkLabelClass, copy_clipboard),
477                   NULL, NULL,
478                   _gtk_marshal_VOID__VOID,
479                   G_TYPE_NONE, 0);
480   
481   /**
482    * GtkLabel::populate-popup:
483    * @label: The label on which the signal is emitted
484    * @menu: the menu that is being populated
485    *
486    * The ::populate-popup signal gets emitted before showing the
487    * context menu of the label. Note that only selectable labels
488    * have context menus.
489    *
490    * If you need to add items to the context menu, connect
491    * to this signal and append your menuitems to the @menu.
492    */
493   signals[POPULATE_POPUP] =
494     g_signal_new (I_("populate-popup"),
495                   G_OBJECT_CLASS_TYPE (gobject_class),
496                   G_SIGNAL_RUN_LAST,
497                   G_STRUCT_OFFSET (GtkLabelClass, populate_popup),
498                   NULL, NULL,
499                   _gtk_marshal_VOID__OBJECT,
500                   G_TYPE_NONE, 1,
501                   GTK_TYPE_MENU);
502
503     /**
504      * GtkLabel::activate-current-link:
505      * @label: The label on which the signal was emitted
506      *
507      * A <link linkend="keybinding-signals">keybinding signal</link>
508      * which gets emitted when the user activates a link in the label.
509      *
510      * Applications may also emit the signal with g_signal_emit_by_name()
511      * if they need to control activation of URIs programmatically.
512      *
513      * The default bindings for this signal are all forms of the Enter key.
514      *
515      * Since: 2.18
516      */
517     signals[ACTIVATE_CURRENT_LINK] =
518       g_signal_new_class_handler ("activate-current-link",
519                                   G_TYPE_FROM_CLASS (object_class),
520                                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
521                                   G_CALLBACK (gtk_label_activate_current_link),
522                                   NULL, NULL,
523                                   _gtk_marshal_VOID__VOID,
524                                   G_TYPE_NONE, 0);
525
526     /**
527      * GtkLabel::activate-link:
528      * @label: The label on which the signal was emitted
529      * @uri: the URI that is activated
530      *
531      * The signal which gets emitted to activate a URI.
532      * Applications may connect to it to override the default behaviour,
533      * which is to call gtk_show_uri().
534      *
535      * Returns: %TRUE if the link has been activated
536      *
537      * Since: 2.18
538      */
539     signals[ACTIVATE_LINK] =
540       g_signal_new ("activate-link",
541                     G_TYPE_FROM_CLASS (object_class),
542                     G_SIGNAL_RUN_LAST,
543                     G_STRUCT_OFFSET (GtkLabelClass, activate_link),
544                     _gtk_boolean_handled_accumulator, NULL,
545                     _gtk_marshal_BOOLEAN__STRING,
546                     G_TYPE_BOOLEAN, 1, G_TYPE_STRING);
547
548   g_object_class_install_property (gobject_class,
549                                    PROP_LABEL,
550                                    g_param_spec_string ("label",
551                                                         P_("Label"),
552                                                         P_("The text of the label"),
553                                                         "",
554                                                         GTK_PARAM_READWRITE));
555   g_object_class_install_property (gobject_class,
556                                    PROP_ATTRIBUTES,
557                                    g_param_spec_boxed ("attributes",
558                                                        P_("Attributes"),
559                                                        P_("A list of style attributes to apply to the text of the label"),
560                                                        PANGO_TYPE_ATTR_LIST,
561                                                        GTK_PARAM_READWRITE));
562   g_object_class_install_property (gobject_class,
563                                    PROP_USE_MARKUP,
564                                    g_param_spec_boolean ("use-markup",
565                                                          P_("Use markup"),
566                                                          P_("The text of the label includes XML markup. See pango_parse_markup()"),
567                                                         FALSE,
568                                                         GTK_PARAM_READWRITE));
569   g_object_class_install_property (gobject_class,
570                                    PROP_USE_UNDERLINE,
571                                    g_param_spec_boolean ("use-underline",
572                                                          P_("Use underline"),
573                                                          P_("If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key"),
574                                                         FALSE,
575                                                         GTK_PARAM_READWRITE));
576
577   g_object_class_install_property (gobject_class,
578                                    PROP_JUSTIFY,
579                                    g_param_spec_enum ("justify",
580                                                       P_("Justification"),
581                                                       P_("The alignment of the lines in the text of the label relative to each other. This does NOT affect the alignment of the label within its allocation. See GtkMisc::xalign for that"),
582                                                       GTK_TYPE_JUSTIFICATION,
583                                                       GTK_JUSTIFY_LEFT,
584                                                       GTK_PARAM_READWRITE));
585
586   g_object_class_install_property (gobject_class,
587                                    PROP_PATTERN,
588                                    g_param_spec_string ("pattern",
589                                                         P_("Pattern"),
590                                                         P_("A string with _ characters in positions correspond to characters in the text to underline"),
591                                                         NULL,
592                                                         GTK_PARAM_WRITABLE));
593
594   g_object_class_install_property (gobject_class,
595                                    PROP_WRAP,
596                                    g_param_spec_boolean ("wrap",
597                                                         P_("Line wrap"),
598                                                         P_("If set, wrap lines if the text becomes too wide"),
599                                                         FALSE,
600                                                         GTK_PARAM_READWRITE));
601   /**
602    * GtkLabel:wrap-mode:
603    *
604    * If line wrapping is on (see the #GtkLabel:wrap property) this controls 
605    * how the line wrapping is done. The default is %PANGO_WRAP_WORD, which 
606    * means wrap on word boundaries.
607    *
608    * Since: 2.10
609    */
610   g_object_class_install_property (gobject_class,
611                                    PROP_WRAP_MODE,
612                                    g_param_spec_enum ("wrap-mode",
613                                                       P_("Line wrap mode"),
614                                                       P_("If wrap is set, controls how linewrapping is done"),
615                                                       PANGO_TYPE_WRAP_MODE,
616                                                       PANGO_WRAP_WORD,
617                                                       GTK_PARAM_READWRITE));
618   g_object_class_install_property (gobject_class,
619                                    PROP_SELECTABLE,
620                                    g_param_spec_boolean ("selectable",
621                                                         P_("Selectable"),
622                                                         P_("Whether the label text can be selected with the mouse"),
623                                                         FALSE,
624                                                         GTK_PARAM_READWRITE));
625   g_object_class_install_property (gobject_class,
626                                    PROP_MNEMONIC_KEYVAL,
627                                    g_param_spec_uint ("mnemonic-keyval",
628                                                       P_("Mnemonic key"),
629                                                       P_("The mnemonic accelerator key for this label"),
630                                                       0,
631                                                       G_MAXUINT,
632                                                       GDK_VoidSymbol,
633                                                       GTK_PARAM_READABLE));
634   g_object_class_install_property (gobject_class,
635                                    PROP_MNEMONIC_WIDGET,
636                                    g_param_spec_object ("mnemonic-widget",
637                                                         P_("Mnemonic widget"),
638                                                         P_("The widget to be activated when the label's mnemonic "
639                                                           "key is pressed"),
640                                                         GTK_TYPE_WIDGET,
641                                                         GTK_PARAM_READWRITE));
642
643   g_object_class_install_property (gobject_class,
644                                    PROP_CURSOR_POSITION,
645                                    g_param_spec_int ("cursor-position",
646                                                      P_("Cursor Position"),
647                                                      P_("The current position of the insertion cursor in chars"),
648                                                      0,
649                                                      G_MAXINT,
650                                                      0,
651                                                      GTK_PARAM_READABLE));
652   
653   g_object_class_install_property (gobject_class,
654                                    PROP_SELECTION_BOUND,
655                                    g_param_spec_int ("selection-bound",
656                                                      P_("Selection Bound"),
657                                                      P_("The position of the opposite end of the selection from the cursor in chars"),
658                                                      0,
659                                                      G_MAXINT,
660                                                      0,
661                                                      GTK_PARAM_READABLE));
662   
663   /**
664    * GtkLabel:ellipsize:
665    *
666    * The preferred place to ellipsize the string, if the label does 
667    * not have enough room to display the entire string, specified as a 
668    * #PangoEllisizeMode. 
669    *
670    * Note that setting this property to a value other than 
671    * %PANGO_ELLIPSIZE_NONE has the side-effect that the label requests 
672    * only enough space to display the ellipsis "...". In particular, this 
673    * means that ellipsizing labels do not work well in notebook tabs, unless 
674    * the tab's #GtkNotebook:tab-expand property is set to %TRUE. Other ways
675    * to set a label's width are gtk_widget_set_size_request() and
676    * gtk_label_set_width_chars().
677    *
678    * Since: 2.6
679    */
680   g_object_class_install_property (gobject_class,
681                                    PROP_ELLIPSIZE,
682                                    g_param_spec_enum ("ellipsize",
683                                                       P_("Ellipsize"),
684                                                       P_("The preferred place to ellipsize the string, if the label does not have enough room to display the entire string"),
685                                                       PANGO_TYPE_ELLIPSIZE_MODE,
686                                                       PANGO_ELLIPSIZE_NONE,
687                                                       GTK_PARAM_READWRITE));
688
689   /**
690    * GtkLabel:width-chars:
691    *
692    * The desired width of the label, in characters. If this property is set to
693    * -1, the width will be calculated automatically.
694    *
695    * See the section on <link linkend="label-text-layout">text layout</link>
696    * for details of how #GtkLabel:width-chars and #GtkLabel:max-width-chars
697    * determine the width of ellipsized and wrapped labels.
698    *
699    * Since: 2.6
700    **/
701   g_object_class_install_property (gobject_class,
702                                    PROP_WIDTH_CHARS,
703                                    g_param_spec_int ("width-chars",
704                                                      P_("Width In Characters"),
705                                                      P_("The desired width of the label, in characters"),
706                                                      -1,
707                                                      G_MAXINT,
708                                                      -1,
709                                                      GTK_PARAM_READWRITE));
710   
711   /**
712    * GtkLabel:single-line-mode:
713    * 
714    * Whether the label is in single line mode. In single line mode,
715    * the height of the label does not depend on the actual text, it
716    * is always set to ascent + descent of the font. This can be an
717    * advantage in situations where resizing the label because of text 
718    * changes would be distracting, e.g. in a statusbar.
719    *
720    * Since: 2.6
721    **/
722   g_object_class_install_property (gobject_class,
723                                    PROP_SINGLE_LINE_MODE,
724                                    g_param_spec_boolean ("single-line-mode",
725                                                         P_("Single Line Mode"),
726                                                         P_("Whether the label is in single line mode"),
727                                                         FALSE,
728                                                         GTK_PARAM_READWRITE));
729
730   /**
731    * GtkLabel:angle:
732    * 
733    * The angle that the baseline of the label makes with the horizontal,
734    * in degrees, measured counterclockwise. An angle of 90 reads from
735    * from bottom to top, an angle of 270, from top to bottom. Ignored
736    * if the label is selectable, wrapped, or ellipsized.
737    *
738    * Since: 2.6
739    **/
740   g_object_class_install_property (gobject_class,
741                                    PROP_ANGLE,
742                                    g_param_spec_double ("angle",
743                                                         P_("Angle"),
744                                                         P_("Angle at which the label is rotated"),
745                                                         0.0,
746                                                         360.0,
747                                                         0.0, 
748                                                         GTK_PARAM_READWRITE));
749   
750   /**
751    * GtkLabel:max-width-chars:
752    * 
753    * The desired maximum width of the label, in characters. If this property 
754    * is set to -1, the width will be calculated automatically.
755    *
756    * See the section on <link linkend="label-text-layout">text layout</link>
757    * for details of how #GtkLabel:width-chars and #GtkLabel:max-width-chars
758    * determine the width of ellipsized and wrapped labels.
759    *
760    * Since: 2.6
761    **/
762   g_object_class_install_property (gobject_class,
763                                    PROP_MAX_WIDTH_CHARS,
764                                    g_param_spec_int ("max-width-chars",
765                                                      P_("Maximum Width In Characters"),
766                                                      P_("The desired maximum width of the label, in characters"),
767                                                      -1,
768                                                      G_MAXINT,
769                                                      -1,
770                                                      GTK_PARAM_READWRITE));
771
772   /**
773    * GtkLabel:track-visited-links:
774    *
775    * Set this property to %TRUE to make the label track which links
776    * have been clicked. It will then apply the ::visited-link-color
777    * color, instead of ::link-color.
778    *
779    * Since: 2.18
780    */
781   g_object_class_install_property (gobject_class,
782                                    PROP_TRACK_VISITED_LINKS,
783                                    g_param_spec_boolean ("track-visited-links",
784                                                          P_("Track visited links"),
785                                                          P_("Whether visited links should be tracked"),
786                                                          TRUE,
787                                                          GTK_PARAM_READWRITE));
788   /*
789    * Key bindings
790    */
791
792   binding_set = gtk_binding_set_by_class (class);
793
794   /* Moving the insertion point */
795   add_move_binding (binding_set, GDK_Right, 0,
796                     GTK_MOVEMENT_VISUAL_POSITIONS, 1);
797   
798   add_move_binding (binding_set, GDK_Left, 0,
799                     GTK_MOVEMENT_VISUAL_POSITIONS, -1);
800
801   add_move_binding (binding_set, GDK_KP_Right, 0,
802                     GTK_MOVEMENT_VISUAL_POSITIONS, 1);
803   
804   add_move_binding (binding_set, GDK_KP_Left, 0,
805                     GTK_MOVEMENT_VISUAL_POSITIONS, -1);
806   
807   add_move_binding (binding_set, GDK_f, GDK_CONTROL_MASK,
808                     GTK_MOVEMENT_LOGICAL_POSITIONS, 1);
809   
810   add_move_binding (binding_set, GDK_b, GDK_CONTROL_MASK,
811                     GTK_MOVEMENT_LOGICAL_POSITIONS, -1);
812   
813   add_move_binding (binding_set, GDK_Right, GDK_CONTROL_MASK,
814                     GTK_MOVEMENT_WORDS, 1);
815
816   add_move_binding (binding_set, GDK_Left, GDK_CONTROL_MASK,
817                     GTK_MOVEMENT_WORDS, -1);
818
819   add_move_binding (binding_set, GDK_KP_Right, GDK_CONTROL_MASK,
820                     GTK_MOVEMENT_WORDS, 1);
821
822   add_move_binding (binding_set, GDK_KP_Left, GDK_CONTROL_MASK,
823                     GTK_MOVEMENT_WORDS, -1);
824
825   /* select all */
826   gtk_binding_entry_add_signal (binding_set, GDK_a, GDK_CONTROL_MASK,
827                                 "move-cursor", 3,
828                                 G_TYPE_ENUM, GTK_MOVEMENT_PARAGRAPH_ENDS,
829                                 G_TYPE_INT, -1,
830                                 G_TYPE_BOOLEAN, FALSE);
831
832   gtk_binding_entry_add_signal (binding_set, GDK_a, GDK_CONTROL_MASK,
833                                 "move-cursor", 3,
834                                 G_TYPE_ENUM, GTK_MOVEMENT_PARAGRAPH_ENDS,
835                                 G_TYPE_INT, 1,
836                                 G_TYPE_BOOLEAN, TRUE);
837
838   gtk_binding_entry_add_signal (binding_set, GDK_slash, GDK_CONTROL_MASK,
839                                 "move-cursor", 3,
840                                 G_TYPE_ENUM, GTK_MOVEMENT_PARAGRAPH_ENDS,
841                                 G_TYPE_INT, -1,
842                                 G_TYPE_BOOLEAN, FALSE);
843
844   gtk_binding_entry_add_signal (binding_set, GDK_slash, GDK_CONTROL_MASK,
845                                 "move-cursor", 3,
846                                 G_TYPE_ENUM, GTK_MOVEMENT_PARAGRAPH_ENDS,
847                                 G_TYPE_INT, 1,
848                                 G_TYPE_BOOLEAN, TRUE);
849
850   /* unselect all */
851   gtk_binding_entry_add_signal (binding_set, GDK_a, GDK_SHIFT_MASK | GDK_CONTROL_MASK,
852                                 "move-cursor", 3,
853                                 G_TYPE_ENUM, GTK_MOVEMENT_PARAGRAPH_ENDS,
854                                 G_TYPE_INT, 0,
855                                 G_TYPE_BOOLEAN, FALSE);
856
857   gtk_binding_entry_add_signal (binding_set, GDK_backslash, GDK_CONTROL_MASK,
858                                 "move-cursor", 3,
859                                 G_TYPE_ENUM, GTK_MOVEMENT_PARAGRAPH_ENDS,
860                                 G_TYPE_INT, 0,
861                                 G_TYPE_BOOLEAN, FALSE);
862
863   add_move_binding (binding_set, GDK_f, GDK_MOD1_MASK,
864                     GTK_MOVEMENT_WORDS, 1);
865
866   add_move_binding (binding_set, GDK_b, GDK_MOD1_MASK,
867                     GTK_MOVEMENT_WORDS, -1);
868
869   add_move_binding (binding_set, GDK_Home, 0,
870                     GTK_MOVEMENT_DISPLAY_LINE_ENDS, -1);
871
872   add_move_binding (binding_set, GDK_End, 0,
873                     GTK_MOVEMENT_DISPLAY_LINE_ENDS, 1);
874
875   add_move_binding (binding_set, GDK_KP_Home, 0,
876                     GTK_MOVEMENT_DISPLAY_LINE_ENDS, -1);
877
878   add_move_binding (binding_set, GDK_KP_End, 0,
879                     GTK_MOVEMENT_DISPLAY_LINE_ENDS, 1);
880   
881   add_move_binding (binding_set, GDK_Home, GDK_CONTROL_MASK,
882                     GTK_MOVEMENT_BUFFER_ENDS, -1);
883
884   add_move_binding (binding_set, GDK_End, GDK_CONTROL_MASK,
885                     GTK_MOVEMENT_BUFFER_ENDS, 1);
886
887   add_move_binding (binding_set, GDK_KP_Home, GDK_CONTROL_MASK,
888                     GTK_MOVEMENT_BUFFER_ENDS, -1);
889
890   add_move_binding (binding_set, GDK_KP_End, GDK_CONTROL_MASK,
891                     GTK_MOVEMENT_BUFFER_ENDS, 1);
892
893   /* copy */
894   gtk_binding_entry_add_signal (binding_set, GDK_c, GDK_CONTROL_MASK,
895                                 "copy-clipboard", 0);
896
897   gtk_binding_entry_add_signal (binding_set, GDK_Return, 0,
898                                 "activate-current-link", 0);
899   gtk_binding_entry_add_signal (binding_set, GDK_ISO_Enter, 0,
900                                 "activate-current-link", 0);
901   gtk_binding_entry_add_signal (binding_set, GDK_KP_Enter, 0,
902                                 "activate-current-link", 0);
903
904   gtk_settings_install_property (g_param_spec_boolean ("gtk-label-select-on-focus",
905                                                        P_("Select on focus"),
906                                                        P_("Whether to select the contents of a selectable label when it is focused"),
907                                                        TRUE,
908                                                        GTK_PARAM_READWRITE));
909
910   g_type_class_add_private (class, sizeof (GtkLabelPriv));
911 }
912
913 static void 
914 gtk_label_set_property (GObject      *object,
915                         guint         prop_id,
916                         const GValue *value,
917                         GParamSpec   *pspec)
918 {
919   GtkLabel *label = GTK_LABEL (object);
920
921   switch (prop_id)
922     {
923     case PROP_LABEL:
924       gtk_label_set_label (label, g_value_get_string (value));
925       break;
926     case PROP_ATTRIBUTES:
927       gtk_label_set_attributes (label, g_value_get_boxed (value));
928       break;
929     case PROP_USE_MARKUP:
930       gtk_label_set_use_markup (label, g_value_get_boolean (value));
931       break;
932     case PROP_USE_UNDERLINE:
933       gtk_label_set_use_underline (label, g_value_get_boolean (value));
934       break;
935     case PROP_JUSTIFY:
936       gtk_label_set_justify (label, g_value_get_enum (value));
937       break;
938     case PROP_PATTERN:
939       gtk_label_set_pattern (label, g_value_get_string (value));
940       break;
941     case PROP_WRAP:
942       gtk_label_set_line_wrap (label, g_value_get_boolean (value));
943       break;      
944     case PROP_WRAP_MODE:
945       gtk_label_set_line_wrap_mode (label, g_value_get_enum (value));
946       break;      
947     case PROP_SELECTABLE:
948       gtk_label_set_selectable (label, g_value_get_boolean (value));
949       break;      
950     case PROP_MNEMONIC_WIDGET:
951       gtk_label_set_mnemonic_widget (label, (GtkWidget*) g_value_get_object (value));
952       break;
953     case PROP_ELLIPSIZE:
954       gtk_label_set_ellipsize (label, g_value_get_enum (value));
955       break;
956     case PROP_WIDTH_CHARS:
957       gtk_label_set_width_chars (label, g_value_get_int (value));
958       break;
959     case PROP_SINGLE_LINE_MODE:
960       gtk_label_set_single_line_mode (label, g_value_get_boolean (value));
961       break;      
962     case PROP_ANGLE:
963       gtk_label_set_angle (label, g_value_get_double (value));
964       break;
965     case PROP_MAX_WIDTH_CHARS:
966       gtk_label_set_max_width_chars (label, g_value_get_int (value));
967       break;
968     case PROP_TRACK_VISITED_LINKS:
969       gtk_label_set_track_visited_links (label, g_value_get_boolean (value));
970       break;
971     default:
972       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
973       break;
974     }
975 }
976
977 static void 
978 gtk_label_get_property (GObject     *object,
979                         guint        prop_id,
980                         GValue      *value,
981                         GParamSpec  *pspec)
982 {
983   GtkLabel *label = GTK_LABEL (object);
984   GtkLabelPriv *priv = label->priv;
985
986   switch (prop_id)
987     {
988     case PROP_LABEL:
989       g_value_set_string (value, priv->label);
990       break;
991     case PROP_ATTRIBUTES:
992       g_value_set_boxed (value, priv->attrs);
993       break;
994     case PROP_USE_MARKUP:
995       g_value_set_boolean (value, priv->use_markup);
996       break;
997     case PROP_USE_UNDERLINE:
998       g_value_set_boolean (value, priv->use_underline);
999       break;
1000     case PROP_JUSTIFY:
1001       g_value_set_enum (value, priv->jtype);
1002       break;
1003     case PROP_WRAP:
1004       g_value_set_boolean (value, priv->wrap);
1005       break;
1006     case PROP_WRAP_MODE:
1007       g_value_set_enum (value, priv->wrap_mode);
1008       break;
1009     case PROP_SELECTABLE:
1010       g_value_set_boolean (value, gtk_label_get_selectable (label));
1011       break;
1012     case PROP_MNEMONIC_KEYVAL:
1013       g_value_set_uint (value, priv->mnemonic_keyval);
1014       break;
1015     case PROP_MNEMONIC_WIDGET:
1016       g_value_set_object (value, (GObject*) priv->mnemonic_widget);
1017       break;
1018     case PROP_CURSOR_POSITION:
1019       if (priv->select_info && priv->select_info->selectable)
1020         {
1021           gint offset = g_utf8_pointer_to_offset (priv->text,
1022                                                   priv->text + priv->select_info->selection_end);
1023           g_value_set_int (value, offset);
1024         }
1025       else
1026         g_value_set_int (value, 0);
1027       break;
1028     case PROP_SELECTION_BOUND:
1029       if (priv->select_info && priv->select_info->selectable)
1030         {
1031           gint offset = g_utf8_pointer_to_offset (priv->text,
1032                                                   priv->text + priv->select_info->selection_anchor);
1033           g_value_set_int (value, offset);
1034         }
1035       else
1036         g_value_set_int (value, 0);
1037       break;
1038     case PROP_ELLIPSIZE:
1039       g_value_set_enum (value, priv->ellipsize);
1040       break;
1041     case PROP_WIDTH_CHARS:
1042       g_value_set_int (value, gtk_label_get_width_chars (label));
1043       break;
1044     case PROP_SINGLE_LINE_MODE:
1045       g_value_set_boolean (value, gtk_label_get_single_line_mode (label));
1046       break;
1047     case PROP_ANGLE:
1048       g_value_set_double (value, gtk_label_get_angle (label));
1049       break;
1050     case PROP_MAX_WIDTH_CHARS:
1051       g_value_set_int (value, gtk_label_get_max_width_chars (label));
1052       break;
1053     case PROP_TRACK_VISITED_LINKS:
1054       g_value_set_boolean (value, gtk_label_get_track_visited_links (label));
1055       break;
1056     default:
1057       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1058       break;
1059     }
1060 }
1061
1062 static void
1063 gtk_label_init (GtkLabel *label)
1064 {
1065   GtkLabelPriv *priv;
1066
1067   label->priv = G_TYPE_INSTANCE_GET_PRIVATE (label,
1068                                              GTK_TYPE_LABEL,
1069                                              GtkLabelPriv);
1070   priv = label->priv;
1071
1072   gtk_widget_set_has_window (GTK_WIDGET (label), FALSE);
1073
1074   priv->width_chars = -1;
1075   priv->max_width_chars = -1;
1076   priv->wrap_width = -1;
1077   priv->label = NULL;
1078
1079   priv->jtype = GTK_JUSTIFY_LEFT;
1080   priv->wrap = FALSE;
1081   priv->wrap_mode = PANGO_WRAP_WORD;
1082   priv->ellipsize = PANGO_ELLIPSIZE_NONE;
1083
1084   priv->use_underline = FALSE;
1085   priv->use_markup = FALSE;
1086   priv->pattern_set = FALSE;
1087   priv->track_links = TRUE;
1088
1089   priv->mnemonic_keyval = GDK_VoidSymbol;
1090   priv->layout = NULL;
1091   priv->text = NULL;
1092   priv->attrs = NULL;
1093
1094   priv->mnemonic_widget = NULL;
1095   priv->mnemonic_window = NULL;
1096
1097   priv->mnemonics_visible = TRUE;
1098
1099   gtk_label_set_text (label, "");
1100 }
1101
1102
1103 static void
1104 gtk_label_buildable_interface_init (GtkBuildableIface *iface)
1105 {
1106   buildable_parent_iface = g_type_interface_peek_parent (iface);
1107
1108   iface->custom_tag_start = gtk_label_buildable_custom_tag_start;
1109   iface->custom_finished = gtk_label_buildable_custom_finished;
1110 }
1111
1112 typedef struct {
1113   GtkBuilder    *builder;
1114   GObject       *object;
1115   PangoAttrList *attrs;
1116 } PangoParserData;
1117
1118 static PangoAttribute *
1119 attribute_from_text (GtkBuilder   *builder,
1120                      const gchar  *name, 
1121                      const gchar  *value,
1122                      GError      **error)
1123 {
1124   PangoAttribute *attribute = NULL;
1125   PangoAttrType   type;
1126   PangoLanguage  *language;
1127   PangoFontDescription *font_desc;
1128   GdkColor       *color;
1129   GValue          val = { 0, };
1130
1131   if (!gtk_builder_value_from_string_type (builder, PANGO_TYPE_ATTR_TYPE, name, &val, error))
1132     return NULL;
1133
1134   type = g_value_get_enum (&val);
1135   g_value_unset (&val);
1136
1137   switch (type)
1138     {
1139       /* PangoAttrLanguage */
1140     case PANGO_ATTR_LANGUAGE:
1141       if ((language = pango_language_from_string (value)))
1142         {
1143           attribute = pango_attr_language_new (language);
1144           g_value_init (&val, G_TYPE_INT);
1145         }
1146       break;
1147       /* PangoAttrInt */
1148     case PANGO_ATTR_STYLE:
1149       if (gtk_builder_value_from_string_type (builder, PANGO_TYPE_STYLE, value, &val, error))
1150         attribute = pango_attr_style_new (g_value_get_enum (&val));
1151       break;
1152     case PANGO_ATTR_WEIGHT:
1153       if (gtk_builder_value_from_string_type (builder, PANGO_TYPE_WEIGHT, value, &val, error))
1154         attribute = pango_attr_weight_new (g_value_get_enum (&val));
1155       break;
1156     case PANGO_ATTR_VARIANT:
1157       if (gtk_builder_value_from_string_type (builder, PANGO_TYPE_VARIANT, value, &val, error))
1158         attribute = pango_attr_variant_new (g_value_get_enum (&val));
1159       break;
1160     case PANGO_ATTR_STRETCH:
1161       if (gtk_builder_value_from_string_type (builder, PANGO_TYPE_STRETCH, value, &val, error))
1162         attribute = pango_attr_stretch_new (g_value_get_enum (&val));
1163       break;
1164     case PANGO_ATTR_UNDERLINE:
1165       if (gtk_builder_value_from_string_type (builder, G_TYPE_BOOLEAN, value, &val, error))
1166         attribute = pango_attr_underline_new (g_value_get_boolean (&val));
1167       break;
1168     case PANGO_ATTR_STRIKETHROUGH:      
1169       if (gtk_builder_value_from_string_type (builder, G_TYPE_BOOLEAN, value, &val, error))
1170         attribute = pango_attr_strikethrough_new (g_value_get_boolean (&val));
1171       break;
1172     case PANGO_ATTR_GRAVITY:
1173       if (gtk_builder_value_from_string_type (builder, PANGO_TYPE_GRAVITY, value, &val, error))
1174         attribute = pango_attr_gravity_new (g_value_get_enum (&val));
1175       break;
1176     case PANGO_ATTR_GRAVITY_HINT:
1177       if (gtk_builder_value_from_string_type (builder, PANGO_TYPE_GRAVITY_HINT, 
1178                                               value, &val, error))
1179         attribute = pango_attr_gravity_hint_new (g_value_get_enum (&val));
1180       break;
1181       /* PangoAttrString */       
1182     case PANGO_ATTR_FAMILY:
1183       attribute = pango_attr_family_new (value);
1184       g_value_init (&val, G_TYPE_INT);
1185       break;
1186
1187       /* PangoAttrSize */         
1188     case PANGO_ATTR_SIZE:
1189       if (gtk_builder_value_from_string_type (builder, G_TYPE_INT, 
1190                                               value, &val, error))
1191         attribute = pango_attr_size_new (g_value_get_int (&val));
1192       break;
1193     case PANGO_ATTR_ABSOLUTE_SIZE:
1194       if (gtk_builder_value_from_string_type (builder, G_TYPE_INT, 
1195                                               value, &val, error))
1196         attribute = pango_attr_size_new_absolute (g_value_get_int (&val));
1197       break;
1198     
1199       /* PangoAttrFontDesc */
1200     case PANGO_ATTR_FONT_DESC:
1201       if ((font_desc = pango_font_description_from_string (value)))
1202         {
1203           attribute = pango_attr_font_desc_new (font_desc);
1204           pango_font_description_free (font_desc);
1205           g_value_init (&val, G_TYPE_INT);
1206         }
1207       break;
1208
1209       /* PangoAttrColor */
1210     case PANGO_ATTR_FOREGROUND:
1211       if (gtk_builder_value_from_string_type (builder, GDK_TYPE_COLOR, 
1212                                               value, &val, error))
1213         {
1214           color = g_value_get_boxed (&val);
1215           attribute = pango_attr_foreground_new (color->red, color->green, color->blue);
1216         }
1217       break;
1218     case PANGO_ATTR_BACKGROUND: 
1219       if (gtk_builder_value_from_string_type (builder, GDK_TYPE_COLOR, 
1220                                               value, &val, error))
1221         {
1222           color = g_value_get_boxed (&val);
1223           attribute = pango_attr_background_new (color->red, color->green, color->blue);
1224         }
1225       break;
1226     case PANGO_ATTR_UNDERLINE_COLOR:
1227       if (gtk_builder_value_from_string_type (builder, GDK_TYPE_COLOR, 
1228                                               value, &val, error))
1229         {
1230           color = g_value_get_boxed (&val);
1231           attribute = pango_attr_underline_color_new (color->red, color->green, color->blue);
1232         }
1233       break;
1234     case PANGO_ATTR_STRIKETHROUGH_COLOR:
1235       if (gtk_builder_value_from_string_type (builder, GDK_TYPE_COLOR, 
1236                                               value, &val, error))
1237         {
1238           color = g_value_get_boxed (&val);
1239           attribute = pango_attr_strikethrough_color_new (color->red, color->green, color->blue);
1240         }
1241       break;
1242       
1243       /* PangoAttrShape */
1244     case PANGO_ATTR_SHAPE:
1245       /* Unsupported for now */
1246       break;
1247       /* PangoAttrFloat */
1248     case PANGO_ATTR_SCALE:
1249       if (gtk_builder_value_from_string_type (builder, G_TYPE_DOUBLE, 
1250                                               value, &val, error))
1251         attribute = pango_attr_scale_new (g_value_get_double (&val));
1252       break;
1253
1254     case PANGO_ATTR_INVALID:
1255     case PANGO_ATTR_LETTER_SPACING:
1256     case PANGO_ATTR_RISE:
1257     case PANGO_ATTR_FALLBACK:
1258     default:
1259       break;
1260     }
1261
1262   g_value_unset (&val);
1263
1264   return attribute;
1265 }
1266
1267
1268 static void
1269 pango_start_element (GMarkupParseContext *context,
1270                      const gchar         *element_name,
1271                      const gchar        **names,
1272                      const gchar        **values,
1273                      gpointer             user_data,
1274                      GError             **error)
1275 {
1276   PangoParserData *data = (PangoParserData*)user_data;
1277   GValue val = { 0, };
1278   guint i;
1279   gint line_number, char_number;
1280
1281   if (strcmp (element_name, "attribute") == 0)
1282     {
1283       PangoAttribute *attr = NULL;
1284       const gchar *name = NULL;
1285       const gchar *value = NULL;
1286       const gchar *start = NULL;
1287       const gchar *end = NULL;
1288       guint start_val = 0;
1289       guint end_val   = G_MAXUINT;
1290
1291       for (i = 0; names[i]; i++)
1292         {
1293           if (strcmp (names[i], "name") == 0)
1294             name = values[i];
1295           else if (strcmp (names[i], "value") == 0)
1296             value = values[i];
1297           else if (strcmp (names[i], "start") == 0)
1298             start = values[i];
1299           else if (strcmp (names[i], "end") == 0)
1300             end = values[i];
1301           else
1302             {
1303               g_markup_parse_context_get_position (context,
1304                                                    &line_number,
1305                                                    &char_number);
1306               g_set_error (error,
1307                            GTK_BUILDER_ERROR,
1308                            GTK_BUILDER_ERROR_INVALID_ATTRIBUTE,
1309                            "%s:%d:%d '%s' is not a valid attribute of <%s>",
1310                            "<input>",
1311                            line_number, char_number, names[i], "attribute");
1312               return;
1313             }
1314         }
1315
1316       if (!name || !value)
1317         {
1318           g_markup_parse_context_get_position (context,
1319                                                &line_number,
1320                                                &char_number);
1321           g_set_error (error,
1322                        GTK_BUILDER_ERROR,
1323                        GTK_BUILDER_ERROR_MISSING_ATTRIBUTE,
1324                        "%s:%d:%d <%s> requires attribute \"%s\"",
1325                        "<input>",
1326                        line_number, char_number, "attribute",
1327                        name ? "value" : "name");
1328           return;
1329         }
1330
1331       if (start)
1332         {
1333           if (!gtk_builder_value_from_string_type (data->builder, G_TYPE_UINT, 
1334                                                    start, &val, error))
1335             return;
1336           start_val = g_value_get_uint (&val);
1337           g_value_unset (&val);
1338         }
1339
1340       if (end)
1341         {
1342           if (!gtk_builder_value_from_string_type (data->builder, G_TYPE_UINT, 
1343                                                    end, &val, error))
1344             return;
1345           end_val = g_value_get_uint (&val);
1346           g_value_unset (&val);
1347         }
1348
1349       attr = attribute_from_text (data->builder, name, value, error);
1350       attr->start_index = start_val;
1351       attr->end_index   = end_val;
1352
1353       if (attr)
1354         {
1355           if (!data->attrs)
1356             data->attrs = pango_attr_list_new ();
1357
1358           pango_attr_list_insert (data->attrs, attr);
1359         }
1360     }
1361   else if (strcmp (element_name, "attributes") == 0)
1362     ;
1363   else
1364     g_warning ("Unsupported tag for GtkLabel: %s\n", element_name);
1365 }
1366
1367 static const GMarkupParser pango_parser =
1368   {
1369     pango_start_element,
1370   };
1371
1372 static gboolean
1373 gtk_label_buildable_custom_tag_start (GtkBuildable     *buildable,
1374                                       GtkBuilder       *builder,
1375                                       GObject          *child,
1376                                       const gchar      *tagname,
1377                                       GMarkupParser    *parser,
1378                                       gpointer         *data)
1379 {
1380   if (buildable_parent_iface->custom_tag_start (buildable, builder, child, 
1381                                                 tagname, parser, data))
1382     return TRUE;
1383
1384   if (strcmp (tagname, "attributes") == 0)
1385     {
1386       PangoParserData *parser_data;
1387
1388       parser_data = g_slice_new0 (PangoParserData);
1389       parser_data->builder = g_object_ref (builder);
1390       parser_data->object = g_object_ref (buildable);
1391       *parser = pango_parser;
1392       *data = parser_data;
1393       return TRUE;
1394     }
1395   return FALSE;
1396 }
1397
1398 static void
1399 gtk_label_buildable_custom_finished (GtkBuildable *buildable,
1400                                      GtkBuilder   *builder,
1401                                      GObject      *child,
1402                                      const gchar  *tagname,
1403                                      gpointer      user_data)
1404 {
1405   PangoParserData *data;
1406
1407   buildable_parent_iface->custom_finished (buildable, builder, child, 
1408                                            tagname, user_data);
1409
1410   if (strcmp (tagname, "attributes") == 0)
1411     {
1412       data = (PangoParserData*)user_data;
1413
1414       if (data->attrs)
1415         {
1416           gtk_label_set_attributes (GTK_LABEL (buildable), data->attrs);
1417           pango_attr_list_unref (data->attrs);
1418         }
1419
1420       g_object_unref (data->object);
1421       g_object_unref (data->builder);
1422       g_slice_free (PangoParserData, data);
1423     }
1424 }
1425
1426
1427 /**
1428  * gtk_label_new:
1429  * @str: The text of the label
1430  *
1431  * Creates a new label with the given text inside it. You can
1432  * pass %NULL to get an empty label widget.
1433  *
1434  * Return value: the new #GtkLabel
1435  **/
1436 GtkWidget*
1437 gtk_label_new (const gchar *str)
1438 {
1439   GtkLabel *label;
1440   
1441   label = g_object_new (GTK_TYPE_LABEL, NULL);
1442
1443   if (str && *str)
1444     gtk_label_set_text (label, str);
1445   
1446   return GTK_WIDGET (label);
1447 }
1448
1449 /**
1450  * gtk_label_new_with_mnemonic:
1451  * @str: The text of the label, with an underscore in front of the
1452  *       mnemonic character
1453  *
1454  * Creates a new #GtkLabel, containing the text in @str.
1455  *
1456  * If characters in @str are preceded by an underscore, they are
1457  * underlined. If you need a literal underscore character in a label, use
1458  * '__' (two underscores). The first underlined character represents a 
1459  * keyboard accelerator called a mnemonic. The mnemonic key can be used 
1460  * to activate another widget, chosen automatically, or explicitly using
1461  * gtk_label_set_mnemonic_widget().
1462  * 
1463  * If gtk_label_set_mnemonic_widget() is not called, then the first 
1464  * activatable ancestor of the #GtkLabel will be chosen as the mnemonic 
1465  * widget. For instance, if the label is inside a button or menu item, 
1466  * the button or menu item will automatically become the mnemonic widget 
1467  * and be activated by the mnemonic.
1468  *
1469  * Return value: the new #GtkLabel
1470  **/
1471 GtkWidget*
1472 gtk_label_new_with_mnemonic (const gchar *str)
1473 {
1474   GtkLabel *label;
1475   
1476   label = g_object_new (GTK_TYPE_LABEL, NULL);
1477
1478   if (str && *str)
1479     gtk_label_set_text_with_mnemonic (label, str);
1480   
1481   return GTK_WIDGET (label);
1482 }
1483
1484 static gboolean
1485 gtk_label_mnemonic_activate (GtkWidget *widget,
1486                              gboolean   group_cycling)
1487 {
1488   GtkLabel *label = GTK_LABEL (widget);
1489   GtkLabelPriv *priv = label->priv;
1490   GtkWidget *parent;
1491
1492   if (priv->mnemonic_widget)
1493     return gtk_widget_mnemonic_activate (priv->mnemonic_widget, group_cycling);
1494
1495   /* Try to find the widget to activate by traversing the
1496    * widget's ancestry.
1497    */
1498   parent = widget->parent;
1499
1500   if (GTK_IS_NOTEBOOK (parent))
1501     return FALSE;
1502   
1503   while (parent)
1504     {
1505       if (gtk_widget_get_can_focus (parent) ||
1506           (!group_cycling && GTK_WIDGET_GET_CLASS (parent)->activate_signal) ||
1507           GTK_IS_NOTEBOOK (parent->parent) ||
1508           GTK_IS_MENU_ITEM (parent))
1509         return gtk_widget_mnemonic_activate (parent, group_cycling);
1510       parent = parent->parent;
1511     }
1512
1513   /* barf if there was nothing to activate */
1514   g_warning ("Couldn't find a target for a mnemonic activation.");
1515   gtk_widget_error_bell (widget);
1516
1517   return FALSE;
1518 }
1519
1520 static void
1521 gtk_label_setup_mnemonic (GtkLabel *label,
1522                           guint     last_key)
1523 {
1524   GtkLabelPriv *priv = label->priv;
1525   GtkWidget *widget = GTK_WIDGET (label);
1526   GtkWidget *toplevel;
1527   GtkWidget *mnemonic_menu;
1528   
1529   mnemonic_menu = g_object_get_data (G_OBJECT (label), "gtk-mnemonic-menu");
1530   
1531   if (last_key != GDK_VoidSymbol)
1532     {
1533       if (priv->mnemonic_window)
1534         {
1535           gtk_window_remove_mnemonic  (priv->mnemonic_window,
1536                                        last_key,
1537                                        widget);
1538           priv->mnemonic_window = NULL;
1539         }
1540       if (mnemonic_menu)
1541         {
1542           _gtk_menu_shell_remove_mnemonic (GTK_MENU_SHELL (mnemonic_menu),
1543                                            last_key,
1544                                            widget);
1545           mnemonic_menu = NULL;
1546         }
1547     }
1548   
1549   if (priv->mnemonic_keyval == GDK_VoidSymbol)
1550       goto done;
1551
1552   connect_mnemonics_visible_notify (GTK_LABEL (widget));
1553
1554   toplevel = gtk_widget_get_toplevel (widget);
1555   if (gtk_widget_is_toplevel (toplevel))
1556     {
1557       GtkWidget *menu_shell;
1558       
1559       menu_shell = gtk_widget_get_ancestor (widget,
1560                                             GTK_TYPE_MENU_SHELL);
1561
1562       if (menu_shell)
1563         {
1564           _gtk_menu_shell_add_mnemonic (GTK_MENU_SHELL (menu_shell),
1565                                         priv->mnemonic_keyval,
1566                                         widget);
1567           mnemonic_menu = menu_shell;
1568         }
1569       
1570       if (!GTK_IS_MENU (menu_shell))
1571         {
1572           gtk_window_add_mnemonic (GTK_WINDOW (toplevel),
1573                                    priv->mnemonic_keyval,
1574                                    widget);
1575           priv->mnemonic_window = GTK_WINDOW (toplevel);
1576         }
1577     }
1578   
1579  done:
1580   g_object_set_data (G_OBJECT (label), I_("gtk-mnemonic-menu"), mnemonic_menu);
1581 }
1582
1583 static void
1584 gtk_label_hierarchy_changed (GtkWidget *widget,
1585                              GtkWidget *old_toplevel)
1586 {
1587   GtkLabel *label = GTK_LABEL (widget);
1588   GtkLabelPriv *priv = label->priv;
1589
1590   gtk_label_setup_mnemonic (label, priv->mnemonic_keyval);
1591 }
1592
1593 static void
1594 label_shortcut_setting_apply (GtkLabel *label)
1595 {
1596   gtk_label_recalculate (label);
1597   if (GTK_IS_ACCEL_LABEL (label))
1598     gtk_accel_label_refetch (GTK_ACCEL_LABEL (label));
1599 }
1600
1601 static void
1602 label_shortcut_setting_traverse_container (GtkWidget *widget,
1603                                            gpointer   data)
1604 {
1605   if (GTK_IS_LABEL (widget))
1606     label_shortcut_setting_apply (GTK_LABEL (widget));
1607   else if (GTK_IS_CONTAINER (widget))
1608     gtk_container_forall (GTK_CONTAINER (widget),
1609                           label_shortcut_setting_traverse_container, data);
1610 }
1611
1612 static void
1613 label_shortcut_setting_changed (GtkSettings *settings)
1614 {
1615   GList *list, *l;
1616
1617   list = gtk_window_list_toplevels ();
1618
1619   for (l = list; l ; l = l->next)
1620     {
1621       GtkWidget *widget = l->data;
1622
1623       if (gtk_widget_get_settings (widget) == settings)
1624         gtk_container_forall (GTK_CONTAINER (widget),
1625                               label_shortcut_setting_traverse_container, NULL);
1626     }
1627
1628   g_list_free (list);
1629 }
1630
1631 static void
1632 mnemonics_visible_apply (GtkWidget *widget,
1633                          gboolean   mnemonics_visible)
1634 {
1635   GtkLabel *label = GTK_LABEL (widget);
1636   GtkLabelPriv *priv = label->priv;
1637
1638   mnemonics_visible = mnemonics_visible != FALSE;
1639
1640   if (priv->mnemonics_visible != mnemonics_visible)
1641     {
1642       priv->mnemonics_visible = mnemonics_visible;
1643
1644       gtk_label_recalculate (label);
1645     }
1646 }
1647
1648 static void
1649 label_mnemonics_visible_traverse_container (GtkWidget *widget,
1650                                             gpointer   data)
1651 {
1652   gboolean mnemonics_visible = GPOINTER_TO_INT (data);
1653
1654   _gtk_label_mnemonics_visible_apply_recursively (widget, mnemonics_visible);
1655 }
1656
1657 void
1658 _gtk_label_mnemonics_visible_apply_recursively (GtkWidget *widget,
1659                                                 gboolean   mnemonics_visible)
1660 {
1661   if (GTK_IS_LABEL (widget))
1662     mnemonics_visible_apply (widget, mnemonics_visible);
1663   else if (GTK_IS_CONTAINER (widget))
1664     gtk_container_forall (GTK_CONTAINER (widget),
1665                           label_mnemonics_visible_traverse_container,
1666                           GINT_TO_POINTER (mnemonics_visible));
1667 }
1668
1669 static void
1670 label_mnemonics_visible_changed (GtkWindow  *window,
1671                                  GParamSpec *pspec,
1672                                  gpointer    data)
1673 {
1674   gboolean mnemonics_visible;
1675
1676   g_object_get (window, "mnemonics-visible", &mnemonics_visible, NULL);
1677
1678   gtk_container_forall (GTK_CONTAINER (window),
1679                         label_mnemonics_visible_traverse_container,
1680                         GINT_TO_POINTER (mnemonics_visible));
1681 }
1682
1683 static void
1684 gtk_label_screen_changed (GtkWidget *widget,
1685                           GdkScreen *old_screen)
1686 {
1687   GtkSettings *settings;
1688   gboolean shortcuts_connected;
1689
1690   if (!gtk_widget_has_screen (widget))
1691     return;
1692
1693   settings = gtk_widget_get_settings (widget);
1694
1695   shortcuts_connected =
1696     GPOINTER_TO_INT (g_object_get_data (G_OBJECT (settings),
1697                                         "gtk-label-shortcuts-connected"));
1698
1699   if (! shortcuts_connected)
1700     {
1701       g_signal_connect (settings, "notify::gtk-enable-mnemonics",
1702                         G_CALLBACK (label_shortcut_setting_changed),
1703                         NULL);
1704       g_signal_connect (settings, "notify::gtk-enable-accels",
1705                         G_CALLBACK (label_shortcut_setting_changed),
1706                         NULL);
1707
1708       g_object_set_data (G_OBJECT (settings), "gtk-label-shortcuts-connected",
1709                          GINT_TO_POINTER (TRUE));
1710     }
1711
1712   label_shortcut_setting_apply (GTK_LABEL (widget));
1713 }
1714
1715
1716 static void
1717 label_mnemonic_widget_weak_notify (gpointer      data,
1718                                    GObject      *where_the_object_was)
1719 {
1720   GtkLabel *label = data;
1721   GtkLabelPriv *priv = label->priv;
1722
1723   priv->mnemonic_widget = NULL;
1724   g_object_notify (G_OBJECT (label), "mnemonic-widget");
1725 }
1726
1727 /**
1728  * gtk_label_set_mnemonic_widget:
1729  * @label: a #GtkLabel
1730  * @widget: (allow-none): the target #GtkWidget
1731  *
1732  * If the label has been set so that it has an mnemonic key (using
1733  * i.e. gtk_label_set_markup_with_mnemonic(),
1734  * gtk_label_set_text_with_mnemonic(), gtk_label_new_with_mnemonic()
1735  * or the "use_underline" property) the label can be associated with a
1736  * widget that is the target of the mnemonic. When the label is inside
1737  * a widget (like a #GtkButton or a #GtkNotebook tab) it is
1738  * automatically associated with the correct widget, but sometimes
1739  * (i.e. when the target is a #GtkEntry next to the label) you need to
1740  * set it explicitly using this function.
1741  *
1742  * The target widget will be accelerated by emitting the 
1743  * GtkWidget::mnemonic-activate signal on it. The default handler for 
1744  * this signal will activate the widget if there are no mnemonic collisions 
1745  * and toggle focus between the colliding widgets otherwise.
1746  **/
1747 void
1748 gtk_label_set_mnemonic_widget (GtkLabel  *label,
1749                                GtkWidget *widget)
1750 {
1751   GtkLabelPriv *priv;
1752
1753   g_return_if_fail (GTK_IS_LABEL (label));
1754
1755   priv = label->priv;
1756
1757   if (widget)
1758     g_return_if_fail (GTK_IS_WIDGET (widget));
1759
1760   if (priv->mnemonic_widget)
1761     {
1762       gtk_widget_remove_mnemonic_label (priv->mnemonic_widget, GTK_WIDGET (label));
1763       g_object_weak_unref (G_OBJECT (priv->mnemonic_widget),
1764                            label_mnemonic_widget_weak_notify,
1765                            label);
1766     }
1767   priv->mnemonic_widget = widget;
1768   if (priv->mnemonic_widget)
1769     {
1770       g_object_weak_ref (G_OBJECT (priv->mnemonic_widget),
1771                          label_mnemonic_widget_weak_notify,
1772                          label);
1773       gtk_widget_add_mnemonic_label (priv->mnemonic_widget, GTK_WIDGET (label));
1774     }
1775   
1776   g_object_notify (G_OBJECT (label), "mnemonic-widget");
1777 }
1778
1779 /**
1780  * gtk_label_get_mnemonic_widget:
1781  * @label: a #GtkLabel
1782  *
1783  * Retrieves the target of the mnemonic (keyboard shortcut) of this
1784  * label. See gtk_label_set_mnemonic_widget().
1785  *
1786  * Return value: the target of the label's mnemonic, or %NULL if none
1787  *               has been set and the default algorithm will be used.
1788  **/
1789 GtkWidget *
1790 gtk_label_get_mnemonic_widget (GtkLabel *label)
1791 {
1792   g_return_val_if_fail (GTK_IS_LABEL (label), NULL);
1793
1794   return label->priv->mnemonic_widget;
1795 }
1796
1797 /**
1798  * gtk_label_get_mnemonic_keyval:
1799  * @label: a #GtkLabel
1800  *
1801  * If the label has been set so that it has an mnemonic key this function
1802  * returns the keyval used for the mnemonic accelerator. If there is no
1803  * mnemonic set up it returns #GDK_VoidSymbol.
1804  *
1805  * Returns: GDK keyval usable for accelerators, or #GDK_VoidSymbol
1806  **/
1807 guint
1808 gtk_label_get_mnemonic_keyval (GtkLabel *label)
1809 {
1810   g_return_val_if_fail (GTK_IS_LABEL (label), GDK_VoidSymbol);
1811
1812   return label->priv->mnemonic_keyval;
1813 }
1814
1815 static void
1816 gtk_label_set_text_internal (GtkLabel *label,
1817                              gchar    *str)
1818 {
1819   GtkLabelPriv *priv = label->priv;
1820
1821   g_free (priv->text);
1822
1823   priv->text = str;
1824
1825   gtk_label_select_region_index (label, 0, 0);
1826 }
1827
1828 static void
1829 gtk_label_set_label_internal (GtkLabel *label,
1830                               gchar    *str)
1831 {
1832   GtkLabelPriv *priv = label->priv;
1833
1834   g_free (priv->label);
1835
1836   priv->label = str;
1837
1838   g_object_notify (G_OBJECT (label), "label");
1839 }
1840
1841 static void
1842 gtk_label_set_use_markup_internal (GtkLabel *label,
1843                                    gboolean  val)
1844 {
1845   GtkLabelPriv *priv = label->priv;
1846
1847   val = val != FALSE;
1848   if (priv->use_markup != val)
1849     {
1850       priv->use_markup = val;
1851
1852       g_object_notify (G_OBJECT (label), "use-markup");
1853     }
1854 }
1855
1856 static void
1857 gtk_label_set_use_underline_internal (GtkLabel *label,
1858                                       gboolean val)
1859 {
1860   GtkLabelPriv *priv = label->priv;
1861
1862   val = val != FALSE;
1863   if (priv->use_underline != val)
1864     {
1865       priv->use_underline = val;
1866
1867       g_object_notify (G_OBJECT (label), "use-underline");
1868     }
1869 }
1870
1871 static void
1872 gtk_label_compose_effective_attrs (GtkLabel *label)
1873 {
1874   GtkLabelPriv      *priv = label->priv;
1875   PangoAttrIterator *iter;
1876   PangoAttribute    *attr;
1877   GSList            *iter_attrs, *l;
1878
1879   if (priv->attrs)
1880     {
1881       if (priv->effective_attrs)
1882         {
1883           if ((iter = pango_attr_list_get_iterator (priv->attrs)))
1884             {
1885               do
1886                 {
1887                   iter_attrs = pango_attr_iterator_get_attrs (iter);
1888                   for (l = iter_attrs; l; l = l->next)
1889                     {
1890                       attr = l->data;
1891                       pango_attr_list_insert (priv->effective_attrs, attr);
1892                     }
1893                   g_slist_free (iter_attrs);
1894                 }
1895               while (pango_attr_iterator_next (iter));
1896               pango_attr_iterator_destroy (iter);
1897             }
1898         }
1899       else
1900         priv->effective_attrs =
1901           pango_attr_list_ref (priv->attrs);
1902     }
1903 }
1904
1905 static void
1906 gtk_label_set_attributes_internal (GtkLabel      *label,
1907                                    PangoAttrList *attrs)
1908 {
1909   GtkLabelPriv *priv = label->priv;
1910
1911   if (attrs)
1912     pango_attr_list_ref (attrs);
1913
1914   if (priv->attrs)
1915     pango_attr_list_unref (priv->attrs);
1916   priv->attrs = attrs;
1917
1918   g_object_notify (G_OBJECT (label), "attributes");
1919 }
1920
1921
1922 /* Calculates text, attrs and mnemonic_keyval from
1923  * label, use_underline and use_markup
1924  */
1925 static void
1926 gtk_label_recalculate (GtkLabel *label)
1927 {
1928   GtkLabelPriv *priv = label->priv;
1929   guint keyval = priv->mnemonic_keyval;
1930
1931   if (priv->use_markup)
1932     gtk_label_set_markup_internal (label, priv->label, priv->use_underline);
1933   else
1934     {
1935       if (priv->use_underline)
1936         gtk_label_set_uline_text_internal (label, priv->label);
1937       else
1938         {
1939           if (priv->effective_attrs)
1940             pango_attr_list_unref (priv->effective_attrs);
1941           priv->effective_attrs = NULL;
1942           gtk_label_set_text_internal (label, g_strdup (priv->label));
1943         }
1944     }
1945
1946   gtk_label_compose_effective_attrs (label);
1947
1948   if (!priv->use_underline)
1949     priv->mnemonic_keyval = GDK_VoidSymbol;
1950
1951   if (keyval != priv->mnemonic_keyval)
1952     {
1953       gtk_label_setup_mnemonic (label, keyval);
1954       g_object_notify (G_OBJECT (label), "mnemonic-keyval");
1955     }
1956
1957   gtk_label_clear_layout (label);
1958   gtk_label_clear_select_info (label);
1959   gtk_widget_queue_resize (GTK_WIDGET (label));
1960 }
1961
1962 /**
1963  * gtk_label_set_text:
1964  * @label: a #GtkLabel
1965  * @str: The text you want to set
1966  *
1967  * Sets the text within the #GtkLabel widget. It overwrites any text that
1968  * was there before.  
1969  *
1970  * This will also clear any previously set mnemonic accelerators.
1971  **/
1972 void
1973 gtk_label_set_text (GtkLabel    *label,
1974                     const gchar *str)
1975 {
1976   g_return_if_fail (GTK_IS_LABEL (label));
1977   
1978   g_object_freeze_notify (G_OBJECT (label));
1979
1980   gtk_label_set_label_internal (label, g_strdup (str ? str : ""));
1981   gtk_label_set_use_markup_internal (label, FALSE);
1982   gtk_label_set_use_underline_internal (label, FALSE);
1983   
1984   gtk_label_recalculate (label);
1985
1986   g_object_thaw_notify (G_OBJECT (label));
1987 }
1988
1989 /**
1990  * gtk_label_set_attributes:
1991  * @label: a #GtkLabel
1992  * @attrs: a #PangoAttrList
1993  * 
1994  * Sets a #PangoAttrList; the attributes in the list are applied to the
1995  * label text. 
1996  *
1997  * <note><para>The attributes set with this function will be applied
1998  * and merged with any other attributes previously effected by way
1999  * of the #GtkLabel:use-underline or #GtkLabel:use-markup properties.
2000  * While it is not recommended to mix markup strings with manually set
2001  * attributes, if you must; know that the attributes will be applied
2002  * to the label after the markup string is parsed.</para></note>
2003  **/
2004 void
2005 gtk_label_set_attributes (GtkLabel         *label,
2006                           PangoAttrList    *attrs)
2007 {
2008   g_return_if_fail (GTK_IS_LABEL (label));
2009
2010   gtk_label_set_attributes_internal (label, attrs);
2011
2012   gtk_label_recalculate (label);
2013
2014   gtk_label_clear_layout (label);
2015   gtk_widget_queue_resize (GTK_WIDGET (label));
2016 }
2017
2018 /**
2019  * gtk_label_get_attributes:
2020  * @label: a #GtkLabel
2021  *
2022  * Gets the attribute list that was set on the label using
2023  * gtk_label_set_attributes(), if any. This function does
2024  * not reflect attributes that come from the labels markup
2025  * (see gtk_label_set_markup()). If you want to get the
2026  * effective attributes for the label, use
2027  * pango_layout_get_attribute (gtk_label_get_layout (label)).
2028  *
2029  * Return value: the attribute list, or %NULL if none was set.
2030  **/
2031 PangoAttrList *
2032 gtk_label_get_attributes (GtkLabel *label)
2033 {
2034   g_return_val_if_fail (GTK_IS_LABEL (label), NULL);
2035
2036   return label->priv->attrs;
2037 }
2038
2039 /**
2040  * gtk_label_set_label:
2041  * @label: a #GtkLabel
2042  * @str: the new text to set for the label
2043  *
2044  * Sets the text of the label. The label is interpreted as
2045  * including embedded underlines and/or Pango markup depending
2046  * on the values of the #GtkLabel:use-underline" and
2047  * #GtkLabel:use-markup properties.
2048  **/
2049 void
2050 gtk_label_set_label (GtkLabel    *label,
2051                      const gchar *str)
2052 {
2053   g_return_if_fail (GTK_IS_LABEL (label));
2054
2055   g_object_freeze_notify (G_OBJECT (label));
2056
2057   gtk_label_set_label_internal (label, g_strdup (str ? str : ""));
2058   gtk_label_recalculate (label);
2059
2060   g_object_thaw_notify (G_OBJECT (label));
2061 }
2062
2063 /**
2064  * gtk_label_get_label:
2065  * @label: a #GtkLabel
2066  *
2067  * Fetches the text from a label widget including any embedded
2068  * underlines indicating mnemonics and Pango markup. (See
2069  * gtk_label_get_text()).
2070  *
2071  * Return value: the text of the label widget. This string is
2072  *   owned by the widget and must not be modified or freed.
2073  **/
2074 G_CONST_RETURN gchar *
2075 gtk_label_get_label (GtkLabel *label)
2076 {
2077   g_return_val_if_fail (GTK_IS_LABEL (label), NULL);
2078
2079   return label->priv->label;
2080 }
2081
2082 typedef struct
2083 {
2084   GtkLabel *label;
2085   GList *links;
2086   GString *new_str;
2087   GdkColor *link_color;
2088   GdkColor *visited_link_color;
2089 } UriParserData;
2090
2091 static void
2092 start_element_handler (GMarkupParseContext  *context,
2093                        const gchar          *element_name,
2094                        const gchar         **attribute_names,
2095                        const gchar         **attribute_values,
2096                        gpointer              user_data,
2097                        GError              **error)
2098 {
2099   GtkLabelPriv *priv;
2100   UriParserData *pdata = user_data;
2101
2102   if (strcmp (element_name, "a") == 0)
2103     {
2104       GtkLabelLink *link;
2105       const gchar *uri = NULL;
2106       const gchar *title = NULL;
2107       gboolean visited = FALSE;
2108       gint line_number;
2109       gint char_number;
2110       gint i;
2111       GdkColor *color = NULL;
2112
2113       g_markup_parse_context_get_position (context, &line_number, &char_number);
2114
2115       for (i = 0; attribute_names[i] != NULL; i++)
2116         {
2117           const gchar *attr = attribute_names[i];
2118
2119           if (strcmp (attr, "href") == 0)
2120             uri = attribute_values[i];
2121           else if (strcmp (attr, "title") == 0)
2122             title = attribute_values[i];
2123           else
2124             {
2125               g_set_error (error,
2126                            G_MARKUP_ERROR,
2127                            G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE,
2128                            "Attribute '%s' is not allowed on the <a> tag "
2129                            "on line %d char %d",
2130                             attr, line_number, char_number);
2131               return;
2132             }
2133         }
2134
2135       if (uri == NULL)
2136         {
2137           g_set_error (error,
2138                        G_MARKUP_ERROR,
2139                        G_MARKUP_ERROR_INVALID_CONTENT,
2140                        "Attribute 'href' was missing on the <a> tag "
2141                        "on line %d char %d",
2142                        line_number, char_number);
2143           return;
2144         }
2145
2146       visited = FALSE;
2147       priv = pdata->label->priv;
2148       if (priv->track_links && priv->select_info)
2149         {
2150           GList *l;
2151           for (l = priv->select_info->links; l; l = l->next)
2152             {
2153               link = l->data;
2154               if (strcmp (uri, link->uri) == 0)
2155                 {
2156                   visited = link->visited;
2157                   break;
2158                 }
2159             }
2160         }
2161
2162       if (visited)
2163         color = pdata->visited_link_color;
2164       else
2165         color = pdata->link_color;
2166
2167       g_string_append_printf (pdata->new_str,
2168                               "<span color=\"#%04x%04x%04x\" underline=\"single\">",
2169                               color->red,
2170                               color->green,
2171                               color->blue);
2172
2173       link = g_new0 (GtkLabelLink, 1);
2174       link->uri = g_strdup (uri);
2175       link->title = g_strdup (title);
2176       link->visited = visited;
2177       pdata->links = g_list_append (pdata->links, link);
2178     }
2179   else
2180     {
2181       gint i;
2182
2183       g_string_append_c (pdata->new_str, '<');
2184       g_string_append (pdata->new_str, element_name);
2185
2186       for (i = 0; attribute_names[i] != NULL; i++)
2187         {
2188           const gchar *attr  = attribute_names[i];
2189           const gchar *value = attribute_values[i];
2190           gchar *newvalue;
2191
2192           newvalue = g_markup_escape_text (value, -1);
2193
2194           g_string_append_c (pdata->new_str, ' ');
2195           g_string_append (pdata->new_str, attr);
2196           g_string_append (pdata->new_str, "=\"");
2197           g_string_append (pdata->new_str, newvalue);
2198           g_string_append_c (pdata->new_str, '\"');
2199
2200           g_free (newvalue);
2201         }
2202       g_string_append_c (pdata->new_str, '>');
2203     }
2204 }
2205
2206 static void
2207 end_element_handler (GMarkupParseContext  *context,
2208                      const gchar          *element_name,
2209                      gpointer              user_data,
2210                      GError              **error)
2211 {
2212   UriParserData *pdata = user_data;
2213
2214   if (!strcmp (element_name, "a"))
2215     g_string_append (pdata->new_str, "</span>");
2216   else
2217     {
2218       g_string_append (pdata->new_str, "</");
2219       g_string_append (pdata->new_str, element_name);
2220       g_string_append_c (pdata->new_str, '>');
2221     }
2222 }
2223
2224 static void
2225 text_handler (GMarkupParseContext  *context,
2226               const gchar          *text,
2227               gsize                 text_len,
2228               gpointer              user_data,
2229               GError              **error)
2230 {
2231   UriParserData *pdata = user_data;
2232   gchar *newtext;
2233
2234   newtext = g_markup_escape_text (text, text_len);
2235   g_string_append (pdata->new_str, newtext);
2236   g_free (newtext);
2237 }
2238
2239 static const GMarkupParser markup_parser =
2240 {
2241   start_element_handler,
2242   end_element_handler,
2243   text_handler,
2244   NULL,
2245   NULL
2246 };
2247
2248 static gboolean
2249 xml_isspace (gchar c)
2250 {
2251   return (c == ' ' || c == '\t' || c == '\n' || c == '\r');
2252 }
2253
2254 static void
2255 link_free (GtkLabelLink *link)
2256 {
2257   g_free (link->uri);
2258   g_free (link->title);
2259   g_free (link);
2260 }
2261
2262 static void
2263 gtk_label_get_link_colors (GtkWidget  *widget,
2264                            GdkColor  **link_color,
2265                            GdkColor  **visited_link_color)
2266 {
2267   gtk_widget_ensure_style (widget);
2268   gtk_widget_style_get (widget,
2269                         "link-color", link_color,
2270                         "visited-link-color", visited_link_color,
2271                         NULL);
2272   if (!*link_color)
2273     *link_color = gdk_color_copy (&default_link_color);
2274   if (!*visited_link_color)
2275     *visited_link_color = gdk_color_copy (&default_visited_link_color);
2276 }
2277
2278 static gboolean
2279 parse_uri_markup (GtkLabel     *label,
2280                   const gchar  *str,
2281                   gchar       **new_str,
2282                   GList       **links,
2283                   GError      **error)
2284 {
2285   GMarkupParseContext *context = NULL;
2286   const gchar *p, *end;
2287   gboolean needs_root = TRUE;
2288   gsize length;
2289   UriParserData pdata;
2290
2291   length = strlen (str);
2292   p = str;
2293   end = str + length;
2294
2295   pdata.label = label;
2296   pdata.links = NULL;
2297   pdata.new_str = g_string_sized_new (length);
2298
2299   gtk_label_get_link_colors (GTK_WIDGET (label), &pdata.link_color, &pdata.visited_link_color);
2300
2301   while (p != end && xml_isspace (*p))
2302     p++;
2303
2304   if (end - p >= 8 && strncmp (p, "<markup>", 8) == 0)
2305     needs_root = FALSE;
2306
2307   context = g_markup_parse_context_new (&markup_parser, 0, &pdata, NULL);
2308
2309   if (needs_root)
2310     {
2311       if (!g_markup_parse_context_parse (context, "<markup>", -1, error))
2312         goto failed;
2313     }
2314
2315   if (!g_markup_parse_context_parse (context, str, length, error))
2316     goto failed;
2317
2318   if (needs_root)
2319     {
2320       if (!g_markup_parse_context_parse (context, "</markup>", -1, error))
2321         goto failed;
2322     }
2323
2324   if (!g_markup_parse_context_end_parse (context, error))
2325     goto failed;
2326
2327   g_markup_parse_context_free (context);
2328
2329   *new_str = g_string_free (pdata.new_str, FALSE);
2330   *links = pdata.links;
2331
2332   gdk_color_free (pdata.link_color);
2333   gdk_color_free (pdata.visited_link_color);
2334
2335   return TRUE;
2336
2337 failed:
2338   g_markup_parse_context_free (context);
2339   g_string_free (pdata.new_str, TRUE);
2340   g_list_foreach (pdata.links, (GFunc)link_free, NULL);
2341   g_list_free (pdata.links);
2342   gdk_color_free (pdata.link_color);
2343   gdk_color_free (pdata.visited_link_color);
2344
2345   return FALSE;
2346 }
2347
2348 static void
2349 gtk_label_ensure_has_tooltip (GtkLabel *label)
2350 {
2351   GtkLabelPriv *priv = label->priv;
2352   GList *l;
2353   gboolean has_tooltip = FALSE;
2354
2355   for (l = priv->select_info->links; l; l = l->next)
2356     {
2357       GtkLabelLink *link = l->data;
2358       if (link->title)
2359         {
2360           has_tooltip = TRUE;
2361           break;
2362         }
2363     }
2364
2365   gtk_widget_set_has_tooltip (GTK_WIDGET (label), has_tooltip);
2366 }
2367
2368 static void
2369 gtk_label_set_markup_internal (GtkLabel    *label,
2370                                const gchar *str,
2371                                gboolean     with_uline)
2372 {
2373   GtkLabelPriv *priv = label->priv;
2374   gchar *text = NULL;
2375   GError *error = NULL;
2376   PangoAttrList *attrs = NULL;
2377   gunichar accel_char = 0;
2378   gchar *new_str;
2379   GList *links = NULL;
2380
2381   if (!parse_uri_markup (label, str, &new_str, &links, &error))
2382     {
2383       g_warning ("Failed to set text from markup due to error parsing markup: %s",
2384                  error->message);
2385       g_error_free (error);
2386       return;
2387     }
2388
2389   gtk_label_clear_links (label);
2390   if (links)
2391     {
2392       gtk_label_ensure_select_info (label);
2393       priv->select_info->links = links;
2394       gtk_label_ensure_has_tooltip (label);
2395     }
2396
2397   if (with_uline)
2398     {
2399       gboolean enable_mnemonics;
2400       gboolean auto_mnemonics;
2401
2402       g_object_get (gtk_widget_get_settings (GTK_WIDGET (label)),
2403                     "gtk-enable-mnemonics", &enable_mnemonics,
2404                     "gtk-auto-mnemonics", &auto_mnemonics,
2405                     NULL);
2406
2407       if (!(enable_mnemonics && priv->mnemonics_visible &&
2408             (!auto_mnemonics ||
2409              (gtk_widget_is_sensitive (GTK_WIDGET (label)) &&
2410               (!priv->mnemonic_widget ||
2411                gtk_widget_is_sensitive (priv->mnemonic_widget))))))
2412         {
2413           gchar *tmp;
2414           gchar *pattern;
2415           guint key;
2416
2417           if (separate_uline_pattern (new_str, &key, &tmp, &pattern))
2418             {
2419               g_free (new_str);
2420               new_str = tmp;
2421               g_free (pattern);
2422             }
2423         }
2424     }
2425
2426   if (!pango_parse_markup (new_str,
2427                            -1,
2428                            with_uline ? '_' : 0,
2429                            &attrs,
2430                            &text,
2431                            with_uline ? &accel_char : NULL,
2432                            &error))
2433     {
2434       g_warning ("Failed to set text from markup due to error parsing markup: %s",
2435                  error->message);
2436       g_free (new_str);
2437       g_error_free (error);
2438       return;
2439     }
2440
2441   g_free (new_str);
2442
2443   if (text)
2444     gtk_label_set_text_internal (label, text);
2445
2446   if (attrs)
2447     {
2448       if (priv->effective_attrs)
2449         pango_attr_list_unref (priv->effective_attrs);
2450       priv->effective_attrs = attrs;
2451     }
2452
2453   if (accel_char != 0)
2454     priv->mnemonic_keyval = gdk_keyval_to_lower (gdk_unicode_to_keyval (accel_char));
2455   else
2456     priv->mnemonic_keyval = GDK_VoidSymbol;
2457 }
2458
2459 /**
2460  * gtk_label_set_markup:
2461  * @label: a #GtkLabel
2462  * @str: a markup string (see <link linkend="PangoMarkupFormat">Pango markup format</link>)
2463  * 
2464  * Parses @str which is marked up with the <link
2465  * linkend="PangoMarkupFormat">Pango text markup language</link>, setting the
2466  * label's text and attribute list based on the parse results. If the @str is
2467  * external data, you may need to escape it with g_markup_escape_text() or
2468  * g_markup_printf_escaped()<!-- -->:
2469  * |[
2470  * char *markup;
2471  *   
2472  * markup = g_markup_printf_escaped ("&lt;span style=\"italic\"&gt;&percnt;s&lt;/span&gt;", str);
2473  * gtk_label_set_markup (GTK_LABEL (label), markup);
2474  * g_free (markup);
2475  * ]|
2476  **/
2477 void
2478 gtk_label_set_markup (GtkLabel    *label,
2479                       const gchar *str)
2480 {
2481   GtkLabelPriv *priv;
2482
2483   g_return_if_fail (GTK_IS_LABEL (label));
2484
2485   priv = label->priv;
2486
2487   g_object_freeze_notify (G_OBJECT (label));
2488
2489   gtk_label_set_label_internal (label, g_strdup (str ? str : ""));
2490   gtk_label_set_use_markup_internal (label, TRUE);
2491   gtk_label_set_use_underline_internal (label, FALSE);
2492   
2493   gtk_label_recalculate (label);
2494
2495   g_object_thaw_notify (G_OBJECT (label));
2496 }
2497
2498 /**
2499  * gtk_label_set_markup_with_mnemonic:
2500  * @label: a #GtkLabel
2501  * @str: a markup string (see <link linkend="PangoMarkupFormat">Pango markup format</link>)
2502  * 
2503  * Parses @str which is marked up with the <link linkend="PangoMarkupFormat">Pango text markup language</link>,
2504  * setting the label's text and attribute list based on the parse results.
2505  * If characters in @str are preceded by an underscore, they are underlined
2506  * indicating that they represent a keyboard accelerator called a mnemonic.
2507  *
2508  * The mnemonic key can be used to activate another widget, chosen 
2509  * automatically, or explicitly using gtk_label_set_mnemonic_widget().
2510  **/
2511 void
2512 gtk_label_set_markup_with_mnemonic (GtkLabel    *label,
2513                                     const gchar *str)
2514 {
2515   GtkLabelPriv *priv;
2516
2517   g_return_if_fail (GTK_IS_LABEL (label));
2518
2519   priv = label->priv;
2520
2521   g_object_freeze_notify (G_OBJECT (label));
2522
2523   gtk_label_set_label_internal (label, g_strdup (str ? str : ""));
2524   gtk_label_set_use_markup_internal (label, TRUE);
2525   gtk_label_set_use_underline_internal (label, TRUE);
2526   
2527   gtk_label_recalculate (label);
2528
2529   g_object_thaw_notify (G_OBJECT (label));
2530 }
2531
2532 /**
2533  * gtk_label_get_text:
2534  * @label: a #GtkLabel
2535  * 
2536  * Fetches the text from a label widget, as displayed on the
2537  * screen. This does not include any embedded underlines
2538  * indicating mnemonics or Pango markup. (See gtk_label_get_label())
2539  * 
2540  * Return value: the text in the label widget. This is the internal
2541  *   string used by the label, and must not be modified.
2542  **/
2543 G_CONST_RETURN gchar *
2544 gtk_label_get_text (GtkLabel *label)
2545 {
2546   g_return_val_if_fail (GTK_IS_LABEL (label), NULL);
2547
2548   return label->priv->text;
2549 }
2550
2551 static PangoAttrList *
2552 gtk_label_pattern_to_attrs (GtkLabel      *label,
2553                             const gchar   *pattern)
2554 {
2555   GtkLabelPriv *priv = label->priv;
2556   const char *start;
2557   const char *p = priv->text;
2558   const char *q = pattern;
2559   PangoAttrList *attrs;
2560
2561   attrs = pango_attr_list_new ();
2562
2563   while (1)
2564     {
2565       while (*p && *q && *q != '_')
2566         {
2567           p = g_utf8_next_char (p);
2568           q++;
2569         }
2570       start = p;
2571       while (*p && *q && *q == '_')
2572         {
2573           p = g_utf8_next_char (p);
2574           q++;
2575         }
2576       
2577       if (p > start)
2578         {
2579           PangoAttribute *attr = pango_attr_underline_new (PANGO_UNDERLINE_LOW);
2580           attr->start_index = start - priv->text;
2581           attr->end_index = p - priv->text;
2582           
2583           pango_attr_list_insert (attrs, attr);
2584         }
2585       else
2586         break;
2587     }
2588
2589   return attrs;
2590 }
2591
2592 static void
2593 gtk_label_set_pattern_internal (GtkLabel    *label,
2594                                 const gchar *pattern,
2595                                 gboolean     is_mnemonic)
2596 {
2597   GtkLabelPriv *priv = label->priv;
2598   PangoAttrList *attrs;
2599   gboolean enable_mnemonics;
2600   gboolean auto_mnemonics;
2601
2602   if (priv->pattern_set)
2603     return;
2604
2605   if (is_mnemonic)
2606     {
2607       g_object_get (gtk_widget_get_settings (GTK_WIDGET (label)),
2608                     "gtk-enable-mnemonics", &enable_mnemonics,
2609                     "gtk-auto-mnemonics", &auto_mnemonics,
2610                     NULL);
2611
2612       if (enable_mnemonics && priv->mnemonics_visible && pattern &&
2613           (!auto_mnemonics ||
2614            (gtk_widget_is_sensitive (GTK_WIDGET (label)) &&
2615             (!priv->mnemonic_widget ||
2616              gtk_widget_is_sensitive (priv->mnemonic_widget)))))
2617         attrs = gtk_label_pattern_to_attrs (label, pattern);
2618       else
2619         attrs = NULL;
2620     }
2621   else
2622     attrs = gtk_label_pattern_to_attrs (label, pattern);
2623
2624   if (priv->effective_attrs)
2625     pango_attr_list_unref (priv->effective_attrs);
2626   priv->effective_attrs = attrs;
2627 }
2628
2629 void
2630 gtk_label_set_pattern (GtkLabel    *label,
2631                        const gchar *pattern)
2632 {
2633   GtkLabelPriv *priv = label->priv;
2634
2635   g_return_if_fail (GTK_IS_LABEL (label));
2636
2637   priv = label->priv;
2638
2639   priv->pattern_set = FALSE;
2640
2641   if (pattern)
2642     {
2643       gtk_label_set_pattern_internal (label, pattern, FALSE);
2644       priv->pattern_set = TRUE;
2645     }
2646   else
2647     gtk_label_recalculate (label);
2648
2649   gtk_label_clear_layout (label);
2650   gtk_widget_queue_resize (GTK_WIDGET (label));
2651 }
2652
2653
2654 /**
2655  * gtk_label_set_justify:
2656  * @label: a #GtkLabel
2657  * @jtype: a #GtkJustification
2658  *
2659  * Sets the alignment of the lines in the text of the label relative to
2660  * each other. %GTK_JUSTIFY_LEFT is the default value when the
2661  * widget is first created with gtk_label_new(). If you instead want
2662  * to set the alignment of the label as a whole, use
2663  * gtk_misc_set_alignment() instead. gtk_label_set_justify() has no
2664  * effect on labels containing only a single line.
2665  **/
2666 void
2667 gtk_label_set_justify (GtkLabel        *label,
2668                        GtkJustification jtype)
2669 {
2670   GtkLabelPriv *priv;
2671
2672   g_return_if_fail (GTK_IS_LABEL (label));
2673   g_return_if_fail (jtype >= GTK_JUSTIFY_LEFT && jtype <= GTK_JUSTIFY_FILL);
2674
2675   priv = label->priv;
2676
2677   if ((GtkJustification) priv->jtype != jtype)
2678     {
2679       priv->jtype = jtype;
2680
2681       /* No real need to be this drastic, but easier than duplicating the code */
2682       gtk_label_clear_layout (label);
2683       
2684       g_object_notify (G_OBJECT (label), "justify");
2685       gtk_widget_queue_resize (GTK_WIDGET (label));
2686     }
2687 }
2688
2689 /**
2690  * gtk_label_get_justify:
2691  * @label: a #GtkLabel
2692  *
2693  * Returns the justification of the label. See gtk_label_set_justify().
2694  *
2695  * Return value: #GtkJustification
2696  **/
2697 GtkJustification
2698 gtk_label_get_justify (GtkLabel *label)
2699 {
2700   g_return_val_if_fail (GTK_IS_LABEL (label), 0);
2701
2702   return label->priv->jtype;
2703 }
2704
2705 /**
2706  * gtk_label_set_ellipsize:
2707  * @label: a #GtkLabel
2708  * @mode: a #PangoEllipsizeMode
2709  *
2710  * Sets the mode used to ellipsize (add an ellipsis: "...") to the text 
2711  * if there is not enough space to render the entire string.
2712  *
2713  * Since: 2.6
2714  **/
2715 void
2716 gtk_label_set_ellipsize (GtkLabel          *label,
2717                          PangoEllipsizeMode mode)
2718 {
2719   GtkLabelPriv *priv;
2720
2721   g_return_if_fail (GTK_IS_LABEL (label));
2722   g_return_if_fail (mode >= PANGO_ELLIPSIZE_NONE && mode <= PANGO_ELLIPSIZE_END);
2723
2724   priv = label->priv;
2725
2726   if ((PangoEllipsizeMode) priv->ellipsize != mode)
2727     {
2728       priv->ellipsize = mode;
2729
2730       /* No real need to be this drastic, but easier than duplicating the code */
2731       gtk_label_clear_layout (label);
2732       
2733       g_object_notify (G_OBJECT (label), "ellipsize");
2734       gtk_widget_queue_resize (GTK_WIDGET (label));
2735     }
2736 }
2737
2738 /**
2739  * gtk_label_get_ellipsize:
2740  * @label: a #GtkLabel
2741  *
2742  * Returns the ellipsizing position of the label. See gtk_label_set_ellipsize().
2743  *
2744  * Return value: #PangoEllipsizeMode
2745  *
2746  * Since: 2.6
2747  **/
2748 PangoEllipsizeMode
2749 gtk_label_get_ellipsize (GtkLabel *label)
2750 {
2751   g_return_val_if_fail (GTK_IS_LABEL (label), PANGO_ELLIPSIZE_NONE);
2752
2753   return label->priv->ellipsize;
2754 }
2755
2756 /**
2757  * gtk_label_set_width_chars:
2758  * @label: a #GtkLabel
2759  * @n_chars: the new desired width, in characters.
2760  * 
2761  * Sets the desired width in characters of @label to @n_chars.
2762  * 
2763  * Since: 2.6
2764  **/
2765 void
2766 gtk_label_set_width_chars (GtkLabel *label,
2767                            gint      n_chars)
2768 {
2769   GtkLabelPriv *priv;
2770
2771   g_return_if_fail (GTK_IS_LABEL (label));
2772
2773   priv = label->priv;
2774
2775   if (priv->width_chars != n_chars)
2776     {
2777       priv->width_chars = n_chars;
2778       g_object_notify (G_OBJECT (label), "width-chars");
2779       gtk_label_invalidate_wrap_width (label);
2780       gtk_widget_queue_resize (GTK_WIDGET (label));
2781     }
2782 }
2783
2784 /**
2785  * gtk_label_get_width_chars:
2786  * @label: a #GtkLabel
2787  * 
2788  * Retrieves the desired width of @label, in characters. See
2789  * gtk_label_set_width_chars().
2790  * 
2791  * Return value: the width of the label in characters.
2792  * 
2793  * Since: 2.6
2794  **/
2795 gint
2796 gtk_label_get_width_chars (GtkLabel *label)
2797 {
2798   g_return_val_if_fail (GTK_IS_LABEL (label), -1);
2799
2800   return label->priv->width_chars;
2801 }
2802
2803 /**
2804  * gtk_label_set_max_width_chars:
2805  * @label: a #GtkLabel
2806  * @n_chars: the new desired maximum width, in characters.
2807  * 
2808  * Sets the desired maximum width in characters of @label to @n_chars.
2809  * 
2810  * Since: 2.6
2811  **/
2812 void
2813 gtk_label_set_max_width_chars (GtkLabel *label,
2814                                gint      n_chars)
2815 {
2816   GtkLabelPriv *priv;
2817
2818   g_return_if_fail (GTK_IS_LABEL (label));
2819
2820   priv = label->priv;
2821
2822   if (priv->max_width_chars != n_chars)
2823     {
2824       priv->max_width_chars = n_chars;
2825
2826       g_object_notify (G_OBJECT (label), "max-width-chars");
2827       gtk_label_invalidate_wrap_width (label);
2828       gtk_widget_queue_resize (GTK_WIDGET (label));
2829     }
2830 }
2831
2832 /**
2833  * gtk_label_get_max_width_chars:
2834  * @label: a #GtkLabel
2835  * 
2836  * Retrieves the desired maximum width of @label, in characters. See
2837  * gtk_label_set_width_chars().
2838  * 
2839  * Return value: the maximum width of the label in characters.
2840  * 
2841  * Since: 2.6
2842  **/
2843 gint
2844 gtk_label_get_max_width_chars (GtkLabel *label)
2845 {
2846   g_return_val_if_fail (GTK_IS_LABEL (label), -1);
2847
2848   return label->priv->max_width_chars;
2849 }
2850
2851 /**
2852  * gtk_label_set_line_wrap:
2853  * @label: a #GtkLabel
2854  * @wrap: the setting
2855  *
2856  * Toggles line wrapping within the #GtkLabel widget. %TRUE makes it break
2857  * lines if text exceeds the widget's size. %FALSE lets the text get cut off
2858  * by the edge of the widget if it exceeds the widget size.
2859  *
2860  * Note that setting line wrapping to %TRUE does not make the label
2861  * wrap at its parent container's width, because GTK+ widgets
2862  * conceptually can't make their requisition depend on the parent
2863  * container's size. For a label that wraps at a specific position,
2864  * set the label's width using gtk_widget_set_size_request().
2865  **/
2866 void
2867 gtk_label_set_line_wrap (GtkLabel *label,
2868                          gboolean  wrap)
2869 {
2870   GtkLabelPriv *priv;
2871
2872   g_return_if_fail (GTK_IS_LABEL (label));
2873
2874   priv = label->priv;
2875
2876   wrap = wrap != FALSE;
2877
2878   if (priv->wrap != wrap)
2879     {
2880       priv->wrap = wrap;
2881
2882       gtk_label_clear_layout (label);
2883       gtk_widget_queue_resize (GTK_WIDGET (label));
2884       g_object_notify (G_OBJECT (label), "wrap");
2885     }
2886 }
2887
2888 /**
2889  * gtk_label_get_line_wrap:
2890  * @label: a #GtkLabel
2891  *
2892  * Returns whether lines in the label are automatically wrapped. 
2893  * See gtk_label_set_line_wrap().
2894  *
2895  * Return value: %TRUE if the lines of the label are automatically wrapped.
2896  */
2897 gboolean
2898 gtk_label_get_line_wrap (GtkLabel *label)
2899 {
2900   g_return_val_if_fail (GTK_IS_LABEL (label), FALSE);
2901
2902   return label->priv->wrap;
2903 }
2904
2905 /**
2906  * gtk_label_set_line_wrap_mode:
2907  * @label: a #GtkLabel
2908  * @wrap_mode: the line wrapping mode
2909  *
2910  * If line wrapping is on (see gtk_label_set_line_wrap()) this controls how
2911  * the line wrapping is done. The default is %PANGO_WRAP_WORD which means
2912  * wrap on word boundaries.
2913  *
2914  * Since: 2.10
2915  **/
2916 void
2917 gtk_label_set_line_wrap_mode (GtkLabel *label,
2918                               PangoWrapMode wrap_mode)
2919 {
2920   GtkLabelPriv *priv;
2921
2922   g_return_if_fail (GTK_IS_LABEL (label));
2923
2924   priv = label->priv;
2925
2926   if (priv->wrap_mode != wrap_mode)
2927     {
2928       priv->wrap_mode = wrap_mode;
2929       g_object_notify (G_OBJECT (label), "wrap-mode");
2930       
2931       gtk_widget_queue_resize (GTK_WIDGET (label));
2932     }
2933 }
2934
2935 /**
2936  * gtk_label_get_line_wrap_mode:
2937  * @label: a #GtkLabel
2938  *
2939  * Returns line wrap mode used by the label. See gtk_label_set_line_wrap_mode().
2940  *
2941  * Return value: %TRUE if the lines of the label are automatically wrapped.
2942  *
2943  * Since: 2.10
2944  */
2945 PangoWrapMode
2946 gtk_label_get_line_wrap_mode (GtkLabel *label)
2947 {
2948   g_return_val_if_fail (GTK_IS_LABEL (label), FALSE);
2949
2950   return label->priv->wrap_mode;
2951 }
2952
2953 static void
2954 gtk_label_destroy (GtkObject *object)
2955 {
2956   GtkLabel *label = GTK_LABEL (object);
2957
2958   gtk_label_set_mnemonic_widget (label, NULL);
2959
2960   GTK_OBJECT_CLASS (gtk_label_parent_class)->destroy (object);
2961 }
2962
2963 static void
2964 gtk_label_finalize (GObject *object)
2965 {
2966   GtkLabel *label = GTK_LABEL (object);
2967   GtkLabelPriv *priv = label->priv;
2968
2969   g_free (priv->label);
2970   g_free (priv->text);
2971
2972   if (priv->layout)
2973     g_object_unref (priv->layout);
2974
2975   if (priv->attrs)
2976     pango_attr_list_unref (priv->attrs);
2977
2978   if (priv->effective_attrs)
2979     pango_attr_list_unref (priv->effective_attrs);
2980
2981   gtk_label_clear_links (label);
2982   g_free (priv->select_info);
2983
2984   G_OBJECT_CLASS (gtk_label_parent_class)->finalize (object);
2985 }
2986
2987 static void
2988 gtk_label_clear_layout (GtkLabel *label)
2989 {
2990   GtkLabelPriv *priv = label->priv;
2991
2992   if (priv->layout)
2993     {
2994       g_object_unref (priv->layout);
2995       priv->layout = NULL;
2996
2997       //gtk_label_clear_links (label);
2998     }
2999 }
3000
3001
3002 static void
3003 get_label_width (GtkLabel *label,
3004                  gint     *minimum,
3005                  gint     *natural)
3006 {
3007   GtkWidgetAuxInfo *aux_info;
3008   GtkLabelPriv     *priv;
3009   PangoLayout      *layout;
3010   PangoContext     *context;
3011   PangoFontMetrics *metrics;
3012   PangoRectangle    rect;
3013   gint              char_width, digit_width, char_pixels, text_width, ellipsize_chars, guess_width;
3014
3015   priv     = label->priv;
3016   aux_info = _gtk_widget_get_aux_info (GTK_WIDGET (label), FALSE);
3017
3018   layout  = pango_layout_copy (priv->layout);
3019   context = pango_layout_get_context (layout);
3020   metrics = pango_context_get_metrics (context, GTK_WIDGET (label)->style->font_desc, 
3021                                        pango_context_get_language (context));
3022   
3023   char_width = pango_font_metrics_get_approximate_char_width (metrics);
3024   digit_width = pango_font_metrics_get_approximate_digit_width (metrics);
3025   char_pixels = MAX (char_width, digit_width);
3026   pango_font_metrics_unref (metrics);
3027       
3028   /* Fetch the length of the complete unwrapped text */
3029   pango_layout_set_width (layout, -1);
3030   pango_layout_get_extents (layout, NULL, &rect);
3031   text_width = rect.width;
3032
3033   /* Fetch the width that was guessed by gtk_label_ensure_layout() */
3034   pango_layout_get_extents (priv->layout, NULL, &rect);
3035   guess_width = rect.width;
3036
3037   /* enforce minimum width for ellipsized labels at ~3 chars */
3038   if (priv->ellipsize)
3039     ellipsize_chars = 3;
3040   else
3041     ellipsize_chars = 0;
3042
3043   /* "width-chars" Hard-coded minimum width: 
3044    *    - minimum size should be MAX (width-chars, strlen ("..."));
3045    *    - natural size should be MAX (width-chars, strlen (priv->text));
3046    *
3047    * "max-width-chars" User specified maximum size requisition
3048    *    - minimum size should be MAX (width-chars, 0)
3049    *    - natural size should be MIN (max-width-chars, strlen (priv->text))
3050    *
3051    *    For ellipsizing labels; if max-width-chars is specified: either it is used as 
3052    *    a minimum size or the label text as a minimum size (natural size still overflows).
3053    *
3054    *    For wrapping labels; A reasonable minimum size is useful to naturally layout
3055    *    interfaces automatically. In this case if no "width-chars" is specified, the minimum
3056    *    width will default to the wrap guess that gtk_label_ensure_layout() does.
3057    *
3058    *    In *any* case the minimum width is completely overridden if an explicit width 
3059    *    request was provided.
3060    */
3061
3062   if (priv->ellipsize || priv->wrap)
3063     {
3064       *minimum = char_pixels * MAX (priv->width_chars, ellipsize_chars);
3065
3066       /* Default to the minimum width regularly guessed by GTK+ if no minimum
3067        * width was specified, only allow unwrapping of these labels.
3068        *
3069        * Note that when specifying a small width_chars for a long text;
3070        * an accordingly large size will be required for the label height.
3071        */
3072       if (priv->wrap && priv->width_chars <= 0)
3073         *minimum = guess_width;
3074
3075       if (priv->max_width_chars < 0)
3076         {
3077           *natural = MAX (*minimum, text_width);
3078         }
3079       else
3080         {
3081           gint max_char_width = char_pixels * priv->max_width_chars;
3082           gint max_width      = MIN (text_width, max_char_width);
3083
3084           /* With max-char-width specified, we let the minimum widths of 
3085            * ellipsized text crawl up to the max-char-width
3086            * (note that we dont want to limit the minimum width for wrapping text).
3087            */
3088           if (priv->ellipsize)
3089             *minimum = MIN (text_width, max_width);
3090
3091           *natural = MAX (*minimum, max_width);
3092         }
3093     }
3094   else
3095     {
3096       *minimum = text_width;
3097       *natural = *minimum;
3098     }
3099
3100   /* if a width-request is set, use that as the requested label width */
3101   if ((priv->wrap || priv->ellipsize || priv->width_chars > 0 || priv->max_width_chars > 0) &&
3102       aux_info && aux_info->width > 0)
3103     {
3104       *minimum = aux_info->width * PANGO_SCALE;
3105       *natural = MAX (*natural, *minimum);
3106     }
3107
3108   g_object_unref (layout);
3109 }
3110
3111 static void
3112 gtk_label_invalidate_wrap_width (GtkLabel *label)
3113 {
3114   GtkLabelPriv *priv = label->priv;
3115
3116   priv->wrap_width = -1;
3117 }
3118
3119 static gint
3120 get_label_wrap_width (GtkLabel *label)
3121 {
3122   GtkLabelPriv *priv = label->priv;
3123
3124   if (priv->wrap_width < 0)
3125     {
3126       if (priv->width_chars > 0)
3127         {
3128           PangoLayout      *layout;
3129           PangoContext     *context;
3130           PangoFontMetrics *metrics;
3131           PangoRectangle    rect;
3132           gint              char_width, digit_width, char_pixels, text_width;
3133
3134           layout  = pango_layout_copy (priv->layout);
3135           context = pango_layout_get_context (layout);
3136           metrics = pango_context_get_metrics (context, GTK_WIDGET (label)->style->font_desc, 
3137                                                pango_context_get_language (context));
3138           
3139           char_width = pango_font_metrics_get_approximate_char_width (metrics);
3140           digit_width = pango_font_metrics_get_approximate_digit_width (metrics);
3141           char_pixels = MAX (char_width, digit_width);
3142           pango_font_metrics_unref (metrics);
3143           
3144           pango_layout_set_width (layout, -1);
3145           pango_layout_get_extents (layout, NULL, &rect);
3146           g_object_unref (layout);
3147
3148           text_width = rect.width;
3149
3150           priv->wrap_width = PANGO_PIXELS (MAX (text_width, char_pixels * priv->width_chars));
3151         }
3152       else
3153         {
3154           PangoLayout *layout;
3155   
3156           layout = gtk_widget_create_pango_layout (GTK_WIDGET (label), 
3157                                                    "This string is just about long enough.");
3158           pango_layout_get_size (layout, &priv->wrap_width, NULL);
3159           g_object_unref (layout);
3160         }
3161     }
3162
3163   return priv->wrap_width;
3164 }
3165
3166 static void
3167 gtk_label_ensure_layout (GtkLabel *label, gboolean guess_wrap_width)
3168 {
3169   GtkLabelPriv *priv = label->priv;
3170   GtkWidget *widget;
3171   PangoRectangle logical_rect;
3172   gboolean rtl;
3173
3174   widget = GTK_WIDGET (label);
3175
3176   rtl = gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL;
3177
3178   if (!priv->layout)
3179     {
3180       PangoAlignment align = PANGO_ALIGN_LEFT; /* Quiet gcc */
3181       gdouble angle = gtk_label_get_angle (label);
3182
3183       if (angle != 0.0 && !priv->select_info)
3184         {
3185           PangoMatrix matrix = PANGO_MATRIX_INIT;
3186
3187           /* We rotate the standard singleton PangoContext for the widget,
3188            * depending on the fact that it's meant pretty much exclusively
3189            * for our use.
3190            */
3191           pango_matrix_rotate (&matrix, angle);
3192
3193           pango_context_set_matrix (gtk_widget_get_pango_context (widget), &matrix);
3194
3195           priv->have_transform = TRUE;
3196         }
3197       else
3198         {
3199           if (priv->have_transform)
3200             pango_context_set_matrix (gtk_widget_get_pango_context (widget), NULL);
3201
3202           priv->have_transform = FALSE;
3203         }
3204
3205       priv->layout = gtk_widget_create_pango_layout (widget, priv->text);
3206
3207       if (priv->effective_attrs)
3208         pango_layout_set_attributes (priv->layout, priv->effective_attrs);
3209
3210       gtk_label_rescan_links (label);
3211
3212       switch (priv->jtype)
3213         {
3214         case GTK_JUSTIFY_LEFT:
3215           align = rtl ? PANGO_ALIGN_RIGHT : PANGO_ALIGN_LEFT;
3216           break;
3217         case GTK_JUSTIFY_RIGHT:
3218           align = rtl ? PANGO_ALIGN_LEFT : PANGO_ALIGN_RIGHT;
3219           break;
3220         case GTK_JUSTIFY_CENTER:
3221           align = PANGO_ALIGN_CENTER;
3222           break;
3223         case GTK_JUSTIFY_FILL:
3224           align = rtl ? PANGO_ALIGN_RIGHT : PANGO_ALIGN_LEFT;
3225           pango_layout_set_justify (priv->layout, TRUE);
3226           break;
3227         default:
3228           g_assert_not_reached();
3229         }
3230
3231       pango_layout_set_alignment (priv->layout, align);
3232       pango_layout_set_ellipsize (priv->layout, priv->ellipsize);
3233       pango_layout_set_single_paragraph_mode (priv->layout, priv->single_line_mode);
3234
3235       if (priv->ellipsize)
3236         pango_layout_set_width (priv->layout,
3237                                 widget->allocation.width * PANGO_SCALE);
3238       else if (priv->wrap)
3239         {
3240           GtkWidgetAuxInfo *aux_info = _gtk_widget_get_aux_info (widget, FALSE);
3241           gint longest_paragraph;
3242           gint width, height;
3243           gint aux_width = 0;
3244
3245           if ((angle == 90 || angle == 270) && aux_info && aux_info->height > 0)
3246             aux_width = aux_info->height;
3247           else if (aux_info && aux_info->width > 0)
3248             aux_width = aux_info->width;
3249
3250           if (aux_width > 0)
3251             pango_layout_set_width (priv->layout, aux_width * PANGO_SCALE);
3252           else if (guess_wrap_width == FALSE &&
3253                    widget->allocation.width > 1 && widget->allocation.height > 1)
3254             {
3255               if (angle == 90 || angle == 270)
3256                 width = widget->allocation.height - label->misc.ypad * 2;
3257               else
3258                 width = widget->allocation.width  - label->misc.xpad * 2;
3259
3260               pango_layout_set_wrap (priv->layout, priv->wrap_mode);
3261               pango_layout_set_width (priv->layout, MAX (width, 1) * PANGO_SCALE);
3262             }
3263           else
3264             {
3265               GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (label));
3266               gint wrap_width;
3267
3268               pango_layout_set_width (priv->layout, -1);
3269               pango_layout_get_extents (priv->layout, NULL, &logical_rect);
3270
3271               width = logical_rect.width;
3272               /* Try to guess a reasonable maximum width */
3273               longest_paragraph = width;
3274
3275               wrap_width = get_label_wrap_width (label);
3276               width = MIN (width, wrap_width);
3277               width = MIN (width,
3278                            PANGO_SCALE * (gdk_screen_get_width (screen) + 1) / 2);
3279
3280               pango_layout_set_width (priv->layout, width);
3281               pango_layout_get_extents (priv->layout, NULL, &logical_rect);
3282               width = logical_rect.width;
3283               height = logical_rect.height;
3284
3285               /* Unfortunately, the above may leave us with a very unbalanced looking paragraph,
3286                * so we try short search for a narrower width that leaves us with the same height
3287                */
3288               if (longest_paragraph > 0)
3289                 {
3290                   gint nlines, perfect_width;
3291
3292                   nlines = pango_layout_get_line_count (priv->layout);
3293                   perfect_width = (longest_paragraph + nlines - 1) / nlines;
3294                   
3295                   if (perfect_width < width)
3296                     {
3297                       pango_layout_set_width (priv->layout, perfect_width);
3298                       pango_layout_get_extents (priv->layout, NULL, &logical_rect);
3299
3300                       if (logical_rect.height <= height)
3301                         width = logical_rect.width;
3302                       else
3303                         {
3304                           gint mid_width = (perfect_width + width) / 2;
3305                           
3306                           if (mid_width > perfect_width)
3307                             {
3308                               pango_layout_set_width (priv->layout, mid_width);
3309                               pango_layout_get_extents (priv->layout, NULL, &logical_rect);
3310
3311                               if (logical_rect.height <= height)
3312                                 width = logical_rect.width;
3313                             }
3314                         }
3315                     }
3316                 }
3317               pango_layout_set_width (priv->layout, width);
3318             }
3319         }
3320       else /* !priv->wrap */
3321         pango_layout_set_width (priv->layout, -1);
3322     }
3323 }
3324
3325 static gint
3326 get_single_line_height (GtkWidget   *widget,
3327                         PangoLayout *layout)
3328 {
3329   PangoContext *context;
3330   PangoFontMetrics *metrics;
3331   gint ascent, descent;
3332
3333   context = pango_layout_get_context (layout);
3334   metrics = pango_context_get_metrics (context, widget->style->font_desc,
3335                                        pango_context_get_language (context));
3336
3337   ascent = pango_font_metrics_get_ascent (metrics);
3338   descent = pango_font_metrics_get_descent (metrics);
3339   pango_font_metrics_unref (metrics);
3340
3341   return ascent + descent;
3342 }
3343
3344 static void
3345 gtk_label_size_request_init (GtkSizeRequestIface *iface)
3346 {
3347   iface->get_request_mode     = gtk_label_get_request_mode;
3348   iface->get_width            = gtk_label_get_width;
3349   iface->get_height           = gtk_label_get_height;
3350   iface->get_width_for_height = gtk_label_get_width_for_height;
3351   iface->get_height_for_width = gtk_label_get_height_for_width;
3352 }
3353
3354 static GtkSizeRequestMode
3355 gtk_label_get_request_mode (GtkSizeRequest *layout)
3356 {
3357   GtkLabel *label = GTK_LABEL (layout);
3358   gdouble   angle = gtk_label_get_angle (label);
3359
3360   if (angle == 90 || angle == 270)
3361     return GTK_SIZE_REQUEST_WIDTH_FOR_HEIGHT;
3362
3363   return GTK_SIZE_REQUEST_HEIGHT_FOR_WIDTH;
3364 }
3365
3366 static void
3367 get_size_for_allocation (GtkLabel        *label,
3368                          GtkOrientation   orientation,
3369                          gint             allocation,
3370                          gint            *minimum_size,
3371                          gint            *natural_size)
3372 {
3373   GtkLabelPriv *priv = label->priv;
3374   PangoLayout *layout;
3375   GtkWidgetAuxInfo *aux_info =
3376     _gtk_widget_get_aux_info (GTK_WIDGET (label), FALSE);
3377   gint aux_size;
3378   gint text_height;
3379
3380   gtk_label_ensure_layout (label, FALSE);
3381   layout = pango_layout_copy (priv->layout);
3382
3383   if (aux_info)
3384     {
3385       if (orientation == GTK_ORIENTATION_HORIZONTAL)
3386         aux_size = aux_info->width;
3387       else
3388         aux_size = aux_info->height;
3389     }
3390   else
3391     aux_size = 0;
3392
3393   if (aux_size > 0)
3394     pango_layout_set_width (layout, aux_size * PANGO_SCALE);
3395   else
3396     pango_layout_set_width (layout, allocation * PANGO_SCALE);
3397
3398   pango_layout_get_pixel_size (layout, NULL, &text_height);
3399
3400   if (minimum_size)
3401     *minimum_size = text_height;
3402
3403   if (natural_size)
3404     *natural_size = text_height;
3405
3406   g_object_unref (layout);
3407 }
3408
3409 static void
3410 gtk_label_get_size (GtkSizeRequest *widget,
3411                     GtkOrientation  orientation,
3412                     gint           *minimum_size,
3413                     gint           *natural_size)
3414 {
3415   GtkLabel      *label = GTK_LABEL (widget);
3416   GtkLabelPriv  *priv = label->priv;
3417   PangoRectangle required_rect;
3418   PangoRectangle natural_rect;
3419   gdouble        angle;
3420
3421   /* "width-chars" Hard-coded minimum width:
3422    *    - minimum size should be MAX (width-chars, strlen ("..."));
3423    *    - natural size should be MAX (width-chars, strlen (priv->text));
3424    *
3425    * "max-width-chars" User specified maximum size requisition
3426    *    - minimum size should be MAX (width-chars, 0)
3427    *    - natural size should be MIN (max-width-chars, strlen (priv->text))
3428    *
3429    */
3430
3431   /* When calculating ->wrap sometimes we need to invent a size; Ideally we should be doing
3432    * that stuff here instead of inside gtk_label_ensure_layout() */
3433   if (priv->wrap)
3434     gtk_label_clear_layout (label);
3435   gtk_label_ensure_layout (label, TRUE);
3436
3437   angle = gtk_label_get_angle (label);
3438
3439   /* Start off with the pixel extents of the rendered layout */
3440   pango_layout_get_extents (priv->layout, NULL, &required_rect);
3441   required_rect.x = required_rect.y = 0;
3442
3443   if (priv->single_line_mode || priv->wrap)
3444     required_rect.height = get_single_line_height (GTK_WIDGET (label), priv->layout);
3445
3446   natural_rect = required_rect;
3447
3448   /* Calculate text width itself based on GtkLabel property rules */
3449   get_label_width (label, &required_rect.width, &natural_rect.width);
3450
3451   /* Now that we have minimum and natural sizes in pango extents, apply a possible transform */
3452   if (priv->have_transform)
3453     {
3454       PangoLayout       *layout  = pango_layout_copy (priv->layout);
3455       PangoContext      *context = pango_layout_get_context (priv->layout);
3456       const PangoMatrix *matrix  = pango_context_get_matrix (context);
3457
3458       pango_layout_set_width (layout, -1);
3459       pango_layout_set_ellipsize (layout, PANGO_ELLIPSIZE_NONE);
3460
3461       pango_layout_get_extents (layout, NULL, &natural_rect);
3462       g_object_unref (layout);
3463
3464       pango_matrix_transform_rectangle (matrix, &required_rect);
3465       pango_matrix_transform_rectangle (matrix, &natural_rect);
3466
3467       /* Bump the natural size in case of ellipsize to ensure pango has
3468        * enough space in the angles (note, we could alternatively set the
3469        * layout to not ellipsize when we know we have been allocated our
3470        * full natural size, or it may be that pango needs a fix here).
3471        */
3472       if (priv->ellipsize && angle != 0 && angle != 90 && angle != 180 && angle != 270 && angle != 360)
3473         {
3474           /* For some reason we only need this at about 110 degrees, and only
3475            * when gaining in height
3476            */
3477           natural_rect.height += ROTATION_ELLIPSIZE_PADDING * 2 * PANGO_SCALE;
3478           natural_rect.width  += ROTATION_ELLIPSIZE_PADDING * 2 * PANGO_SCALE;
3479         }
3480     }
3481
3482   required_rect.width  = PANGO_PIXELS_CEIL (required_rect.width);
3483   required_rect.height = PANGO_PIXELS_CEIL (required_rect.height);
3484
3485   natural_rect.width  = PANGO_PIXELS_CEIL (natural_rect.width);
3486   natural_rect.height = PANGO_PIXELS_CEIL (natural_rect.height);
3487
3488   if (orientation == GTK_ORIENTATION_HORIZONTAL)
3489     {
3490       /* Note, we cant use get_size_for_allocation() when rotating
3491        * ellipsized labels.
3492        */
3493       if (!(priv->ellipsize && priv->have_transform) &&
3494           (angle == 90 || angle == 270))
3495         {
3496           /* Doing a h4w request on a rotated label here, return the
3497            * required width for the minimum height.
3498            */
3499           get_size_for_allocation (label,
3500                                    GTK_ORIENTATION_VERTICAL,
3501                                    required_rect.height,
3502                                    minimum_size, natural_size);
3503
3504         }
3505       else
3506         {
3507           /* Normal desired width */
3508           *minimum_size = required_rect.width;
3509           *natural_size = natural_rect.width;
3510         }
3511
3512       *minimum_size += label->misc.xpad * 2;
3513       *natural_size += label->misc.xpad * 2;
3514     }
3515   else /* GTK_ORIENTATION_VERTICAL */
3516     {
3517       /* Note, we cant use get_size_for_allocation() when rotating
3518        * ellipsized labels.
3519        */
3520       if (!(priv->ellipsize && priv->have_transform) &&
3521           (angle == 0 || angle == 180))
3522         {
3523           /* Doing a w4h request on a label here, return the required
3524            * height for the minimum width.
3525            */
3526           get_size_for_allocation (label,
3527                                    GTK_ORIENTATION_HORIZONTAL,
3528                                    required_rect.width,
3529                                    minimum_size, natural_size);
3530         }
3531       else
3532         {
3533           /* A vertically rotated label does w4h, so return the base
3534            * desired height (text length)
3535            */
3536           *minimum_size = required_rect.height;
3537           *natural_size = natural_rect.height;
3538         }
3539
3540       *minimum_size += label->misc.ypad * 2;
3541       *natural_size += label->misc.ypad * 2;
3542     }
3543
3544   /* Restore real allocated size of layout; sometimes size-requests
3545    * are randomly called without a following allocation; for this case
3546    * we need to make sure we dont have a mucked up layout because we
3547    * went and guessed the wrap-size.
3548    */
3549   if (priv->wrap)
3550     gtk_label_clear_layout (label);
3551   gtk_label_ensure_layout (label, FALSE);
3552
3553 }
3554
3555
3556 static void
3557 gtk_label_get_width (GtkSizeRequest *widget,
3558                      gint           *minimum_size,
3559                      gint           *natural_size)
3560 {
3561   gtk_label_get_size (widget, GTK_ORIENTATION_HORIZONTAL, minimum_size, natural_size);
3562 }
3563
3564 static void
3565 gtk_label_get_height (GtkSizeRequest *widget,
3566                       gint           *minimum_size,
3567                       gint           *natural_size)
3568 {
3569   gtk_label_get_size (widget, GTK_ORIENTATION_VERTICAL, minimum_size, natural_size);
3570 }
3571
3572 static void
3573 gtk_label_get_width_for_height (GtkSizeRequest *widget,
3574                                 gint            height,
3575                                 gint           *minimum_width,
3576                                 gint           *natural_width)
3577 {
3578   GtkLabel *label = GTK_LABEL (widget);
3579   GtkLabelPriv *priv = label->priv;
3580   gdouble angle = gtk_label_get_angle (label);
3581
3582   if (priv->wrap && (angle == 90 || angle == 270))
3583     {
3584       if (priv->wrap)
3585         gtk_label_clear_layout (label);
3586
3587       get_size_for_allocation (label, GTK_ORIENTATION_VERTICAL,
3588                                MAX (1, height - (label->misc.ypad * 2)),
3589                                minimum_width, natural_width);
3590
3591       if (minimum_width)
3592         *minimum_width += label->misc.xpad * 2;
3593
3594       if (natural_width)
3595         *natural_width += label->misc.xpad * 2;
3596     }
3597   else
3598     GTK_SIZE_REQUEST_GET_IFACE (widget)->get_width (widget, minimum_width, natural_width);
3599 }
3600
3601 static void
3602 gtk_label_get_height_for_width (GtkSizeRequest *widget,
3603                                 gint            width,
3604                                 gint           *minimum_height,
3605                                 gint           *natural_height)
3606 {
3607   GtkLabel *label = GTK_LABEL (widget);
3608   GtkLabelPriv *priv = label->priv;
3609   gdouble angle = gtk_label_get_angle (label);
3610
3611   if (priv->wrap && (angle == 0 || angle == 180 || angle == 360))
3612     {
3613       if (priv->wrap)
3614         gtk_label_clear_layout (label);
3615
3616       get_size_for_allocation (label, GTK_ORIENTATION_HORIZONTAL,
3617                                MAX (1, width - label->misc.xpad * 2),
3618                                minimum_height, natural_height);
3619
3620       if (minimum_height)
3621         *minimum_height += label->misc.ypad * 2;
3622
3623       if (natural_height)
3624         *natural_height += label->misc.ypad * 2;
3625     }
3626   else
3627     GTK_SIZE_REQUEST_GET_IFACE (widget)->get_height (widget, minimum_height, natural_height);
3628 }
3629
3630 static void
3631 gtk_label_size_allocate (GtkWidget     *widget,
3632                          GtkAllocation *allocation)
3633 {
3634   GtkLabel *label = GTK_LABEL (widget);
3635   GtkLabelPriv *priv = label->priv;
3636
3637   GTK_WIDGET_CLASS (gtk_label_parent_class)->size_allocate (widget, allocation);
3638
3639   /* The layout may have been recently cleared in get_size_for_orientation(),
3640    * but the width at that point may not be the same as the allocated width
3641    */
3642   if (priv->wrap)
3643     gtk_label_clear_layout (label);
3644
3645   gtk_label_ensure_layout (label, FALSE);
3646
3647   if (priv->ellipsize)
3648     {
3649       if (priv->layout)
3650         {
3651           PangoRectangle logical;
3652           PangoRectangle bounds;
3653
3654           bounds.x = bounds.y = 0;
3655           bounds.width = allocation->width - label->misc.xpad * 2;
3656           bounds.height = allocation->height - label->misc.ypad * 2;
3657
3658           pango_layout_set_width (priv->layout, -1);
3659           pango_layout_get_pixel_extents (priv->layout, NULL, &logical);
3660
3661           if (priv->have_transform)
3662             {
3663               PangoContext *context = gtk_widget_get_pango_context (widget);
3664               const PangoMatrix *matrix = pango_context_get_matrix (context);
3665
3666               const gdouble dx = matrix->xx; /* cos (M_PI * angle / 180) */
3667               const gdouble dy = matrix->xy; /* sin (M_PI * angle / 180) */
3668               if (fabs (dy) < 0.01)
3669                 {
3670                   if (logical.width > bounds.width)
3671                     pango_layout_set_width (priv->layout, bounds.width * PANGO_SCALE);
3672                 }
3673               else if (fabs (dx) < 0.01)
3674                 {
3675                   if (logical.width > bounds.height)
3676                     pango_layout_set_width (priv->layout, bounds.height * PANGO_SCALE);
3677                 }
3678               else
3679                 {
3680                   gdouble x0, y0, x1, y1, length;
3681                   gboolean vertical;
3682                   gint cy;
3683
3684                   x0 = bounds.width / 2;
3685                   y0 = dx ? x0 * dy / dx : G_MAXDOUBLE;
3686                   vertical = fabs (y0) > bounds.height / 2;
3687
3688                   if (vertical)
3689                     {
3690                       y0 = bounds.height/2;
3691                       x0 = dy ? y0 * dx / dy : G_MAXDOUBLE;
3692                     }
3693
3694                   length = 2 * sqrt (x0 * x0 + y0 * y0);
3695                   pango_layout_set_width (priv->layout, rint (length * PANGO_SCALE));
3696                   pango_layout_get_pixel_size (priv->layout, NULL, &cy);
3697
3698                   x1 = +dy * cy/2;
3699                   y1 = -dx * cy/2;
3700
3701                   if (vertical)
3702                     {
3703                       y0 = bounds.height/2 + y1 - y0;
3704                       x0 = -y0 * dx/dy;
3705                     }
3706                   else
3707                     {
3708                       x0 = bounds.width/2 + x1 - x0;
3709                       y0 = -x0 * dy/dx;
3710                     }
3711  
3712                   length = length - sqrt (x0 * x0 + y0 * y0) * 2;
3713                   pango_layout_set_width (priv->layout, rint (length * PANGO_SCALE));
3714                 }
3715             }
3716           else if (logical.width > bounds.width)
3717             pango_layout_set_width (priv->layout, bounds.width * PANGO_SCALE);
3718         }
3719     }
3720
3721   if (priv->select_info && priv->select_info->window)
3722     {
3723       gdk_window_move_resize (priv->select_info->window,
3724                               allocation->x,
3725                               allocation->y,
3726                               allocation->width,
3727                               allocation->height);
3728     }
3729 }
3730
3731 static void
3732 gtk_label_update_cursor (GtkLabel *label)
3733 {
3734   GtkLabelPriv *priv = label->priv;
3735   GtkWidget *widget;
3736
3737   if (!priv->select_info)
3738     return;
3739
3740   widget = GTK_WIDGET (label);
3741
3742   if (gtk_widget_get_realized (widget))
3743     {
3744       GdkDisplay *display;
3745       GdkCursor *cursor;
3746
3747       if (gtk_widget_is_sensitive (widget))
3748         {
3749           display = gtk_widget_get_display (widget);
3750
3751           if (priv->select_info->active_link)
3752             cursor = gdk_cursor_new_for_display (display, GDK_HAND2);
3753           else if (priv->select_info->selectable)
3754             cursor = gdk_cursor_new_for_display (display, GDK_XTERM);
3755           else
3756             cursor = NULL;
3757         }
3758       else
3759         cursor = NULL;
3760
3761       gdk_window_set_cursor (priv->select_info->window, cursor);
3762
3763       if (cursor)
3764         gdk_cursor_unref (cursor);
3765     }
3766 }
3767
3768 static void
3769 gtk_label_state_changed (GtkWidget   *widget,
3770                          GtkStateType prev_state)
3771 {
3772   GtkLabel *label = GTK_LABEL (widget);
3773   GtkLabelPriv *priv = label->priv;
3774
3775   if (priv->select_info)
3776     {
3777       gtk_label_select_region (label, 0, 0);
3778       gtk_label_update_cursor (label);
3779     }
3780
3781   if (GTK_WIDGET_CLASS (gtk_label_parent_class)->state_changed)
3782     GTK_WIDGET_CLASS (gtk_label_parent_class)->state_changed (widget, prev_state);
3783 }
3784
3785 static void
3786 gtk_label_style_set (GtkWidget *widget,
3787                      GtkStyle  *previous_style)
3788 {
3789   GtkLabel *label = GTK_LABEL (widget);
3790
3791   /* We have to clear the layout, fonts etc. may have changed */
3792   gtk_label_clear_layout (label);
3793   gtk_label_invalidate_wrap_width (label);
3794 }
3795
3796 static void 
3797 gtk_label_direction_changed (GtkWidget        *widget,
3798                              GtkTextDirection previous_dir)
3799 {
3800   GtkLabel *label = GTK_LABEL (widget);
3801   GtkLabelPriv *priv = label->priv;
3802
3803   if (priv->layout)
3804     pango_layout_context_changed (priv->layout);
3805
3806   GTK_WIDGET_CLASS (gtk_label_parent_class)->direction_changed (widget, previous_dir);
3807 }
3808
3809 static void
3810 get_layout_location (GtkLabel  *label,
3811                      gint      *xp,
3812                      gint      *yp)
3813 {
3814   GtkMisc *misc;
3815   GtkWidget *widget;
3816   GtkLabelPriv *priv;
3817   gfloat xalign;
3818   gint req_width, x, y;
3819   gint req_height;
3820   PangoRectangle logical;
3821   gdouble angle;
3822
3823   misc   = GTK_MISC (label);
3824   widget = GTK_WIDGET (label);
3825   priv   = label->priv;
3826   angle  = gtk_label_get_angle (label);
3827
3828   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR)
3829     xalign = misc->xalign;
3830   else
3831     xalign = 1.0 - misc->xalign;
3832
3833   pango_layout_get_extents (priv->layout, NULL, &logical);
3834
3835   /* Do the wrap width delimiting before the transform
3836    */
3837   if (priv->wrap || priv->ellipsize || priv->width_chars > 0)
3838     {
3839       int width;
3840
3841       width = pango_layout_get_width (priv->layout);
3842
3843       if (width != -1)
3844         logical.width = MIN (width, logical.width);
3845     }
3846
3847   if (priv->have_transform)
3848     {
3849       PangoContext *context = gtk_widget_get_pango_context (widget);
3850       const PangoMatrix *matrix = pango_context_get_matrix (context);
3851       pango_matrix_transform_rectangle (matrix, &logical);
3852     }
3853
3854   pango_extents_to_pixels (&logical, NULL);
3855
3856   req_width  = logical.width;
3857   req_height = logical.height;
3858
3859   req_width  += 2 * misc->xpad;
3860   req_height += 2 * misc->ypad;
3861
3862   x = floor (widget->allocation.x + (gint)misc->xpad +
3863               xalign * (widget->allocation.width - req_width));
3864
3865   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR)
3866     x = MAX (x, widget->allocation.x + misc->xpad);
3867   else
3868     x = MIN (x, widget->allocation.x + widget->allocation.width - misc->xpad);
3869
3870
3871
3872
3873   /* bgo#315462 - For single-line labels, *do* align the requisition with
3874    * respect to the allocation, even if we are under-allocated.  For multi-line
3875    * labels, always show the top of the text when they are under-allocated.  The
3876    * rationale is this:
3877    *
3878    * - Single-line labels appear in GtkButtons, and it is very easy to get them
3879    *   to be smaller than their requisition.  The button may clip the label, but
3880    *   the label will still be able to show most of itself and the focus
3881    *   rectangle.  Also, it is fairly easy to read a single line of clipped text.
3882    *
3883    * - Multi-line labels should not be clipped to showing "something in the
3884    *   middle".  You want to read the first line, at least, to get some context.
3885    */
3886   if (pango_layout_get_line_count (priv->layout) == 1)
3887     y = floor (widget->allocation.y + (gint)misc->ypad 
3888                + (widget->allocation.height - req_height) * misc->yalign);
3889   else
3890     y = floor (widget->allocation.y + (gint)misc->ypad 
3891                + MAX (((widget->allocation.height - req_height) * misc->yalign),
3892                       0));
3893
3894   if (xp)
3895     *xp = x;
3896
3897   if (yp)
3898     *yp = y;
3899 }
3900
3901 static void
3902 draw_insertion_cursor (GtkLabel      *label,
3903                        GdkRectangle  *cursor_location,
3904                        gboolean       is_primary,
3905                        PangoDirection direction,
3906                        gboolean       draw_arrow)
3907 {
3908   GtkWidget *widget = GTK_WIDGET (label);
3909   GtkTextDirection text_dir;
3910
3911   if (direction == PANGO_DIRECTION_LTR)
3912     text_dir = GTK_TEXT_DIR_LTR;
3913   else
3914     text_dir = GTK_TEXT_DIR_RTL;
3915
3916   gtk_draw_insertion_cursor (widget, widget->window, &(widget->allocation),
3917                              cursor_location,
3918                              is_primary, text_dir, draw_arrow);
3919 }
3920
3921 static PangoDirection
3922 get_cursor_direction (GtkLabel *label)
3923 {
3924   GtkLabelPriv *priv = label->priv;
3925   GSList *l;
3926
3927   g_assert (priv->select_info);
3928
3929   gtk_label_ensure_layout (label, FALSE);
3930
3931   for (l = pango_layout_get_lines_readonly (priv->layout); l; l = l->next)
3932     {
3933       PangoLayoutLine *line = l->data;
3934
3935       /* If priv->select_info->selection_end is at the very end of
3936        * the line, we don't know if the cursor is on this line or
3937        * the next without looking ahead at the next line. (End
3938        * of paragraph is different from line break.) But it's
3939        * definitely in this paragraph, which is good enough
3940        * to figure out the resolved direction.
3941        */
3942        if (line->start_index + line->length >= priv->select_info->selection_end)
3943         return line->resolved_dir;
3944     }
3945
3946   return PANGO_DIRECTION_LTR;
3947 }
3948
3949 static void
3950 gtk_label_draw_cursor (GtkLabel  *label, gint xoffset, gint yoffset)
3951 {
3952   GtkLabelPriv *priv = label->priv;
3953   GtkWidget *widget;
3954
3955   if (priv->select_info == NULL)
3956     return;
3957
3958   widget = GTK_WIDGET (label);
3959   
3960   if (gtk_widget_is_drawable (widget))
3961     {
3962       PangoDirection keymap_direction;
3963       PangoDirection cursor_direction;
3964       PangoRectangle strong_pos, weak_pos;
3965       gboolean split_cursor;
3966       PangoRectangle *cursor1 = NULL;
3967       PangoRectangle *cursor2 = NULL;
3968       GdkRectangle cursor_location;
3969       PangoDirection dir1 = PANGO_DIRECTION_NEUTRAL;
3970       PangoDirection dir2 = PANGO_DIRECTION_NEUTRAL;
3971
3972       keymap_direction = gdk_keymap_get_direction (gdk_keymap_get_for_display (gtk_widget_get_display (widget)));
3973       cursor_direction = get_cursor_direction (label);
3974
3975       gtk_label_ensure_layout (label, FALSE);
3976       
3977       pango_layout_get_cursor_pos (priv->layout, priv->select_info->selection_end,
3978                                    &strong_pos, &weak_pos);
3979
3980       g_object_get (gtk_widget_get_settings (widget),
3981                     "gtk-split-cursor", &split_cursor,
3982                     NULL);
3983
3984       dir1 = cursor_direction;
3985       
3986       if (split_cursor)
3987         {
3988           cursor1 = &strong_pos;
3989
3990           if (strong_pos.x != weak_pos.x ||
3991               strong_pos.y != weak_pos.y)
3992             {
3993               dir2 = (cursor_direction == PANGO_DIRECTION_LTR) ? PANGO_DIRECTION_RTL : PANGO_DIRECTION_LTR;
3994               cursor2 = &weak_pos;
3995             }
3996         }
3997       else
3998         {
3999           if (keymap_direction == cursor_direction)
4000             cursor1 = &strong_pos;
4001           else
4002             cursor1 = &weak_pos;
4003         }
4004       
4005       cursor_location.x = xoffset + PANGO_PIXELS (cursor1->x);
4006       cursor_location.y = yoffset + PANGO_PIXELS (cursor1->y);
4007       cursor_location.width = 0;
4008       cursor_location.height = PANGO_PIXELS (cursor1->height);
4009
4010       draw_insertion_cursor (label,
4011                              &cursor_location, TRUE, dir1,
4012                              dir2 != PANGO_DIRECTION_NEUTRAL);
4013       
4014       if (dir2 != PANGO_DIRECTION_NEUTRAL)
4015         {
4016           cursor_location.x = xoffset + PANGO_PIXELS (cursor2->x);
4017           cursor_location.y = yoffset + PANGO_PIXELS (cursor2->y);
4018           cursor_location.width = 0;
4019           cursor_location.height = PANGO_PIXELS (cursor2->height);
4020
4021           draw_insertion_cursor (label,
4022                                  &cursor_location, FALSE, dir2,
4023                                  TRUE);
4024         }
4025     }
4026 }
4027
4028 static GtkLabelLink *
4029 gtk_label_get_focus_link (GtkLabel *label)
4030 {
4031   GtkLabelPriv *priv = label->priv;
4032   GtkLabelSelectionInfo *info = priv->select_info;
4033   GList *l;
4034
4035   if (!info)
4036     return NULL;
4037
4038   if (info->selection_anchor != info->selection_end)
4039     return NULL;
4040
4041   for (l = info->links; l; l = l->next)
4042     {
4043       GtkLabelLink *link = l->data;
4044       if (link->start <= info->selection_anchor &&
4045           info->selection_anchor <= link->end)
4046         return link;
4047     }
4048
4049   return NULL;
4050 }
4051
4052 static gint
4053 gtk_label_expose (GtkWidget      *widget,
4054                   GdkEventExpose *event)
4055 {
4056   GtkLabel *label = GTK_LABEL (widget);
4057   GtkLabelPriv *priv = label->priv;
4058   GtkLabelSelectionInfo *info = priv->select_info;
4059   gint x, y;
4060
4061   gtk_label_ensure_layout (label, FALSE);
4062
4063   if (gtk_widget_get_visible (widget) && gtk_widget_get_mapped (widget) &&
4064       priv->text && (*priv->text != '\0'))
4065     {
4066       get_layout_location (label, &x, &y);
4067
4068       gtk_paint_layout (widget->style,
4069                         widget->window,
4070                         gtk_widget_get_state (widget),
4071                         FALSE,
4072                         &event->area,
4073                         widget,
4074                         "label",
4075                         x, y,
4076                         priv->layout);
4077
4078       if (info &&
4079           (info->selection_anchor != info->selection_end))
4080         {
4081           gint range[2];
4082           cairo_region_t *clip;
4083           GtkStateType state;
4084
4085           range[0] = info->selection_anchor;
4086           range[1] = info->selection_end;
4087
4088           if (range[0] > range[1])
4089             {
4090               gint tmp = range[0];
4091               range[0] = range[1];
4092               range[1] = tmp;
4093             }
4094
4095           clip = gdk_pango_layout_get_clip_region (priv->layout,
4096                                                    x, y,
4097                                                    range,
4098                                                    1);
4099           cairo_region_intersect (clip, event->region);
4100
4101          /* FIXME should use gtk_paint, but it can't use a clip
4102            * region
4103            */
4104
4105           gdk_gc_set_clip_region (widget->style->black_gc, clip);
4106
4107
4108           state = GTK_STATE_SELECTED;
4109           if (!gtk_widget_has_focus (widget))
4110             state = GTK_STATE_ACTIVE;
4111
4112           gdk_draw_layout_with_colors (widget->window,
4113                                        widget->style->black_gc,
4114                                        x, y,
4115                                        priv->layout,
4116                                        &widget->style->text[state],
4117                                        &widget->style->base[state]);
4118
4119           gdk_gc_set_clip_region (widget->style->black_gc, NULL);
4120           cairo_region_destroy (clip);
4121         }
4122       else if (info)
4123         {
4124           GtkLabelLink *focus_link;
4125           GtkLabelLink *active_link;
4126           gint range[2];
4127           cairo_region_t *clip;
4128           GdkRectangle rect;
4129           GdkColor *text_color;
4130           GdkColor *base_color;
4131           GdkColor *link_color;
4132           GdkColor *visited_link_color;
4133
4134           if (info->selectable && gtk_widget_has_focus (widget))
4135             gtk_label_draw_cursor (label, x, y);
4136
4137           focus_link = gtk_label_get_focus_link (label);
4138           active_link = info->active_link;
4139
4140           if (active_link)
4141             {
4142               range[0] = active_link->start;
4143               range[1] = active_link->end;
4144
4145               clip = gdk_pango_layout_get_clip_region (priv->layout,
4146                                                        x, y,
4147                                                        range,
4148                                                        1);
4149               gdk_gc_set_clip_region (widget->style->black_gc, clip);
4150
4151               gtk_label_get_link_colors (widget, &link_color, &visited_link_color);
4152               if (active_link->visited)
4153                 text_color = visited_link_color;
4154               else
4155                 text_color = link_color;
4156               if (info->link_clicked)
4157                 base_color = &widget->style->base[GTK_STATE_ACTIVE];
4158               else
4159                 base_color = &widget->style->base[GTK_STATE_PRELIGHT];
4160               gdk_draw_layout_with_colors (widget->window,
4161                                            widget->style->black_gc,
4162                                            x, y,
4163                                            priv->layout,
4164                                            text_color,
4165                                            base_color);
4166               gdk_color_free (link_color);
4167               gdk_color_free (visited_link_color);
4168
4169               gdk_gc_set_clip_region (widget->style->black_gc, NULL);
4170               cairo_region_destroy (clip);
4171             }
4172
4173           if (focus_link && gtk_widget_has_focus (widget))
4174             {
4175               range[0] = focus_link->start;
4176               range[1] = focus_link->end;
4177
4178               clip = gdk_pango_layout_get_clip_region (priv->layout,
4179                                                        x, y,
4180                                                        range,
4181                                                        1);
4182               cairo_region_get_extents (clip, &rect);
4183
4184               gtk_paint_focus (widget->style, widget->window, gtk_widget_get_state (widget),
4185                                &event->area, widget, "label",
4186                                rect.x, rect.y, rect.width, rect.height);
4187
4188               cairo_region_destroy (clip);
4189             }
4190         }
4191     }
4192
4193   return FALSE;
4194 }
4195
4196 static gboolean
4197 separate_uline_pattern (const gchar  *str,
4198                         guint        *accel_key,
4199                         gchar       **new_str,
4200                         gchar       **pattern)
4201 {
4202   gboolean underscore;
4203   const gchar *src;
4204   gchar *dest;
4205   gchar *pattern_dest;
4206
4207   *accel_key = GDK_VoidSymbol;
4208   *new_str = g_new (gchar, strlen (str) + 1);
4209   *pattern = g_new (gchar, g_utf8_strlen (str, -1) + 1);
4210
4211   underscore = FALSE;
4212
4213   src = str;
4214   dest = *new_str;
4215   pattern_dest = *pattern;
4216
4217   while (*src)
4218     {
4219       gunichar c;
4220       const gchar *next_src;
4221
4222       c = g_utf8_get_char (src);
4223       if (c == (gunichar)-1)
4224         {
4225           g_warning ("Invalid input string");
4226           g_free (*new_str);
4227           g_free (*pattern);
4228
4229           return FALSE;
4230         }
4231       next_src = g_utf8_next_char (src);
4232
4233       if (underscore)
4234         {
4235           if (c == '_')
4236             *pattern_dest++ = ' ';
4237           else
4238             {
4239               *pattern_dest++ = '_';
4240               if (*accel_key == GDK_VoidSymbol)
4241                 *accel_key = gdk_keyval_to_lower (gdk_unicode_to_keyval (c));
4242             }
4243
4244           while (src < next_src)
4245             *dest++ = *src++;
4246
4247           underscore = FALSE;
4248         }
4249       else
4250         {
4251           if (c == '_')
4252             {
4253               underscore = TRUE;
4254               src = next_src;
4255             }
4256           else
4257             {
4258               while (src < next_src)
4259                 *dest++ = *src++;
4260
4261               *pattern_dest++ = ' ';
4262             }
4263         }
4264     }
4265
4266   *dest = 0;
4267   *pattern_dest = 0;
4268
4269   return TRUE;
4270 }
4271
4272 static void
4273 gtk_label_set_uline_text_internal (GtkLabel    *label,
4274                                    const gchar *str)
4275 {
4276   GtkLabelPriv *priv = label->priv;
4277   guint accel_key = GDK_VoidSymbol;
4278   gchar *new_str;
4279   gchar *pattern;
4280
4281   g_return_if_fail (GTK_IS_LABEL (label));
4282   g_return_if_fail (str != NULL);
4283
4284   /* Split text into the base text and a separate pattern
4285    * of underscores.
4286    */
4287   if (!separate_uline_pattern (str, &accel_key, &new_str, &pattern))
4288     return;
4289
4290   gtk_label_set_text_internal (label, new_str);
4291   gtk_label_set_pattern_internal (label, pattern, TRUE);
4292   priv->mnemonic_keyval = accel_key;
4293
4294   g_free (pattern);
4295 }
4296
4297 /**
4298  * gtk_label_set_text_with_mnemonic:
4299  * @label: a #GtkLabel
4300  * @str: a string
4301  * 
4302  * Sets the label's text from the string @str.
4303  * If characters in @str are preceded by an underscore, they are underlined
4304  * indicating that they represent a keyboard accelerator called a mnemonic.
4305  * The mnemonic key can be used to activate another widget, chosen 
4306  * automatically, or explicitly using gtk_label_set_mnemonic_widget().
4307  **/
4308 void
4309 gtk_label_set_text_with_mnemonic (GtkLabel    *label,
4310                                   const gchar *str)
4311 {
4312   g_return_if_fail (GTK_IS_LABEL (label));
4313   g_return_if_fail (str != NULL);
4314
4315   g_object_freeze_notify (G_OBJECT (label));
4316
4317   gtk_label_set_label_internal (label, g_strdup (str ? str : ""));
4318   gtk_label_set_use_markup_internal (label, FALSE);
4319   gtk_label_set_use_underline_internal (label, TRUE);
4320   
4321   gtk_label_recalculate (label);
4322
4323   g_object_thaw_notify (G_OBJECT (label));
4324 }
4325
4326 static void
4327 gtk_label_realize (GtkWidget *widget)
4328 {
4329   GtkLabel *label = GTK_LABEL (widget);
4330   GtkLabelPriv *priv = label->priv;
4331
4332   GTK_WIDGET_CLASS (gtk_label_parent_class)->realize (widget);
4333
4334   if (priv->select_info)
4335     gtk_label_create_window (label);
4336 }
4337
4338 static void
4339 gtk_label_unrealize (GtkWidget *widget)
4340 {
4341   GtkLabel *label = GTK_LABEL (widget);
4342   GtkLabelPriv *priv = label->priv;
4343
4344   if (priv->select_info)
4345     gtk_label_destroy_window (label);
4346
4347   GTK_WIDGET_CLASS (gtk_label_parent_class)->unrealize (widget);
4348 }
4349
4350 static void
4351 gtk_label_map (GtkWidget *widget)
4352 {
4353   GtkLabel *label = GTK_LABEL (widget);
4354   GtkLabelPriv *priv = label->priv;
4355
4356   GTK_WIDGET_CLASS (gtk_label_parent_class)->map (widget);
4357
4358   if (priv->select_info)
4359     gdk_window_show (priv->select_info->window);
4360 }
4361
4362 static void
4363 gtk_label_unmap (GtkWidget *widget)
4364 {
4365   GtkLabel *label = GTK_LABEL (widget);
4366   GtkLabelPriv *priv = label->priv;
4367
4368   if (priv->select_info)
4369     gdk_window_hide (priv->select_info->window);
4370
4371   GTK_WIDGET_CLASS (gtk_label_parent_class)->unmap (widget);
4372 }
4373
4374 static void
4375 window_to_layout_coords (GtkLabel *label,
4376                          gint     *x,
4377                          gint     *y)
4378 {
4379   gint lx, ly;
4380   GtkWidget *widget;
4381
4382   widget = GTK_WIDGET (label);
4383   
4384   /* get layout location in widget->window coords */
4385   get_layout_location (label, &lx, &ly);
4386   
4387   if (x)
4388     {
4389       *x += widget->allocation.x; /* go to widget->window */
4390       *x -= lx;                   /* go to layout */
4391     }
4392
4393   if (y)
4394     {
4395       *y += widget->allocation.y; /* go to widget->window */
4396       *y -= ly;                   /* go to layout */
4397     }
4398 }
4399
4400 #if 0
4401 static void
4402 layout_to_window_coords (GtkLabel *label,
4403                          gint     *x,
4404                          gint     *y)
4405 {
4406   gint lx, ly;
4407   GtkWidget *widget;
4408
4409   widget = GTK_WIDGET (label);
4410   
4411   /* get layout location in widget->window coords */
4412   get_layout_location (label, &lx, &ly);
4413   
4414   if (x)
4415     {
4416       *x += lx;                   /* go to widget->window */
4417       *x -= widget->allocation.x; /* go to selection window */
4418     }
4419
4420   if (y)
4421     {
4422       *y += ly;                   /* go to widget->window */
4423       *y -= widget->allocation.y; /* go to selection window */
4424     }
4425 }
4426 #endif
4427
4428 static gboolean
4429 get_layout_index (GtkLabel *label,
4430                   gint      x,
4431                   gint      y,
4432                   gint     *index)
4433 {
4434   GtkLabelPriv *priv = label->priv;
4435   gint trailing = 0;
4436   const gchar *cluster;
4437   const gchar *cluster_end;
4438   gboolean inside;
4439
4440   *index = 0;
4441
4442   gtk_label_ensure_layout (label, FALSE);
4443
4444   window_to_layout_coords (label, &x, &y);
4445
4446   x *= PANGO_SCALE;
4447   y *= PANGO_SCALE;
4448
4449   inside = pango_layout_xy_to_index (priv->layout,
4450                                      x, y,
4451                                      index, &trailing);
4452
4453   cluster = priv->text + *index;
4454   cluster_end = cluster;
4455   while (trailing)
4456     {
4457       cluster_end = g_utf8_next_char (cluster_end);
4458       --trailing;
4459     }
4460
4461   *index += (cluster_end - cluster);
4462
4463   return inside;
4464 }
4465
4466 static void
4467 gtk_label_select_word (GtkLabel *label)
4468 {
4469   GtkLabelPriv *priv = label->priv;
4470   gint min, max;
4471
4472   gint start_index = gtk_label_move_backward_word (label, priv->select_info->selection_end);
4473   gint end_index = gtk_label_move_forward_word (label, priv->select_info->selection_end);
4474
4475   min = MIN (priv->select_info->selection_anchor,
4476              priv->select_info->selection_end);
4477   max = MAX (priv->select_info->selection_anchor,
4478              priv->select_info->selection_end);
4479
4480   min = MIN (min, start_index);
4481   max = MAX (max, end_index);
4482
4483   gtk_label_select_region_index (label, min, max);
4484 }
4485
4486 static void
4487 gtk_label_grab_focus (GtkWidget *widget)
4488 {
4489   GtkLabel *label = GTK_LABEL (widget);
4490   GtkLabelPriv *priv = label->priv;
4491   gboolean select_on_focus;
4492   GtkLabelLink *link;
4493
4494   if (priv->select_info == NULL)
4495     return;
4496
4497   GTK_WIDGET_CLASS (gtk_label_parent_class)->grab_focus (widget);
4498
4499   if (priv->select_info->selectable)
4500     {
4501       g_object_get (gtk_widget_get_settings (widget),
4502                     "gtk-label-select-on-focus",
4503                     &select_on_focus,
4504                     NULL);
4505
4506       if (select_on_focus && !priv->in_click)
4507         gtk_label_select_region (label, 0, -1);
4508     }
4509   else
4510     {
4511       if (priv->select_info->links && !priv->in_click)
4512         {
4513           link = priv->select_info->links->data;
4514           priv->select_info->selection_anchor = link->start;
4515           priv->select_info->selection_end = link->start;
4516         }
4517     }
4518 }
4519
4520 static gboolean
4521 gtk_label_focus (GtkWidget        *widget,
4522                  GtkDirectionType  direction)
4523 {
4524   GtkLabel *label = GTK_LABEL (widget);
4525   GtkLabelPriv *priv = label->priv;
4526   GtkLabelSelectionInfo *info = priv->select_info;
4527   GtkLabelLink *focus_link;
4528   GList *l;
4529
4530   if (!gtk_widget_is_focus (widget))
4531     {
4532       gtk_widget_grab_focus (widget);
4533       if (info)
4534         {
4535           focus_link = gtk_label_get_focus_link (label);
4536           if (focus_link && direction == GTK_DIR_TAB_BACKWARD)
4537             {
4538               l = g_list_last (info->links);
4539               focus_link = l->data;
4540               info->selection_anchor = focus_link->start;
4541               info->selection_end = focus_link->start;
4542             }
4543         }
4544
4545       return TRUE;
4546     }
4547
4548   if (!info)
4549     return FALSE;
4550
4551   if (info->selectable)
4552     {
4553       gint index;
4554
4555       if (info->selection_anchor != info->selection_end)
4556         goto out;
4557
4558       index = info->selection_anchor;
4559
4560       if (direction == GTK_DIR_TAB_FORWARD)
4561         for (l = info->links; l; l = l->next)
4562           {
4563             GtkLabelLink *link = l->data;
4564
4565             if (link->start > index)
4566               {
4567                 gtk_label_select_region_index (label, link->start, link->start);
4568                 return TRUE;
4569               }
4570           }
4571       else if (direction == GTK_DIR_TAB_BACKWARD)
4572         for (l = g_list_last (info->links); l; l = l->prev)
4573           {
4574             GtkLabelLink *link = l->data;
4575
4576             if (link->end < index)
4577               {
4578                 gtk_label_select_region_index (label, link->start, link->start);
4579                 return TRUE;
4580               }
4581           }
4582
4583       goto out;
4584     }
4585   else
4586     {
4587       focus_link = gtk_label_get_focus_link (label);
4588       switch (direction)
4589         {
4590         case GTK_DIR_TAB_FORWARD:
4591           if (focus_link)
4592             {
4593               l = g_list_find (info->links, focus_link);
4594               l = l->next;
4595             }
4596           else
4597             l = info->links;
4598           break;
4599
4600         case GTK_DIR_TAB_BACKWARD:
4601           if (focus_link)
4602             {
4603               l = g_list_find (info->links, focus_link);
4604               l = l->prev;
4605             }
4606           else
4607             l = g_list_last (info->links);
4608           break;
4609
4610         default:
4611           goto out;
4612         }
4613
4614       if (l)
4615         {
4616           focus_link = l->data;
4617           info->selection_anchor = focus_link->start;
4618           info->selection_end = focus_link->start;
4619           gtk_widget_queue_draw (widget);
4620
4621           return TRUE;
4622         }
4623     }
4624
4625 out:
4626
4627   return FALSE;
4628 }
4629
4630 static gboolean
4631 gtk_label_button_press (GtkWidget      *widget,
4632                         GdkEventButton *event)
4633 {
4634   GtkLabel *label = GTK_LABEL (widget);
4635   GtkLabelPriv *priv = label->priv;
4636   GtkLabelSelectionInfo *info = priv->select_info;
4637   gint index = 0;
4638   gint min, max;
4639
4640   if (info == NULL)
4641     return FALSE;
4642
4643   if (info->active_link)
4644     {
4645       if (event->button == 1)
4646         {
4647           info->link_clicked = 1;
4648           gtk_widget_queue_draw (widget);
4649         }
4650       else if (event->button == 3 && event->type == GDK_BUTTON_PRESS)
4651         {
4652           info->link_clicked = 1;
4653           gtk_label_do_popup (label, event);
4654           return TRUE;
4655         }
4656     }
4657
4658   if (!info->selectable)
4659     return FALSE;
4660
4661   info->in_drag = FALSE;
4662   info->select_words = FALSE;
4663
4664   if (event->button == 1)
4665     {
4666       if (!gtk_widget_has_focus (widget))
4667         {
4668           priv->in_click = TRUE;
4669           gtk_widget_grab_focus (widget);
4670           priv->in_click = FALSE;
4671         }
4672
4673       if (event->type == GDK_3BUTTON_PRESS)
4674         {
4675           gtk_label_select_region_index (label, 0, strlen (priv->text));
4676           return TRUE;
4677         }
4678
4679       if (event->type == GDK_2BUTTON_PRESS)
4680         {
4681           info->select_words = TRUE;
4682           gtk_label_select_word (label);
4683           return TRUE;
4684         }
4685
4686       get_layout_index (label, event->x, event->y, &index);
4687
4688       min = MIN (info->selection_anchor, info->selection_end);
4689       max = MAX (info->selection_anchor, info->selection_end);
4690
4691       if ((info->selection_anchor != info->selection_end) &&
4692           (event->state & GDK_SHIFT_MASK))
4693         {
4694           /* extend (same as motion) */
4695           min = MIN (min, index);
4696           max = MAX (max, index);
4697
4698           /* ensure the anchor is opposite index */
4699           if (index == min)
4700             {
4701               gint tmp = min;
4702               min = max;
4703               max = tmp;
4704             }
4705
4706           gtk_label_select_region_index (label, min, max);
4707         }
4708       else
4709         {
4710           if (event->type == GDK_3BUTTON_PRESS)
4711             gtk_label_select_region_index (label, 0, strlen (priv->text));
4712           else if (event->type == GDK_2BUTTON_PRESS)
4713             gtk_label_select_word (label);
4714           else if (min < max && min <= index && index <= max)
4715             {
4716               info->in_drag = TRUE;
4717               info->drag_start_x = event->x;
4718               info->drag_start_y = event->y;
4719             }
4720           else
4721             /* start a replacement */
4722             gtk_label_select_region_index (label, index, index);
4723         }
4724
4725       return TRUE;
4726     }
4727   else if (event->button == 3 && event->type == GDK_BUTTON_PRESS)
4728     {
4729       gtk_label_do_popup (label, event);
4730
4731       return TRUE;
4732     }
4733   return FALSE;
4734 }
4735
4736 static gboolean
4737 gtk_label_button_release (GtkWidget      *widget,
4738                           GdkEventButton *event)
4739
4740 {
4741   GtkLabel *label = GTK_LABEL (widget);
4742   GtkLabelPriv *priv = label->priv;
4743   GtkLabelSelectionInfo *info = priv->select_info;
4744   gint index;
4745
4746   if (info == NULL)
4747     return FALSE;
4748
4749   if (info->in_drag)
4750     {
4751       info->in_drag = 0;
4752
4753       get_layout_index (label, event->x, event->y, &index);
4754       gtk_label_select_region_index (label, index, index);
4755
4756       return FALSE;
4757     }
4758
4759   if (event->button != 1)
4760     return FALSE;
4761
4762   if (info->active_link &&
4763       info->selection_anchor == info->selection_end &&
4764       info->link_clicked)
4765     {
4766       emit_activate_link (label, info->active_link);
4767       info->link_clicked = 0;
4768
4769       return TRUE;
4770     }
4771
4772   /* The goal here is to return TRUE iff we ate the
4773    * button press to start selecting.
4774    */
4775   return TRUE;
4776 }
4777
4778 static void
4779 connect_mnemonics_visible_notify (GtkLabel *label)
4780 {
4781   GtkLabelPriv *priv = label->priv;
4782   GtkWidget *toplevel;
4783   gboolean connected;
4784
4785   toplevel = gtk_widget_get_toplevel (GTK_WIDGET (label));
4786
4787   if (!GTK_IS_WINDOW (toplevel))
4788     return;
4789
4790   /* always set up this widgets initial value */
4791   priv->mnemonics_visible =
4792     gtk_window_get_mnemonics_visible (GTK_WINDOW (toplevel));
4793
4794   connected =
4795     GPOINTER_TO_INT (g_object_get_data (G_OBJECT (toplevel),
4796                                         "gtk-label-mnemonics-visible-connected"));
4797
4798   if (!connected)
4799     {
4800       g_signal_connect (toplevel,
4801                         "notify::mnemonics-visible",
4802                         G_CALLBACK (label_mnemonics_visible_changed),
4803                         label);
4804       g_object_set_data (G_OBJECT (toplevel),
4805                          "gtk-label-mnemonics-visible-connected",
4806                          GINT_TO_POINTER (1));
4807     }
4808 }
4809
4810 static void
4811 drag_begin_cb (GtkWidget      *widget,
4812                GdkDragContext *context,
4813                gpointer        data)
4814 {
4815   GtkLabel *label = GTK_LABEL (widget);
4816   GtkLabelPriv *priv = label->priv;
4817   GdkPixmap *pixmap = NULL;
4818
4819   g_signal_handlers_disconnect_by_func (widget, drag_begin_cb, NULL);
4820
4821   if ((priv->select_info->selection_anchor !=
4822        priv->select_info->selection_end) &&
4823       priv->text)
4824     {
4825       gint start, end;
4826       gint len;
4827
4828       start = MIN (priv->select_info->selection_anchor,
4829                    priv->select_info->selection_end);
4830       end = MAX (priv->select_info->selection_anchor,
4831                  priv->select_info->selection_end);
4832
4833       len = strlen (priv->text);
4834
4835       if (end > len)
4836         end = len;
4837       
4838       if (start > len)
4839         start = len;
4840       
4841       pixmap = _gtk_text_util_create_drag_icon (widget, 
4842                                                 priv->text + start,
4843                                                 end - start);
4844     }
4845
4846   if (pixmap)
4847     gtk_drag_set_icon_pixmap (context,
4848                               gdk_drawable_get_colormap (pixmap),
4849                               pixmap,
4850                               NULL,
4851                               -2, -2);
4852   else
4853     gtk_drag_set_icon_default (context);
4854   
4855   if (pixmap)
4856     g_object_unref (pixmap);
4857 }
4858
4859 static gboolean
4860 gtk_label_motion (GtkWidget      *widget,
4861                   GdkEventMotion *event)
4862 {
4863   GtkLabel *label = GTK_LABEL (widget);
4864   GtkLabelPriv *priv = label->priv;
4865   GtkLabelSelectionInfo *info = priv->select_info;
4866   gint index;
4867
4868   if (info == NULL)
4869     return FALSE;
4870
4871   if (info->links && !info->in_drag)
4872     {
4873       GList *l;
4874       GtkLabelLink *link;
4875       gboolean found = FALSE;
4876
4877       if (info->selection_anchor == info->selection_end)
4878         {
4879           if (get_layout_index (label, event->x, event->y, &index))
4880             {
4881               for (l = info->links; l != NULL; l = l->next)
4882                 {
4883                   link = l->data;
4884                   if (index >= link->start && index <= link->end)
4885                     {
4886                       found = TRUE;
4887                       break;
4888                     }
4889                 }
4890             }
4891         }
4892
4893       if (found)
4894         {
4895           if (info->active_link != link)
4896             {
4897               info->link_clicked = 0;
4898               info->active_link = link;
4899               gtk_label_update_cursor (label);
4900               gtk_widget_queue_draw (widget);
4901             }
4902         }
4903       else
4904         {
4905           if (info->active_link != NULL)
4906             {
4907               info->link_clicked = 0;
4908               info->active_link = NULL;
4909               gtk_label_update_cursor (label);
4910               gtk_widget_queue_draw (widget);
4911             }
4912         }
4913     }
4914
4915   if (!info->selectable)
4916     return FALSE;
4917
4918   if ((event->state & GDK_BUTTON1_MASK) == 0)
4919     return FALSE;
4920
4921   if (info->in_drag)
4922     {
4923       if (gtk_drag_check_threshold (widget,
4924                                     info->drag_start_x,
4925                                     info->drag_start_y,
4926                                     event->x, event->y))
4927         {
4928           GtkTargetList *target_list = gtk_target_list_new (NULL, 0);
4929
4930           gtk_target_list_add_text_targets (target_list, 0);
4931
4932           g_signal_connect (widget, "drag-begin",
4933                             G_CALLBACK (drag_begin_cb), NULL);
4934           gtk_drag_begin (widget, target_list,
4935                           GDK_ACTION_COPY,
4936                           1, (GdkEvent *)event);
4937
4938           info->in_drag = FALSE;
4939
4940           gtk_target_list_unref (target_list);
4941         }
4942     }
4943   else
4944     {
4945       gint x, y;
4946
4947       gdk_window_get_device_position (info->window, event->device, &x, &y, NULL);
4948       get_layout_index (label, x, y, &index);
4949
4950       if (info->select_words)
4951         {
4952           gint min, max;
4953           gint old_min, old_max;
4954           gint anchor, end;
4955
4956           min = gtk_label_move_backward_word (label, index);
4957           max = gtk_label_move_forward_word (label, index);
4958
4959           anchor = info->selection_anchor;
4960           end = info->selection_end;
4961
4962           old_min = MIN (anchor, end);
4963           old_max = MAX (anchor, end);
4964
4965           if (min < old_min)
4966             {
4967               anchor = min;
4968               end = old_max;
4969             }
4970           else if (old_max < max)
4971             {
4972               anchor = max;
4973               end = old_min;
4974             }
4975           else if (anchor == old_min)
4976             {
4977               if (anchor != min)
4978                 anchor = max;
4979             }
4980           else
4981             {
4982               if (anchor != max)
4983                 anchor = min;
4984             }
4985
4986           gtk_label_select_region_index (label, anchor, end);
4987         }
4988       else
4989         gtk_label_select_region_index (label, info->selection_anchor, index);
4990     }
4991
4992   return TRUE;
4993 }
4994
4995 static gboolean
4996 gtk_label_leave_notify (GtkWidget        *widget,
4997                         GdkEventCrossing *event)
4998 {
4999   GtkLabel *label = GTK_LABEL (widget);
5000   GtkLabelPriv *priv = label->priv;
5001
5002   if (priv->select_info)
5003     {
5004       priv->select_info->active_link = NULL;
5005       gtk_label_update_cursor (label);
5006       gtk_widget_queue_draw (widget);
5007     }
5008
5009   if (GTK_WIDGET_CLASS (gtk_label_parent_class)->leave_notify_event)
5010     return GTK_WIDGET_CLASS (gtk_label_parent_class)->leave_notify_event (widget, event);
5011
5012  return FALSE;
5013 }
5014
5015 static void
5016 gtk_label_create_window (GtkLabel *label)
5017 {
5018   GtkLabelPriv *priv = label->priv;
5019   GtkWidget *widget;
5020   GdkWindowAttr attributes;
5021   gint attributes_mask;
5022
5023   g_assert (priv->select_info);
5024   widget = GTK_WIDGET (label);
5025   g_assert (gtk_widget_get_realized (widget));
5026
5027   if (priv->select_info->window)
5028     return;
5029
5030   attributes.x = widget->allocation.x;
5031   attributes.y = widget->allocation.y;
5032   attributes.width = widget->allocation.width;
5033   attributes.height = widget->allocation.height;
5034   attributes.window_type = GDK_WINDOW_CHILD;
5035   attributes.wclass = GDK_INPUT_ONLY;
5036   attributes.override_redirect = TRUE;
5037   attributes.event_mask = gtk_widget_get_events (widget) |
5038     GDK_BUTTON_PRESS_MASK        |
5039     GDK_BUTTON_RELEASE_MASK      |
5040     GDK_LEAVE_NOTIFY_MASK        |
5041     GDK_BUTTON_MOTION_MASK       |
5042     GDK_POINTER_MOTION_MASK      |
5043     GDK_POINTER_MOTION_HINT_MASK;
5044   attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_NOREDIR;
5045   if (gtk_widget_is_sensitive (widget))
5046     {
5047       attributes.cursor = gdk_cursor_new_for_display (gtk_widget_get_display (widget),
5048                                                       GDK_XTERM);
5049       attributes_mask |= GDK_WA_CURSOR;
5050     }
5051
5052
5053   priv->select_info->window = gdk_window_new (widget->window,
5054                                                &attributes, attributes_mask);
5055   gdk_window_set_user_data (priv->select_info->window, widget);
5056
5057   if (attributes_mask & GDK_WA_CURSOR)
5058     gdk_cursor_unref (attributes.cursor);
5059 }
5060
5061 static void
5062 gtk_label_destroy_window (GtkLabel *label)
5063 {
5064   GtkLabelPriv *priv = label->priv;
5065
5066   g_assert (priv->select_info);
5067
5068   if (priv->select_info->window == NULL)
5069     return;
5070
5071   gdk_window_set_user_data (priv->select_info->window, NULL);
5072   gdk_window_destroy (priv->select_info->window);
5073   priv->select_info->window = NULL;
5074 }
5075
5076 static void
5077 gtk_label_ensure_select_info (GtkLabel *label)
5078 {
5079   GtkLabelPriv *priv = label->priv;
5080
5081   if (priv->select_info == NULL)
5082     {
5083       priv->select_info = g_new0 (GtkLabelSelectionInfo, 1);
5084
5085       gtk_widget_set_can_focus (GTK_WIDGET (label), TRUE);
5086
5087       if (gtk_widget_get_realized (GTK_WIDGET (label)))
5088         gtk_label_create_window (label);
5089
5090       if (gtk_widget_get_mapped (GTK_WIDGET (label)))
5091         gdk_window_show (priv->select_info->window);
5092     }
5093 }
5094
5095 static void
5096 gtk_label_clear_select_info (GtkLabel *label)
5097 {
5098   GtkLabelPriv *priv = label->priv;
5099
5100   if (priv->select_info == NULL)
5101     return;
5102
5103   if (!priv->select_info->selectable && !priv->select_info->links)
5104     {
5105       gtk_label_destroy_window (label);
5106
5107       g_free (priv->select_info);
5108       priv->select_info = NULL;
5109
5110       gtk_widget_set_can_focus (GTK_WIDGET (label), FALSE);
5111     }
5112 }
5113
5114 /**
5115  * gtk_label_set_selectable:
5116  * @label: a #GtkLabel
5117  * @setting: %TRUE to allow selecting text in the label
5118  *
5119  * Selectable labels allow the user to select text from the label, for
5120  * copy-and-paste.
5121  **/
5122 void
5123 gtk_label_set_selectable (GtkLabel *label,
5124                           gboolean  setting)
5125 {
5126   GtkLabelPriv *priv;
5127   gboolean old_setting;
5128
5129   g_return_if_fail (GTK_IS_LABEL (label));
5130
5131   priv = label->priv;
5132
5133   setting = setting != FALSE;
5134   old_setting = priv->select_info && priv->select_info->selectable;
5135
5136   if (setting)
5137     {
5138       gtk_label_ensure_select_info (label);
5139       priv->select_info->selectable = TRUE;
5140       gtk_label_update_cursor (label);
5141     }
5142   else
5143     {
5144       if (old_setting)
5145         {
5146           /* unselect, to give up the selection */
5147           gtk_label_select_region (label, 0, 0);
5148
5149           priv->select_info->selectable = FALSE;
5150           gtk_label_clear_select_info (label);
5151           gtk_label_update_cursor (label);
5152         }
5153     }
5154   if (setting != old_setting)
5155     {
5156       g_object_freeze_notify (G_OBJECT (label));
5157       g_object_notify (G_OBJECT (label), "selectable");
5158       g_object_notify (G_OBJECT (label), "cursor-position");
5159       g_object_notify (G_OBJECT (label), "selection-bound");
5160       g_object_thaw_notify (G_OBJECT (label));
5161       gtk_widget_queue_draw (GTK_WIDGET (label));
5162     }
5163 }
5164
5165 /**
5166  * gtk_label_get_selectable:
5167  * @label: a #GtkLabel
5168  * 
5169  * Gets the value set by gtk_label_set_selectable().
5170  * 
5171  * Return value: %TRUE if the user can copy text from the label
5172  **/
5173 gboolean
5174 gtk_label_get_selectable (GtkLabel *label)
5175 {
5176   GtkLabelPriv *priv;
5177
5178   g_return_val_if_fail (GTK_IS_LABEL (label), FALSE);
5179
5180   priv = label->priv;
5181
5182   return priv->select_info && priv->select_info->selectable;
5183 }
5184
5185 static void
5186 free_angle (gpointer angle)
5187 {
5188   g_slice_free (gdouble, angle);
5189 }
5190
5191 /**
5192  * gtk_label_set_angle:
5193  * @label: a #GtkLabel
5194  * @angle: the angle that the baseline of the label makes with
5195  *   the horizontal, in degrees, measured counterclockwise
5196  * 
5197  * Sets the angle of rotation for the label. An angle of 90 reads from
5198  * from bottom to top, an angle of 270, from top to bottom. The angle
5199  * setting for the label is ignored if the label is selectable,
5200  * wrapped, or ellipsized.
5201  *
5202  * Since: 2.6
5203  **/
5204 void
5205 gtk_label_set_angle (GtkLabel *label,
5206                      gdouble   angle)
5207 {
5208   gdouble *label_angle;
5209
5210   g_return_if_fail (GTK_IS_LABEL (label));
5211
5212   label_angle = (gdouble *)g_object_get_qdata (G_OBJECT (label), quark_angle);
5213
5214   if (!label_angle)
5215     {
5216       label_angle = g_slice_new (gdouble);
5217       *label_angle = 0.0;
5218       g_object_set_qdata_full (G_OBJECT (label), quark_angle, 
5219                                label_angle, free_angle);
5220     }
5221   
5222   /* Canonicalize to [0,360]. We don't canonicalize 360 to 0, because
5223    * double property ranges are inclusive, and changing 360 to 0 would
5224    * make a property editor behave strangely.
5225    */
5226   if (angle < 0 || angle > 360.0)
5227     angle = angle - 360. * floor (angle / 360.);
5228
5229   if (*label_angle != angle)
5230     {
5231       *label_angle = angle;
5232       
5233       gtk_label_clear_layout (label);
5234       gtk_widget_queue_resize (GTK_WIDGET (label));
5235
5236       g_object_notify (G_OBJECT (label), "angle");
5237     }
5238 }
5239
5240 /**
5241  * gtk_label_get_angle:
5242  * @label: a #GtkLabel
5243  * 
5244  * Gets the angle of rotation for the label. See
5245  * gtk_label_set_angle().
5246  * 
5247  * Return value: the angle of rotation for the label
5248  *
5249  * Since: 2.6
5250  **/
5251 gdouble
5252 gtk_label_get_angle  (GtkLabel *label)
5253 {
5254   gdouble *angle;
5255
5256   g_return_val_if_fail (GTK_IS_LABEL (label), 0.0);
5257   
5258   angle = (gdouble *)g_object_get_qdata (G_OBJECT (label), quark_angle);
5259
5260   if (angle)
5261     return *angle;
5262   else
5263     return 0.0;
5264 }
5265
5266 static void
5267 gtk_label_set_selection_text (GtkLabel         *label,
5268                               GtkSelectionData *selection_data)
5269 {
5270   GtkLabelPriv *priv = label->priv;
5271
5272   if ((priv->select_info->selection_anchor !=
5273        priv->select_info->selection_end) &&
5274       priv->text)
5275     {
5276       gint start, end;
5277       gint len;
5278
5279       start = MIN (priv->select_info->selection_anchor,
5280                    priv->select_info->selection_end);
5281       end = MAX (priv->select_info->selection_anchor,
5282                  priv->select_info->selection_end);
5283
5284       len = strlen (priv->text);
5285
5286       if (end > len)
5287         end = len;
5288
5289       if (start > len)
5290         start = len;
5291
5292       gtk_selection_data_set_text (selection_data,
5293                                    priv->text + start,
5294                                    end - start);
5295     }
5296 }
5297
5298 static void
5299 gtk_label_drag_data_get (GtkWidget        *widget,
5300                          GdkDragContext   *context,
5301                          GtkSelectionData *selection_data,
5302                          guint             info,
5303                          guint             time)
5304 {
5305   gtk_label_set_selection_text (GTK_LABEL (widget), selection_data);
5306 }
5307
5308 static void
5309 get_text_callback (GtkClipboard     *clipboard,
5310                    GtkSelectionData *selection_data,
5311                    guint             info,
5312                    gpointer          user_data_or_owner)
5313 {
5314   gtk_label_set_selection_text (GTK_LABEL (user_data_or_owner), selection_data);
5315 }
5316
5317 static void
5318 clear_text_callback (GtkClipboard     *clipboard,
5319                      gpointer          user_data_or_owner)
5320 {
5321   GtkLabel *label;
5322   GtkLabelPriv *priv;
5323
5324   label = GTK_LABEL (user_data_or_owner);
5325   priv = label->priv;
5326
5327   if (priv->select_info)
5328     {
5329       priv->select_info->selection_anchor = priv->select_info->selection_end;
5330
5331       gtk_widget_queue_draw (GTK_WIDGET (label));
5332     }
5333 }
5334
5335 static void
5336 gtk_label_select_region_index (GtkLabel *label,
5337                                gint      anchor_index,
5338                                gint      end_index)
5339 {
5340   GtkLabelPriv *priv;
5341
5342   g_return_if_fail (GTK_IS_LABEL (label));
5343
5344   priv = label->priv;
5345
5346   if (priv->select_info && priv->select_info->selectable)
5347     {
5348       GtkClipboard *clipboard;
5349
5350       if (priv->select_info->selection_anchor == anchor_index &&
5351           priv->select_info->selection_end == end_index)
5352         return;
5353
5354       priv->select_info->selection_anchor = anchor_index;
5355       priv->select_info->selection_end = end_index;
5356
5357       clipboard = gtk_widget_get_clipboard (GTK_WIDGET (label),
5358                                             GDK_SELECTION_PRIMARY);
5359
5360       if (anchor_index != end_index)
5361         {
5362           GtkTargetList *list;
5363           GtkTargetEntry *targets;
5364           gint n_targets;
5365
5366           list = gtk_target_list_new (NULL, 0);
5367           gtk_target_list_add_text_targets (list, 0);
5368           targets = gtk_target_table_new_from_list (list, &n_targets);
5369
5370           gtk_clipboard_set_with_owner (clipboard,
5371                                         targets, n_targets,
5372                                         get_text_callback,
5373                                         clear_text_callback,
5374                                         G_OBJECT (label));
5375
5376           gtk_target_table_free (targets, n_targets);
5377           gtk_target_list_unref (list);
5378         }
5379       else
5380         {
5381           if (gtk_clipboard_get_owner (clipboard) == G_OBJECT (label))
5382             gtk_clipboard_clear (clipboard);
5383         }
5384
5385       gtk_widget_queue_draw (GTK_WIDGET (label));
5386
5387       g_object_freeze_notify (G_OBJECT (label));
5388       g_object_notify (G_OBJECT (label), "cursor-position");
5389       g_object_notify (G_OBJECT (label), "selection-bound");
5390       g_object_thaw_notify (G_OBJECT (label));
5391     }
5392 }
5393
5394 /**
5395  * gtk_label_select_region:
5396  * @label: a #GtkLabel
5397  * @start_offset: start offset (in characters not bytes)
5398  * @end_offset: end offset (in characters not bytes)
5399  *
5400  * Selects a range of characters in the label, if the label is selectable.
5401  * See gtk_label_set_selectable(). If the label is not selectable,
5402  * this function has no effect. If @start_offset or
5403  * @end_offset are -1, then the end of the label will be substituted.
5404  **/
5405 void
5406 gtk_label_select_region  (GtkLabel *label,
5407                           gint      start_offset,
5408                           gint      end_offset)
5409 {
5410   GtkLabelPriv *priv;
5411
5412   g_return_if_fail (GTK_IS_LABEL (label));
5413
5414   priv = label->priv;
5415
5416   if (priv->text && priv->select_info)
5417     {
5418       if (start_offset < 0)
5419         start_offset = g_utf8_strlen (priv->text, -1);
5420       
5421       if (end_offset < 0)
5422         end_offset = g_utf8_strlen (priv->text, -1);
5423       
5424       gtk_label_select_region_index (label,
5425                                      g_utf8_offset_to_pointer (priv->text, start_offset) - priv->text,
5426                                      g_utf8_offset_to_pointer (priv->text, end_offset) - priv->text);
5427     }
5428 }
5429
5430 /**
5431  * gtk_label_get_selection_bounds:
5432  * @label: a #GtkLabel
5433  * @start: return location for start of selection, as a character offset
5434  * @end: return location for end of selection, as a character offset
5435  * 
5436  * Gets the selected range of characters in the label, returning %TRUE
5437  * if there's a selection.
5438  * 
5439  * Return value: %TRUE if selection is non-empty
5440  **/
5441 gboolean
5442 gtk_label_get_selection_bounds (GtkLabel  *label,
5443                                 gint      *start,
5444                                 gint      *end)
5445 {
5446   GtkLabelPriv *priv;
5447
5448   g_return_val_if_fail (GTK_IS_LABEL (label), FALSE);
5449
5450   priv = label->priv;
5451
5452   if (priv->select_info == NULL)
5453     {
5454       /* not a selectable label */
5455       if (start)
5456         *start = 0;
5457       if (end)
5458         *end = 0;
5459
5460       return FALSE;
5461     }
5462   else
5463     {
5464       gint start_index, end_index;
5465       gint start_offset, end_offset;
5466       gint len;
5467       
5468       start_index = MIN (priv->select_info->selection_anchor,
5469                    priv->select_info->selection_end);
5470       end_index = MAX (priv->select_info->selection_anchor,
5471                  priv->select_info->selection_end);
5472
5473       len = strlen (priv->text);
5474
5475       if (end_index > len)
5476         end_index = len;
5477
5478       if (start_index > len)
5479         start_index = len;
5480       
5481       start_offset = g_utf8_strlen (priv->text, start_index);
5482       end_offset = g_utf8_strlen (priv->text, end_index);
5483
5484       if (start_offset > end_offset)
5485         {
5486           gint tmp = start_offset;
5487           start_offset = end_offset;
5488           end_offset = tmp;
5489         }
5490       
5491       if (start)
5492         *start = start_offset;
5493
5494       if (end)
5495         *end = end_offset;
5496
5497       return start_offset != end_offset;
5498     }
5499 }
5500
5501
5502 /**
5503  * gtk_label_get_layout:
5504  * @label: a #GtkLabel
5505  * 
5506  * Gets the #PangoLayout used to display the label.
5507  * The layout is useful to e.g. convert text positions to
5508  * pixel positions, in combination with gtk_label_get_layout_offsets().
5509  * The returned layout is owned by the label so need not be
5510  * freed by the caller.
5511  *
5512  * Return value: (transfer none): the #PangoLayout for this label
5513  **/
5514 PangoLayout*
5515 gtk_label_get_layout (GtkLabel *label)
5516 {
5517   GtkLabelPriv *priv;
5518
5519   g_return_val_if_fail (GTK_IS_LABEL (label), NULL);
5520
5521   priv = label->priv;
5522
5523   gtk_label_ensure_layout (label, FALSE);
5524
5525   return priv->layout;
5526 }
5527
5528 /**
5529  * gtk_label_get_layout_offsets:
5530  * @label: a #GtkLabel
5531  * @x: (allow-none): location to store X offset of layout, or %NULL
5532  * @y: (allow-none): location to store Y offset of layout, or %NULL
5533  *
5534  * Obtains the coordinates where the label will draw the #PangoLayout
5535  * representing the text in the label; useful to convert mouse events
5536  * into coordinates inside the #PangoLayout, e.g. to take some action
5537  * if some part of the label is clicked. Of course you will need to
5538  * create a #GtkEventBox to receive the events, and pack the label
5539  * inside it, since labels are a #GTK_NO_WINDOW widget. Remember
5540  * when using the #PangoLayout functions you need to convert to
5541  * and from pixels using PANGO_PIXELS() or #PANGO_SCALE.
5542  **/
5543 void
5544 gtk_label_get_layout_offsets (GtkLabel *label,
5545                               gint     *x,
5546                               gint     *y)
5547 {
5548   g_return_if_fail (GTK_IS_LABEL (label));
5549
5550   gtk_label_ensure_layout (label, FALSE);
5551
5552   get_layout_location (label, x, y);
5553 }
5554
5555 /**
5556  * gtk_label_set_use_markup:
5557  * @label: a #GtkLabel
5558  * @setting: %TRUE if the label's text should be parsed for markup.
5559  *
5560  * Sets whether the text of the label contains markup in <link
5561  * linkend="PangoMarkupFormat">Pango's text markup
5562  * language</link>. See gtk_label_set_markup().
5563  **/
5564 void
5565 gtk_label_set_use_markup (GtkLabel *label,
5566                           gboolean  setting)
5567 {
5568   g_return_if_fail (GTK_IS_LABEL (label));
5569
5570   gtk_label_set_use_markup_internal (label, setting);
5571   gtk_label_recalculate (label);
5572 }
5573
5574 /**
5575  * gtk_label_get_use_markup:
5576  * @label: a #GtkLabel
5577  *
5578  * Returns whether the label's text is interpreted as marked up with
5579  * the <link linkend="PangoMarkupFormat">Pango text markup
5580  * language</link>. See gtk_label_set_use_markup ().
5581  *
5582  * Return value: %TRUE if the label's text will be parsed for markup.
5583  **/
5584 gboolean
5585 gtk_label_get_use_markup (GtkLabel *label)
5586 {
5587   g_return_val_if_fail (GTK_IS_LABEL (label), FALSE);
5588
5589   return label->priv->use_markup;
5590 }
5591
5592 /**
5593  * gtk_label_set_use_underline:
5594  * @label: a #GtkLabel
5595  * @setting: %TRUE if underlines in the text indicate mnemonics
5596  *
5597  * If true, an underline in the text indicates the next character should be
5598  * used for the mnemonic accelerator key.
5599  */
5600 void
5601 gtk_label_set_use_underline (GtkLabel *label,
5602                              gboolean  setting)
5603 {
5604   g_return_if_fail (GTK_IS_LABEL (label));
5605
5606   gtk_label_set_use_underline_internal (label, setting);
5607   gtk_label_recalculate (label);
5608 }
5609
5610 /**
5611  * gtk_label_get_use_underline:
5612  * @label: a #GtkLabel
5613  *
5614  * Returns whether an embedded underline in the label indicates a
5615  * mnemonic. See gtk_label_set_use_underline().
5616  *
5617  * Return value: %TRUE whether an embedded underline in the label indicates
5618  *               the mnemonic accelerator keys.
5619  **/
5620 gboolean
5621 gtk_label_get_use_underline (GtkLabel *label)
5622 {
5623   g_return_val_if_fail (GTK_IS_LABEL (label), FALSE);
5624
5625   return label->priv->use_underline;
5626 }
5627
5628 /**
5629  * gtk_label_set_single_line_mode:
5630  * @label: a #GtkLabel
5631  * @single_line_mode: %TRUE if the label should be in single line mode
5632  *
5633  * Sets whether the label is in single line mode.
5634  *
5635  * Since: 2.6
5636  */
5637 void
5638 gtk_label_set_single_line_mode (GtkLabel *label,
5639                                 gboolean single_line_mode)
5640 {
5641   GtkLabelPriv *priv;
5642
5643   g_return_if_fail (GTK_IS_LABEL (label));
5644
5645   priv = label->priv;
5646
5647   single_line_mode = single_line_mode != FALSE;
5648
5649   if (priv->single_line_mode != single_line_mode)
5650     {
5651       priv->single_line_mode = single_line_mode;
5652
5653       gtk_label_clear_layout (label);
5654       gtk_widget_queue_resize (GTK_WIDGET (label));
5655
5656       g_object_notify (G_OBJECT (label), "single-line-mode");
5657     }
5658 }
5659
5660 /**
5661  * gtk_label_get_single_line_mode:
5662  * @label: a #GtkLabel
5663  *
5664  * Returns whether the label is in single line mode.
5665  *
5666  * Return value: %TRUE when the label is in single line mode.
5667  *
5668  * Since: 2.6
5669  **/
5670 gboolean
5671 gtk_label_get_single_line_mode  (GtkLabel *label)
5672 {
5673   g_return_val_if_fail (GTK_IS_LABEL (label), FALSE);
5674
5675   return label->priv->single_line_mode;
5676 }
5677
5678 /* Compute the X position for an offset that corresponds to the "more important
5679  * cursor position for that offset. We use this when trying to guess to which
5680  * end of the selection we should go to when the user hits the left or
5681  * right arrow key.
5682  */
5683 static void
5684 get_better_cursor (GtkLabel *label,
5685                    gint      index,
5686                    gint      *x,
5687                    gint      *y)
5688 {
5689   GtkLabelPriv *priv = label->priv;
5690   GdkKeymap *keymap = gdk_keymap_get_for_display (gtk_widget_get_display (GTK_WIDGET (label)));
5691   PangoDirection keymap_direction = gdk_keymap_get_direction (keymap);
5692   PangoDirection cursor_direction = get_cursor_direction (label);
5693   gboolean split_cursor;
5694   PangoRectangle strong_pos, weak_pos;
5695   
5696   g_object_get (gtk_widget_get_settings (GTK_WIDGET (label)),
5697                 "gtk-split-cursor", &split_cursor,
5698                 NULL);
5699
5700   gtk_label_ensure_layout (label, FALSE);
5701   
5702   pango_layout_get_cursor_pos (priv->layout, index,
5703                                &strong_pos, &weak_pos);
5704
5705   if (split_cursor)
5706     {
5707       *x = strong_pos.x / PANGO_SCALE;
5708       *y = strong_pos.y / PANGO_SCALE;
5709     }
5710   else
5711     {
5712       if (keymap_direction == cursor_direction)
5713         {
5714           *x = strong_pos.x / PANGO_SCALE;
5715           *y = strong_pos.y / PANGO_SCALE;
5716         }
5717       else
5718         {
5719           *x = weak_pos.x / PANGO_SCALE;
5720           *y = weak_pos.y / PANGO_SCALE;
5721         }
5722     }
5723 }
5724
5725
5726 static gint
5727 gtk_label_move_logically (GtkLabel *label,
5728                           gint      start,
5729                           gint      count)
5730 {
5731   GtkLabelPriv *priv = label->priv;
5732   gint offset = g_utf8_pointer_to_offset (priv->text,
5733                                           priv->text + start);
5734
5735   if (priv->text)
5736     {
5737       PangoLogAttr *log_attrs;
5738       gint n_attrs;
5739       gint length;
5740
5741       gtk_label_ensure_layout (label, FALSE);
5742       
5743       length = g_utf8_strlen (priv->text, -1);
5744
5745       pango_layout_get_log_attrs (priv->layout, &log_attrs, &n_attrs);
5746
5747       while (count > 0 && offset < length)
5748         {
5749           do
5750             offset++;
5751           while (offset < length && !log_attrs[offset].is_cursor_position);
5752           
5753           count--;
5754         }
5755       while (count < 0 && offset > 0)
5756         {
5757           do
5758             offset--;
5759           while (offset > 0 && !log_attrs[offset].is_cursor_position);
5760           
5761           count++;
5762         }
5763       
5764       g_free (log_attrs);
5765     }
5766
5767   return g_utf8_offset_to_pointer (priv->text, offset) - priv->text;
5768 }
5769
5770 static gint
5771 gtk_label_move_visually (GtkLabel *label,
5772                          gint      start,
5773                          gint      count)
5774 {
5775   GtkLabelPriv *priv = label->priv;
5776   gint index;
5777
5778   index = start;
5779   
5780   while (count != 0)
5781     {
5782       int new_index, new_trailing;
5783       gboolean split_cursor;
5784       gboolean strong;
5785
5786       gtk_label_ensure_layout (label, FALSE);
5787
5788       g_object_get (gtk_widget_get_settings (GTK_WIDGET (label)),
5789                     "gtk-split-cursor", &split_cursor,
5790                     NULL);
5791
5792       if (split_cursor)
5793         strong = TRUE;
5794       else
5795         {
5796           GdkKeymap *keymap = gdk_keymap_get_for_display (gtk_widget_get_display (GTK_WIDGET (label)));
5797           PangoDirection keymap_direction = gdk_keymap_get_direction (keymap);
5798
5799           strong = keymap_direction == get_cursor_direction (label);
5800         }
5801       
5802       if (count > 0)
5803         {
5804           pango_layout_move_cursor_visually (priv->layout, strong, index, 0, 1, &new_index, &new_trailing);
5805           count--;
5806         }
5807       else
5808         {
5809           pango_layout_move_cursor_visually (priv->layout, strong, index, 0, -1, &new_index, &new_trailing);
5810           count++;
5811         }
5812
5813       if (new_index < 0 || new_index == G_MAXINT)
5814         break;
5815
5816       index = new_index;
5817       
5818       while (new_trailing--)
5819         index = g_utf8_next_char (priv->text + new_index) - priv->text;
5820     }
5821   
5822   return index;
5823 }
5824
5825 static gint
5826 gtk_label_move_forward_word (GtkLabel *label,
5827                              gint      start)
5828 {
5829   GtkLabelPriv *priv = label->priv;
5830   gint new_pos = g_utf8_pointer_to_offset (priv->text,
5831                                            priv->text + start);
5832   gint length;
5833
5834   length = g_utf8_strlen (priv->text, -1);
5835   if (new_pos < length)
5836     {
5837       PangoLogAttr *log_attrs;
5838       gint n_attrs;
5839
5840       gtk_label_ensure_layout (label, FALSE);
5841
5842       pango_layout_get_log_attrs (priv->layout, &log_attrs, &n_attrs);
5843
5844       /* Find the next word end */
5845       new_pos++;
5846       while (new_pos < n_attrs && !log_attrs[new_pos].is_word_end)
5847         new_pos++;
5848
5849       g_free (log_attrs);
5850     }
5851
5852   return g_utf8_offset_to_pointer (priv->text, new_pos) - priv->text;
5853 }
5854
5855
5856 static gint
5857 gtk_label_move_backward_word (GtkLabel *label,
5858                               gint      start)
5859 {
5860   GtkLabelPriv *priv = label->priv;
5861   gint new_pos = g_utf8_pointer_to_offset (priv->text,
5862                                            priv->text + start);
5863
5864   if (new_pos > 0)
5865     {
5866       PangoLogAttr *log_attrs;
5867       gint n_attrs;
5868
5869       gtk_label_ensure_layout (label, FALSE);
5870
5871       pango_layout_get_log_attrs (priv->layout, &log_attrs, &n_attrs);
5872
5873       new_pos -= 1;
5874
5875       /* Find the previous word beginning */
5876       while (new_pos > 0 && !log_attrs[new_pos].is_word_start)
5877         new_pos--;
5878
5879       g_free (log_attrs);
5880     }
5881
5882   return g_utf8_offset_to_pointer (priv->text, new_pos) - priv->text;
5883 }
5884
5885 static void
5886 gtk_label_move_cursor (GtkLabel       *label,
5887                        GtkMovementStep step,
5888                        gint            count,
5889                        gboolean        extend_selection)
5890 {
5891   GtkLabelPriv *priv = label->priv;
5892   gint old_pos;
5893   gint new_pos;
5894
5895   if (priv->select_info == NULL)
5896     return;
5897
5898   old_pos = new_pos = priv->select_info->selection_end;
5899
5900   if (priv->select_info->selection_end != priv->select_info->selection_anchor &&
5901       !extend_selection)
5902     {
5903       /* If we have a current selection and aren't extending it, move to the
5904        * start/or end of the selection as appropriate
5905        */
5906       switch (step)
5907         {
5908         case GTK_MOVEMENT_VISUAL_POSITIONS:
5909           {
5910             gint end_x, end_y;
5911             gint anchor_x, anchor_y;
5912             gboolean end_is_left;
5913
5914             get_better_cursor (label, priv->select_info->selection_end, &end_x, &end_y);
5915             get_better_cursor (label, priv->select_info->selection_anchor, &anchor_x, &anchor_y);
5916
5917             end_is_left = (end_y < anchor_y) || (end_y == anchor_y && end_x < anchor_x);
5918             
5919             if (count < 0)
5920               new_pos = end_is_left ? priv->select_info->selection_end : priv->select_info->selection_anchor;
5921             else
5922               new_pos = !end_is_left ? priv->select_info->selection_end : priv->select_info->selection_anchor;
5923             break;
5924           }
5925         case GTK_MOVEMENT_LOGICAL_POSITIONS:
5926         case GTK_MOVEMENT_WORDS:
5927           if (count < 0)
5928             new_pos = MIN (priv->select_info->selection_end, priv->select_info->selection_anchor);
5929           else
5930             new_pos = MAX (priv->select_info->selection_end, priv->select_info->selection_anchor);
5931           break;
5932         case GTK_MOVEMENT_DISPLAY_LINE_ENDS:
5933         case GTK_MOVEMENT_PARAGRAPH_ENDS:
5934         case GTK_MOVEMENT_BUFFER_ENDS:
5935           /* FIXME: Can do better here */
5936           new_pos = count < 0 ? 0 : strlen (priv->text);
5937           break;
5938         case GTK_MOVEMENT_DISPLAY_LINES:
5939         case GTK_MOVEMENT_PARAGRAPHS:
5940         case GTK_MOVEMENT_PAGES:
5941         case GTK_MOVEMENT_HORIZONTAL_PAGES:
5942           break;
5943         }
5944     }
5945   else
5946     {
5947       switch (step)
5948         {
5949         case GTK_MOVEMENT_LOGICAL_POSITIONS:
5950           new_pos = gtk_label_move_logically (label, new_pos, count);
5951           break;
5952         case GTK_MOVEMENT_VISUAL_POSITIONS:
5953           new_pos = gtk_label_move_visually (label, new_pos, count);
5954           if (new_pos == old_pos)
5955             {
5956               if (!extend_selection)
5957                 {
5958                   if (!gtk_widget_keynav_failed (GTK_WIDGET (label),
5959                                                  count > 0 ?
5960                                                  GTK_DIR_RIGHT : GTK_DIR_LEFT))
5961                     {
5962                       GtkWidget *toplevel = gtk_widget_get_toplevel (GTK_WIDGET (label));
5963
5964                       if (toplevel)
5965                         gtk_widget_child_focus (toplevel,
5966                                                 count > 0 ?
5967                                                 GTK_DIR_RIGHT : GTK_DIR_LEFT);
5968                     }
5969                 }
5970               else
5971                 {
5972                   gtk_widget_error_bell (GTK_WIDGET (label));
5973                 }
5974             }
5975           break;
5976         case GTK_MOVEMENT_WORDS:
5977           while (count > 0)
5978             {
5979               new_pos = gtk_label_move_forward_word (label, new_pos);
5980               count--;
5981             }
5982           while (count < 0)
5983             {
5984               new_pos = gtk_label_move_backward_word (label, new_pos);
5985               count++;
5986             }
5987           if (new_pos == old_pos)
5988             gtk_widget_error_bell (GTK_WIDGET (label));
5989           break;
5990         case GTK_MOVEMENT_DISPLAY_LINE_ENDS:
5991         case GTK_MOVEMENT_PARAGRAPH_ENDS:
5992         case GTK_MOVEMENT_BUFFER_ENDS:
5993           /* FIXME: Can do better here */
5994           new_pos = count < 0 ? 0 : strlen (priv->text);
5995           if (new_pos == old_pos)
5996             gtk_widget_error_bell (GTK_WIDGET (label));
5997           break;
5998         case GTK_MOVEMENT_DISPLAY_LINES:
5999         case GTK_MOVEMENT_PARAGRAPHS:
6000         case GTK_MOVEMENT_PAGES:
6001         case GTK_MOVEMENT_HORIZONTAL_PAGES:
6002           break;
6003         }
6004     }
6005
6006   if (extend_selection)
6007     gtk_label_select_region_index (label,
6008                                    priv->select_info->selection_anchor,
6009                                    new_pos);
6010   else
6011     gtk_label_select_region_index (label, new_pos, new_pos);
6012 }
6013
6014 static void
6015 gtk_label_copy_clipboard (GtkLabel *label)
6016 {
6017   GtkLabelPriv *priv = label->priv;
6018
6019   if (priv->text && priv->select_info)
6020     {
6021       gint start, end;
6022       gint len;
6023       GtkClipboard *clipboard;
6024
6025       start = MIN (priv->select_info->selection_anchor,
6026                    priv->select_info->selection_end);
6027       end = MAX (priv->select_info->selection_anchor,
6028                  priv->select_info->selection_end);
6029
6030       len = strlen (priv->text);
6031
6032       if (end > len)
6033         end = len;
6034
6035       if (start > len)
6036         start = len;
6037
6038       clipboard = gtk_widget_get_clipboard (GTK_WIDGET (label), GDK_SELECTION_CLIPBOARD);
6039
6040       if (start != end)
6041         gtk_clipboard_set_text (clipboard, priv->text + start, end - start);
6042       else
6043         {
6044           GtkLabelLink *link;
6045
6046           link = gtk_label_get_focus_link (label);
6047           if (link)
6048             gtk_clipboard_set_text (clipboard, link->uri, -1);
6049         }
6050     }
6051 }
6052
6053 static void
6054 gtk_label_select_all (GtkLabel *label)
6055 {
6056   GtkLabelPriv *priv = label->priv;
6057
6058   gtk_label_select_region_index (label, 0, strlen (priv->text));
6059 }
6060
6061 /* Quick hack of a popup menu
6062  */
6063 static void
6064 activate_cb (GtkWidget *menuitem,
6065              GtkLabel  *label)
6066 {
6067   const gchar *signal = g_object_get_data (G_OBJECT (menuitem), "gtk-signal");
6068   g_signal_emit_by_name (label, signal);
6069 }
6070
6071 static void
6072 append_action_signal (GtkLabel     *label,
6073                       GtkWidget    *menu,
6074                       const gchar  *stock_id,
6075                       const gchar  *signal,
6076                       gboolean      sensitive)
6077 {
6078   GtkWidget *menuitem = gtk_image_menu_item_new_from_stock (stock_id, NULL);
6079
6080   g_object_set_data (G_OBJECT (menuitem), I_("gtk-signal"), (char *)signal);
6081   g_signal_connect (menuitem, "activate",
6082                     G_CALLBACK (activate_cb), label);
6083
6084   gtk_widget_set_sensitive (menuitem, sensitive);
6085   
6086   gtk_widget_show (menuitem);
6087   gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
6088 }
6089
6090 static void
6091 popup_menu_detach (GtkWidget *attach_widget,
6092                    GtkMenu   *menu)
6093 {
6094   GtkLabel *label = GTK_LABEL (attach_widget);
6095   GtkLabelPriv *priv = label->priv;
6096
6097   if (priv->select_info)
6098     priv->select_info->popup_menu = NULL;
6099 }
6100
6101 static void
6102 popup_position_func (GtkMenu   *menu,
6103                      gint      *x,
6104                      gint      *y,
6105                      gboolean  *push_in,
6106                      gpointer   user_data)
6107 {
6108   GtkLabel *label;
6109   GtkWidget *widget;
6110   GtkRequisition req;
6111   GdkScreen *screen;
6112
6113   label = GTK_LABEL (user_data);
6114   widget = GTK_WIDGET (label);
6115
6116   g_return_if_fail (gtk_widget_get_realized (widget));
6117
6118   screen = gtk_widget_get_screen (widget);
6119   gdk_window_get_origin (widget->window, x, y);
6120
6121   *x += widget->allocation.x;
6122   *y += widget->allocation.y;
6123
6124   gtk_widget_size_request (GTK_WIDGET (menu), &req);
6125
6126   *x += widget->allocation.width / 2;
6127   *y += widget->allocation.height;
6128
6129   *x = CLAMP (*x, 0, MAX (0, gdk_screen_get_width (screen) - req.width));
6130   *y = CLAMP (*y, 0, MAX (0, gdk_screen_get_height (screen) - req.height));
6131 }
6132
6133 static void
6134 open_link_activate_cb (GtkMenuItem *menu_item,
6135                        GtkLabel    *label)
6136 {
6137   GtkLabelLink *link;
6138
6139   link = gtk_label_get_current_link (label);
6140
6141   if (link)
6142     emit_activate_link (label, link);
6143 }
6144
6145 static void
6146 copy_link_activate_cb (GtkMenuItem *menu_item,
6147                        GtkLabel    *label)
6148 {
6149   GtkClipboard *clipboard;
6150   const gchar *uri;
6151
6152   uri = gtk_label_get_current_uri (label);
6153   if (uri)
6154     {
6155       clipboard = gtk_widget_get_clipboard (GTK_WIDGET (label), GDK_SELECTION_CLIPBOARD);
6156       gtk_clipboard_set_text (clipboard, uri, -1);
6157     }
6158 }
6159
6160 static gboolean
6161 gtk_label_popup_menu (GtkWidget *widget)
6162 {
6163   gtk_label_do_popup (GTK_LABEL (widget), NULL);
6164
6165   return TRUE;
6166 }
6167
6168 static void
6169 gtk_label_do_popup (GtkLabel       *label,
6170                     GdkEventButton *event)
6171 {
6172   GtkLabelPriv *priv = label->priv;
6173   GtkWidget *menuitem;
6174   GtkWidget *menu;
6175   GtkWidget *image;
6176   gboolean have_selection;
6177   GtkLabelLink *link;
6178
6179   if (!priv->select_info)
6180     return;
6181
6182   if (priv->select_info->popup_menu)
6183     gtk_widget_destroy (priv->select_info->popup_menu);
6184
6185   priv->select_info->popup_menu = menu = gtk_menu_new ();
6186
6187   gtk_menu_attach_to_widget (GTK_MENU (menu), GTK_WIDGET (label), popup_menu_detach);
6188
6189   have_selection =
6190     priv->select_info->selection_anchor != priv->select_info->selection_end;
6191
6192   if (event)
6193     {
6194       if (priv->select_info->link_clicked)
6195         link = priv->select_info->active_link;
6196       else
6197         link = NULL;
6198     }
6199   else
6200     link = gtk_label_get_focus_link (label);
6201
6202   if (!have_selection && link)
6203     {
6204       /* Open Link */
6205       menuitem = gtk_image_menu_item_new_with_mnemonic (_("_Open Link"));
6206       gtk_widget_show (menuitem);
6207       gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
6208
6209       g_signal_connect (G_OBJECT (menuitem), "activate",
6210                         G_CALLBACK (open_link_activate_cb), label);
6211
6212       image = gtk_image_new_from_stock (GTK_STOCK_JUMP_TO, GTK_ICON_SIZE_MENU);
6213       gtk_widget_show (image);
6214       gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menuitem), image);
6215
6216       /* Copy Link Address */
6217       menuitem = gtk_image_menu_item_new_with_mnemonic (_("Copy _Link Address"));
6218       gtk_widget_show (menuitem);
6219       gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
6220
6221       g_signal_connect (G_OBJECT (menuitem), "activate",
6222                         G_CALLBACK (copy_link_activate_cb), label);
6223
6224       image = gtk_image_new_from_stock (GTK_STOCK_COPY, GTK_ICON_SIZE_MENU);
6225       gtk_widget_show (image);
6226       gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menuitem), image);
6227     }
6228   else
6229     {
6230       append_action_signal (label, menu, GTK_STOCK_CUT, "cut-clipboard", FALSE);
6231       append_action_signal (label, menu, GTK_STOCK_COPY, "copy-clipboard", have_selection);
6232       append_action_signal (label, menu, GTK_STOCK_PASTE, "paste-clipboard", FALSE);
6233   
6234       menuitem = gtk_image_menu_item_new_from_stock (GTK_STOCK_DELETE, NULL);
6235       gtk_widget_set_sensitive (menuitem, FALSE);
6236       gtk_widget_show (menuitem);
6237       gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
6238
6239       menuitem = gtk_separator_menu_item_new ();
6240       gtk_widget_show (menuitem);
6241       gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
6242
6243       menuitem = gtk_image_menu_item_new_from_stock (GTK_STOCK_SELECT_ALL, NULL);
6244       g_signal_connect_swapped (menuitem, "activate",
6245                                 G_CALLBACK (gtk_label_select_all), label);
6246       gtk_widget_show (menuitem);
6247       gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
6248     }
6249
6250   g_signal_emit (label, signals[POPULATE_POPUP], 0, menu);
6251
6252   if (event)
6253     gtk_menu_popup (GTK_MENU (menu), NULL, NULL,
6254                     NULL, NULL,
6255                     event->button, event->time);
6256   else
6257     {
6258       gtk_menu_popup (GTK_MENU (menu), NULL, NULL,
6259                       popup_position_func, label,
6260                       0, gtk_get_current_event_time ());
6261       gtk_menu_shell_select_first (GTK_MENU_SHELL (menu), FALSE);
6262     }
6263 }
6264
6265 static void
6266 gtk_label_clear_links (GtkLabel *label)
6267 {
6268   GtkLabelPriv *priv = label->priv;
6269
6270   if (!priv->select_info)
6271     return;
6272
6273   g_list_foreach (priv->select_info->links, (GFunc)link_free, NULL);
6274   g_list_free (priv->select_info->links);
6275   priv->select_info->links = NULL;
6276   priv->select_info->active_link = NULL;
6277 }
6278
6279 static void
6280 gtk_label_rescan_links (GtkLabel *label)
6281 {
6282   GtkLabelPriv *priv = label->priv;
6283   PangoLayout *layout = priv->layout;
6284   PangoAttrList *attlist;
6285   PangoAttrIterator *iter;
6286   GList *links;
6287
6288   if (!priv->select_info || !priv->select_info->links)
6289     return;
6290
6291   attlist = pango_layout_get_attributes (layout);
6292
6293   if (attlist == NULL)
6294     return;
6295
6296   iter = pango_attr_list_get_iterator (attlist);
6297
6298   links = priv->select_info->links;
6299
6300   do
6301     {
6302       PangoAttribute *underline;
6303       PangoAttribute *color;
6304
6305       underline = pango_attr_iterator_get (iter, PANGO_ATTR_UNDERLINE);
6306       color = pango_attr_iterator_get (iter, PANGO_ATTR_FOREGROUND);
6307
6308       if (underline != NULL && color != NULL)
6309         {
6310           gint start, end;
6311           PangoRectangle start_pos;
6312           PangoRectangle end_pos;
6313           GtkLabelLink *link;
6314
6315           pango_attr_iterator_range (iter, &start, &end);
6316           pango_layout_index_to_pos (layout, start, &start_pos);
6317           pango_layout_index_to_pos (layout, end, &end_pos);
6318
6319           if (links == NULL)
6320             {
6321               g_warning ("Ran out of links");
6322               break;
6323             }
6324           link = links->data;
6325           links = links->next;
6326           link->start = start;
6327           link->end = end;
6328         }
6329       } while (pango_attr_iterator_next (iter));
6330
6331     pango_attr_iterator_destroy (iter);
6332 }
6333
6334 static gboolean
6335 gtk_label_activate_link (GtkLabel    *label,
6336                          const gchar *uri)
6337 {
6338   GtkWidget *widget = GTK_WIDGET (label);
6339   GError *error = NULL;
6340
6341   if (!gtk_show_uri (gtk_widget_get_screen (widget),
6342                      uri, gtk_get_current_event_time (), &error))
6343     {
6344       g_warning ("Unable to show '%s': %s", uri, error->message);
6345       g_error_free (error);
6346     }
6347
6348   return TRUE;
6349 }
6350
6351 static void
6352 emit_activate_link (GtkLabel     *label,
6353                     GtkLabelLink *link)
6354 {
6355   GtkLabelPriv *priv = label->priv;
6356   gboolean handled;
6357
6358   g_signal_emit (label, signals[ACTIVATE_LINK], 0, link->uri, &handled);
6359   if (handled && priv->track_links && !link->visited)
6360     {
6361       link->visited = TRUE;
6362       /* FIXME: shouldn't have to redo everything here */
6363       gtk_label_recalculate (label);
6364     }
6365 }
6366
6367 static void
6368 gtk_label_activate_current_link (GtkLabel *label)
6369 {
6370   GtkLabelLink *link;
6371   GtkWidget *widget = GTK_WIDGET (label);
6372
6373   link = gtk_label_get_focus_link (label);
6374
6375   if (link)
6376     {
6377       emit_activate_link (label, link);
6378     }
6379   else
6380     {
6381       GtkWidget *toplevel;
6382       GtkWindow *window;
6383
6384       toplevel = gtk_widget_get_toplevel (widget);
6385       if (GTK_IS_WINDOW (toplevel))
6386         {
6387           window = GTK_WINDOW (toplevel);
6388
6389           if (window &&
6390               window->default_widget != widget &&
6391               !(widget == window->focus_widget &&
6392                 (!window->default_widget || !gtk_widget_is_sensitive (window->default_widget))))
6393             gtk_window_activate_default (window);
6394         }
6395     }
6396 }
6397
6398 static GtkLabelLink *
6399 gtk_label_get_current_link (GtkLabel *label)
6400 {
6401   GtkLabelPriv *priv = label->priv;
6402   GtkLabelLink *link;
6403
6404   if (!priv->select_info)
6405     return NULL;
6406
6407   if (priv->select_info->link_clicked)
6408     link = priv->select_info->active_link;
6409   else
6410     link = gtk_label_get_focus_link (label);
6411
6412   return link;
6413 }
6414
6415 /**
6416  * gtk_label_get_current_uri:
6417  * @label: a #GtkLabel
6418  *
6419  * Returns the URI for the currently active link in the label.
6420  * The active link is the one under the mouse pointer or, in a
6421  * selectable label, the link in which the text cursor is currently
6422  * positioned.
6423  *
6424  * This function is intended for use in a #GtkLabel::activate-link handler
6425  * or for use in a #GtkWidget::query-tooltip handler.
6426  *
6427  * Returns: the currently active URI. The string is owned by GTK+ and must
6428  *   not be freed or modified.
6429  *
6430  * Since: 2.18
6431  */
6432 G_CONST_RETURN gchar *
6433 gtk_label_get_current_uri (GtkLabel *label)
6434 {
6435   GtkLabelLink *link;
6436
6437   g_return_val_if_fail (GTK_IS_LABEL (label), NULL);
6438
6439   link = gtk_label_get_current_link (label);
6440
6441   if (link)
6442     return link->uri;
6443
6444   return NULL;
6445 }
6446
6447 /**
6448  * gtk_label_set_track_visited_links:
6449  * @label: a #GtkLabel
6450  * @track_links: %TRUE to track visited links
6451  *
6452  * Sets whether the label should keep track of clicked
6453  * links (and use a different color for them).
6454  *
6455  * Since: 2.18
6456  */
6457 void
6458 gtk_label_set_track_visited_links (GtkLabel *label,
6459                                    gboolean  track_links)
6460 {
6461   GtkLabelPriv *priv;
6462
6463   g_return_if_fail (GTK_IS_LABEL (label));
6464
6465   priv = label->priv;
6466
6467   track_links = track_links != FALSE;
6468
6469   if (priv->track_links != track_links)
6470     {
6471       priv->track_links = track_links;
6472
6473       /* FIXME: shouldn't have to redo everything here */
6474       gtk_label_recalculate (label);
6475
6476       g_object_notify (G_OBJECT (label), "track-visited-links");
6477     }
6478 }
6479
6480 /**
6481  * gtk_label_get_track_visited_links:
6482  * @label: a #GtkLabel
6483  *
6484  * Returns whether the label is currently keeping track
6485  * of clicked links.
6486  *
6487  * Returns: %TRUE if clicked links are remembered
6488  *
6489  * Since: 2.18
6490  */
6491 gboolean
6492 gtk_label_get_track_visited_links (GtkLabel *label)
6493 {
6494   g_return_val_if_fail (GTK_IS_LABEL (label), FALSE);
6495
6496   return label->priv->track_links;
6497 }
6498
6499 static gboolean
6500 gtk_label_query_tooltip (GtkWidget  *widget,
6501                          gint        x,
6502                          gint        y,
6503                          gboolean    keyboard_tip,
6504                          GtkTooltip *tooltip)
6505 {
6506   GtkLabel *label = GTK_LABEL (widget);
6507   GtkLabelPriv *priv = label->priv;
6508   GtkLabelSelectionInfo *info = priv->select_info;
6509   gint index = -1;
6510   GList *l;
6511
6512   if (info && info->links)
6513     {
6514       if (keyboard_tip)
6515         {
6516           if (info->selection_anchor == info->selection_end)
6517             index = info->selection_anchor;
6518         }
6519       else
6520         {
6521           if (!get_layout_index (label, x, y, &index))
6522             index = -1;
6523         }
6524
6525       if (index != -1)
6526         {
6527           for (l = info->links; l != NULL; l = l->next)
6528             {
6529               GtkLabelLink *link = l->data;
6530               if (index >= link->start && index <= link->end)
6531                 {
6532                   if (link->title)
6533                     {
6534                       gtk_tooltip_set_markup (tooltip, link->title);
6535                       return TRUE;
6536                     }
6537                   break;
6538                 }
6539             }
6540         }
6541     }
6542
6543   return GTK_WIDGET_CLASS (gtk_label_parent_class)->query_tooltip (widget,
6544                                                                    x, y,
6545                                                                    keyboard_tip,
6546                                                                    tooltip);
6547 }