mutter/clutter
Emmanuele Bassi 212c4a0ee8 2006-07-06 Emmanuele Bassi <ebassi@openedhand.com>
Big rework of the actor management semantics: now ClutterActor
	objects behave like GtkObjects - that is they have an initial
	"floating" reference that gets "sunk" when they are added to
	a ClutterGroup.  This makes a group responsible of de-allocating
	each actor inside it, so you just have to destroy the group to
	get every child actor destroyed.  Also, now you can do:

	  clutter_group_add (group, clutter_video_texture_new ());
	
	without having to care about reference counting and explicit
	unreffing.

	* clutter/clutter-private.h: Add private flags setter and
	getter macros.

	* clutter/clutter-actor.h:
	* clutter/clutter-actor.c: Clean up; inherit from GInitiallyUnowned;
	add a "visible" property; add the "destroy", "show" and "hide"
	signals to ClutterActorClass.

	(clutter_actor_show), (clutter_actor_hide): Refactor a bit; emit
	the "show" and "hide" signals.

	(clutter_actor_set_property), (clutter_actor_get_property),
	(clutter_actor_class_init): Implement the "visible" property; add
	signals.

	(clutter_actor_finalize): Do not leak the actor's name, if it is
	set.
	
	(clutter_actor_dispose): Emit the "destroy" signal here.

	(clutter_actor_init): Sink the initial floating flag if needed.

	(clutter_actor_destroy): Add a function to explicitely destroy
	a ClutterActor.

	(clutter_actor_set_parent), (clutter_actor_get_parent),
	(clutter_actor_unparent): Make set_parent require a valid parent;
	add unparent; check on get_parent; ref_sink the actor when
	setting its parent and unref it when unsetting it.  Probably we'll
	need a function that does reparenting as unparent+set_parent in
	a single shot.

	* clutter/clutter-group.h:
	* clutter/clutter-group.c (clutter_group_dispose),
	(clutter_group_finalize), (clutter_group_add),
	(clutter_group_remove): Make the group destroy its children when
	disposing it; clean up, and use the newly-available
	clutter_actor_unparent().

	* clutter/clutter-stage.h:
	* clutter/clutter-stage.c (clutter_stage_init): ClutterStage is
	a top-level actor; clean up.

	* clutter/clutter-video-texture.h:
	* clutter/clutter-video-texture.c: Clean up.

	* examples/super-oh.c:
	* examples/test.c:
	* examples/video-player.c:
	* examples/test-text.c:
	* examples/video-cube.c: Remove the g_object_unref() call, as the
	ClutterStage object is destroyed on clutter_main_quit().
2006-07-06 17:52:57 +00:00
..
clutter-actor.c 2006-07-06 Emmanuele Bassi <ebassi@openedhand.com> 2006-07-06 17:52:57 +00:00
clutter-actor.h 2006-07-06 Emmanuele Bassi <ebassi@openedhand.com> 2006-07-06 17:52:57 +00:00
clutter-clone-texture.c 2006-06-22 Matthew Allum <mallum@openedhand.com> 2006-06-21 22:34:25 +00:00
clutter-clone-texture.h 2006-06-13 Matthew Allum <mallum@openedhand.com> 2006-06-13 13:17:45 +00:00
clutter-color.c 2006-06-22 Matthew Allum <mallum@openedhand.com> 2006-06-21 22:34:25 +00:00
clutter-color.h 2006-06-05 Emmanuele Bassi <ebassi@openedhand.com> 2006-06-05 13:38:31 +00:00
clutter-event.c Add more docs...80% coverage 2006-06-22 14:31:19 +00:00
clutter-event.h Shuffle some layout so that gapi2-parser can understand everything 2006-06-23 15:13:11 +00:00
clutter-group.c 2006-07-06 Emmanuele Bassi <ebassi@openedhand.com> 2006-07-06 17:52:57 +00:00
clutter-group.h 2006-07-06 Emmanuele Bassi <ebassi@openedhand.com> 2006-07-06 17:52:57 +00:00
clutter-keysyms.h Merge gobject-branch into trunk 2006-05-29 08:59:36 +00:00
clutter-label.c More gtk-doc fixes 2006-06-22 09:24:15 +00:00
clutter-label.h Shuffle some layout so that gapi2-parser can understand everything 2006-06-23 15:13:11 +00:00
clutter-main.c 80% coverage 2006-06-22 14:36:05 +00:00
clutter-main.h 2006-06-22 Matthew Allum <mallum@openedhand.com> 2006-06-22 08:40:37 +00:00
clutter-marshal.list 2006-06-22 Emmanuele Bassi <ebassi@openedhand.com> 2006-06-22 12:05:51 +00:00
clutter-media.c Forgot this bit 2006-06-22 14:16:41 +00:00
clutter-media.h 2006-06-12 Matthew Allum <mallum@openedhand.com> 2006-06-12 20:38:57 +00:00
clutter-private.h 2006-07-06 Emmanuele Bassi <ebassi@openedhand.com> 2006-07-06 17:52:57 +00:00
clutter-rectangle.c 2006-06-22 Matthew Allum <mallum@openedhand.com> 2006-06-21 22:34:25 +00:00
clutter-rectangle.h Shuffle some layout so that gapi2-parser can understand everything 2006-06-23 15:13:11 +00:00
clutter-stage.c 2006-07-06 Emmanuele Bassi <ebassi@openedhand.com> 2006-07-06 17:52:57 +00:00
clutter-stage.h 2006-07-06 Emmanuele Bassi <ebassi@openedhand.com> 2006-07-06 17:52:57 +00:00
clutter-texture.c Fix typos...74% 2006-06-22 13:56:04 +00:00
clutter-texture.h Fix typo 2006-06-23 18:18:56 +00:00
clutter-timeline.c Fix typos...74% 2006-06-22 13:56:04 +00:00
clutter-timeline.h 2006-06-22 Emmanuele Bassi <ebassi@openedhand.com> 2006-06-22 12:05:51 +00:00
clutter-util.c More docustuff 2006-06-22 09:25:01 +00:00
clutter-util.h 2006-06-15 Matthew Allum <mallum@openedhand.com> 2006-06-15 22:04:19 +00:00
clutter-video-texture.c 2006-07-06 Emmanuele Bassi <ebassi@openedhand.com> 2006-07-06 17:52:57 +00:00
clutter-video-texture.h 2006-07-06 Emmanuele Bassi <ebassi@openedhand.com> 2006-07-06 17:52:57 +00:00
clutter.h 2006-06-13 Matthew Allum <mallum@openedhand.com> 2006-06-13 13:17:45 +00:00
Makefile.am 2006-06-21 Emmanuele Bassi <ebassi@openedhand.com> 2006-06-21 17:21:19 +00:00