1
0
Fork 0

actor: Deprecate realize and unrealize

There is no reasonable use case for having the functions, the virtual
functions, and the signals for realization and unrealization; the
concept belongs to an older era, when we though it would have been
possible to migrate actors across different GL contexts, of in case a GL
context would not have been available until the main loop started
spinning. That is most definitely not possible today, and too much code
would utterly break if we ever supported that.
This commit is contained in:
Emmanuele Bassi 2013-07-04 21:53:38 +01:00
parent 7df59887d7
commit 6227f7a0f5
2 changed files with 49 additions and 20 deletions

View file

@ -1066,6 +1066,9 @@ static void clutter_actor_set_child_transform_internal (ClutterActor *sel
static inline gboolean clutter_actor_has_mapped_clones (ClutterActor *self); static inline gboolean clutter_actor_has_mapped_clones (ClutterActor *self);
static void clutter_actor_realize_internal (ClutterActor *self);
static void clutter_actor_unrealize_internal (ClutterActor *self);
/* Helper macro which translates by the anchor coord, applies the /* Helper macro which translates by the anchor coord, applies the
given transformation and then translates back */ given transformation and then translates back */
#define TRANSFORM_ABOUT_ANCHOR_COORD(a,m,c,_transform) G_STMT_START { \ #define TRANSFORM_ABOUT_ANCHOR_COORD(a,m,c,_transform) G_STMT_START { \
@ -1879,15 +1882,22 @@ clutter_actor_hide_all (ClutterActor *self)
* This function does not realize child actors, except in the special * This function does not realize child actors, except in the special
* case that realizing the stage, when the stage is visible, will * case that realizing the stage, when the stage is visible, will
* suddenly map (and thus realize) the children of the stage. * suddenly map (and thus realize) the children of the stage.
**/ *
* Deprecated: 1.16: Actors are automatically realized, and nothing
* requires explicit realization.
*/
void void
clutter_actor_realize (ClutterActor *self) clutter_actor_realize (ClutterActor *self)
{ {
ClutterActorPrivate *priv;
g_return_if_fail (CLUTTER_IS_ACTOR (self)); g_return_if_fail (CLUTTER_IS_ACTOR (self));
priv = self->priv; clutter_actor_realize_internal (self);
}
static void
clutter_actor_realize_internal (ClutterActor *self)
{
ClutterActorPrivate *priv = self->priv;
#ifdef CLUTTER_ENABLE_DEBUG #ifdef CLUTTER_ENABLE_DEBUG
clutter_actor_verify_map_state (self); clutter_actor_verify_map_state (self);
@ -1959,14 +1969,8 @@ clutter_actor_real_unrealize (ClutterActor *self)
* may not be expecting. * may not be expecting.
* *
* This function should not be called by application code. * This function should not be called by application code.
*/ *
void * This function should not really be in the public API, because
clutter_actor_unrealize (ClutterActor *self)
{
g_return_if_fail (CLUTTER_IS_ACTOR (self));
g_return_if_fail (!CLUTTER_ACTOR_IS_MAPPED (self));
/* This function should not really be in the public API, because
* there isn't a good reason to call it. ClutterActor will already * there isn't a good reason to call it. ClutterActor will already
* unrealize things for you when it's important to do so. * unrealize things for you when it's important to do so.
* *
@ -1978,12 +1982,26 @@ clutter_actor_unrealize (ClutterActor *self)
* unrealizing children of your container, then don't, ClutterActor * unrealizing children of your container, then don't, ClutterActor
* will already take care of that. * will already take care of that.
* *
* If you were using clutter_actor_unrealize() to re-realize to * Deprecated: 1.16: Actors are automatically unrealized, and nothing
* requires explicit realization.
*/
void
clutter_actor_unrealize (ClutterActor *self)
{
g_return_if_fail (CLUTTER_IS_ACTOR (self));
g_return_if_fail (!CLUTTER_ACTOR_IS_MAPPED (self));
clutter_actor_unrealize_internal (self);
}
/* If you were using clutter_actor_unrealize() to re-realize to
* create your resources in a different way, then use * create your resources in a different way, then use
* _clutter_actor_rerealize() (inside Clutter) or just call your * _clutter_actor_rerealize() (inside Clutter) or just call your
* code that recreates your resources directly (outside Clutter). * code that recreates your resources directly (outside Clutter).
*/ */
static void
clutter_actor_unrealize_internal (ClutterActor *self)
{
#ifdef CLUTTER_ENABLE_DEBUG #ifdef CLUTTER_ENABLE_DEBUG
clutter_actor_verify_map_state (self); clutter_actor_verify_map_state (self);
#endif #endif
@ -8169,11 +8187,14 @@ clutter_actor_class_init (ClutterActorClass *klass)
* realized. * realized.
* *
* Since: 0.8 * Since: 0.8
*
* Deprecated: 1.16: The signal should not be used in newly
* written code
*/ */
actor_signals[REALIZE] = actor_signals[REALIZE] =
g_signal_new (I_("realize"), g_signal_new (I_("realize"),
G_TYPE_FROM_CLASS (object_class), G_TYPE_FROM_CLASS (object_class),
G_SIGNAL_RUN_LAST, G_SIGNAL_RUN_LAST | G_SIGNAL_DEPRECATED,
G_STRUCT_OFFSET (ClutterActorClass, realize), G_STRUCT_OFFSET (ClutterActorClass, realize),
NULL, NULL, NULL, NULL,
_clutter_marshal_VOID__VOID, _clutter_marshal_VOID__VOID,
@ -8186,11 +8207,14 @@ clutter_actor_class_init (ClutterActorClass *klass)
* unrealized. * unrealized.
* *
* Since: 0.8 * Since: 0.8
*
* Deprecated: 1.16: The signal should not be used in newly
* written code
*/ */
actor_signals[UNREALIZE] = actor_signals[UNREALIZE] =
g_signal_new (I_("unrealize"), g_signal_new (I_("unrealize"),
G_TYPE_FROM_CLASS (object_class), G_TYPE_FROM_CLASS (object_class),
G_SIGNAL_RUN_LAST, G_SIGNAL_RUN_LAST | G_SIGNAL_DEPRECATED,
G_STRUCT_OFFSET (ClutterActorClass, unrealize), G_STRUCT_OFFSET (ClutterActorClass, unrealize),
NULL, NULL, NULL, NULL,
_clutter_marshal_VOID__VOID, _clutter_marshal_VOID__VOID,

View file

@ -129,9 +129,13 @@ struct _ClutterActor
* clutter_actor_hide(). This virtual function is deprecated and it * clutter_actor_hide(). This virtual function is deprecated and it
* should not be overridden. * should not be overridden.
* @realize: virtual function, used to allocate resources for the actor; * @realize: virtual function, used to allocate resources for the actor;
* it should chain up to the parent's implementation * it should chain up to the parent's implementation. This virtual
* function is deprecated and should not be overridden in newly
* written code.
* @unrealize: virtual function, used to deallocate resources allocated * @unrealize: virtual function, used to deallocate resources allocated
* in ::realize; it should chain up to the parent's implementation * in ::realize; it should chain up to the parent's implementation. This
* function is deprecated and should not be overridden in newly
* written code.
* @map: virtual function for containers and composite actors, to * @map: virtual function for containers and composite actors, to
* map their children; it must chain up to the parent's implementation. * map their children; it must chain up to the parent's implementation.
* Overriding this function is optional. * Overriding this function is optional.
@ -147,12 +151,13 @@ struct _ClutterActor
* clutter_actor_get_preferred_height() * clutter_actor_get_preferred_height()
* @allocate: virtual function, used when settings the coordinates of an * @allocate: virtual function, used when settings the coordinates of an
* actor; it is used by clutter_actor_allocate(); it must chain up to * actor; it is used by clutter_actor_allocate(); it must chain up to
* the parent's implementation * the parent's implementation, or call clutter_actor_set_allocation()
* @apply_transform: virtual function, used when applying the transformations * @apply_transform: virtual function, used when applying the transformations
* to an actor before painting it or when transforming coordinates or * to an actor before painting it or when transforming coordinates or
* the allocation; it must chain up to the parent's implementation * the allocation; it must chain up to the parent's implementation
* @parent_set: signal class handler for the #ClutterActor::parent-set * @parent_set: signal class handler for the #ClutterActor::parent-set
* @destroy: signal class handler for #ClutterActor::destroy * @destroy: signal class handler for #ClutterActor::destroy. It must
* chain up to the parent's implementation
* @pick: virtual function, used to draw an outline of the actor with * @pick: virtual function, used to draw an outline of the actor with
* the given color * the given color
* @queue_redraw: class handler for #ClutterActor::queue-redraw * @queue_redraw: class handler for #ClutterActor::queue-redraw