clutter/actor: Drop ClutterActor:clip property
This is a deprecated property that is not used anywhere in the codebase. Not by GNOME Shell. Because it uses the deprecated ClutterGeometry type, it's a good target for cleaning up, given that ClutterGeometry will be dropped later on. https://gitlab.gnome.org/GNOME/mutter/merge_requests/458
This commit is contained in:
parent
b1a1d4e13d
commit
4f2b217a6a
@ -902,7 +902,6 @@ enum
|
||||
PROP_DEPTH, /* XXX:2.0 remove */
|
||||
PROP_Z_POSITION,
|
||||
|
||||
PROP_CLIP, /* XXX:2.0 remove */
|
||||
PROP_CLIP_RECT,
|
||||
PROP_HAS_CLIP,
|
||||
PROP_CLIP_TO_ALLOCATION,
|
||||
@ -5110,7 +5109,6 @@ clutter_actor_set_clip_rect (ClutterActor *self,
|
||||
|
||||
clutter_actor_queue_redraw (self);
|
||||
|
||||
g_object_notify_by_pspec (obj, obj_props[PROP_CLIP]); /* XXX:2.0 - remove */
|
||||
g_object_notify_by_pspec (obj, obj_props[PROP_CLIP_RECT]);
|
||||
g_object_notify_by_pspec (obj, obj_props[PROP_HAS_CLIP]);
|
||||
}
|
||||
@ -5298,16 +5296,6 @@ clutter_actor_set_property (GObject *object,
|
||||
clutter_actor_set_scale_gravity (actor, g_value_get_enum (value));
|
||||
break;
|
||||
|
||||
case PROP_CLIP: /* XXX:2.0 - remove */
|
||||
{
|
||||
const ClutterGeometry *geom = g_value_get_boxed (value);
|
||||
|
||||
clutter_actor_set_clip (actor,
|
||||
geom->x, geom->y,
|
||||
geom->width, geom->height);
|
||||
}
|
||||
break;
|
||||
|
||||
case PROP_CLIP_RECT:
|
||||
clutter_actor_set_clip_rect (actor, g_value_get_boxed (value));
|
||||
break;
|
||||
@ -5646,19 +5634,6 @@ clutter_actor_get_property (GObject *object,
|
||||
g_value_set_boolean (value, priv->has_clip);
|
||||
break;
|
||||
|
||||
case PROP_CLIP: /* XXX:2.0 - remove */
|
||||
{
|
||||
ClutterGeometry clip;
|
||||
|
||||
clip.x = CLUTTER_NEARBYINT (priv->clip.origin.x);
|
||||
clip.y = CLUTTER_NEARBYINT (priv->clip.origin.y);
|
||||
clip.width = CLUTTER_NEARBYINT (priv->clip.size.width);
|
||||
clip.height = CLUTTER_NEARBYINT (priv->clip.size.height);
|
||||
|
||||
g_value_set_boxed (value, &clip);
|
||||
}
|
||||
break;
|
||||
|
||||
case PROP_CLIP_RECT:
|
||||
g_value_set_boxed (value, &priv->clip);
|
||||
break;
|
||||
@ -7026,20 +7001,6 @@ clutter_actor_class_init (ClutterActorClass *klass)
|
||||
FALSE,
|
||||
CLUTTER_PARAM_READABLE);
|
||||
|
||||
/**
|
||||
* ClutterActor:clip:
|
||||
*
|
||||
* The visible region of the actor, in actor-relative coordinates
|
||||
*
|
||||
* Deprecated: 1.12: Use #ClutterActor:clip-rect instead.
|
||||
*/
|
||||
obj_props[PROP_CLIP] = /* XXX:2.0 - remove */
|
||||
g_param_spec_boxed ("clip",
|
||||
P_("Clip"),
|
||||
P_("The clip region for the actor"),
|
||||
CLUTTER_TYPE_GEOMETRY,
|
||||
CLUTTER_PARAM_READWRITE);
|
||||
|
||||
/**
|
||||
* ClutterActor:clip-rect:
|
||||
*
|
||||
@ -12589,7 +12550,6 @@ clutter_actor_set_clip (ClutterActor *self,
|
||||
|
||||
clutter_actor_queue_redraw (self);
|
||||
|
||||
g_object_notify_by_pspec (obj, obj_props[PROP_CLIP]);
|
||||
g_object_notify_by_pspec (obj, obj_props[PROP_CLIP_RECT]);
|
||||
g_object_notify_by_pspec (obj, obj_props[PROP_HAS_CLIP]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user