Newer
Older
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source
// & Institut Laue - Langevin
// SPDX - License - Identifier: GPL - 3.0 +
#include "MainWindowView.h"
#include "Common/IndexOf.h"
#include "GUI/Batch/BatchView.h"
namespace MantidQt {
namespace CustomInterfaces {
namespace {
int getDefaultInstrumentIndex(std::vector<std::string> &instruments) {
auto instrumentName =
Mantid::Kernel::ConfigService::Instance().getString("default.instrument");
auto result = indexOfValue(instruments, instrumentName);
if (result)
return *result;
// If not found, use first instrument
return 0;
}
} // namespace
MainWindowView::MainWindowView(QWidget *parent)
: UserSubWindow(parent), m_notifyee(nullptr) {}
IBatchView *MainWindowView::newBatch() {
auto index = m_ui.mainTabs->count();
auto *newTab = new BatchView(this);
m_ui.mainTabs->addTab(newTab, QString("Batch ") + QString::number(index));
m_batchViews.emplace_back(newTab);
return newTab;
}
void MainWindowView::removeBatch(int batchIndex) {
m_batchViews.erase(m_batchViews.begin() + batchIndex);
m_ui.mainTabs->removeTab(batchIndex);
}
std::vector<IBatchView *> MainWindowView::batches() const {
/**
Initialise the Interface
*/
connect(m_ui.helpButton, SIGNAL(clicked()), this, SLOT(helpPressed()));
connect(m_ui.mainTabs, SIGNAL(tabCloseRequested(int)), this,
SLOT(onTabCloseRequested(int)));
connect(m_ui.newBatch, SIGNAL(triggered(bool)), this,
SLOT(onNewBatchRequested(bool)));
auto instruments = std::vector<std::string>(
{{"INTER", "SURF", "CRISP", "POLREF", "OFFSPEC"}});
auto thetaTolerance = 0.01;
auto pythonRunner = this;
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
Plotter plotter(pythonRunner);
auto makeRunsTablePresenter = RunsTablePresenterFactory(
instruments, thetaTolerance, std::move(plotter));
auto defaultInstrumentIndex = getDefaultInstrumentIndex(instruments);
auto makeRunsPresenter = RunsPresenterFactory(
std::move(makeRunsTablePresenter), thetaTolerance, instruments,
defaultInstrumentIndex, messageHandler, pythonRunner);
auto makeEventPresenter = EventPresenterFactory();
auto makeSaveSettingsPresenter = SavePresenterFactory();
auto makeExperimentPresenter = ExperimentPresenterFactory(thetaTolerance);
auto makeInstrumentPresenter = InstrumentPresenterFactory();
auto makeBatchPresenter = BatchPresenterFactory(
std::move(makeRunsPresenter), std::move(makeEventPresenter),
std::move(makeExperimentPresenter), std::move(makeInstrumentPresenter),
m_presenter = std::make_unique<MainWindowPresenter>(
this, messageHandler, std::move(makeBatchPresenter));
m_notifyee->notifyNewBatchRequested();
m_notifyee->notifyNewBatchRequested();
void MainWindowView::onTabCloseRequested(int tabIndex) {
m_notifyee->notifyCloseBatchRequested(tabIndex);
void MainWindowView::onNewBatchRequested(bool) {
m_notifyee->notifyNewBatchRequested();
void MainWindowView::subscribe(MainWindowSubscriber *notifyee) {
void MainWindowView::helpPressed() { m_notifyee->notifyHelpPressed(); }
/**
Runs python code
* @param pythonCode : [input] The code to run
* @return : Result of the execution
*/
std::string MainWindowView::runPythonAlgorithm(const std::string &pythonCode) {
QString output = runPythonCode(QString::fromStdString(pythonCode), false);
return output.toStdString();
}
/**
Handles attempt to close main window
* @param event : [input] The close event
*/
void MainWindowView::closeEvent(QCloseEvent *event) {
// Close only if reduction has been paused
if (!m_presenter->isAnyBatchProcessing() ||
m_presenter->isAnyBatchAutoreducing()) {
event->accept();
} else {
event->ignore();
}
void MainWindowView::giveUserCritical(const std::string &prompt,
QMessageBox::critical(this, QString::fromStdString(title),
QString::fromStdString(prompt), QMessageBox::Ok,
QMessageBox::Ok);
}
void MainWindowView::giveUserInfo(const std::string &prompt,
QMessageBox::information(this, QString::fromStdString(title),
QString::fromStdString(prompt), QMessageBox::Ok,
QMessageBox::Ok);
}
bool MainWindowView::askUserYesNo(const std::string &prompt,
const std::string &title) {
auto reply = QMessageBox::question(this, QString::fromStdString(title),
QString::fromStdString(prompt),
QMessageBox::Yes | QMessageBox::No);
if (reply == QMessageBox::Yes)
return true;
return false;
}
} // namespace CustomInterfaces
} // namespace MantidQt