Newer
Older
#include "MantidQtCustomInterfaces/QtReflMainView.h"
#include "MantidQtCustomInterfaces/QReflTableModel.h"
#include "MantidQtCustomInterfaces/ReflMainViewPresenter.h"
#include "MantidQtMantidWidgets/HintingLineEditFactory.h"
#include "MantidAPI/ITableWorkspace.h"
#include "MantidQtAPI/HelpWindow.h"
#include "MantidKernel/ConfigService.h"
namespace MantidQt
{
namespace CustomInterfaces
{
using namespace Mantid::API;
//----------------------------------------------------------------------------------------------
/** Constructor
*/
QtReflMainView::QtReflMainView(QWidget *parent) : UserSubWindow(parent), m_openMap(new QSignalMapper(this)), m_calculator(new MantidWidgets::SlitCalculator(this))
{
}
//----------------------------------------------------------------------------------------------
/** Destructor
*/
QtReflMainView::~QtReflMainView()
{
}
/**
Initialise the Interface
*/
void QtReflMainView::initLayout()
{
ui.setupUi(this);
Harry Jeffery
committed
ui.buttonProcess->setDefaultAction(ui.actionProcess);
ui.buttonTransfer->setDefaultAction(ui.actionTransfer);
//Create a whats this button
ui.rowToolBar->addAction(QWhatsThis::createAction(this));
//Expand the process runs column at the expense of the search column
ui.splitterTables->setStretchFactor(0, 0);
ui.splitterTables->setStretchFactor(1, 1);
//Allow rows and columns to be reordered
ui.viewTable->verticalHeader()->setMovable(true);
ui.viewTable->horizontalHeader()->setMovable(true);
//Custom context menu for table
connect(ui.viewTable, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(showContextMenu(const QPoint&)));
connect(ui.tableSearchResults, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(showSearchContextMenu(const QPoint&)));
//Finally, create a presenter to do the thinking for us
m_presenter = boost::shared_ptr<IReflPresenter>(new ReflMainViewPresenter(this));
This slot loads a table workspace model and changes to a LoadedMainView presenter
@param name : the string name of the workspace to be grabbed
*/
void QtReflMainView::setModel(QString name)
{
m_toOpen = name.toStdString();
m_presenter->notify(IReflPresenter::OpenTableFlag);
/**
Set a new model in the tableview
@param model : the model to be attached to the tableview
*/
void QtReflMainView::showTable(QReflTableModel_sptr model)
//So we can notify the presenter when the user updates the table
connect(m_model.get(), SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)), this, SLOT(tableUpdated(const QModelIndex&, const QModelIndex&)));
ui.viewTable->setModel(m_model.get());
ui.viewTable->resizeColumnsToContents();
}
/**
Set a new model for search results
@param model : the model to be attached to the search results
*/
void QtReflMainView::showSearch(ReflSearchModel_sptr model)
{
m_searchModel = model;
ui.tableSearchResults->setModel(m_searchModel.get());
ui.tableSearchResults->resizeColumnsToContents();
}
Harry Jeffery
committed
/**
Set the list of tables the user is offered to open
@param tables : the names of the tables in the ADS
*/
void QtReflMainView::setTableList(const std::set<std::string>& tables)
{
ui.menuOpenTable->clear();
for(auto it = tables.begin(); it != tables.end(); ++it)
{
QAction* openTable = ui.menuOpenTable->addAction(QString::fromStdString(*it));
openTable->setIcon(QIcon("://worksheet.png"));
Harry Jeffery
committed
//Map this action to the table name
m_openMap->setMapping(openTable, QString::fromStdString(*it));
connect(openTable, SIGNAL(triggered()), m_openMap, SLOT(map()));
connect(m_openMap, SIGNAL(mapped(QString)), this, SLOT(setModel(QString)));
}
}
This slot notifies the presenter that the "save" button has been pressed
void QtReflMainView::on_actionSaveTable_triggered()
m_presenter->notify(IReflPresenter::SaveFlag);
This slot notifies the presenter that the "save as" button has been pressed
void QtReflMainView::on_actionSaveTableAs_triggered()
m_presenter->notify(IReflPresenter::SaveAsFlag);
This slot notifies the presenter that the "append row" button has been pressed
void QtReflMainView::on_actionAppendRow_triggered()
m_presenter->notify(IReflPresenter::AppendRowFlag);
}
/**
This slot notifies the presenter that the "prepend row" button has been pressed
*/
void QtReflMainView::on_actionPrependRow_triggered()
m_presenter->notify(IReflPresenter::PrependRowFlag);
This slot notifies the presenter that the "delete" button has been pressed
void QtReflMainView::on_actionDeleteRow_triggered()
m_presenter->notify(IReflPresenter::DeleteRowFlag);
This slot notifies the presenter that the "process" button has been pressed
void QtReflMainView::on_actionProcess_triggered()
m_presenter->notify(IReflPresenter::ProcessFlag);
/**
This slot notifies the presenter that the "group rows" button has been pressed
*/
void QtReflMainView::on_actionGroupRows_triggered()
m_presenter->notify(IReflPresenter::GroupRowsFlag);
/**
This slot notifies the presenter that the "clear selected" button has been pressed
*/
void QtReflMainView::on_actionClearSelected_triggered()
{
m_presenter->notify(IReflPresenter::ClearSelectedFlag);
/**
This slot notifies the presenter that the "copy selection" button has been pressed
*/
void QtReflMainView::on_actionCopySelected_triggered()
{
m_presenter->notify(IReflPresenter::CopySelectedFlag);
/**
This slot notifies the presenter that the "cut selection" button has been pressed
*/
void QtReflMainView::on_actionCutSelected_triggered()
{
m_presenter->notify(IReflPresenter::CutSelectedFlag);
/**
This slot notifies the presenter that the "paste selection" button has been pressed
*/
void QtReflMainView::on_actionPasteSelected_triggered()
{
m_presenter->notify(IReflPresenter::PasteSelectedFlag);
This slot notifies the presenter that the "new table" button has been pressed
void QtReflMainView::on_actionNewTable_triggered()
m_presenter->notify(IReflPresenter::NewTableFlag);
/**
This slot notifies the presenter that the "expand selection" button has been pressed
*/
void QtReflMainView::on_actionExpandSelection_triggered()
m_presenter->notify(IReflPresenter::ExpandSelectionFlag);
This slot notifies the presenter that the "options..." button has been pressed
void QtReflMainView::on_actionOptionsDialog_triggered()
m_presenter->notify(IReflPresenter::OptionsDialogFlag);
/**
This slot notifies the presenter that the "search" button has been pressed
*/
void QtReflMainView::on_actionSearch_triggered()
{
m_presenter->notify(IReflPresenter::SearchFlag);
}
/**
This slot notifies the presenter that the "transfer" button has been pressed
*/
void QtReflMainView::on_actionTransfer_triggered()
{
m_presenter->notify(IReflPresenter::TransferFlag);
}
/**
This slot notifies the presenter that the "export table" button has been pressed
*/
void QtReflMainView::on_actionExportTable_triggered()
{
m_presenter->notify(IReflPresenter::ExportTableFlag);
}
/**
This slot notifies the presenter that the "import table" button has been pressed
*/
void QtReflMainView::on_actionImportTable_triggered()
{
m_presenter->notify(IReflPresenter::ImportTableFlag);
}
/** This slot is used to syncrhonise the two instrument selection widgets */
void QtReflMainView::on_comboProcessInstrument_currentIndexChanged(int index)
{
ui.comboSearchInstrument->setCurrentIndex(index);
}
/** This slot is used to syncrhonise the two instrument selection widgets */
void QtReflMainView::on_comboSearchInstrument_currentIndexChanged(int index)
{
ui.comboProcessInstrument->setCurrentIndex(index);
}
/**
This slot opens the documentation when the "help" button has been pressed
*/
void QtReflMainView::on_actionHelp_triggered()
{
MantidQt::API::HelpWindow::showPage(this, QString("qthelp://org.mantidproject/doc/interfaces/ISIS_Reflectometry.html"));
}
/**
This slot notifies the presenter that the "plot selected rows" button has been pressed
*/
void QtReflMainView::on_actionPlotRow_triggered()
{
m_presenter->notify(IReflPresenter::PlotRowFlag);
}
/**
This slot notifies the presenter that the "plot selected groups" button has been pressed
*/
void QtReflMainView::on_actionPlotGroup_triggered()
{
m_presenter->notify(IReflPresenter::PlotGroupFlag);
}
/**
This slot shows the slit calculator
*/
void QtReflMainView::on_actionSlitCalculator_triggered()
{
m_calculator->show();
}
This slot notifies the presenter that the table has been updated/changed by the user
void QtReflMainView::tableUpdated(const QModelIndex& topLeft, const QModelIndex& bottomRight)
Q_UNUSED(topLeft);
Q_UNUSED(bottomRight);
m_presenter->notify(IReflPresenter::TableUpdatedFlag);
/**
This slot is triggered when the user right clicks on the table
@param pos : The position of the right click within the table
*/
void QtReflMainView::showContextMenu(const QPoint& pos)
{
//If the user didn't right-click on anything, don't show a context menu.
if(!ui.viewTable->indexAt(pos).isValid())
return;
//parent widget takes ownership of QMenu
QMenu* menu = new QMenu(this);
menu->addAction(ui.actionProcess);
menu->addAction(ui.actionExpandSelection);
menu->addSeparator();
menu->addAction(ui.actionPlotRow);
menu->addAction(ui.actionPlotGroup);
menu->addSeparator();
menu->addAction(ui.actionPrependRow);
menu->addAction(ui.actionAppendRow);
menu->addSeparator();
menu->addAction(ui.actionCopySelected);
menu->addAction(ui.actionCutSelected);
menu->addAction(ui.actionPasteSelected);
menu->addAction(ui.actionClearSelected);
menu->addSeparator();
menu->addAction(ui.actionDeleteRow);
menu->popup(ui.viewTable->viewport()->mapToGlobal(pos));
}
/**
This slot is triggered when the user right clicks on the search results table
@param pos : The position of the right click within the table
*/
void QtReflMainView::showSearchContextMenu(const QPoint& pos)
{
if(!ui.tableSearchResults->indexAt(pos).isValid())
return;
//parent widget takes ownership of QMenu
QMenu* menu = new QMenu(this);
menu->addAction(ui.actionTransfer);
menu->popup(ui.tableSearchResults->viewport()->mapToGlobal(pos));
}
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
/**
Show an information dialog
@param prompt : The prompt to appear on the dialog
@param title : The text for the title bar of the dialog
*/
void QtReflMainView::giveUserInfo(std::string prompt, std::string title)
{
QMessageBox::information(this,QString(title.c_str()),QString(prompt.c_str()),QMessageBox::Ok, QMessageBox::Ok);
}
/**
Show an critical error dialog
@param prompt : The prompt to appear on the dialog
@param title : The text for the title bar of the dialog
*/
void QtReflMainView::giveUserCritical(std::string prompt, std::string title)
{
QMessageBox::critical(this,QString(title.c_str()),QString(prompt.c_str()),QMessageBox::Ok, QMessageBox::Ok);
}
/**
Show a warning dialog
@param prompt : The prompt to appear on the dialog
@param title : The text for the title bar of the dialog
*/
void QtReflMainView::giveUserWarning(std::string prompt, std::string title)
{
QMessageBox::warning(this,QString(title.c_str()),QString(prompt.c_str()),QMessageBox::Ok, QMessageBox::Ok);
}
/**
@param prompt : The prompt to appear on the dialog
@param title : The text for the title bar of the dialog
@returns a boolean true if Yes, false if No
*/
bool QtReflMainView::askUserYesNo(std::string prompt, std::string title)
{
auto response = QMessageBox::question(this,QString(title.c_str()),QString(prompt.c_str()),QMessageBox::Yes|QMessageBox::No, QMessageBox::Yes);
if (response == QMessageBox::Yes)
{
return true;
}
return false;
}
/**
Ask the user to enter a string.
@param prompt : The prompt to appear on the dialog
@param title : The text for the title bar of the dialog
@param defaultValue : The default value entered.
@returns The user's string if submitted, or an empty string
std::string QtReflMainView::askUserString(const std::string& prompt, const std::string& title, const std::string& defaultValue)
QString text = QInputDialog::getText(QString::fromStdString(title), QString::fromStdString(prompt), QLineEdit::Normal, QString::fromStdString(defaultValue), &ok);
if(ok)
return text.toStdString();
return "";
/**
Show the user the dialog for an algorithm
*/
void QtReflMainView::showAlgorithmDialog(const std::string& algorithm)
{
std::stringstream pythonSrc;
pythonSrc << "try:\n";
pythonSrc << " " << algorithm << "Dialog()\n";
pythonSrc << "except:\n";
pythonSrc << " pass\n";
runPythonCode(QString::fromStdString(pythonSrc.str()));
}
/**
Plot a workspace
*/
void QtReflMainView::plotWorkspaces(const std::set<std::string>& workspaces)
{
if(workspaces.empty())
return;
std::stringstream pythonSrc;
pythonSrc << "base_graph = None\n";
for(auto ws = workspaces.begin(); ws != workspaces.end(); ++ws)
pythonSrc << "base_graph = plotSpectrum(\"" << *ws << "\", 0, True, window = base_graph)\n";
pythonSrc << "base_graph.activeLayer().logLogAxes()\n";
runPythonCode(QString::fromStdString(pythonSrc.str()));
}
/**
Set the range of the progress bar
@param min : The minimum value of the bar
@param max : The maxmimum value of the bar
*/
void QtReflMainView::setProgressRange(int min, int max)
{
ui.progressBar->setRange(min, max);
}
/**
Set the status of the progress bar
@param progress : The current value of the bar
*/
void QtReflMainView::setProgress(int progress)
{
ui.progressBar->setValue(progress);
}
/**
Get status of checkbox which determines whether an ipython notebook is produced
@return true if a notebook should be output on process, false otherwise
*/
bool QtReflMainView::getEnableNotebook()
{
return ui.checkEnableNotebook->isChecked();
}
/**
Set which rows are selected
@param rows : The set of rows to select
*/
void QtReflMainView::setSelection(const std::set<int>& rows)
{
ui.viewTable->clearSelection();
auto selectionModel = ui.viewTable->selectionModel();
for(auto row = rows.begin(); row != rows.end(); ++row)
selectionModel->select(ui.viewTable->model()->index((*row), 0), QItemSelectionModel::Select | QItemSelectionModel::Rows);
/**
Set the list of available instruments to search and process for
@param instruments : The list of instruments available
@param defaultInstrument : The instrument to have selected by default
void QtReflMainView::setInstrumentList(const std::vector<std::string>& instruments, const std::string& defaultInstrument)
{
ui.comboSearchInstrument->clear();
ui.comboProcessInstrument->clear();
for(auto it = instruments.begin(); it != instruments.end(); ++it)
{
QString instrument = QString::fromStdString(*it);
ui.comboSearchInstrument->addItem(instrument);
ui.comboProcessInstrument->addItem(instrument);
}
int index = ui.comboSearchInstrument->findData(QString::fromStdString(defaultInstrument), Qt::DisplayRole);
ui.comboSearchInstrument->setCurrentIndex(index);
ui.comboProcessInstrument->setCurrentIndex(index);
/**
Set the strategy used for generating hints for the autocompletion in the options column.
@param hintStrategy The hinting strategy to use
*/
void QtReflMainView::setOptionsHintStrategy(HintStrategy* hintStrategy)
{
ui.viewTable->setItemDelegateForColumn(ReflMainViewPresenter::COL_OPTIONS, new HintingLineEditFactory(hintStrategy));
}
/**
Sets the contents of the system's clipboard
@param text The contents of the clipboard
*/
void QtReflMainView::setClipboard(const std::string& text)
{
QApplication::clipboard()->setText(QString::fromStdString(text));
}
/**
Get the selected instrument for searching
@returns the selected instrument to search for
*/
std::string QtReflMainView::getSearchInstrument() const
{
return ui.comboSearchInstrument->currentText().toStdString();
}
/**
Get the selected instrument for processing
@returns the selected instrument to process with
*/
std::string QtReflMainView::getProcessInstrument() const
{
return ui.comboProcessInstrument->currentText().toStdString();
}
@returns a set of ints containing the highlighted row numbers
std::set<int> QtReflMainView::getSelectedRows() const
auto selectionModel = ui.viewTable->selectionModel();
if(selectionModel)
{
auto selectedRows = selectionModel->selectedRows();
for(auto it = selectedRows.begin(); it != selectedRows.end(); ++it)
rows.insert(it->row());
}
return rows;
}
/**
Get the indices of the highlighted search result rows
@returns a set of ints containing the selected row numbers
*/
std::set<int> QtReflMainView::getSelectedSearchRows() const
{
std::set<int> rows;
auto selectionModel = ui.tableSearchResults->selectionModel();
if(selectionModel)
{
auto selectedRows = selectionModel->selectedRows();
for(auto it = selectedRows.begin(); it != selectedRows.end(); ++it)
rows.insert(it->row());
}
/**
Get the name of the workspace that the user wishes to open as a table
@returns The name of the workspace to open
*/
std::string QtReflMainView::getWorkspaceToOpen() const
{
return m_toOpen;
}
/**
Get a pointer to the presenter that's currently controlling this view.
@returns A pointer to the presenter
*/
boost::shared_ptr<IReflPresenter> QtReflMainView::getPresenter() const
{
return m_presenter;
}
/**
Gets the contents of the system's clipboard
@returns The contents of the clipboard
*/
std::string QtReflMainView::getClipboard() const
{
return QApplication::clipboard()->text().toStdString();
}
/**
Get the string the user wants to search for.
@returns The search string
*/
std::string QtReflMainView::getSearchString() const
{
return ui.textSearch->text().toStdString();
}
} // namespace CustomInterfaces
} // namespace Mantid