Displaying 3 results from an estimated 3 matches for "vivi_type_debugg".
Did you mean:
vivi_type_debugger
2007 Aug 14
0
Branch 'vivi' - 11 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/Makefile.am libswfdec/swfdec.h libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h vivified/core
...debugger.h"
#include "vivi_function.h"
#include "vivi_ming.h"
@@ -115,7 +116,9 @@ vivi_application_class_init (ViviApplica
static void
vivi_application_init (ViviApplication *app)
{
- app->player = swfdec_gtk_player_new (NULL);
+ app->debugger = g_object_new (VIVI_TYPE_DEBUGGER, NULL);
+ app->debugger->app = app;
+ app->player = swfdec_gtk_player_new (SWFDEC_AS_DEBUGGER (app->debugger));
}
ViviApplication *
@@ -156,8 +159,9 @@ vivi_application_reset (ViviApplication
{
g_return_if_fail (VIVI_IS_APPLICATION (app));
+ g_assert (app->loop == NUL...
2007 Aug 15
0
Branch 'vivi' - 13 commits - doc/swfdec-sections.txt libswfdec/swfdec_as_debugger.h libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_types.h vivified/core vivified/ui
...iApplication *app = VIVI_APPLICATION (object);
g_object_unref (app->player);
+ g_hash_table_destroy (app->wraps);
G_OBJECT_CLASS (vivi_application_parent_class)->dispose (object);
}
@@ -120,6 +121,8 @@ vivi_application_init (ViviApplication *
app->debugger = g_object_new (VIVI_TYPE_DEBUGGER, NULL);
app->debugger->app = app;
app->player = swfdec_gtk_player_new (SWFDEC_AS_DEBUGGER (app->debugger));
+
+ app->wraps = g_hash_table_new (g_direct_hash, g_direct_equal);
}
ViviApplication *
diff --git a/vivified/core/vivi_application.h b/vivified/core/vivi_applicati...
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
...iApplication *app = VIVI_APPLICATION (object);
g_object_unref (app->player);
+ g_hash_table_destroy (app->wraps);
G_OBJECT_CLASS (vivi_application_parent_class)->dispose (object);
}
@@ -120,6 +121,8 @@ vivi_application_init (ViviApplication *
app->debugger = g_object_new (VIVI_TYPE_DEBUGGER, NULL);
app->debugger->app = app;
app->player = swfdec_gtk_player_new (SWFDEC_AS_DEBUGGER (app->debugger));
+
+ app->wraps = g_hash_table_new (g_direct_hash, g_direct_equal);
}
ViviApplication *
diff --git a/vivified/core/vivi_application.h b/vivified/core/vivi_applicati...