static void bt_main_pages_init (BtMainPages * self) { self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, BT_TYPE_MAIN_PAGES, BtMainPagesPrivate); GST_DEBUG ("!!!! self=%p", self); self->priv->app = bt_edit_application_new (); }
static void bt_crash_recover_dialog_init (BtCrashRecoverDialog * self) { self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, BT_TYPE_CRASH_RECOVER_DIALOG, BtCrashRecoverDialogPrivate); GST_DEBUG ("!!!! self=%p", self); self->priv->app = bt_edit_application_new (); }
static void test_setup (void) { bt_edit_setup (); app = bt_edit_application_new (); g_object_get (app, "main-window", &main_window, NULL); flush_main_loop (); }
static void bt_settings_dialog_init (BtSettingsDialog * self) { self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, BT_TYPE_SETTINGS_DIALOG, BtSettingsDialogPrivate); GST_DEBUG ("!!!! self=%p", self); self->priv->app = bt_edit_application_new (); }
static void bt_settings_page_interaction_controller_init (BtSettingsPageInteractionController * self) { self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, BT_TYPE_SETTINGS_PAGE_INTERACTION_CONTROLLER, BtSettingsPageInteractionControllerPrivate); GST_DEBUG ("!!!! self=%p", self); self->priv->app = bt_edit_application_new (); }
static void bt_main_page_info_init (BtMainPageInfo * self) { self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, BT_TYPE_MAIN_PAGE_INFO, BtMainPageInfoPrivate); GST_DEBUG ("!!!! self=%p", self); self->priv->app = bt_edit_application_new (); gtk_orientable_set_orientation (GTK_ORIENTABLE (self), GTK_ORIENTATION_VERTICAL); }
static void test_setup (void) { bt_edit_setup (); app = bt_edit_application_new (); bt_edit_application_new_song (app); g_object_get (app, "song", &song, "main-window", &main_window, NULL); g_object_get (main_window, "pages", &pages, NULL); g_object_get (song, "setup", &setup, NULL); gtk_notebook_set_current_page (GTK_NOTEBOOK (pages), BT_MAIN_PAGES_MACHINES_PAGE); flush_main_loop (); }
static void bt_playback_controller_socket_init (BtPlaybackControllerSocket * self) { self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, BT_TYPE_PLAYBACK_CONTROLLER_SOCKET, BtPlaybackControllerSocketPrivate); GST_DEBUG ("!!!! self=%p", self); /* this is created from the app, we need to avoid a ref-cycle */ self->priv->app = bt_edit_application_new (); g_object_try_weak_ref (self->priv->app); g_object_unref (self->priv->app); // check settings //master_connection_open(self); settings_listen (self); // register event handlers g_signal_connect (self->priv->app, "notify::song", G_CALLBACK (on_song_changed), (gpointer) self); }
gint main (gint argc, gchar ** argv) { gboolean res = FALSE; gchar *command = NULL, *input_file_name = NULL; BtEditApplication *app; GOptionContext *ctx = NULL; GOptionGroup *group; GError *err = NULL; #ifdef ENABLE_NLS setlocale (LC_ALL, ""); bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); #endif /* ENABLE_NLS */ bt_setup_for_local_install (); GOptionEntry options[] = { {"version", '\0', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, (gpointer) parse_goption_arg, N_("Print application version"), NULL} , {"command", 'c', 0, G_OPTION_ARG_STRING, &command, N_("Command name"), "{load}"} , {"input-file", 'i', 0, G_OPTION_ARG_FILENAME, &input_file_name, N_("Input file name"), N_("<songfile>")} , {NULL} }; // init libraries ctx = g_option_context_new (NULL); //g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE); group = g_option_group_new ("main", _("buzztrax-edit options"), _("Show buzztrax-edit options"), argv[0], NULL); g_option_group_add_entries (group, options); g_option_group_set_translation_domain (group, GETTEXT_PACKAGE); g_option_context_set_main_group (ctx, group); bt_init_add_option_groups (ctx); g_option_context_add_group (ctx, btic_init_get_option_group ()); g_option_context_add_group (ctx, gtk_get_option_group (TRUE)); g_option_context_add_group (ctx, clutter_get_option_group_without_init ()); g_option_context_add_group (ctx, gtk_clutter_get_option_group ()); if (!g_option_context_parse (ctx, &argc, &argv, &err)) { g_print ("Error initializing: %s\n", safe_string (err->message)); g_error_free (err); goto Done; } GST_DEBUG_CATEGORY_INIT (GST_CAT_DEFAULT, "bt-edit", 0, "music production environment / editor ui"); // give some global context info g_set_prgname ("buzztrax-edit"); g_set_application_name ("Buzztrax"); gtk_window_set_default_icon_name ("buzztrax"); g_setenv ("PULSE_PROP_media.role", "production", TRUE); extern gboolean bt_memory_audio_src_plugin_init (GstPlugin * const plugin); gst_plugin_register_static (GST_VERSION_MAJOR, GST_VERSION_MINOR, "memoryaudiosrc", "Plays audio from memory", bt_memory_audio_src_plugin_init, VERSION, "LGPL", PACKAGE, PACKAGE_NAME, "http://www.buzztrax.org"); GST_INFO ("starting: thread=%p", g_thread_self ()); app = bt_edit_application_new (); // set a default command, if a file is given if (!command && BT_IS_STRING (input_file_name)) { command = g_strdup ("l"); } if (command) { // depending on the options call the correct method if (!strcmp (command, "l") || !strcmp (command, "load")) { if (!BT_IS_STRING (input_file_name)) { usage (argc, argv, ctx); // if commandline options where wrong, just start res = bt_edit_application_run (app); } else { res = bt_edit_application_load_and_run (app, input_file_name); } } else { usage (argc, argv, ctx); // if commandline options where wrong, just start res = bt_edit_application_run (app); } } else { res = bt_edit_application_run (app); } // free application GST_INFO ("app %" G_OBJECT_REF_COUNT_FMT, G_OBJECT_LOG_REF_COUNT (app)); g_object_unref (app); Done: g_free (command); g_free (input_file_name); g_option_context_free (ctx); return !res; }