Skip to content
Snippets Groups Projects
Commit afca5777 authored by Edward Brown's avatar Edward Brown
Browse files

Renamed cellChanged to cellTextChanged and added oldValue to params

- Renamed signal and assosiated notification methods.
- Added old text as a signal parameter.

Re #22263
parent bc5d7585
No related branches found
No related tags found
No related merge requests found
...@@ -1549,8 +1549,10 @@ class JobTreeViewSubscriber { ...@@ -1549,8 +1549,10 @@ class JobTreeViewSubscriber {
#include "MantidQtWidgets/Common/Batch/JobTreeView.h" #include "MantidQtWidgets/Common/Batch/JobTreeView.h"
%End %End
public: public:
virtual void notifyCellChanged(const MantidQt::MantidWidgets::Batch::RowLocation& itemIndex, int column, virtual void notifyCellTextChanged(const MantidQt::MantidWidgets::Batch::RowLocation& itemIndex,
const std::string& newValue) = 0; int column,
const std::string& oldValue,
const std::string& newValue) = 0;
virtual void notifyRowInserted(const MantidQt::MantidWidgets::Batch::RowLocation& itemIndex) = 0; virtual void notifyRowInserted(const MantidQt::MantidWidgets::Batch::RowLocation& itemIndex) = 0;
virtual void notifyRemoveRowsRequested( virtual void notifyRemoveRowsRequested(
const std::vector<MantidQt::MantidWidgets::Batch::RowLocation>& locationsOfRowsToRemove) = 0; const std::vector<MantidQt::MantidWidgets::Batch::RowLocation>& locationsOfRowsToRemove) = 0;
...@@ -1658,8 +1660,10 @@ class JobTreeViewSignalAdapter : public QObject, public MantidQt::MantidWidgets: ...@@ -1658,8 +1660,10 @@ class JobTreeViewSignalAdapter : public QObject, public MantidQt::MantidWidgets:
%End %End
public: public:
JobTreeViewSignalAdapter(MantidQt::MantidWidgets::Batch::JobTreeView &view, QObject *parent = nullptr); JobTreeViewSignalAdapter(MantidQt::MantidWidgets::Batch::JobTreeView &view, QObject *parent = nullptr);
virtual void notifyCellChanged(const MantidQt::MantidWidgets::Batch::RowLocation &itemIndex, int column, virtual void notifyCellTextChanged(const MantidQt::MantidWidgets::Batch::RowLocation &itemIndex,
const std::string &newValue); int column,
const std::string &oldValue,
const std::string &newValue);
virtual void notifyRowInserted(const MantidQt::MantidWidgets::Batch::RowLocation &itemIndex); virtual void notifyRowInserted(const MantidQt::MantidWidgets::Batch::RowLocation &itemIndex);
virtual void notifyRemoveRowsRequested( virtual void notifyRemoveRowsRequested(
const std::vector<MantidQt::MantidWidgets::Batch::RowLocation> &locationsOfRowsToRemove); const std::vector<MantidQt::MantidWidgets::Batch::RowLocation> &locationsOfRowsToRemove);
...@@ -1667,8 +1671,10 @@ public: ...@@ -1667,8 +1671,10 @@ public:
virtual void notifyPasteRowsRequested(); virtual void notifyPasteRowsRequested();
virtual void notifyFilterReset(); virtual void notifyFilterReset();
signals: signals:
void cellChanged(const MantidQt::MantidWidgets::Batch::RowLocation &itemIndex, int column, void cellTextChanged(const MantidQt::MantidWidgets::Batch::RowLocation &itemIndex,
std::string newValue); int column,
std::string oldValue,
std::string newValue);
void rowInserted(const MantidQt::MantidWidgets::Batch::RowLocation &itemIndex); void rowInserted(const MantidQt::MantidWidgets::Batch::RowLocation &itemIndex);
void filterReset(); void filterReset();
void removeRowsRequested( void removeRowsRequested(
......
...@@ -18,8 +18,9 @@ namespace Batch { ...@@ -18,8 +18,9 @@ namespace Batch {
class EXPORT_OPT_MANTIDQT_COMMON JobTreeViewSubscriber { class EXPORT_OPT_MANTIDQT_COMMON JobTreeViewSubscriber {
public: public:
virtual void notifyCellChanged(RowLocation const &itemIndex, int column, virtual void notifyCellTextChanged(RowLocation const &itemIndex, int column,
std::string const &newValue) = 0; std::string const &oldValue,
std::string const &newValue) = 0;
virtual void notifyRowInserted(RowLocation const &newRowLocation) = 0; virtual void notifyRowInserted(RowLocation const &newRowLocation) = 0;
virtual void notifyRemoveRowsRequested( virtual void notifyRemoveRowsRequested(
std::vector<RowLocation> const &locationsOfRowsToRemove) = 0; std::vector<RowLocation> const &locationsOfRowsToRemove) = 0;
...@@ -32,12 +33,10 @@ public: ...@@ -32,12 +33,10 @@ public:
class EXPORT_OPT_MANTIDQT_COMMON JobTreeView : public QTreeView { class EXPORT_OPT_MANTIDQT_COMMON JobTreeView : public QTreeView {
Q_OBJECT Q_OBJECT
public: public:
// JobTreeView(QWidget *parent = nullptr);
JobTreeView(QStringList const &columnHeadings, Cell const &defaultCellStyle, JobTreeView(QStringList const &columnHeadings, Cell const &defaultCellStyle,
QWidget *parent = nullptr); QWidget *parent = nullptr);
void enableFiltering(); void enableFiltering();
void filterRowsBy(std::unique_ptr<RowPredicate> predicate); void filterRowsBy(std::unique_ptr<RowPredicate> predicate);
void filterRowsBy(RowPredicate *predicate); void filterRowsBy(RowPredicate *predicate);
void resetFilter(); void resetFilter();
...@@ -84,7 +83,7 @@ public: ...@@ -84,7 +83,7 @@ public:
boost::optional<std::vector<Subtree>> selectedSubtrees() const; boost::optional<std::vector<Subtree>> selectedSubtrees() const;
boost::optional<std::vector<RowLocation>> selectedSubtreeRoots() const; boost::optional<std::vector<RowLocation>> selectedSubtreeRoots() const;
bool hasNoSelectedChildren(QModelIndex const &index) const; bool hasNoSelectedDescendants(QModelIndex const &index) const;
void appendAllDescendants(QModelIndexList &selectedRows, void appendAllDescendants(QModelIndexList &selectedRows,
QModelIndex const &index) const; QModelIndex const &index) const;
QModelIndexList QModelIndexList
......
...@@ -12,8 +12,9 @@ class EXPORT_OPT_MANTIDQT_COMMON JobTreeViewSignalAdapter ...@@ -12,8 +12,9 @@ class EXPORT_OPT_MANTIDQT_COMMON JobTreeViewSignalAdapter
public: public:
JobTreeViewSignalAdapter(JobTreeView &view, QObject *parent = nullptr); JobTreeViewSignalAdapter(JobTreeView &view, QObject *parent = nullptr);
void notifyCellChanged(RowLocation const &itemIndex, int column, void notifyCellTextChanged(RowLocation const &itemIndex, int column,
std::string const &newValue) override; std::string const &oldValue,
std::string const &newValue) override;
void notifyRowInserted(RowLocation const &newRowLocation) override; void notifyRowInserted(RowLocation const &newRowLocation) override;
void notifyRemoveRowsRequested( void notifyRemoveRowsRequested(
std::vector<RowLocation> const &locationsOfRowsToRemove) override; std::vector<RowLocation> const &locationsOfRowsToRemove) override;
...@@ -21,8 +22,10 @@ public: ...@@ -21,8 +22,10 @@ public:
void notifyPasteRowsRequested() override; void notifyPasteRowsRequested() override;
void notifyFilterReset() override; void notifyFilterReset() override;
signals: signals:
void cellChanged(MantidQt::MantidWidgets::Batch::RowLocation const &itemIndex, void
int column, std::string newValue); cellTextChanged(MantidQt::MantidWidgets::Batch::RowLocation const &itemIndex,
int column, std::string const &oldValue,
std::string const &newValue);
void rowInserted( void rowInserted(
MantidQt::MantidWidgets::Batch::RowLocation const &newRowLocation); MantidQt::MantidWidgets::Batch::RowLocation const &newRowLocation);
void filterReset(); void filterReset();
......
...@@ -29,12 +29,18 @@ JobTreeView::JobTreeView(QStringList const &columnHeadings, ...@@ -29,12 +29,18 @@ JobTreeView::JobTreeView(QStringList const &columnHeadings,
} }
void JobTreeView::commitData(QWidget *editor) { void JobTreeView::commitData(QWidget *editor) {
auto cellTextBefore =
m_adaptedMainModel.cellFromCellIndex(m_lastEdited).contentText();
QTreeView::commitData(editor); QTreeView::commitData(editor);
auto cellProperties = m_adaptedMainModel.cellFromCellIndex(m_lastEdited); auto cellText =
auto cellText = cellProperties.contentText(); m_adaptedMainModel.cellFromCellIndex(m_lastEdited).contentText();
m_notifyee->notifyCellChanged(rowLocation().atIndex(m_lastEdited), if (cellText != cellTextBefore) {
m_lastEdited.column(), cellText); resizeColumnToContents(m_lastEdited.column());
m_hasEditorOpen = false; m_hasEditorOpen = false;
m_notifyee->notifyCellTextChanged(rowLocation().atIndex(m_lastEdited),
m_lastEdited.column(), cellTextBefore,
cellText);
}
} }
void JobTreeView::filterRowsBy(std::unique_ptr<RowPredicate> predicate) { void JobTreeView::filterRowsBy(std::unique_ptr<RowPredicate> predicate) {
......
...@@ -12,10 +12,10 @@ JobTreeViewSignalAdapter::JobTreeViewSignalAdapter(JobTreeView &view, ...@@ -12,10 +12,10 @@ JobTreeViewSignalAdapter::JobTreeViewSignalAdapter(JobTreeView &view,
view.subscribe(*this); view.subscribe(*this);
} }
void JobTreeViewSignalAdapter::notifyCellChanged(RowLocation const &itemIndex, void JobTreeViewSignalAdapter::notifyCellTextChanged(
int column, RowLocation const &itemIndex, int column, std::string const &oldValue,
std::string const &newValue) { std::string const &newValue) {
emit cellChanged(itemIndex, column, newValue); emit cellTextChanged(itemIndex, column, oldValue, newValue);
} }
void JobTreeViewSignalAdapter::notifyRowInserted( void JobTreeViewSignalAdapter::notifyRowInserted(
......
...@@ -52,7 +52,7 @@ class DataProcessorGui(QtGui.QMainWindow, Ui_BatchWidgetWindow): ...@@ -52,7 +52,7 @@ class DataProcessorGui(QtGui.QMainWindow, Ui_BatchWidgetWindow):
def on_remove_runs_request(self, runs_to_remove): def on_remove_runs_request(self, runs_to_remove):
self.table.removeRows(runs_to_remove) self.table.removeRows(runs_to_remove)
def on_cell_updated(self, row, col, cell_content): def on_cell_updated(self, row, col, old_content, cell_content):
cell = self.table.cellAt(row, col) cell = self.table.cellAt(row, col)
if cell_content == 'Invalid': if cell_content == 'Invalid':
cell.setIconFilePath(':/invalid.png') cell.setIconFilePath(':/invalid.png')
...@@ -63,7 +63,7 @@ class DataProcessorGui(QtGui.QMainWindow, Ui_BatchWidgetWindow): ...@@ -63,7 +63,7 @@ class DataProcessorGui(QtGui.QMainWindow, Ui_BatchWidgetWindow):
cell.setBorderColor('darkGrey') cell.setBorderColor('darkGrey')
self.table.setCellAt(row, col, cell) self.table.setCellAt(row, col, cell)
print("Updated row {} col {} with text {}".format(row.path(), col, cell_content)) print("Updated text at row {} col {} from {} to {}.".format(row.path(), col, old_content, cell_content))
def on_row_inserted(self, rowLoc): def on_row_inserted(self, rowLoc):
print("Row inserted at {}".format(rowLoc.path())) print("Row inserted at {}".format(rowLoc.path()))
...@@ -110,7 +110,7 @@ class DataProcessorGui(QtGui.QMainWindow, Ui_BatchWidgetWindow): ...@@ -110,7 +110,7 @@ class DataProcessorGui(QtGui.QMainWindow, Ui_BatchWidgetWindow):
self.table_signals.removeRowsRequested.connect(self.on_remove_runs_request) self.table_signals.removeRowsRequested.connect(self.on_remove_runs_request)
self.table_signals.copyRowsRequested.connect(self.on_copy_runs_request) self.table_signals.copyRowsRequested.connect(self.on_copy_runs_request)
self.table_signals.pasteRowsRequested.connect(self.on_paste_rows_request) self.table_signals.pasteRowsRequested.connect(self.on_paste_rows_request)
self.table_signals.cellChanged.connect(self.on_cell_updated) self.table_signals.cellTextChanged.connect(self.on_cell_updated)
self.table_signals.rowInserted.connect(self.on_row_inserted) self.table_signals.rowInserted.connect(self.on_row_inserted)
self.table_signals.filterReset.connect(self.on_filter_reset) self.table_signals.filterReset.connect(self.on_filter_reset)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment