Newer
Older
#ifndef PEAKSVIEWER_H
#define PEAKSVIEWER_H
#include <QtGui/QWidget>
#include "DllOption.h"
#include "MantidQtSliceViewer/PeaksPresenter.h"
#include "MantidQtSliceViewer/UpdateableOnDemand.h"
#include "MantidAPI/IPeaksWorkspace.h"
namespace MantidQt {
namespace SliceViewer {
/// Forward dec.
class ProxyCompositePeaksPresenter;
class EXPORT_OPT_MANTIDQT_SLICEVIEWER PeaksViewer : public QWidget,
public UpdateableOnDemand {
Q_OBJECT
PeaksViewer(QWidget *parent = 0);
void setPeaksWorkspaces(const SetPeaksWorkspaces &workspaces);
void setPresenter(boost::shared_ptr<ProxyCompositePeaksPresenter> presenter);
void performUpdate();
void updatePeaksWorkspace(
const std::string &toName,
boost::shared_ptr<const Mantid::API::IPeaksWorkspace> toWorkspace);
bool removePeaksWorkspace(
boost::shared_ptr<const Mantid::API::IPeaksWorkspace> toRemove);
bool removePeaksWorkspace(const std::string &toRemove);
void hide();
~PeaksViewer();
bool hasThingsToShow() const;
void onPeakColourChanged(Mantid::API::IPeaksWorkspace_const_sptr, QColor);
void onBackgroundColourChanged(Mantid::API::IPeaksWorkspace_const_sptr,
QColor);
void onBackgroundRadiusShown(Mantid::API::IPeaksWorkspace_const_sptr, bool);
void onRemoveWorkspace(Mantid::API::IPeaksWorkspace_const_sptr);
void onHideInPlot(Mantid::API::IPeaksWorkspace_const_sptr peaksWS, bool);
void onZoomToPeak(Mantid::API::IPeaksWorkspace_const_sptr peaksWS,
int peakIndex);
void onPeaksSorted(const std::string &columnToSortBy,
const bool sortedAscending,
Mantid::API::IPeaksWorkspace_const_sptr peaksWS);
void showPeaksTableColumnOptions();
private:
boost::shared_ptr<ProxyCompositePeaksPresenter> m_presenter;