/* * Copyright (C) 2009 Timothy Reaves * Copyright (C) 2011 Bogdan Marinov * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "Oculars.hpp" #include "OcularDialog.hpp" #include "ui_ocularDialog.h" #include "StelApp.hpp" #include "StelGui.hpp" #include "StelFileMgr.hpp" #include "StelModuleMgr.hpp" #include "StelMainView.hpp" #include "StelTranslator.hpp" #include "StelActionMgr.hpp" #include #include #include #include #include #include #include #include OcularDialog::OcularDialog(Oculars* pluginPtr, QList* ccds, QList* oculars, QList* telescopes, QList *lense) : plugin(pluginPtr) , ccdMapper(NULL) , ocularMapper(NULL) , telescopeMapper(NULL) , lensMapper(NULL) { ui = new Ui_ocularDialogForm; this->ccds = ccds; ccdTableModel = new PropertyBasedTableModel(this); CCD* ccdModel = CCD::ccdModel(); ccdTableModel->init(reinterpret_cast* >(ccds), ccdModel, ccdModel->propertyMap()); this->oculars = oculars; ocularTableModel = new PropertyBasedTableModel(this); Ocular* ocularModel = Ocular::ocularModel(); ocularTableModel->init(reinterpret_cast* >(oculars), ocularModel, ocularModel->propertyMap()); this->telescopes = telescopes; telescopeTableModel = new PropertyBasedTableModel(this); Telescope* telescopeModel = Telescope::telescopeModel(); telescopeTableModel->init(reinterpret_cast* >(telescopes), telescopeModel, telescopeModel->propertyMap()); this->lense = lense; lensTableModel = new PropertyBasedTableModel(this); Lens* lensModel = Lens::lensModel(); lensTableModel->init(reinterpret_cast* >(lense), lensModel, lensModel->propertyMap()); QRegExp nameExp("^\\S.*"); validatorName = new QRegExpValidator(nameExp, this); } OcularDialog::~OcularDialog() { ocularTableModel->disconnect(); telescopeTableModel->disconnect(); ccdTableModel->disconnect(); lensTableModel->disconnect(); delete ui; ui = NULL; } /* ********************************************************************* */ #if 0 #pragma mark - #pragma mark StelModule Methods #endif /* ********************************************************************* */ void OcularDialog::retranslate() { if (dialog) { ui->retranslateUi(dialog); } } void OcularDialog::styleChanged() { // Nothing for now } void OcularDialog::updateStyle() { if(dialog) { StelGui* gui = dynamic_cast(StelApp::getInstance().getGui()); Q_ASSERT(gui); const StelStyle pluginStyle = plugin->getModuleStyleSheet(gui->getStelStyle()); dialog->setStyleSheet(pluginStyle.qtStyleSheet); ui->textBrowser->document()->setDefaultStyleSheet(QString(pluginStyle.htmlStyleSheet)); } } /* ********************************************************************* */ #if 0 #pragma mark - #pragma mark Slot Methods #endif /* ********************************************************************* */ void OcularDialog::closeWindow() { setVisible(false); StelMainView::getInstance().scene()->setActiveWindow(0); } void OcularDialog::deleteSelectedCCD() { ccdTableModel->removeRows(ui->ccdListView->currentIndex().row(), 1); ui->ccdListView->setCurrentIndex(ccdTableModel->index(0, 1)); plugin->updateLists(); } void OcularDialog::deleteSelectedOcular() { if (ocularTableModel->rowCount() == 1) { qDebug() << "Cannot delete the last entry."; } else { ocularTableModel->removeRows(ui->ocularListView->currentIndex().row(), 1); ui->ocularListView->setCurrentIndex(ocularTableModel->index(0, 1)); plugin->updateLists(); } } void OcularDialog::deleteSelectedTelescope() { if (telescopeTableModel->rowCount() == 1) { qDebug() << "Cannot delete the last entry."; } else { telescopeTableModel->removeRows(ui->telescopeListView->currentIndex().row(), 1); ui->telescopeListView->setCurrentIndex(telescopeTableModel->index(0, 1)); plugin->updateLists(); } } void OcularDialog::deleteSelectedLens() { if (lensTableModel->rowCount() > 0) { lensTableModel->removeRows(ui->lensListView->currentIndex().row(), 1); if (lensTableModel->rowCount() > 0) { ui->lensListView->setCurrentIndex(lensTableModel->index(0, 1)); } plugin->updateLists(); } } void OcularDialog::insertNewCCD() { ccdTableModel->insertRows(ccdTableModel->rowCount(), 1); ui->ccdListView->setCurrentIndex(ccdTableModel->index(ccdTableModel->rowCount() - 1, 1)); } void OcularDialog::insertNewOcular() { ocularTableModel->insertRows(ocularTableModel->rowCount(), 1); ui->ocularListView->setCurrentIndex(ocularTableModel->index(ocularTableModel->rowCount() - 1, 1)); } void OcularDialog::insertNewTelescope() { telescopeTableModel->insertRows(telescopeTableModel->rowCount(), 1); ui->telescopeListView->setCurrentIndex(telescopeTableModel->index(telescopeTableModel->rowCount() - 1, 1)); } void OcularDialog::insertNewLens() { lensTableModel->insertRows(lensTableModel->rowCount(), 1); ui->lensListView->setCurrentIndex(lensTableModel->index(lensTableModel->rowCount() - 1, 1)); } void OcularDialog::moveUpSelectedSensor() { int index = ui->ccdListView->currentIndex().row(); if (index > 0) { ccdTableModel->moveRowUp(index); plugin->updateLists(); } } void OcularDialog::moveUpSelectedOcular() { int index = ui->ocularListView->currentIndex().row(); if (index > 0) { ocularTableModel->moveRowUp(index); plugin->updateLists(); } } void OcularDialog::moveUpSelectedTelescope() { int index = ui->telescopeListView->currentIndex().row(); if (index > 0) { telescopeTableModel->moveRowUp(index); plugin->updateLists(); } } void OcularDialog::moveUpSelectedLens() { int index = ui->lensListView->currentIndex().row(); if (index > 0) { lensTableModel->moveRowUp(index); plugin->updateLists(); } } void OcularDialog::moveDownSelectedSensor() { int index = ui->ccdListView->currentIndex().row(); if (index >= 0 && index < ccdTableModel->rowCount() - 1) { ccdTableModel->moveRowDown(index); plugin->updateLists(); } } void OcularDialog::moveDownSelectedOcular() { int index = ui->ocularListView->currentIndex().row(); if (index >= 0 && index < ocularTableModel->rowCount() - 1) { ocularTableModel->moveRowDown(index); plugin->updateLists(); } } void OcularDialog::moveDownSelectedTelescope() { int index = ui->telescopeListView->currentIndex().row(); if (index >= 0 && index < telescopeTableModel->rowCount() - 1) { telescopeTableModel->moveRowDown(index); plugin->updateLists(); } } void OcularDialog::moveDownSelectedLens() { int index = ui->lensListView->currentIndex().row(); if (index >= 0 && index < lensTableModel->rowCount() - 1) { lensTableModel->moveRowDown(index); plugin->updateLists(); } } /* ********************************************************************* */ #if 0 #pragma mark - #pragma mark Private Slot Methods #endif /* ********************************************************************* */ void OcularDialog::keyBindingTogglePluginChanged(const QString& newString) { Oculars::appSettings()->setValue("bindings/toggle_oculars", newString); StelActionMgr* actionMgr = StelApp::getInstance().getStelActionManager(); StelAction* action = actionMgr->findAction("actionShow_Ocular"); if (action != NULL) { action->setShortcut(newString.trimmed()); } } void OcularDialog::keyBindingPopupNavigatorConfigChanged(const QString& newString) { Oculars::appSettings()->setValue("bindings/popup_navigator", newString); StelActionMgr* actionMgr = StelApp::getInstance().getStelActionManager(); StelAction* action = actionMgr->findAction("actionShow_Ocular_Menu"); if (action != NULL) { action->setShortcut(newString.trimmed()); } } void OcularDialog::requireSelectionStateChanged(int state) { bool requireSelection = (state == Qt::Checked); bool requireSelectionToZoom = Oculars::appSettings()->value("require_selection_to_zoom", 1.0).toBool(); if (requireSelection != requireSelectionToZoom) { Oculars::appSettings()->setValue("require_selection_to_zoom", requireSelection); Oculars::appSettings()->sync(); emit(requireSelectionChanged(requireSelection)); } } void OcularDialog::scaleImageCircleStateChanged(int state) { bool shouldScale = (state == Qt::Checked); bool useMaxImageCircle = Oculars::appSettings()->value("use_max_exit_circle",01.0).toBool(); if (shouldScale != useMaxImageCircle) { Oculars::appSettings()->setValue("use_max_exit_circle", shouldScale); Oculars::appSettings()->sync(); emit(scaleImageCircleChanged(shouldScale)); } } /* ********************************************************************* */ #if 0 #pragma mark - #pragma mark Protected Methods #endif /* ********************************************************************* */ void OcularDialog::createDialogContent() { ui->setupUi(dialog); connect(&StelApp::getInstance(), SIGNAL(languageChanged()), this, SLOT(retranslate())); ui->ccdListView->setModel(ccdTableModel); ui->ocularListView->setModel(ocularTableModel); ui->telescopeListView->setModel(telescopeTableModel); ui->lensListView->setModel(lensTableModel); //Now the rest of the actions. connect(ui->closeStelWindow, SIGNAL(clicked()), this, SLOT(close())); connect(ui->scaleImageCircleCheckBox, SIGNAL(stateChanged(int)), this, SLOT(scaleImageCircleStateChanged(int))); connect(ui->requireSelectionCheckBox, SIGNAL(stateChanged(int)), this, SLOT(requireSelectionStateChanged(int))); connect(ui->limitStellarMagnitudeCheckBox, SIGNAL(clicked(bool)), plugin, SLOT(setFlagLimitMagnitude(bool))); connect(ui->checkBoxControlPanel, SIGNAL(clicked(bool)), plugin, SLOT(enableGuiPanel(bool))); connect(ui->checkBoxDecimalDegrees, SIGNAL(clicked(bool)), plugin, SLOT(setFlagDecimalDegrees(bool))); connect(ui->checkBoxInitialFOV, SIGNAL(clicked(bool)), plugin, SLOT(setFlagInitFovUsage(bool))); // The add & delete buttons connect(ui->addCCD, SIGNAL(clicked()), this, SLOT(insertNewCCD())); connect(ui->deleteCCD, SIGNAL(clicked()), this, SLOT(deleteSelectedCCD())); connect(ui->addOcular, SIGNAL(clicked()), this, SLOT(insertNewOcular())); connect(ui->deleteOcular, SIGNAL(clicked()), this, SLOT(deleteSelectedOcular())); connect(ui->addLens, SIGNAL(clicked()), this, SLOT(insertNewLens())); connect(ui->deleteLens, SIGNAL(clicked()), this, SLOT(deleteSelectedLens())); connect(ui->addTelescope, SIGNAL(clicked()), this, SLOT(insertNewTelescope())); connect(ui->deleteTelescope, SIGNAL(clicked()), this, SLOT(deleteSelectedTelescope())); // Validators ui->ccdName->setValidator(validatorName); ui->ocularName->setValidator(validatorName); ui->telescopeName->setValidator(validatorName); ui->lensName->setValidator(validatorName); // The key bindings QString bindingString = Oculars::appSettings()->value("bindings/toggle_oculars", "Ctrl+O").toString(); ui->togglePluginLineEdit->setText(bindingString); bindingString = Oculars::appSettings()->value("bindings/popup_navigator", "Alt+O").toString(); ui->togglePopupNavigatorWindowLineEdit->setText(bindingString); connect(ui->togglePluginLineEdit, SIGNAL(textEdited(const QString&)), this, SLOT(keyBindingTogglePluginChanged(const QString&))); connect(ui->togglePopupNavigatorWindowLineEdit, SIGNAL(textEdited(const QString&)), this, SLOT(keyBindingPopupNavigatorConfigChanged(const QString&))); initAboutText(); connect(ui->togglePluginLineEdit, SIGNAL(textEdited(QString)), this, SLOT(initAboutText())); connect(ui->togglePopupNavigatorWindowLineEdit, SIGNAL(textEdited(QString)), this, SLOT(initAboutText())); connect(ui->pushButtonMoveOcularUp, SIGNAL(pressed()), this, SLOT(moveUpSelectedOcular())); connect(ui->pushButtonMoveOcularDown, SIGNAL(pressed()), this, SLOT(moveDownSelectedOcular())); connect(ui->pushButtonMoveSensorUp, SIGNAL(pressed()), this, SLOT(moveUpSelectedSensor())); connect(ui->pushButtonMoveSensorDown, SIGNAL(pressed()), this, SLOT(moveDownSelectedSensor())); connect(ui->pushButtonMoveTelescopeUp, SIGNAL(pressed()), this, SLOT(moveUpSelectedTelescope())); connect(ui->pushButtonMoveTelescopeDown, SIGNAL(pressed()), this, SLOT(moveDownSelectedTelescope())); connect(ui->pushButtonMoveLensUp, SIGNAL(pressed()), this, SLOT(moveUpSelectedLens())); connect(ui->pushButtonMoveLensDown, SIGNAL(pressed()), this, SLOT(moveDownSelectedLens())); // The CCD mapper ccdMapper = new QDataWidgetMapper(); ccdMapper->setModel(ccdTableModel); ccdMapper->setSubmitPolicy(QDataWidgetMapper::AutoSubmit); ccdMapper->addMapping(ui->ccdName, 0); ccdMapper->addMapping(ui->ccdChipY, 1); ccdMapper->addMapping(ui->ccdChipX, 2); ccdMapper->addMapping(ui->ccdPixelY, 3); ccdMapper->addMapping(ui->ccdPixelX, 4); ccdMapper->addMapping(ui->ccdResX, 5); ccdMapper->addMapping(ui->ccdResY, 6); ccdMapper->toFirst(); connect(ui->ccdListView->selectionModel() , SIGNAL(currentRowChanged(QModelIndex, QModelIndex)), ccdMapper, SLOT(setCurrentModelIndex(QModelIndex))); ui->ccdListView->setCurrentIndex(ccdTableModel->index(0, 1)); // The ocular mapper ocularMapper = new QDataWidgetMapper(); ocularMapper->setModel(ocularTableModel); ocularMapper->setSubmitPolicy(QDataWidgetMapper::AutoSubmit); ocularMapper->addMapping(ui->ocularName, 0); ocularMapper->addMapping(ui->ocularAFov, 1); ocularMapper->addMapping(ui->ocularFL, 2); ocularMapper->addMapping(ui->ocularFieldStop, 3); ocularMapper->addMapping(ui->binocularsCheckBox, 4, "checked"); ocularMapper->toFirst(); connect(ui->ocularListView->selectionModel() , SIGNAL(currentRowChanged(QModelIndex, QModelIndex)), ocularMapper, SLOT(setCurrentModelIndex(QModelIndex))); ui->ocularListView->setCurrentIndex(ocularTableModel->index(0, 1)); // The lens mapper lensMapper = new QDataWidgetMapper(); lensMapper->setModel(lensTableModel); lensMapper->setSubmitPolicy(QDataWidgetMapper::AutoSubmit); lensMapper->addMapping(ui->lensName, 0); lensMapper->addMapping(ui->lensMultipler, 1); lensMapper->toFirst(); connect(ui->lensListView->selectionModel(), SIGNAL(currentRowChanged(QModelIndex, QModelIndex)), lensMapper, SLOT(setCurrentModelIndex(QModelIndex))); ui->lensListView->setCurrentIndex(lensTableModel->index(0, 1)); // The telescope mapper telescopeMapper = new QDataWidgetMapper(); telescopeMapper->setModel(telescopeTableModel); telescopeMapper->setSubmitPolicy(QDataWidgetMapper::AutoSubmit); telescopeMapper->addMapping(ui->telescopeName, 0); telescopeMapper->addMapping(ui->telescopeDiameter, 1); telescopeMapper->addMapping(ui->telescopeFL, 2); telescopeMapper->addMapping(ui->telescopeHFlip, 3, "checked"); telescopeMapper->addMapping(ui->telescopeVFlip, 4, "checked"); ocularMapper->toFirst(); connect(ui->telescopeListView->selectionModel() , SIGNAL(currentRowChanged(QModelIndex, QModelIndex)), telescopeMapper, SLOT(setCurrentModelIndex(QModelIndex))); ui->telescopeListView->setCurrentIndex(telescopeTableModel->index(0, 1)); // set the initial state QSettings *settings = Oculars::appSettings(); if (settings->value("require_selection_to_zoom", 1.0).toBool()) { ui->requireSelectionCheckBox->setCheckState(Qt::Checked); } if (settings->value("use_max_exit_circle", 0.0).toBool()) { ui->scaleImageCircleCheckBox->setCheckState(Qt::Checked); } if (settings->value("limit_stellar_magnitude", true).toBool()) { ui->limitStellarMagnitudeCheckBox->setCheckState(Qt::Checked); } if (settings->value("enable_control_panel", false).toBool()) { ui->checkBoxControlPanel->setChecked(true); } if (settings->value("use_decimal_degrees", false).toBool()) { ui->checkBoxDecimalDegrees->setChecked(true); } if (settings->value("use_initial_fov", false).toBool()) { ui->checkBoxInitialFOV->setChecked(true); } //Initialize the style updateStyle(); } void OcularDialog::initAboutText() { //BM: Most of the text for now is the original contents of the About widget. QString html = ""; html += "

" + q_("Oculars Plug-in") + "

"; html += ""; html += ""; html += ""; html += "
" + q_("Version") + ":" + OCULARS_PLUGIN_VERSION + "
" + q_("Author") + ":Timothy Reaves <treaves@silverfieldstech.com>
" + q_("Contributors") + ":Bogdan Marinov
Pawel Stolowski (" + q_("Barlow lens feature") + ")
Alexander Wolf
"; //Overview html += "

" + q_("Overview") + "

"; html += "

" + q_("This plugin is intended to simulate what you would see through an eyepiece. This configuration dialog can be used to add, modify, or delete eyepieces and telescopes, as well as CCD Sensors. Your first time running the app will populate some samples to get your started.") + "

"; html += "

" + q_("You can choose to scale the image you see on the screen. This is intended to show you a better comparison of what one eyepiece/telescope combination will be like as compared to another. The same eyepiece in two different telescopes of differing focal length will produce two different exit circles, changing the view someone. The trade-off of this is that, with the image scaled, a good deal of the screen can be wasted. Therefore I recommend that you leave it off, unless you feel you have a need of it.") + "

"; html += "

" + q_("You can toggle a crosshair in the view. Ideally, I wanted this to be aligned to North. I've been unable to do so. So currently it aligns to the top of the screen.") + "

"; html += "

" + QString(q_("You can toggle a Telrad finder; this can only be done when you have not turned on the Ocular view. This feature draws three concentric circles of 0.5%1, 2.0%1, and 4.0%1, helping you see what you would expect to see with the naked eye through the Telrad (or similar) finder.")).arg(QChar(0x00B0)) + "

"; html += "

" + q_("If you find any issues, please let me know. Enjoy!") + "

"; //Keys html += "

" + q_("Hot Keys") + "

"; html += "

" + q_("The plug-in's key bindings can be edited in the General Tab.") + "

"; StelGui* gui = dynamic_cast(StelApp::getInstance().getGui()); Q_ASSERT(gui); StelActionMgr* actionMgr = StelApp::getInstance().getStelActionManager(); Q_ASSERT(actionMgr); StelAction* actionOcular = actionMgr->findAction("actionShow_Ocular"); Q_ASSERT(actionOcular); StelAction* actionMenu = actionMgr->findAction("actionShow_Ocular_Menu"); Q_ASSERT(actionMenu); QKeySequence ocularShortcut = actionOcular->getShortcut(); QString ocularString = ocularShortcut.toString(QKeySequence::NativeText); ocularString = ocularString.toHtmlEscaped(); if (ocularString.isEmpty()) ocularString = q_("[no key defined]"); QKeySequence menuShortcut = actionMenu->getShortcut(); QString menuString = menuShortcut.toString(QKeySequence::NativeText); menuString = menuString.toHtmlEscaped(); if (menuString.isEmpty()) menuString = q_("[no key defined]"); html += "
    "; html += "
  • "; html += QString("%1: %2").arg(ocularString).arg(q_("Switches on/off the ocular overlay.")); html += "
  • "; html += "
  • "; html += QString("%1: %2").arg(menuString).arg(q_("Opens the pop-up navigation menu.")); html += "
  • "; html += "
"; html += ""; QString htmlStyleSheet(gui->getStelStyle().htmlStyleSheet); ui->textBrowser->document()->setDefaultStyleSheet(htmlStyleSheet); ui->textBrowser->setHtml(html); }