search for: swfdec_movie_get_debug

Displaying 3 results from an estimated 3 matches for "swfdec_movie_get_debug".

2008 Jan 02
0
3 commits - libswfdec/swfdec_movie.c test/trace
...alk = walk->next) { + SwfdecMovie *cur = walk->data; + if (cur->original_name == SWFDEC_AS_STR_EMPTY) + continue; + SWFDEC_AS_VALUE_SET_OBJECT (&val, walk->data); + ret &= func (object, cur->name, &val, 0, data); + } + + return ret; +} + static char * swfdec_movie_get_debug (SwfdecAsObject *object) { @@ -1434,6 +1455,7 @@ swfdec_movie_class_init (SwfdecMovieClass * movie_class) asobject_class->mark = swfdec_movie_mark; asobject_class->get = swfdec_movie_get_variable; asobject_class->set = swfdec_movie_set_variable; + asobject_class->foreach = sw...
2007 Jul 12
0
Branch 'as' - 6 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_movie.c libswfdec/swfdec_sprite_movie_as.c test/trace
...ec_movie.c b/libswfdec/swfdec_movie.c index ce3abc2..7ae2a67 100644 --- a/libswfdec/swfdec_movie.c +++ b/libswfdec/swfdec_movie.c @@ -837,6 +837,14 @@ swfdec_movie_set_variable (SwfdecAsObjec SWFDEC_AS_OBJECT_CLASS (swfdec_movie_parent_class)->set (object, variable, val); } +static char * +swfdec_movie_get_debug (SwfdecAsObject *object) +{ + SwfdecMovie *movie = SWFDEC_MOVIE (object); + + return swfdec_movie_get_path (movie); +} + static gboolean swfdec_movie_iterate_end (SwfdecMovie *movie) { @@ -855,6 +863,7 @@ swfdec_movie_class_init (SwfdecMovieClas asobject_class->mark = swfdec_movie_mark;...
2007 Aug 07
0
5 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_keys.h libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite_movie_as.c player/swfdebug.c player/swfdec_debug_movies.c player/swfdec_debug_movies.h test/trace
...s->get_property = swfdec_movie_get_property; + object_class->set_property = swfdec_movie_set_property; asobject_class->mark = swfdec_movie_mark; asobject_class->get = swfdec_movie_get_variable; asobject_class->set = swfdec_movie_set_variable; asobject_class->debug = swfdec_movie_get_debug; + g_object_class_install_property (object_class, PROP_DEPTH, + g_param_spec_int ("depth", "depth", "z order inside the parent", + G_MININT, G_MAXINT, 0, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); + movie_class->iterate_end = swfdec_movie_iterate_end...