Skip to content
Snippets Groups Projects
IInstrumentView.h 2.07 KiB
Newer Older
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2011 ISIS Rutherford Appleton Laboratory UKRI,
//     NScD Oak Ridge National Laboratory, European Spallation Source
//     & Institut Laue - Langevin
// SPDX - License - Identifier: GPL - 3.0 +
Gemma Guest's avatar
Gemma Guest committed
#ifndef MANTID_ISISREFLECTOMETRY_IINSTRUMENTVIEW_H
#define MANTID_ISISREFLECTOMETRY_IINSTRUMENTVIEW_H

#include "Common/DllConfig.h"
#include "Common/InstrumentParameters.h"
#include "MantidAPI/Algorithm.h"
Gemma Guest's avatar
Gemma Guest committed

namespace MantidQt {
namespace CustomInterfaces {

/** @class IInstrumentView

IInstrumentView is the base view class for the Reflectometry instrument
settings. It
contains no QT specific functionality as that should be handled by a subclass.
*/

class MANTIDQT_ISISREFLECTOMETRY_DLL InstrumentViewSubscriber {
public:
  virtual void notifySettingsChanged() = 0;
};

class MANTIDQT_ISISREFLECTOMETRY_DLL IInstrumentView {
public:
  virtual ~IInstrumentView() = default;

Gemma Guest's avatar
Gemma Guest committed
  virtual void subscribe(InstrumentViewSubscriber *notifyee) = 0;

  virtual int getMonitorIndex() const = 0;
  virtual bool getIntegrateMonitors() const = 0;

  virtual double getLambdaMin() const = 0;
  virtual double getLambdaMax() const = 0;
  virtual void showLambdaRangeInvalid() = 0;
  virtual void showLambdaRangeValid() = 0;

  virtual double getMonitorBackgroundMin() const = 0;
  virtual double getMonitorBackgroundMax() const = 0;
  virtual void showMonitorBackgroundRangeInvalid() = 0;
  virtual void showMonitorBackgroundRangeValid() = 0;

  virtual double getMonitorIntegralMin() const = 0;
  virtual double getMonitorIntegralMax() const = 0;
  virtual void showMonitorIntegralRangeInvalid() = 0;
  virtual void showMonitorIntegralRangeValid() = 0;

  virtual bool getCorrectDetectors() const = 0;
  virtual std::string getDetectorCorrectionType() const = 0;

Gemma Guest's avatar
Gemma Guest committed
  virtual void disableAll() = 0;
  virtual void enableAll() = 0;
  virtual void enableDetectorCorrectionType() = 0;
  virtual void disableDetectorCorrectionType() = 0;
Gemma Guest's avatar
Gemma Guest committed
};
} // namespace CustomInterfaces
} // namespace MantidQt
Gemma Guest's avatar
Gemma Guest committed
#endif /* MANTID_ISISREFLECTOMETRY_IINSTRUMENTVIEW_H */