binary_paths_manager::binary_paths_manager(const config& cfg) : paths_() { set_paths(cfg); }
LauncherWindow::LauncherWindow(MainObject *mainOb, QWidget *parent) : QMainWindow(parent) { mainObject = mainOb; setProperty("settings_namespace", QVariant("launcher_window")); mainObject->settings->restoreWindow(this); setWindowTitle("fgX Launcher"); setWindowIcon(QIcon(":/icons/launcher")); //setWindowFlags( Qt::WindowStaysOnTopHint); //* MainWidget and MainLayout QWidget *mainWidget = new QWidget(this); setCentralWidget(mainWidget); QVBoxLayout *mainVBox = new QVBoxLayout(); mainVBox->setContentsMargins(0,0,0,0); mainVBox->setSpacing(0); mainWidget->setLayout(mainVBox); //** Header Banner across the top ========================= QString header_style("padding: 10px; font-size: 11pt; font-weight: bold; background-color: qlineargradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 white, stop: 1 #F0DD17);"); headerLabel = new QLabel(this); headerLabel->setText("fgX Launcher"); headerLabel->setStyleSheet(header_style); mainVBox->addWidget(headerLabel, 0); splitter = new QSplitter(); mainVBox->addWidget(splitter, 20); //** Main Tab ========================= tabWidget = new QTabWidget(this); splitter->addWidget(tabWidget); connect(tabWidget, SIGNAL(currentChanged(int)), this, SLOT(on_tab_changed(int))); //================================================== // Widgets //* Aircraft Widget aircraftWidget = new AircraftWidget(mainObject); tabWidget->addTab(aircraftWidget, tr("Aircraft")); connect(aircraftWidget, SIGNAL(set_arg(QString,QString,QString)), this, SLOT(set_arg(QString,QString,QString))); //* Options mainOptionsWidget = new MainOptionsWidget(mainObject); tabWidget->addTab(mainOptionsWidget, tr("Main Options")); connect(mainOptionsWidget, SIGNAL(set_arg(QString,QString,QString)), this, SLOT(set_arg(QString,QString,QString))); //* MpServers mpServersWidget = new MpServersWidget(mainObject); tabWidget->addTab(mpServersWidget, tr("Network")); connect(mpServersWidget, SIGNAL(set_arg(QString,QString,QString)), this, SLOT(set_arg(QString,QString,QString))); //* Airports Widget airportsWidget = new AirportsWidget(mainObject); tabWidget->addTab(airportsWidget, tr("Airports")); connect(airportsWidget, SIGNAL(set_arg(QString,QString,QString)), this, SLOT(set_arg(QString,QString,QString))); //============================================================= // ## Tree tree = new QTreeWidget(); tree->setRootIsDecorated(false); tree->setMinimumWidth(400); tree->headerItem()->setText(0, "Option"); tree->headerItem()->setText(1, "Value"); tree->header()->setStretchLastSection(true); tree->setColumnWidth(C_ARG, 200); splitter->addWidget(tree); setup_tree(); splitter->setStretchFactor(0,3); splitter->setStretchFactor(1,1); //********************************************************* //** Control Bar //********************************************************* controlBarWidget = new ControlBarWidget(mainObject); mainVBox->addWidget(controlBarWidget, 1); //controlBarWidget->hide(); set_paths(); }
int main (int argc, char **argv) { #ifdef G_OS_WIN32 extern void link_shutdown (void); #endif GConfClient *client; #if DEVELOPMENT gboolean skip_warning_dialog; #endif GnomeProgram *program; GnomeClient *master_client; GOptionContext *context; char *filename; /* Make ElectricFence work. */ free (malloc (10)); bindtextdomain (GETTEXT_PACKAGE, EVOLUTION_LOCALEDIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); context = g_option_context_new (_("- The Evolution PIM and Email Client")); g_option_context_add_main_entries (context, options, GETTEXT_PACKAGE); g_option_context_set_translation_domain(context, GETTEXT_PACKAGE); #ifdef G_OS_WIN32 set_paths (); #endif program = gnome_program_init (PACKAGE, VERSION, LIBGNOMEUI_MODULE, argc, argv, GNOME_PROGRAM_STANDARD_PROPERTIES, GNOME_PARAM_GOPTION_CONTEXT, context, GNOME_PARAM_HUMAN_READABLE_NAME, _("Evolution"), NULL); #ifdef G_OS_WIN32 if (strcmp (_(""), "") == 0) { /* No message catalog installed for the current locale language, * so don't bother with the localisations provided by other things then * either. Reset thread locale to "en-US" and C library locale to "C". */ SetThreadLocale (MAKELCID (MAKELANGID (LANG_ENGLISH, SUBLANG_ENGLISH_US), SORT_DEFAULT)); setlocale (LC_ALL, "C"); } #endif if (start_online && start_offline) { fprintf (stderr, _("%s: --online and --offline cannot be used together.\n Use %s --help for more information.\n"), argv[0], argv[0]); exit (1); } if (killev) { filename = g_build_filename (EVOLUTION_TOOLSDIR, "killev", NULL); execl (filename, "killev", NULL); /* Not reached */ exit (0); } client = gconf_client_get_default (); #if DEVELOPMENT if (force_migrate) { destroy_config (client); } #endif if (disable_preview) { gconf_client_set_bool (client, "/apps/evolution/mail/display/show_preview", FALSE, NULL); gconf_client_set_bool (client, "/apps/evolution/mail/display/safe_list", TRUE, NULL); gconf_client_set_bool (client, "/apps/evolution/addressbook/display/show_preview", FALSE, NULL); gconf_client_set_bool (client, "/apps/evolution/calendar/display/show_task_preview", FALSE, NULL); } setup_segv_redirect (); if (evolution_debug_log) { int fd; fd = g_open (evolution_debug_log, O_WRONLY | O_CREAT | O_TRUNC, 0600); if (fd != -1) { dup2 (fd, STDOUT_FILENO); dup2 (fd, STDERR_FILENO); close (fd); } else g_warning ("Could not set up debugging output file."); } master_client = gnome_master_client (); g_signal_connect (G_OBJECT (master_client), "save_yourself", G_CALLBACK (gnome_master_client_save_yourself_cb), NULL); g_signal_connect (G_OBJECT (master_client), "die", G_CALLBACK (gnome_master_client_die_cb), NULL); glade_init (); e_cursors_init (); e_icon_factory_init (); e_passwords_init(); gtk_window_set_default_icon_name ("evolution"); if (setup_only) exit (0); gnome_sound_init ("localhost"); if (!disable_eplugin) { e_plugin_register_type(e_plugin_lib_get_type()); e_plugin_hook_register_type(es_menu_hook_get_type()); e_plugin_hook_register_type(es_event_hook_get_type()); #ifdef ENABLE_PROFILING e_plugin_hook_register_type(e_profile_event_hook_get_type()); #endif e_plugin_hook_register_type(e_plugin_type_hook_get_type()); e_plugin_hook_register_type(e_import_hook_get_type()); e_plugin_hook_register_type(E_TYPE_PLUGIN_UI_HOOK); e_plugin_load_plugins(); } #if DEVELOPMENT skip_warning_dialog = gconf_client_get_bool ( client, SKIP_WARNING_DIALOG_KEY, NULL); if (!skip_warning_dialog && !getenv ("EVOLVE_ME_HARDER")) gconf_client_set_bool ( client, SKIP_WARNING_DIALOG_KEY, show_development_warning (), NULL); else g_idle_add ((GSourceFunc) idle_cb, remaining_args); #else g_idle_add ((GSourceFunc) idle_cb, remaining_args); #endif g_object_unref (client); bonobo_main (); e_icon_factory_shutdown (); g_object_unref (program); gnome_sound_shutdown (); e_cursors_shutdown (); #ifdef G_OS_WIN32 link_shutdown (); #endif return 0; }
/* * read in empire configuration */ int emp_config(char *file) { FILE *fp; char scanspace[1024]; char *av[128]; char buf[1024]; struct keymatch *kp; int lno = 0; int errors = 0; int i; if (!file) file = dflt_econfig; errno = 0; if ((fp = fopen(file, "r")) == NULL) { if (file == dflt_econfig && errno == ENOENT) goto done; fprintf(stderr, "Can't open %s for reading (%s)\n", file, strerror(errno)); return -1; } while (fgets(buf, sizeof(buf), fp) != NULL) { ++lno; for (i = 0; buf[i] && isspace(buf[i]); ++i) ; if (!buf[i] || buf[i] == '#') continue; if (parse(buf, scanspace, av, NULL, NULL, NULL) < 0) { fprintf(stderr, "%s:%d: Can't parse line %s", file, lno, buf); errors = 1; continue; } if ((kp = keylookup(av[0], configkeys)) == NULL) { fprintf(stderr, "%s:%d: Unknown config key %s\n", file, lno, av[0]); errors = 1; continue; } if (av[1] == NULL) { fprintf(stderr, "%s:%d: Config key %s needs a value\n", file, lno, av[0]); errors = 1; continue; } i = 2; switch (kp->km_type) { case NSC_INT: *(int *)kp->km_data = atoi(av[1]); break; case NSC_FLOAT: *(float *)kp->km_data = atof(av[1]); break; case NSC_DOUBLE: *(double *)kp->km_data = atof(av[1]); break; case NSC_LONG: *(long *)kp->km_data = atol(av[1]); break; case NSC_STRING: if (kp->km_flags & KM_ALLOC) free(*(char **)kp->km_data); *(char **)kp->km_data = strdup(av[1]); kp->km_flags |= KM_ALLOC; break; default: assert(0); } if (av[i] != NULL) { fprintf(stderr, "%s:%d: Junk after value of config key %s\n", file, lno, av[0]); errors = 1; } } fclose(fp); done: WORLD_X &= ~1; /* force even */ if (set_paths(file) < 0) return -1; return -errors; }