search for: 40bdc64

Displaying 3 results from an estimated 3 matches for "40bdc64".

2007 Aug 13
0
Branch 'vivi' - 2 commits - vivified/core
...eset (ViviApplication *app) { g_return_if_fail (VIVI_IS_APPLICATION (app)); g_object_unref (app->player); app->player = swfdec_gtk_player_new (NULL); + app->player_inited = FALSE; } void diff --git a/vivified/core/vivi_application.h b/vivified/core/vivi_application.h index 40bdc64..f45540e 100644 --- a/vivified/core/vivi_application.h +++ b/vivified/core/vivi_application.h @@ -47,6 +47,9 @@ struct _ViviApplication char * filename; /* name of the file we play back or NULL if none set yet */ SwfdecPlayer * player; /* the current player */ + gboolean player_inited;...
2007 Aug 09
0
Branch 'vivi' - 12 commits - libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h libswfdec/Makefile.am libswfdec/swfdec_as_array.h libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_debugger.c
...va_list args; + char *msg; + + va_start (args, format); + msg = g_strdup_vprintf (format, args); + va_end (args); + g_signal_emit (app, signals[MESSAGE], 0, (guint) type, msg); + g_free (msg); +} + diff --git a/vivified/core/vivi_application.h b/vivified/core/vivi_application.h index 8a21410..40bdc64 100644 --- a/vivified/core/vivi_application.h +++ b/vivified/core/vivi_application.h @@ -28,6 +28,12 @@ G_BEGIN_DECLS typedef struct _ViviApplication ViviApplication; typedef struct _ViviApplicationClass ViviApplicationClass; +typedef enum { + VIVI_MESSAGE_INPUT, + VIVI_MESSAGE_OUTPUT, + VIV...
2007 Aug 22
0
163 commits - autogen.sh configure.ac doc/swfdec-sections.txt libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h libswfdec-gtk/swfdec_gtk_widget.c libswfdec-gtk/swfdec_source.c libswfdec/Makefile.am libswfdec/swfdec_as_array.c
...eset (ViviApplication *app) { g_return_if_fail (VIVI_IS_APPLICATION (app)); g_object_unref (app->player); app->player = swfdec_gtk_player_new (NULL); + app->player_inited = FALSE; } void diff --git a/vivified/core/vivi_application.h b/vivified/core/vivi_application.h index 40bdc64..f45540e 100644 --- a/vivified/core/vivi_application.h +++ b/vivified/core/vivi_application.h @@ -47,6 +47,9 @@ struct _ViviApplication char * filename; /* name of the file we play back or NULL if none set yet */ SwfdecPlayer * player; /* the current player */ + gboolean player_inited;...