##// END OF EJS Templates
Completes visit of tab and zone...
Completes visit of tab and zone For a tab or a zone that can drops the variable, we add an action to its menu, of type "Open in new..." For example, for a tab, the new action action will be "Open in new zone". The action is separated to other actions in the menu

File last commit:

r209:7ef1d04a5917
r214:aa91a995c6e9
Show More
IVisualizationWidget.h
26 lines | 603 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 the visualization gui classes
r118 virtual void close() = 0;
Add const and override
r119 virtual QString name() const = 0;
Add the visualization gui classes
r118 };
#endif // SCIQLOP_IVISUALIZATIONWIDGET_H