Skip to content
Snippets Groups Projects
Commit ab33837b authored by Federico Montesino Pouzols's avatar Federico Montesino Pouzols
Browse files

casts and prepare event filter, re #13140

parent 3856aa0e
No related merge requests found
...@@ -44,6 +44,16 @@ public: ...@@ -44,6 +44,16 @@ public:
IImageCoRView(){}; IImageCoRView(){};
virtual ~IImageCoRView(){}; virtual ~IImageCoRView(){};
// Selection states
enum SelectionState {
SelectNone, ///< Init, or after any reset
SelectCoR,
SelectROIFirst,
SelectROISecond,
SelectNormAreaFirst,
SelectNormAreaSecond
};
/** /**
* Sets the user selection. This should guarantee that all widgets * Sets the user selection. This should guarantee that all widgets
* are updated (including spin boxes, image, slider through the * are updated (including spin boxes, image, slider through the
...@@ -63,14 +73,11 @@ public: ...@@ -63,14 +73,11 @@ public:
virtual ImageStackPreParams userSelection() const = 0; virtual ImageStackPreParams userSelection() const = 0;
/** /**
* Path to a stack of images that the user has requested to * Update to a new state (for example select CoR).
* display. The path would be expected to point to a recognized
* directory structure (sample/dark/white) or image file (as a
* particular case).
* *
* @return directory of file path as a string * @param new state we're transitioning into.
*/ */
virtual std::string stackPath() const = 0; virtual void changeSelectionState(const SelectionState state) = 0;
/** /**
* Display a special case of stack of images: individual image, from * Display a special case of stack of images: individual image, from
...@@ -94,8 +101,22 @@ public: ...@@ -94,8 +101,22 @@ public:
* @param ws Workspace group where every workspace is a FITS or * @param ws Workspace group where every workspace is a FITS or
* similar image that has been loaded with LoadFITS or similar * similar image that has been loaded with LoadFITS or similar
* algorithm. * algorithm.
*
* @param the (valid) path for this stack, from which it the
* workspace group was loaded, in whatever directory layout is being
* used (unknown to this view).
*/
virtual void showStack(Mantid::API::WorkspaceGroup_sptr &ws,
const std::string &m_stackPath) = 0;
/**
* Get the stack of images currently being displayed (it has been
* shown using showStack()), as a workspace group.
*
* @return workspace group containing the individual images, which
* can be empty if no stack has been loaded.
*/ */
virtual void showStack(Mantid::API::WorkspaceGroup_sptr &ws) = 0; virtual const Mantid::API::WorkspaceGroup_sptr stack() const = 0;
/** /**
* Normally one image (projection for tomography stacks) will be * Normally one image (projection for tomography stacks) will be
...@@ -150,11 +171,14 @@ public: ...@@ -150,11 +171,14 @@ public:
virtual void updateImgWithIndex(size_t idx) = 0; virtual void updateImgWithIndex(size_t idx) = 0;
/** /**
* Get from the user the path/location of a stack of images (or * Get the path/location of a stack of images (or single image as a
* single image as a particular case). * particular case) that the user is requesting to display. The
* path would be expected to point to a recognized directory
* structure (sample/dark/white) or image file (as a particular
* case).
* *
* @return location (can be a directory, file, etc.) that needs to * @return location (can be a directory, file, etc.) that needs to
* be figured out * be figured out elsewhere.
*/ */
virtual std::string askImgOrStackPath() = 0; virtual std::string askImgOrStackPath() = 0;
......
...@@ -78,6 +78,9 @@ private: ...@@ -78,6 +78,9 @@ private:
void loadFITSImage(const std::string &path, const std::string &wsName); void loadFITSImage(const std::string &path, const std::string &wsName);
/// path to the image stack being visualized
std::string m_stackPath;
/// Associated view for this presenter (MVP pattern) /// Associated view for this presenter (MVP pattern)
IImageCoRView *const m_view; IImageCoRView *const m_view;
......
...@@ -59,13 +59,15 @@ public: ...@@ -59,13 +59,15 @@ public:
ImageStackPreParams userSelection() const; ImageStackPreParams userSelection() const;
virtual std::string stackPath() const { return m_stackPath; }; void changeSelectionState(const SelectionState state);
/// show a stack of images given the path to the files /// show a stack of images given the path to the files
void showStack(const std::string &path); void showStack(const std::string &path);
/// show a stack of images that have been loaded into a group of workspaces /// show a stack of images that have been loaded into a group of workspaces
void showStack(Mantid::API::WorkspaceGroup_sptr &ws); void showStack(Mantid::API::WorkspaceGroup_sptr &ws, const std::string &path);
const Mantid::API::WorkspaceGroup_sptr stack() const { return m_stack; }
void showProjection(const Mantid::API::WorkspaceGroup_sptr &wsg, size_t idx); void showProjection(const Mantid::API::WorkspaceGroup_sptr &wsg, size_t idx);
...@@ -130,6 +132,8 @@ private: ...@@ -130,6 +132,8 @@ private:
void refreshROI(); void refreshROI();
void refreshNormArea(); void refreshNormArea();
bool eventFilter(QObject *obj, QEvent *event);
Ui::ImageSelectCoRAndRegions m_ui; Ui::ImageSelectCoRAndRegions m_ui;
Mantid::API::WorkspaceGroup_sptr m_stack; Mantid::API::WorkspaceGroup_sptr m_stack;
...@@ -144,8 +148,8 @@ private: ...@@ -144,8 +148,8 @@ private:
/// parameters currently set by the user /// parameters currently set by the user
ImageStackPreParams m_params; ImageStackPreParams m_params;
/// path to the image stack being visualized /// are we picking the CoR, or the first point of the ROI, etc.
std::string m_stackPath; SelectionState m_selectionState;
// presenter as in the model-view-presenter // presenter as in the model-view-presenter
boost::scoped_ptr<IImageCoRPresenter> m_presenter; boost::scoped_ptr<IImageCoRPresenter> m_presenter;
......
...@@ -94,9 +94,11 @@ void ImageCoRPresenter::processInit() { ...@@ -94,9 +94,11 @@ void ImageCoRPresenter::processInit() {
void ImageCoRPresenter::processBrowseImg() { void ImageCoRPresenter::processBrowseImg() {
const std::string path = m_view->askImgOrStackPath(); const std::string path = m_view->askImgOrStackPath();
if (!path.empty()) { if (path.empty())
processNewStack(); return;
}
m_stackPath = path;
processNewStack();
} }
/** /**
...@@ -129,9 +131,7 @@ StackOfImagesDirs ImageCoRPresenter::checkInputStack(const std::string &path) { ...@@ -129,9 +131,7 @@ StackOfImagesDirs ImageCoRPresenter::checkInputStack(const std::string &path) {
} }
void ImageCoRPresenter::processNewStack() { void ImageCoRPresenter::processNewStack() {
const std::string pstr = m_view->stackPath(); StackOfImagesDirs soid = checkInputStack(m_stackPath);
StackOfImagesDirs soid = checkInputStack(pstr);
std::vector<std::string> imgs = soid.sampleFiles(); std::vector<std::string> imgs = soid.sampleFiles();
if (0 >= imgs.size()) { if (0 >= imgs.size()) {
...@@ -153,11 +153,11 @@ void ImageCoRPresenter::processNewStack() { ...@@ -153,11 +153,11 @@ void ImageCoRPresenter::processNewStack() {
"Even though a directory apparently holding a stack of images was " "Even though a directory apparently holding a stack of images was "
"found, " "found, "
"it was not possible to load any image file correctly from: " + "it was not possible to load any image file correctly from: " +
pstr); m_stackPath);
return; return;
} }
m_view->showStack(wsg); m_view->showStack(wsg, m_stackPath);
// clean-up container group workspace? Not for now // clean-up container group workspace? Not for now
if (false && wsg) if (false && wsg)
...@@ -168,11 +168,17 @@ void ImageCoRPresenter::processUpdateImgIndex() { ...@@ -168,11 +168,17 @@ void ImageCoRPresenter::processUpdateImgIndex() {
m_view->updateImgWithIndex(m_view->currentImgIndex()); m_view->updateImgWithIndex(m_view->currentImgIndex());
} }
void ImageCoRPresenter::processSelectCoR() {} void ImageCoRPresenter::processSelectCoR() {
m_view->changeSelectionState(IImageCoRView::SelectCoR);
}
void ImageCoRPresenter::processSelectROI() {} void ImageCoRPresenter::processSelectROI() {
m_view->changeSelectionState(IImageCoRView::SelectROIFirst);
}
void ImageCoRPresenter::processSelectNormalization() {} void ImageCoRPresenter::processSelectNormalization() {
m_view->changeSelectionState(IImageCoRView::SelectNormAreaFirst);
}
void ImageCoRPresenter::processFinishedCoR() {} void ImageCoRPresenter::processFinishedCoR() {}
...@@ -182,14 +188,17 @@ void ImageCoRPresenter::processFinishedNormalization() {} ...@@ -182,14 +188,17 @@ void ImageCoRPresenter::processFinishedNormalization() {}
void ImageCoRPresenter::processResetCoR() { void ImageCoRPresenter::processResetCoR() {
m_view->resetCoR(); m_view->resetCoR();
m_view->changeSelectionState(IImageCoRView::SelectNone);
} }
void ImageCoRPresenter::processResetROI() { void ImageCoRPresenter::processResetROI() {
m_view->resetROI(); m_view->resetROI();
m_view->changeSelectionState(IImageCoRView::SelectNone);
} }
void ImageCoRPresenter::processResetNormalization() { void ImageCoRPresenter::processResetNormalization() {
m_view->resetNormArea(); m_view->resetNormArea();
m_view->changeSelectionState(IImageCoRView::SelectNone);
} }
void ImageCoRPresenter::processShutDown() { m_view->saveSettings(); } void ImageCoRPresenter::processShutDown() { m_view->saveSettings(); }
......
...@@ -23,8 +23,14 @@ const std::string ImageCoRViewQtWidget::m_settingsGroup = ...@@ -23,8 +23,14 @@ const std::string ImageCoRViewQtWidget::m_settingsGroup =
"CustomInterfaces/ImageCoRView"; "CustomInterfaces/ImageCoRView";
ImageCoRViewQtWidget::ImageCoRViewQtWidget(QWidget *parent) ImageCoRViewQtWidget::ImageCoRViewQtWidget(QWidget *parent)
: QWidget(parent), IImageCoRView(), m_presenter(NULL) { : QWidget(parent), IImageCoRView(), m_selectionState(SelectNone),
m_presenter(NULL) {
initLayout(); initLayout();
// using an event filter. might be worth refactoring into a specific
// QLabel + selection of ROI+NormArea+CoR class
// not using Qwt Pickers to avoid Qwt version issues..
m_ui.label_img->installEventFilter(this);
} }
void ImageCoRViewQtWidget::initLayout() { void ImageCoRViewQtWidget::initLayout() {
...@@ -107,6 +113,17 @@ void ImageCoRViewQtWidget::setupConnections() { ...@@ -107,6 +113,17 @@ void ImageCoRViewQtWidget::setupConnections() {
SLOT(valueUpdatedNormArea(int))); SLOT(valueUpdatedNormArea(int)));
} }
bool ImageCoRViewQtWidget::eventFilter(QObject *obj, QEvent *event) {
if (m_ui.label_img == obj) {
if (event->type() == QEvent::MouseButtonPress) {
} else if (event->type() == QEvent::MouseButtonRelease) {
} else if (event->type() == QEvent::MouseMove) {
}
}
// pass on the event up to the parent class
return false;
}
void ImageCoRViewQtWidget::valueUpdatedCoR(int) { void ImageCoRViewQtWidget::valueUpdatedCoR(int) {
grabCoRFromWidgets(); grabCoRFromWidgets();
refreshROIetAl(); refreshROIetAl();
...@@ -155,10 +172,14 @@ void ImageCoRViewQtWidget::refreshCoR() { ...@@ -155,10 +172,14 @@ void ImageCoRViewQtWidget::refreshCoR() {
QPainter painter(&toDisplay); QPainter painter(&toDisplay);
QPen pen(Qt::red); QPen pen(Qt::red);
painter.setPen(pen); painter.setPen(pen);
painter.drawLine(m_params.cor.X() - 5, m_params.cor.Y(), m_params.cor.X() + 5, painter.drawLine(static_cast<int>(m_params.cor.X() - 5),
m_params.cor.Y()); static_cast<int>(m_params.cor.Y()),
painter.drawLine(m_params.cor.X(), m_params.cor.Y() - 5, m_params.cor.X(), static_cast<int>(m_params.cor.X() + 5),
m_params.cor.Y() + 5); static_cast<int>(m_params.cor.Y()));
painter.drawLine(static_cast<int>(m_params.cor.X()),
static_cast<int>(m_params.cor.Y() - 5),
static_cast<int>(m_params.cor.X()),
static_cast<int>(m_params.cor.Y() + 5));
m_ui.label_img->setPixmap(toDisplay); m_ui.label_img->setPixmap(toDisplay);
} }
...@@ -177,25 +198,31 @@ void ImageCoRViewQtWidget::refreshROIetAl() { ...@@ -177,25 +198,31 @@ void ImageCoRViewQtWidget::refreshROIetAl() {
QPen penCoR(Qt::red); QPen penCoR(Qt::red);
painter.setPen(penCoR); painter.setPen(penCoR);
painter.drawLine(m_params.cor.X() - 5, m_params.cor.Y(), m_params.cor.X() + 5, painter.drawLine(static_cast<int>(m_params.cor.X() - 5),
m_params.cor.Y()); static_cast<int>(m_params.cor.Y()),
painter.drawLine(m_params.cor.X(), m_params.cor.Y() - 5, m_params.cor.X(), static_cast<int>(m_params.cor.X() + 5),
m_params.cor.Y() + 5); static_cast<int>(m_params.cor.Y()));
painter.drawLine(static_cast<int>(m_params.cor.X()),
static_cast<int>(m_params.cor.Y() - 5),
static_cast<int>(m_params.cor.X()),
static_cast<int>(m_params.cor.Y() + 5));
QPen penROI(Qt::green); QPen penROI(Qt::green);
painter.setPen(penROI); painter.setPen(penROI);
painter.drawRect(m_params.roi.first.X(), m_params.roi.first.Y(), painter.drawRect(
m_params.roi.second.X() - m_params.roi.first.X(), static_cast<int>(m_params.roi.first.X()),
m_params.roi.second.Y() - m_params.roi.first.Y()); static_cast<int>(m_params.roi.first.Y()),
static_cast<int>(m_params.roi.second.X() - m_params.roi.first.X()),
static_cast<int>(m_params.roi.second.Y() - m_params.roi.first.Y()));
QPen penNA(Qt::yellow); QPen penNA(Qt::yellow);
painter.setPen(penNA); painter.setPen(penNA);
painter.drawRect(m_params.normalizationRegion.first.X(), painter.drawRect(static_cast<int>(m_params.normalizationRegion.first.X()),
m_params.normalizationRegion.first.Y(), static_cast<int>(m_params.normalizationRegion.first.Y()),
m_params.normalizationRegion.second.X() - static_cast<int>(m_params.normalizationRegion.second.X() -
m_params.normalizationRegion.first.X(), m_params.normalizationRegion.first.X()),
m_params.normalizationRegion.second.Y() - static_cast<int>(m_params.normalizationRegion.second.Y() -
m_params.normalizationRegion.first.Y()); m_params.normalizationRegion.first.Y()));
m_ui.label_img->setPixmap(toDisplay); m_ui.label_img->setPixmap(toDisplay);
} }
...@@ -213,9 +240,11 @@ void ImageCoRViewQtWidget::refreshROI() { ...@@ -213,9 +240,11 @@ void ImageCoRViewQtWidget::refreshROI() {
QPainter painter(&toDisplay); QPainter painter(&toDisplay);
QPen pen(Qt::green); QPen pen(Qt::green);
painter.setPen(pen); painter.setPen(pen);
painter.drawRect(m_params.roi.first.X(), m_params.roi.first.Y(), painter.drawRect(
m_params.roi.second.X() - m_params.roi.first.X(), static_cast<int>(m_params.roi.first.X()),
m_params.roi.second.Y() - m_params.roi.first.Y()); static_cast<int>(m_params.roi.first.Y()),
static_cast<int>(m_params.roi.second.X() - m_params.roi.first.X()),
static_cast<int>(m_params.roi.second.Y() - m_params.roi.first.Y()));
m_ui.label_img->setPixmap(toDisplay); m_ui.label_img->setPixmap(toDisplay);
} }
...@@ -232,12 +261,12 @@ void ImageCoRViewQtWidget::refreshNormArea() { ...@@ -232,12 +261,12 @@ void ImageCoRViewQtWidget::refreshNormArea() {
QPainter painter(&toDisplay); QPainter painter(&toDisplay);
QPen pen(Qt::yellow); QPen pen(Qt::yellow);
painter.setPen(pen); painter.setPen(pen);
painter.drawRect(m_params.normalizationRegion.first.X(), painter.drawRect(static_cast<int>(m_params.normalizationRegion.first.X()),
m_params.normalizationRegion.first.Y(), static_cast<int>(m_params.normalizationRegion.first.Y()),
m_params.normalizationRegion.second.X() - static_cast<int>(m_params.normalizationRegion.second.X() -
m_params.normalizationRegion.first.X(), m_params.normalizationRegion.first.X()),
m_params.normalizationRegion.second.Y() - static_cast<int>(m_params.normalizationRegion.second.Y() -
m_params.normalizationRegion.first.Y()); m_params.normalizationRegion.first.Y()));
m_ui.label_img->setPixmap(toDisplay); m_ui.label_img->setPixmap(toDisplay);
} }
...@@ -306,6 +335,11 @@ ImageStackPreParams ImageCoRViewQtWidget::userSelection() const { ...@@ -306,6 +335,11 @@ ImageStackPreParams ImageCoRViewQtWidget::userSelection() const {
return m_params; return m_params;
} }
void ImageCoRViewQtWidget::changeSelectionState(
const IImageCoRView::SelectionState state) {
m_selectionState = state;
}
void ImageCoRViewQtWidget::corClicked() { void ImageCoRViewQtWidget::corClicked() {
m_presenter->notify(IImageCoRPresenter::SelectCoR); m_presenter->notify(IImageCoRPresenter::SelectCoR);
} }
...@@ -324,7 +358,7 @@ void ImageCoRViewQtWidget::normAreaClicked() { ...@@ -324,7 +358,7 @@ void ImageCoRViewQtWidget::normAreaClicked() {
m_presenter->notify(IImageCoRPresenter::SelectROI); m_presenter->notify(IImageCoRPresenter::SelectROI);
} }
void ImageCoRViewQtWidget::normAreaResetClicked() { void ImageCoRViewQtWidget::normAreaResetClicked() {
m_presenter->notify(IImageCoRPresenter::ResetROI); m_presenter->notify(IImageCoRPresenter::ResetNormalization);
} }
void ImageCoRViewQtWidget::browseImgClicked() { void ImageCoRViewQtWidget::browseImgClicked() {
...@@ -391,8 +425,7 @@ std::string ImageCoRViewQtWidget::askImgOrStackPath() { ...@@ -391,8 +425,7 @@ std::string ImageCoRViewQtWidget::askImgOrStackPath() {
MantidQt::API::AlgorithmInputHistory::Instance().setPreviousDirectory(path); MantidQt::API::AlgorithmInputHistory::Instance().setPreviousDirectory(path);
} }
m_stackPath = path.toStdString(); return path.toStdString();
return m_stackPath;
} }
void ImageCoRViewQtWidget::showStack(const std::string & /*path*/) { void ImageCoRViewQtWidget::showStack(const std::string & /*path*/) {
...@@ -403,7 +436,8 @@ void ImageCoRViewQtWidget::showStack(const std::string & /*path*/) { ...@@ -403,7 +436,8 @@ void ImageCoRViewQtWidget::showStack(const std::string & /*path*/) {
// b) load as workspace group - this is done in the overloaded method below // b) load as workspace group - this is done in the overloaded method below
} }
void ImageCoRViewQtWidget::showStack(Mantid::API::WorkspaceGroup_sptr &wsg) { void ImageCoRViewQtWidget::showStack(Mantid::API::WorkspaceGroup_sptr &wsg,
const std::string &stackPath) {
if (0 == wsg->size()) if (0 == wsg->size())
return; return;
......
...@@ -76,12 +76,11 @@ public: ...@@ -76,12 +76,11 @@ public:
EXPECT_CALL(mockView, userWarning(testing::_, testing::_)).Times(0); EXPECT_CALL(mockView, userWarning(testing::_, testing::_)).Times(0);
// should not get there: // should not get there:
EXPECT_CALL(mockView, stackPath()).Times(0);
EXPECT_CALL(mockView, showStack(testing::An<const std::string &>())) EXPECT_CALL(mockView, showStack(testing::An<const std::string &>()))
.Times(0); .Times(0);
EXPECT_CALL(mockView, EXPECT_CALL(mockView,
showStack(testing::An<Mantid::API::WorkspaceGroup_sptr &>())) showStack(testing::An<Mantid::API::WorkspaceGroup_sptr &>(),
.Times(0); testing::An<const std::string &>())).Times(0);
EXPECT_CALL(mockView, updateImgWithIndex(testing::_)).Times(0); EXPECT_CALL(mockView, updateImgWithIndex(testing::_)).Times(0);
pres.notify(IImageCoRPresenter::BrowseImgOrStack); pres.notify(IImageCoRPresenter::BrowseImgOrStack);
......
...@@ -15,14 +15,17 @@ public: ...@@ -15,14 +15,17 @@ public:
MOCK_CONST_METHOD0(userSelection, MOCK_CONST_METHOD0(userSelection,
MantidQt::CustomInterfaces::ImageStackPreParams()); MantidQt::CustomInterfaces::ImageStackPreParams());
// virtual std::string stackPath() const; // void changeSelectionState(const SelectionState state);
MOCK_CONST_METHOD0(stackPath, std::string()); MOCK_METHOD1(changeSelectionState, void(IImageCoRView::SelectionState));
// void showStack(const std::string &path); // void showStack(const std::string &path);
MOCK_METHOD1(showStack, void(const std::string &)); MOCK_METHOD1(showStack, void(const std::string &));
// void showStack(const Mantid::API::WorkspaceGroup_sptr &ws); // void showStack(const Mantid::API::WorkspaceGroup_sptr &ws);
MOCK_METHOD1(showStack, void(Mantid::API::WorkspaceGroup_sptr &)); MOCK_METHOD2(showStack, void(Mantid::API::WorkspaceGroup_sptr &, const std::string &));
// const Mantid::API::WorkspaceGroup_sptr stack() const;
MOCK_CONST_METHOD0(stack, const Mantid::API::WorkspaceGroup_sptr());
// void showProjection(const Mantid::API::WorkspaceGroup_sptr &wsg, size_t idx); // void showProjection(const Mantid::API::WorkspaceGroup_sptr &wsg, size_t idx);
MOCK_METHOD2(showProjection, void(const Mantid::API::WorkspaceGroup_sptr &wsg, size_t idx)); MOCK_METHOD2(showProjection, void(const Mantid::API::WorkspaceGroup_sptr &wsg, size_t idx));
...@@ -41,7 +44,7 @@ public: ...@@ -41,7 +44,7 @@ public:
// void updateImgWithIndex(size_t idx) // void updateImgWithIndex(size_t idx)
MOCK_METHOD1(updateImgWithIndex, void(size_t)); MOCK_METHOD1(updateImgWithIndex, void(size_t));
// std::string askImgOrStackPath() = 0; // std::string askImgOrStackPath();
MOCK_METHOD0(askImgOrStackPath, std::string()); MOCK_METHOD0(askImgOrStackPath, std::string());
// void saveSettings() const {} // void saveSettings() const {}
......
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