[clutter] actor: Deprecate the pick signal
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [clutter] actor: Deprecate the pick signal
- Date: Mon, 27 Aug 2012 09:50:06 +0000 (UTC)
commit 6bf0b983af0f2a3959458a7261778c35d09b9722
Author: Emmanuele Bassi <ebassi gnome org>
Date: Sat Aug 25 10:38:12 2012 +0100
actor: Deprecate the pick signal
Just like we did for the paint signal; a warning will be emitted if the
diagnostic mode of GLib is enabled through the G_ENABLE_DIAGNOSTIC env
var.
clutter/clutter-actor.c | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
---
diff --git a/clutter/clutter-actor.c b/clutter/clutter-actor.c
index 7dc35d4..b0ed4d5 100644
--- a/clutter/clutter-actor.c
+++ b/clutter/clutter-actor.c
@@ -3567,11 +3567,6 @@ clutter_actor_paint_node (ClutterActor *actor,
_clutter_paint_node_paint (root);
-#if 0
- /* XXX: Uncomment this when we disable emitting the paint signal */
- CLUTTER_ACTOR_GET_CLASS (actor)->paint (actor);
-#endif
-
return TRUE;
}
@@ -3866,6 +3861,7 @@ clutter_actor_continue_paint (ClutterActor *self)
clutter_actor_paint_node (self, dummy);
clutter_paint_node_unref (dummy);
+ /* XXX:2.0 - Call the paint() virtual directly */
g_signal_emit (self, actor_signals[PAINT], 0);
}
else
@@ -3877,6 +3873,8 @@ clutter_actor_continue_paint (ClutterActor *self)
/* Actor will then paint silhouette of itself in supplied
* color. See clutter_stage_get_actor_at_pos() for where
* picking is enabled.
+ *
+ * XXX:2.0 - Call the pick() virtual directly
*/
g_signal_emit (self, actor_signals[PICK], 0, &col);
}
@@ -8169,11 +8167,13 @@ clutter_actor_class_init (ClutterActorClass *klass)
* to set up some custom aspect of a paint in pick mode.
*
* Since: 1.0
+ * Deprecated: 1.12: Override the #ClutterActorClass.pick virtual function
+ * instead.
*/
actor_signals[PICK] =
g_signal_new (I_("pick"),
G_TYPE_FROM_CLASS (object_class),
- G_SIGNAL_RUN_LAST,
+ G_SIGNAL_RUN_LAST | G_SIGNAL_DEPRECATED,
G_STRUCT_OFFSET (ClutterActorClass, pick),
NULL, NULL,
_clutter_marshal_VOID__BOXED,
@@ -16828,6 +16828,8 @@ _clutter_actor_get_paint_volume_real (ClutterActor *self,
* paint-volume.
* - If we could be notified somehow when signal handlers are
* connected we wouldn't have to poll for handlers like this.
+ *
+ * XXX:2.0 - Remove when we remove the paint signal
*/
if (g_signal_has_handler_pending (self,
actor_signals[PAINT],
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]