##// 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:

r333:768151594917
r1337:3acf26407503
Show More
RemoveVariableOperation.cpp
70 lines | 2.1 KiB | text/x-c | CppLexer
/ gui / src / Visualization / operations / RemoveVariableOperation.cpp
Alexandre Leroux
Variable deletion (4)...
r333 #include "Visualization/operations/RemoveVariableOperation.h"
#include "Visualization/VisualizationGraphWidget.h"
#include <Variable/Variable.h>
Q_LOGGING_CATEGORY(LOG_RemoveVariableOperation, "RemoveVariableOperation")
struct RemoveVariableOperation::RemoveVariableOperationPrivate {
explicit RemoveVariableOperationPrivate(std::shared_ptr<Variable> variable)
: m_Variable(variable)
{
}
std::shared_ptr<Variable> m_Variable;
};
RemoveVariableOperation::RemoveVariableOperation(std::shared_ptr<Variable> variable)
: impl{spimpl::make_unique_impl<RemoveVariableOperationPrivate>(variable)}
{
}
void RemoveVariableOperation::visitEnter(VisualizationWidget *widget)
{
// VisualizationWidget is not intended to contain a variable
Q_UNUSED(widget)
}
void RemoveVariableOperation::visitLeave(VisualizationWidget *widget)
{
// VisualizationWidget is not intended to contain a variable
Q_UNUSED(widget)
}
void RemoveVariableOperation::visitEnter(VisualizationTabWidget *tabWidget)
{
// VisualizationTabWidget is not intended to contain a variable
Q_UNUSED(tabWidget)
}
void RemoveVariableOperation::visitLeave(VisualizationTabWidget *tabWidget)
{
// VisualizationTabWidget is not intended to contain a variable
Q_UNUSED(tabWidget)
}
void RemoveVariableOperation::visitEnter(VisualizationZoneWidget *zoneWidget)
{
// VisualizationZoneWidget is not intended to contain a variable
Q_UNUSED(zoneWidget)
}
void RemoveVariableOperation::visitLeave(VisualizationZoneWidget *zoneWidget)
{
// VisualizationZoneWidget is not intended to contain a variable
Q_UNUSED(zoneWidget)
}
void RemoveVariableOperation::visit(VisualizationGraphWidget *graphWidget)
{
if (graphWidget) {
// If the widget contains the variable, removes it
if (impl->m_Variable && graphWidget->contains(*impl->m_Variable)) {
graphWidget->removeVariable(impl->m_Variable);
}
}
else {
qCCritical(LOG_RemoveVariableOperation(),
"Can't visit VisualizationGraphWidget : the widget is null");
}
}