void StelApp::init(QSettings* conf) { confSettings = conf; devicePixelsPerPixel = QOpenGLContext::currentContext()->screen()->devicePixelRatio(); setBaseFontSize(confSettings->value("gui/base_font_size", 13).toInt()); core = new StelCore(); if (saveProjW!=-1 && saveProjH!=-1) core->windowHasBeenResized(0, 0, saveProjW, saveProjH); // Initialize AFTER creation of openGL context textureMgr = new StelTextureMgr(); textureMgr->init(); networkAccessManager = new QNetworkAccessManager(this); // Activate http cache if Qt version >= 4.5 QNetworkDiskCache* cache = new QNetworkDiskCache(networkAccessManager); QString cachePath = StelFileMgr::getCacheDir(); qDebug() << "Cache directory is: " << QDir::toNativeSeparators(cachePath); cache->setCacheDirectory(cachePath); networkAccessManager->setCache(cache); connect(networkAccessManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(reportFileDownloadFinished(QNetworkReply*))); // Stel Object Data Base manager stelObjectMgr = new StelObjectMgr(); stelObjectMgr->init(); getModuleMgr().registerModule(stelObjectMgr); localeMgr = new StelLocaleMgr(); skyCultureMgr = new StelSkyCultureMgr(); planetLocationMgr = new StelLocationMgr(); actionMgr = new StelActionMgr(); localeMgr->init(); // Init the solar system first SolarSystem* ssystem = new SolarSystem(); ssystem->init(); getModuleMgr().registerModule(ssystem); // Load hipparcos stars & names StarMgr* hip_stars = new StarMgr(); hip_stars->init(); getModuleMgr().registerModule(hip_stars); core->init(); // Init nebulas NebulaMgr* nebulas = new NebulaMgr(); nebulas->init(); getModuleMgr().registerModule(nebulas); // Init milky way MilkyWay* milky_way = new MilkyWay(); milky_way->init(); getModuleMgr().registerModule(milky_way); // Init zodiacal light ZodiacalLight* zodiacal_light = new ZodiacalLight(); zodiacal_light->init(); getModuleMgr().registerModule(zodiacal_light); // Init sky image manager skyImageMgr = new StelSkyLayerMgr(); skyImageMgr->init(); getModuleMgr().registerModule(skyImageMgr); // Init audio manager audioMgr = new StelAudioMgr(); // Init video manager videoMgr = new StelVideoMgr(); // Constellations ConstellationMgr* asterisms = new ConstellationMgr(hip_stars); asterisms->init(); getModuleMgr().registerModule(asterisms); // Landscape, atmosphere & cardinal points section LandscapeMgr* landscape = new LandscapeMgr(); landscape->init(); getModuleMgr().registerModule(landscape); GridLinesMgr* gridLines = new GridLinesMgr(); gridLines->init(); getModuleMgr().registerModule(gridLines); // Sporadic Meteors SporadicMeteorMgr* meteors = new SporadicMeteorMgr(10, 72); meteors->init(); getModuleMgr().registerModule(meteors); // User labels LabelMgr* skyLabels = new LabelMgr(); skyLabels->init(); getModuleMgr().registerModule(skyLabels); skyCultureMgr->init(); //Create the script manager here, maybe some modules/plugins may want to connect to it //It has to be initialized later after all modules have been loaded by calling initScriptMgr #ifndef DISABLE_SCRIPTING scriptAPIProxy = new StelMainScriptAPIProxy(this); scriptMgr = new StelScriptMgr(this); #endif // Initialisation of the color scheme emit colorSchemeChanged("color"); setVisionModeNight(confSettings->value("viewing/flag_night").toBool()); // Enable viewport effect at startup if he set setViewportEffect(confSettings->value("video/viewport_effect", "none").toString()); // Proxy Initialisation setupNetworkProxy(); updateI18n(); // Init actions. actionMgr->addAction("actionShow_Night_Mode", N_("Display Options"), N_("Night mode"), this, "nightMode"); setFlagShowDecimalDegrees(confSettings->value("gui/flag_show_decimal_degrees", false).toBool()); setFlagOldAzimuthUsage(confSettings->value("gui/flag_use_azimuth_from_south", false).toBool()); initialized = true; }
S57_DrawWindow::S57_DrawWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::S57_DrawWindow), scene(0), progress(0), count(0), aspect(Aspect11) { ui->setupUi(this); ui->statusbar->addPermanentWidget(position_label = new QLabel(), 1); QFrame * _f; _f = new QFrame(); _f->setFrameStyle(QFrame::VLine); ui->statusbar->addPermanentWidget(_f); ui->statusbar->addPermanentWidget(scale_label = new QLabel(), 1); _f = new QFrame(); _f->setFrameStyle(QFrame::VLine); ui->statusbar->addPermanentWidget(_f); ui->actionColorScheme->setMenu(new QMenu()); QActionGroup * _ag = new QActionGroup(this); QString _def_scheme = QSettings(qApp->applicationDirPath() + "/s57_draw.ini", QSettings::IniFormat).value("scheme", S52_Symbol::global.colorScheme()).toString(); foreach (const QString & _scheme, S52_Symbol::global.colorSchemes()) { QAction * _action = ui->actionColorScheme->menu()->addAction(_scheme, this, SLOT(colorSchemeChanged())); _action->setActionGroup(_ag); _action->setCheckable(true); if (_scheme == _def_scheme) { _action->setChecked(true); } } ui->actionLandAndSea->setChecked(QSettings(qApp->applicationDirPath() + "/s57_draw.ini", QSettings::IniFormat).value("land_and_sea", false).toBool()); ui->actionMouse_dragging->setChecked(QSettings(qApp->applicationDirPath() + "/s57_draw.ini", QSettings::IniFormat).value("drag", true).toBool()); on_actionMouse_dragging_triggered(ui->actionMouse_dragging->isChecked()); _ag = new QActionGroup(this); ui->action_aspect_1_1->setActionGroup(_ag); ui->action_aspect_1_2->setActionGroup(_ag); aspect = QSettings(qApp->applicationDirPath() + "/s57_draw.ini", QSettings::IniFormat).value("aspect", Aspect12).toInt(); if (aspect == Aspect11) { ui->action_aspect_1_1->setChecked(true); on_action_aspect_1_1_triggered(); } if (aspect == Aspect12) { ui->action_aspect_1_2->setChecked(true); on_action_aspect_1_2_triggered(); } }