##// END OF EJS Templates
Separate the initialization of the properties of the graph of the update of the units of the graph....
Separate the initialization of the properties of the graph of the update of the units of the graph. The initialization of the properties is carried out when adding a variable in the graph, the update of the units is carried out when loading the data of this variable

File last commit:

r264:419e3cbb9021
r1308:41b7c6aab8be
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