#include "mode.h" #include "ui_main.h" #include #include #include #include Mode* Mode::activeMode = nullptr; QWidget* Mode::cornerWidget = nullptr; QButtonGroup* Mode::modeButtonGroup = nullptr; Mode::Mode(AppWindow *window, QString name) : QObject(window), window(window), name(name), central(nullptr) { // Create mode switch button auto modeSwitch = new QPushButton(name); modeSwitch->setCheckable(true); modeSwitch->setMaximumHeight(window->menuBar()->height()); if(!cornerWidget) { // this is the first created mode, initialize corner widget and set this mode as active modeSwitch->setChecked(true); cornerWidget = new QWidget; cornerWidget->setLayout(new QHBoxLayout); cornerWidget->layout()->setSpacing(0); cornerWidget->layout()->setMargin(0); cornerWidget->layout()->setContentsMargins(0,0,0,0); window->menuBar()->setCornerWidget(cornerWidget); modeButtonGroup = new QButtonGroup; // window->menuBar()->setMaximumHeight(window->menuBar()->height()); } cornerWidget->layout()->addWidget(modeSwitch); modeButtonGroup->addButton(modeSwitch); connect(modeSwitch, &QPushButton::clicked, [=](){ activate(); }); } void Mode::activate() { if(activeMode == this) { // already active; return; } else if(activeMode) { activeMode->deactivate(); } qDebug() << "Activating mode" << name; // show all mode specific GUI elements for(auto t : toolbars) { t->show(); window->getUi()->menuToolbars->addAction(t->toggleViewAction()); } for(auto d : docks) { d->show(); window->getUi()->menuDocks->addAction(d->toggleViewAction()); } for(auto a : actions) { a->setVisible(true); } QSettings settings; window->getCentral()->setCurrentWidget(central); // restore dock and toolbar positions window->restoreState(settings.value("windowState_"+name).toByteArray()); // restore visibility of toolbars and docks for(auto d : docks) { bool hidden = settings.value("dock_"+name+"_"+d->windowTitle(), d->isHidden()).toBool(); if(hidden) { d->hide(); } else { d->show(); } } for(auto t : toolbars) { bool hidden = settings.value("toolbar_"+name+"_"+t->windowTitle(), t->isHidden()).toBool(); if(hidden) { t->hide(); } else { t->show(); } } activeMode = this; // force activation of correct pushbutton in case the mode switch was done via script/setup load. // This will trigger a second activation of this mode in the signal of the button, but since it is // already the active mode, this function will just return -> no recursion for(auto b : modeButtonGroup->buttons()) { if(b->text() == name) { b->click(); } } if(window->getDevice()) { initializeDevice(); } } void Mode::deactivate() { QSettings settings; // save dock/toolbar visibility for(auto d : docks) { settings.setValue("dock_"+name+"_"+d->windowTitle(), d->isHidden()); } for(auto t : toolbars) { settings.setValue("toolbar_"+name+"_"+t->windowTitle(), t->isHidden()); } settings.setValue("windowState_"+name, window->saveState()); // hide all mode specific GUI elements for(auto t : toolbars) { t->hide(); window->getUi()->menuToolbars->removeAction(t->toggleViewAction()); } for(auto d : docks) { d->hide(); window->getUi()->menuDocks->removeAction(d->toggleViewAction()); } for(auto a : actions) { a->setVisible(false); } qDebug() << "Deactivated mode" << name; activeMode = nullptr; } Mode *Mode::getActiveMode() { return activeMode; } void Mode::saveSreenshot() { auto filename = QFileDialog::getSaveFileName(nullptr, "Save plot image", "", "PNG image files (*.png)", nullptr, QFileDialog::DontUseNativeDialog); if(filename.isEmpty()) { // aborted selection return; } if(filename.endsWith(".png")) { filename.chop(4); } filename += ".png"; central->grab().save(filename); } void Mode::finalize(QWidget *centralWidget) { central = centralWidget; window->getCentral()->addWidget(central); // Set ObjectName for toolbars and docks for(auto d : docks) { d->setObjectName(d->windowTitle()+name); } for(auto t : toolbars) { t->setObjectName(t->windowTitle()+name); } // hide all mode specific GUI elements for(auto t : toolbars) { t->hide(); } for(auto d : docks) { d->hide(); } for(auto a : actions) { a->setVisible(false); } } QString Mode::getName() const { return name; }