Skip to content
Snippets Groups Projects
PeaksViewer.h 2.02 KiB
Newer Older
#ifndef PEAKSVIEWER_H
#define PEAKSVIEWER_H

#include <QtGui/QWidget>
#include "DllOption.h"
#include <boost/shared_ptr.hpp>
#include "MantidQtSliceViewer/PeaksPresenter.h"
#include "MantidQtSliceViewer/UpdateableOnDemand.h"
#include "MantidAPI/IPeaksWorkspace.h"
#include <boost/shared_ptr.hpp>

Owen Arnold's avatar
Owen Arnold committed
namespace Mantid {
namespace API {
class IPeaksWorkspace;
}
}
Owen Arnold's avatar
Owen Arnold committed
namespace MantidQt {
namespace SliceViewer {
/// Forward dec.
class ProxyCompositePeaksPresenter;
Owen Arnold's avatar
Owen Arnold committed
class EXPORT_OPT_MANTIDQT_SLICEVIEWER PeaksViewer : public QWidget,
                                                    public UpdateableOnDemand {
  Q_OBJECT
public:
Owen Arnold's avatar
Owen Arnold committed
  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);
Owen Arnold's avatar
Owen Arnold committed
  void hide();
  ~PeaksViewer();
  bool hasThingsToShow() const;
Owen Arnold's avatar
Owen Arnold committed
  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;
Owen Arnold's avatar
Owen Arnold committed
} // namespace
}
#endif // PEAKSVIEWER_H