X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=aoview%2Faoview_main.c;h=99de14732b3fc7961e4ce80270daf8202c290025;hb=2e06772c8b6fd74f86e640ed97f0d5bc8c095c2f;hp=9e32e6398c49174f8708586426aa01c3ccef0173;hpb=be3f4fed7b863c8cdaabe32b61b65a8b3cd11355;p=fw%2Faltos diff --git a/aoview/aoview_main.c b/aoview/aoview_main.c index 9e32e639..99de1473 100644 --- a/aoview/aoview_main.c +++ b/aoview/aoview_main.c @@ -17,6 +17,10 @@ #include "aoview.h" +static const char aoview_glade[] = { +#include "aoview_glade.h" +}; + static void usage(void) { printf("aoview [--device|-d device_file]"); exit(1); @@ -32,6 +36,7 @@ int main(int argc, char **argv) GladeXML *xml = NULL; GtkWidget *mainwindow; char *device = NULL; + GtkAboutDialog *about_dialog; static struct option long_options[] = { { "device", 1, 0, 'd'}, @@ -56,23 +61,40 @@ int main(int argc, char **argv) gtk_init(&argc, &argv); glade_init(); - xml = glade_xml_new("aoview.glade", NULL, NULL); + xml = glade_xml_new_from_buffer(aoview_glade, sizeof (aoview_glade), NULL, NULL); + /* connect the signals in the interface */ glade_xml_signal_autoconnect(xml); /* Hook up the close button. */ mainwindow = glade_xml_get_widget(xml, "aoview"); + assert(mainwindow); + g_signal_connect (G_OBJECT(mainwindow), "destroy", G_CALLBACK(destroy_event), NULL); + about_dialog = GTK_ABOUT_DIALOG(glade_xml_get_widget(xml, "about_dialog")); + assert(about_dialog); + gtk_about_dialog_set_version(about_dialog, AOVIEW_VERSION); + + aoview_voice_init(xml); + aoview_dev_dialog_init(xml); aoview_state_init(xml); + aoview_file_init(xml); + aoview_log_init(xml); aoview_table_init(xml); + aoview_eeprom_init(xml); + + aoview_replay_init(xml); + + aoview_label_init(xml); + gtk_main(); return 0;