mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 16:50:11 +00:00
switch: fetch the padding values from the slider
It's the slider which acts as a child inside the container through, so we should fetch the slider padding when computing height/width.
This commit is contained in:
parent
c310c35a7a
commit
6abbd68674
@ -285,19 +285,30 @@ gtk_switch_get_preferred_width (GtkWidget *widget,
|
|||||||
gint *minimum,
|
gint *minimum,
|
||||||
gint *natural)
|
gint *natural)
|
||||||
{
|
{
|
||||||
|
GtkSwitchPrivate *priv = GTK_SWITCH (widget)->priv;
|
||||||
GtkStyleContext *context;
|
GtkStyleContext *context;
|
||||||
GtkStateFlags state;
|
GtkStateFlags state;
|
||||||
GtkBorder padding;
|
GtkBorder padding, border;
|
||||||
gint width, slider_width, focus_width, focus_pad;
|
gint width, slider_width, focus_width, focus_pad;
|
||||||
PangoLayout *layout;
|
PangoLayout *layout;
|
||||||
PangoRectangle logical_rect;
|
PangoRectangle logical_rect;
|
||||||
|
|
||||||
context = gtk_widget_get_style_context (widget);
|
context = gtk_widget_get_style_context (widget);
|
||||||
state = gtk_widget_get_state_flags (widget);
|
state = gtk_widget_get_state_flags (widget);
|
||||||
|
|
||||||
|
if (priv->is_active)
|
||||||
|
state |= GTK_STATE_FLAG_ACTIVE;
|
||||||
|
|
||||||
|
gtk_style_context_save (context);
|
||||||
|
|
||||||
|
gtk_style_context_set_state (context, state);
|
||||||
|
gtk_style_context_add_class (context, GTK_STYLE_CLASS_SLIDER);
|
||||||
gtk_style_context_get_padding (context, state, &padding);
|
gtk_style_context_get_padding (context, state, &padding);
|
||||||
|
|
||||||
width = padding.left + padding.right;
|
width = padding.left + padding.right;
|
||||||
|
|
||||||
|
gtk_style_context_restore (context);
|
||||||
|
|
||||||
gtk_widget_style_get (widget,
|
gtk_widget_style_get (widget,
|
||||||
"slider-width", &slider_width,
|
"slider-width", &slider_width,
|
||||||
"focus-line-width", &focus_width,
|
"focus-line-width", &focus_width,
|
||||||
@ -337,6 +348,7 @@ gtk_switch_get_preferred_height (GtkWidget *widget,
|
|||||||
gint *minimum,
|
gint *minimum,
|
||||||
gint *natural)
|
gint *natural)
|
||||||
{
|
{
|
||||||
|
GtkSwitchPrivate *priv = GTK_SWITCH (widget)->priv;
|
||||||
GtkStyleContext *context;
|
GtkStyleContext *context;
|
||||||
GtkStateFlags state;
|
GtkStateFlags state;
|
||||||
GtkBorder padding;
|
GtkBorder padding;
|
||||||
@ -347,10 +359,20 @@ gtk_switch_get_preferred_height (GtkWidget *widget,
|
|||||||
|
|
||||||
context = gtk_widget_get_style_context (widget);
|
context = gtk_widget_get_style_context (widget);
|
||||||
state = gtk_widget_get_state_flags (widget);
|
state = gtk_widget_get_state_flags (widget);
|
||||||
|
|
||||||
|
if (priv->is_active)
|
||||||
|
state |= GTK_STATE_FLAG_ACTIVE;
|
||||||
|
|
||||||
|
gtk_style_context_save (context);
|
||||||
|
|
||||||
|
gtk_style_context_set_state (context, state);
|
||||||
|
gtk_style_context_add_class (context, GTK_STYLE_CLASS_SLIDER);
|
||||||
gtk_style_context_get_padding (context, state, &padding);
|
gtk_style_context_get_padding (context, state, &padding);
|
||||||
|
|
||||||
height = padding.top + padding.bottom;
|
height = padding.top + padding.bottom;
|
||||||
|
|
||||||
|
gtk_style_context_restore (context);
|
||||||
|
|
||||||
gtk_widget_style_get (widget,
|
gtk_widget_style_get (widget,
|
||||||
"focus-line-width", &focus_width,
|
"focus-line-width", &focus_width,
|
||||||
"focus-padding", &focus_pad,
|
"focus-padding", &focus_pad,
|
||||||
@ -520,8 +542,15 @@ gtk_switch_draw (GtkWidget *widget,
|
|||||||
if (priv->is_active)
|
if (priv->is_active)
|
||||||
state |= GTK_STATE_FLAG_ACTIVE;
|
state |= GTK_STATE_FLAG_ACTIVE;
|
||||||
|
|
||||||
|
gtk_style_context_save (context);
|
||||||
|
|
||||||
|
gtk_style_context_set_state (context, state);
|
||||||
|
gtk_style_context_add_class (context, GTK_STYLE_CLASS_SLIDER);
|
||||||
|
|
||||||
gtk_style_context_get_padding (context, state, &padding);
|
gtk_style_context_get_padding (context, state, &padding);
|
||||||
|
|
||||||
|
gtk_style_context_restore (context);
|
||||||
|
|
||||||
x = 0;
|
x = 0;
|
||||||
y = 0;
|
y = 0;
|
||||||
width = gtk_widget_get_allocated_width (widget);
|
width = gtk_widget_get_allocated_width (widget);
|
||||||
@ -530,15 +559,14 @@ gtk_switch_draw (GtkWidget *widget,
|
|||||||
if (gtk_widget_has_focus (widget))
|
if (gtk_widget_has_focus (widget))
|
||||||
gtk_render_focus (context, cr, x, y, width, height);
|
gtk_render_focus (context, cr, x, y, width, height);
|
||||||
|
|
||||||
gtk_style_context_save (context);
|
|
||||||
gtk_style_context_set_state (context, state);
|
|
||||||
|
|
||||||
x += focus_width + focus_pad;
|
x += focus_width + focus_pad;
|
||||||
y += focus_width + focus_pad;
|
y += focus_width + focus_pad;
|
||||||
width -= 2 * (focus_width + focus_pad);
|
width -= 2 * (focus_width + focus_pad);
|
||||||
height -= 2 * (focus_width + focus_pad);
|
height -= 2 * (focus_width + focus_pad);
|
||||||
|
|
||||||
|
gtk_style_context_save (context);
|
||||||
gtk_style_context_add_class (context, GTK_STYLE_CLASS_TROUGH);
|
gtk_style_context_add_class (context, GTK_STYLE_CLASS_TROUGH);
|
||||||
|
gtk_style_context_set_state (context, state);
|
||||||
|
|
||||||
gtk_render_background (context, cr, x, y, width, height);
|
gtk_render_background (context, cr, x, y, width, height);
|
||||||
gtk_render_frame (context, cr, x, y, width, height);
|
gtk_render_frame (context, cr, x, y, width, height);
|
||||||
|
Loading…
Reference in New Issue
Block a user