forked from AuroraMiddleware/gtk
entry: Use a CSS node for selection rendering
This adds new possibilities for themes to render the selection in fancy ways.
This commit is contained in:
parent
3552f524c3
commit
2a03107677
@ -120,7 +120,8 @@
|
|||||||
* entry
|
* entry
|
||||||
* ├── image.left
|
* ├── image.left
|
||||||
* ├── image.right
|
* ├── image.right
|
||||||
* ╰── progress[.pulse]
|
* ├── [selection]
|
||||||
|
* ╰── [progress[.pulse]]
|
||||||
* ]|
|
* ]|
|
||||||
*
|
*
|
||||||
* GtkEntry has a main node with the name entry. Depending on the properties
|
* GtkEntry has a main node with the name entry. Depending on the properties
|
||||||
@ -130,6 +131,8 @@
|
|||||||
* When the entry shows icons, it adds subnodes with the name image and the
|
* When the entry shows icons, it adds subnodes with the name image and the
|
||||||
* style class .left or .right, depending on where the icon appears.
|
* style class .left or .right, depending on where the icon appears.
|
||||||
*
|
*
|
||||||
|
* When the entry has a selection, it adds a subnode with the name sleciton.
|
||||||
|
*
|
||||||
* When the entry shows progress, it adds a subnode with the name progress.
|
* When the entry shows progress, it adds a subnode with the name progress.
|
||||||
* The node has the style class .pulse when the shown progress is pulsing.
|
* The node has the style class .pulse when the shown progress is pulsing.
|
||||||
*
|
*
|
||||||
@ -200,6 +203,7 @@ struct _GtkEntryPrivate
|
|||||||
GtkGesture *drag_gesture;
|
GtkGesture *drag_gesture;
|
||||||
GtkGesture *multipress_gesture;
|
GtkGesture *multipress_gesture;
|
||||||
|
|
||||||
|
GtkCssNode *selection_node;
|
||||||
GtkCssNode *progress_node;
|
GtkCssNode *progress_node;
|
||||||
|
|
||||||
gfloat xalign;
|
gfloat xalign;
|
||||||
@ -3191,6 +3195,20 @@ update_icon_state (GtkWidget *widget,
|
|||||||
gtk_css_node_set_state (icon_info->css_node, state);
|
gtk_css_node_set_state (icon_info->css_node, state);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
update_node_state (GtkEntry *entry)
|
||||||
|
{
|
||||||
|
GtkEntryPrivate *priv = entry->priv;
|
||||||
|
GtkStateFlags state;
|
||||||
|
|
||||||
|
state = gtk_widget_get_state_flags (GTK_WIDGET (entry));
|
||||||
|
|
||||||
|
if (priv->progress_node)
|
||||||
|
gtk_css_node_set_state (priv->progress_node, state);
|
||||||
|
if (priv->selection_node)
|
||||||
|
gtk_css_node_set_state (priv->selection_node, state);
|
||||||
|
}
|
||||||
|
|
||||||
static GtkCssNode *
|
static GtkCssNode *
|
||||||
get_entry_node (GtkWidget *widget)
|
get_entry_node (GtkWidget *widget)
|
||||||
{
|
{
|
||||||
@ -5104,6 +5122,7 @@ gtk_entry_state_flags_changed (GtkWidget *widget,
|
|||||||
gtk_editable_select_region (GTK_EDITABLE (entry), priv->current_pos, priv->current_pos);
|
gtk_editable_select_region (GTK_EDITABLE (entry), priv->current_pos, priv->current_pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
update_node_state (entry);
|
||||||
update_icon_state (widget, GTK_ENTRY_ICON_PRIMARY);
|
update_icon_state (widget, GTK_ENTRY_ICON_PRIMARY);
|
||||||
update_icon_state (widget, GTK_ENTRY_ICON_SECONDARY);
|
update_icon_state (widget, GTK_ENTRY_ICON_SECONDARY);
|
||||||
|
|
||||||
@ -6144,6 +6163,29 @@ gtk_entry_set_positions (GtkEntry *entry,
|
|||||||
|
|
||||||
g_object_thaw_notify (G_OBJECT (entry));
|
g_object_thaw_notify (G_OBJECT (entry));
|
||||||
|
|
||||||
|
if (priv->current_pos != priv->selection_bound)
|
||||||
|
{
|
||||||
|
if (!priv->selection_node)
|
||||||
|
{
|
||||||
|
GtkCssNode *widget_node;
|
||||||
|
|
||||||
|
widget_node = get_entry_node (GTK_WIDGET (entry));
|
||||||
|
priv->selection_node = gtk_css_node_new ();
|
||||||
|
gtk_css_node_set_name (priv->selection_node, I_("selection"));
|
||||||
|
gtk_css_node_set_parent (priv->selection_node, widget_node);
|
||||||
|
gtk_css_node_set_state (priv->selection_node, gtk_css_node_get_state (widget_node));
|
||||||
|
g_object_unref (priv->selection_node);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (priv->selection_node)
|
||||||
|
{
|
||||||
|
gtk_css_node_set_parent (priv->selection_node, NULL);
|
||||||
|
priv->selection_node = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (changed)
|
if (changed)
|
||||||
{
|
{
|
||||||
gtk_entry_move_adjustments (entry);
|
gtk_entry_move_adjustments (entry);
|
||||||
@ -6473,42 +6515,32 @@ draw_text_with_color (GtkEntry *entry,
|
|||||||
gint *ranges;
|
gint *ranges;
|
||||||
gint n_ranges, i;
|
gint n_ranges, i;
|
||||||
PangoRectangle logical_rect;
|
PangoRectangle logical_rect;
|
||||||
GdkRGBA selection_color, text_color;
|
GdkRGBA text_color;
|
||||||
GtkStyleContext *context;
|
GtkStyleContext *context;
|
||||||
GtkStateFlags state;
|
|
||||||
|
|
||||||
context = gtk_widget_get_style_context (widget);
|
context = gtk_widget_get_style_context (widget);
|
||||||
|
gtk_style_context_save_to_node (context, priv->selection_node);
|
||||||
|
|
||||||
pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
|
pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
|
||||||
gtk_entry_get_pixel_ranges (entry, &ranges, &n_ranges);
|
gtk_entry_get_pixel_ranges (entry, &ranges, &n_ranges);
|
||||||
|
for (i = 0; i < n_ranges; ++i)
|
||||||
gtk_style_context_save (context);
|
gtk_render_background (context, cr,
|
||||||
state = gtk_style_context_get_state (context);
|
- priv->scroll_offset + ranges[2 * i], y,
|
||||||
state |= GTK_STATE_FLAG_SELECTED;
|
ranges[2 * i + 1], logical_rect.height);
|
||||||
gtk_style_context_set_state (context, state);
|
|
||||||
|
|
||||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
|
||||||
gtk_style_context_get_background_color (context, state, &selection_color);
|
|
||||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
|
||||||
gtk_style_context_get_color (context, state, &text_color);
|
|
||||||
gtk_style_context_restore (context);
|
|
||||||
|
|
||||||
for (i = 0; i < n_ranges; ++i)
|
for (i = 0; i < n_ranges; ++i)
|
||||||
cairo_rectangle (cr,
|
cairo_rectangle (cr,
|
||||||
- priv->scroll_offset + ranges[2 * i],
|
- priv->scroll_offset + ranges[2 * i], y,
|
||||||
y,
|
ranges[2 * i + 1], logical_rect.height);
|
||||||
ranges[2 * i + 1],
|
|
||||||
logical_rect.height);
|
|
||||||
|
|
||||||
cairo_clip (cr);
|
cairo_clip (cr);
|
||||||
|
|
||||||
gdk_cairo_set_source_rgba (cr, &selection_color);
|
|
||||||
cairo_paint (cr);
|
|
||||||
|
|
||||||
cairo_move_to (cr, x, y);
|
cairo_move_to (cr, x, y);
|
||||||
|
gtk_style_context_get_color (context, gtk_style_context_get_state (context), &text_color);
|
||||||
gdk_cairo_set_source_rgba (cr, &text_color);
|
gdk_cairo_set_source_rgba (cr, &text_color);
|
||||||
pango_cairo_show_layout (cr, layout);
|
pango_cairo_show_layout (cr, layout);
|
||||||
|
|
||||||
g_free (ranges);
|
g_free (ranges);
|
||||||
|
gtk_style_context_restore (context);
|
||||||
}
|
}
|
||||||
cairo_restore (cr);
|
cairo_restore (cr);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user