##// END OF EJS Templates
Call the calculation of the thresholds in the scale editor (with each click on the 'automatic' mode)
Call the calculation of the thresholds in the scale editor (with each click on the 'automatic' mode)

File last commit:

r264:419e3cbb9021
r1021:b014e09f2329
Show More
IVisualizationWidget.h
25 lines | 573 B | text/x-c | CLexer
#ifndef SCIQLOP_IVISUALIZATIONWIDGET_H
#define SCIQLOP_IVISUALIZATIONWIDGET_H
#include "Visualization/IVariableContainer.h"
#include <QString>
#include <memory>
class IVisualizationWidgetVisitor;
/**
* @brief The IVisualizationWidget handles the visualization widget.
*/
class IVisualizationWidget : public IVariableContainer {
public:
virtual ~IVisualizationWidget() = default;
/// Initializes the plugin
virtual void accept(IVisualizationWidgetVisitor *visitor) = 0;
virtual QString name() const = 0;
};
#endif // SCIQLOP_IVISUALIZATIONWIDGET_H