summaryrefslogtreecommitdiff
path: root/gtk/gtklabel.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2012-01-06 05:10:50 +0100
committerBenjamin Otte <otte@redhat.com>2012-01-06 05:23:42 +0100
commitd6bb8a63aaea0be9ea304a82950da95135863bb1 (patch)
tree1806f25a2f527d00211034666e6166f54ba0900b /gtk/gtklabel.c
parente78e4d8dd87b1c6943941e953c6cc6e7565ff4ea (diff)
downloadgtk+-d6bb8a63aaea0be9ea304a82950da95135863bb1.tar.gz
label: Make attr_list_merge() use sane merging rules
Instead of "attribute with later start index wins, make sure the attribute list that is merged from takes precedence. This now gives the multiple attribute lists we use in the label an order: 1) gtk_label_set_attributes() These attributes override everything. It's what the function's there for after all. 2) markup of label Other user-specified attributes come next. 3) attributes for links When we apply custom attributes on parts of the text, we put them last. We don't want to mess with what the user does. Also, we change color and underline, so we usually have something to show.
Diffstat (limited to 'gtk/gtklabel.c')
-rw-r--r--gtk/gtklabel.c30
1 files changed, 9 insertions, 21 deletions
diff --git a/gtk/gtklabel.c b/gtk/gtklabel.c
index fe34fe4f6c..9597f565a5 100644
--- a/gtk/gtklabel.c
+++ b/gtk/gtklabel.c
@@ -2034,31 +2034,19 @@ gtk_label_set_use_underline_internal (GtkLabel *label,
}
}
+static gboolean
+my_pango_attr_list_merge_filter (PangoAttribute *attribute,
+ gpointer list)
+{
+ pango_attr_list_change (list, pango_attribute_copy (attribute));
+ return FALSE;
+}
+
static void
my_pango_attr_list_merge (PangoAttrList *into,
PangoAttrList *from)
{
- PangoAttrIterator *iter;
- PangoAttribute *attr;
- GSList *iter_attrs, *l;
-
- iter = pango_attr_list_get_iterator (from);
-
- if (iter)
- {
- do
- {
- iter_attrs = pango_attr_iterator_get_attrs (iter);
- for (l = iter_attrs; l; l = l->next)
- {
- attr = l->data;
- pango_attr_list_insert (into, attr);
- }
- g_slist_free (iter_attrs);
- }
- while (pango_attr_iterator_next (iter));
- pango_attr_iterator_destroy (iter);
- }
+ pango_attr_list_filter (from, my_pango_attr_list_merge_filter, into);
}
/* Calculates text, attrs and mnemonic_keyval from