##// END OF EJS Templates
Handles rendering of plottables (1)...
Handles rendering of plottables (1) As for the axes properties, we create a helper used to set rendering properties of the plottables depending on the type of the data series used to create these plottables. Rendering properties will be, for example: - the color of each component for a scalar or a vector - the color scale management for a spectrogram

File last commit:

r264:419e3cbb9021
r918:8264fa4b2aa2
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