##// 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
Add the visualization gui classes
r118 #ifndef SCIQLOP_IVISUALIZATIONWIDGET_H
#define SCIQLOP_IVISUALIZATIONWIDGET_H
Alexandre Leroux
Creates a interface that defines a variable container...
r209 #include "Visualization/IVariableContainer.h"
Add the visualization gui classes
r118
#include <QString>
#include <memory>
Alexandre Leroux
Updates visitor interface...
r207 class IVisualizationWidgetVisitor;
Add the visualization gui classes
r118 /**
* @brief The IVisualizationWidget handles the visualization widget.
*/
Alexandre Leroux
Creates a interface that defines a variable container...
r209 class IVisualizationWidget : public IVariableContainer {
Add the visualization gui classes
r118
public:
virtual ~IVisualizationWidget() = default;
/// Initializes the plugin
Alexandre Leroux
Updates visitor interface...
r207 virtual void accept(IVisualizationWidgetVisitor *visitor) = 0;
Add const and override
r119 virtual QString name() const = 0;
Add the visualization gui classes
r118 };
#endif // SCIQLOP_IVISUALIZATIONWIDGET_H