Displaying 3 results from an estimated 3 matches for "swfdec_as_object_has_variable".
2007 Dec 17
0
2 commits - doc/Makefile.am doc/swfdec-sections.txt NEWS
...bug
 swfdec_as_double_to_string
+swfdec_as_integer_to_string
 swfdec_as_str_concat
 <SUBSECTION Standard>
 SWFDEC_IS_AS_VALUE
@@ -344,6 +348,7 @@ swfdec_as_object_set_variable_and_flags
 swfdec_as_object_add_variable
 swfdec_as_object_set_variable_flags
 swfdec_as_object_unset_variable_flags
+swfdec_as_object_has_variable
 swfdec_as_object_delete_variable
 swfdec_as_object_delete_all_variables
 SwfdecAsVariableForeach
2007 Nov 28
0
59 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_button.c libswfdec/swfdec_button.h libswfdec/swfdec_button_movie.c libswfdec/swfdec_button_movie.h libswfdec/swfdec_event.c
...movie_do_remove (SwfdecMovie *movie, gboolean destroy)
 
   if ((movie->events && 
 	swfdec_event_list_has_conditions (movie->events, SWFDEC_AS_OBJECT (movie), SWFDEC_EVENT_UNLOAD, 0)) ||
-      swfdec_as_object_has_function (SWFDEC_AS_OBJECT (movie), SWFDEC_AS_STR_onUnload)) {
+      swfdec_as_object_has_variable (SWFDEC_AS_OBJECT (movie), SWFDEC_AS_STR_onUnload)) {
     swfdec_movie_queue_script (movie, SWFDEC_EVENT_UNLOAD);
     destroy = FALSE;
   }
commit 6866ab4f66b2dce919ce16e372dd652f169c6ad2
Author: Benjamin Otte <otte at gnome.org>
Date:   Mon Nov 26 21:33:20 2007 +0100
    remove commented...
2007 Dec 18
2
Changes to 'refs/tags/0.5.5'
...est where only a child of the removed movie has an onUnload function
      first steps at redoing mouse input.
      port widget to new API
      only handle single clicks
      don't segfault if we don't have a movie
      typo
      check event receiving by calling a Movie vfunc
      add swfdec_as_object_has_variable()
      add swfdec_player_is_mouse_pressed() macro for code clarity
      set default event handlers for SwfdecMovie mouse events
      fix _contains() checks
      only react to mouse button 0
      number buttons correctly and release the mouse grab on button release
      confused mouse_in and m...