Newer
Older
#ifndef SLICEVIEWER_H
#define SLICEVIEWER_H
#include "DimensionSliceWidget.h"
Janik Zikovsky
committed
#include "DllOption.h"
#include "MantidAPI/IMDWorkspace.h"
#include "MantidAPI/PeakTransformSelector.h"
Janik Zikovsky
committed
#include "MantidGeometry/MDGeometry/MDHistoDimension.h"
#include "MantidKernel/VMD.h"
#include "MantidQtAPI/MantidColorMap.h"
#include "MantidQtAPI/MdSettings.h"
#include "MantidQtMantidWidgets/SafeQwtPlot.h"
#include "MantidQtAPI/SyncedCheckboxes.h"
#include "MantidQtSliceViewer/LineOverlay.h"
#include "MantidQtSliceViewer/PeaksPresenter.h"
#include "MantidQtSliceViewer/ZoomablePeaksView.h"
#include "MantidQtAPI/QwtRasterDataMD.h"
#include "ui_SliceViewer.h"
Janik Zikovsky
committed
#include <QtCore/QtCore>
#include <QtGui/qdialog.h>
#include <QtGui/QWidget>
Janik Zikovsky
committed
#include <qwt_color_map.h>
#include <qwt_plot_spectrogram.h>
#include <qwt_plot.h>
Janik Zikovsky
committed
#include <qwt_scale_widget.h>
#include <vector>
#include "MantidQtAPI/AlgorithmRunner.h"
Janik Zikovsky
committed
namespace Mantid
{
namespace API
{
class IPeaksWorkspace;
}
}
namespace MantidQt
{
namespace SliceViewer
{
class CompositePeaksPresenter;
class ProxyCompositePeaksPresenter;
/** GUI for viewing a 2D slice out of a multi-dimensional workspace.
* You can select which dimension to plot as X,Y, and the cut point
* along the other dimension(s).
*
*/
class EXPORT_OPT_MANTIDQT_SLICEVIEWER SliceViewer : public QWidget, public ZoomablePeaksView
friend class SliceViewerWindow;
SliceViewer(QWidget *parent = 0);
~SliceViewer();
void setWorkspace(const QString & wsName);
void setWorkspace(Mantid::API::IMDWorkspace_sptr ws);
Mantid::API::IMDWorkspace_sptr getWorkspace();
Janik Zikovsky
committed
void showControls(bool visible);
void zoomBy(double factor);
void loadColorMap(QString filename = QString() );
LineOverlay * getLineOverlay() { return m_lineOverlay; }
Mantid::Kernel::VMD getSlicePoint() const { return m_slicePoint; }
int getDimX() const;
int getDimY() const;
QString getWorkspaceName() const;
void setXYDim(int indexX, int indexY);
void setXYDim(const QString & dimX, const QString & dimY);
void setSlicePoint(int dim, double value);
void setSlicePoint(const QString & dim, double value);
double getSlicePoint(int dim) const;
double getSlicePoint(const QString & dim) const;
void setColorScaleMin(double min);
void setColorScaleMax(double max);
void setColorScaleLog(bool log);
void setColorScale(double min, double max, bool log);
void setColorMapBackground(int r, int g, int b);
double getColorScaleMin() const;
double getColorScaleMax() const;
bool getColorScaleLog() const;
void setXYLimits(double xleft, double xright, double ybottom, double ytop);
QwtDoubleInterval getXLimits() const;
QwtDoubleInterval getYLimits() const;
void setXYCenter(double x, double y);
void openFromXML(const QString & xml);
void setNormalization(Mantid::API::MDNormalization norm, bool update=true);
Mantid::API::MDNormalization getNormalization() const;
/// Dynamic Rebinning-related Python bindings
void setRebinThickness(int dim, double thickness);
void setRebinNumBins(int xBins, int yBins);
void setRebinMode(bool mode, bool locked);
void refreshRebin();
/// Methods relating to peaks overlays.
boost::shared_ptr<ProxyCompositePeaksPresenter> getPeaksPresenter() const;
ProxyCompositePeaksPresenter* setPeaksWorkspaces(const QStringList& list); // For python binding
void clearPeaksWorkspaces(); // For python binding
/* -- Methods from implementation of ZoomablePeaksView. --*/
virtual void zoomToRectangle(const PeakBoundingBox& box);
/* Methods associated with workspace observers. Driven by SliceViewerWindow */
void peakWorkspaceChanged(const std::string& wsName, boost::shared_ptr<Mantid::API::IPeaksWorkspace>& changedPeaksWS);
signals:
/// Signal emitted when the X/Y index of the shown dimensions is changed
void changedShownDim(size_t dimX, size_t dimY);
/// Signal emitted when the slice point moves
void changedSlicePoint(Mantid::Kernel::VMD slicePoint);
/// Signal emitted when the LineViewer should be shown/hidden.
void showLineViewer(bool);
/// Signal emitted when the PeaksViewer should be shown/hidden.
void showPeaksViewer(bool);
/// Signal emitted when someone uses setWorkspace() on SliceViewer
void workspaceChanged();
/// Signal emitted when someone wants to see the options dialog
void peaksTableColumnOptions();
public slots:
void helpSliceViewer();
void helpLineViewer();
void setFastRender(bool fast);
void showInfoAt(double, double);
// Change in view slots
void changedShownDim(int index, int dim, int oldDim);
void updateDisplaySlot(int index, double value);
Janik Zikovsky
committed
void resetZoom();
void zoomInSlot();
void zoomOutSlot();
void zoomRectSlot(const QwtDoubleRect & rect);
void panned(int, int);
void magnifierRescaled(double);
// Color scale slots
void setColorScaleAutoFull();
void setColorScaleAutoSlice();
void colorRangeChanged();
void loadColorMapSlot();
void setTransparentZeros(bool transparent);
void changeNormalizationNone();
void changeNormalizationVolume();
void changeNormalizationNumEvents();
// Buttons or actions
void clearLine();
QPixmap getImage();
void saveImage(const QString & filename = QString());
void copyImageToClipboard();
void onPeaksViewerOverlayOptions();
// Synced checkboxes
void LineMode_toggled(bool);
void SnapToGrid_toggled(bool);
void RebinMode_toggled(bool);
void RebinLock_toggled(bool);
// Dynamic rebinning
void rebinParamsChanged();
void dynamicRebinComplete(bool error);
void dragEnterEvent(QDragEnterEvent *e);
void dropEvent(QDropEvent *e);
void loadSettings();
void saveSettings();
Janik Zikovsky
committed
void initZoomer();
void updateDisplay(bool resetAxes = false);
void updateDimensionSliceWidgets();
void resetAxis(int axis, const Mantid::Geometry::IMDDimension_const_sptr & dim);
void findRangeFull();
void findRangeSlice();
void updatePeaksOverlay();
void enablePeakOverlaysIfAppropriate();
// Autorebin methods.
bool isAutoRebinSet() const;
void autoRebinIfRequired();
// helper for saveImage
QString ensurePngExtension(const QString& fname) const;
// -------------------------- Widgets ----------------------------
/// Auto-generated UI controls.
Ui::SliceViewerClass ui;
/// Main plot object
MantidQt::MantidWidgets::SafeQwtPlot * m_plot;
/// Spectrogram plot
QwtPlotSpectrogram * m_spect;
/// Layout containing the spectrogram
Janik Zikovsky
committed
QHBoxLayout * m_spectLayout;
/// Color bar indicating the color scale
ColorBarWidget * m_colorBar;
/// Vector of the widgets for slicing dimensions
Janik Zikovsky
committed
std::vector<DimensionSliceWidget *> m_dimWidgets;
/// The LineOverlay widget for drawing line cross-sections (hidden at startup)
LineOverlay * m_lineOverlay;
/// The LineOverlay widget for drawing the outline of the rebinned workspace
LineOverlay * m_overlayWSOutline;
/// Object for running algorithms in the background
MantidQt::API::AlgorithmRunner * m_algoRunner;
// -------------------------- Data Members ----------------------------
/// Workspace being shown
Mantid::API::IMDWorkspace_sptr m_ws;
/// Workspace overlaid on top of original (optional) for dynamic rebinning
Mantid::API::IMDWorkspace_sptr m_overlayWS;
/// Set to true once the first workspace has been loaded in it
bool m_firstWorkspaceOpen;
/// File of the last loaded color map.
QString m_currentColorMapFile;
Janik Zikovsky
committed
/// Vector of the dimensions to show.
std::vector<Mantid::Geometry::MDHistoDimension_sptr> m_dimensions;
/// Data presenter
API::QwtRasterDataMD * m_data;
/// The X and Y dimensions being plotted
Mantid::Geometry::IMDDimension_const_sptr m_X;
Mantid::Geometry::IMDDimension_const_sptr m_Y;
Janik Zikovsky
committed
size_t m_dimX;
size_t m_dimY;
/// The point of slicing in the other dimensions
Mantid::Kernel::VMD m_slicePoint;
Janik Zikovsky
committed
/// The range of values to fit in the color map.
QwtDoubleInterval m_colorRange;
/// The calculated range of values in the FULL data set
QwtDoubleInterval m_colorRangeFull;
/// The calculated range of values ONLY in the currently viewed part of the slice
QwtDoubleInterval m_colorRangeSlice;
/// Use the log of the value for the color scale
bool m_logColor;
QMenu *m_menuColorOptions, *m_menuView, *m_menuHelp, *m_menuLine, *m_menuFile, *m_menuPeaks;
QAction *m_actionFileClose;
QAction *m_actionTransparentZeros;
QAction *m_actionNormalizeNone;
QAction *m_actionNormalizeVolume;
QAction *m_actionNormalizeNumEvents;
QAction *m_actionRefreshRebin;
/// Synced menu/buttons
MantidQt::API::SyncedCheckboxes *m_syncLineMode, *m_syncSnapToGrid,
*m_syncRebinMode, *m_syncRebinLock, *m_syncAutoRebin;
/// Cached double for infinity
double m_inf;
/// "Fast" rendering mode
bool m_fastRender;
/// Last path that was saved using saveImage()
QString m_lastSavedFile;
/// Name of the workspace generated by the dynamic rebinning BinMD call
std::string m_overlayWSName;
/// If true, then we are in dynamic rebin mode
bool m_rebinMode;
/// If true, the rebinned overlayWS is locked until refreshed.
bool m_rebinLocked;
/// Md Settings for color maps
boost::shared_ptr<MantidQt::API::MdSettings> m_mdSettings;
/// Logger
Mantid::Kernel::Logger m_logger;
// -------------------------- Controllers ------------------------
boost::shared_ptr<CompositePeaksPresenter> m_peaksPresenter;
boost::shared_ptr<ProxyCompositePeaksPresenter> m_proxyPeaksPresenter;
/// Pointer to widget used for peaks sliding.
DimensionSliceWidget* m_peaksSliderWidget;
/// Object for choosing a PeakTransformFactory based on the workspace type.
Mantid::API::PeakTransformSelector m_peakTransformSelector;
} // namespace SliceViewer
} // namespace Mantid