##// END OF EJS Templates
Switch core submodule to GH repo...
Switch core submodule to GH repo Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1420:3c3e24550401
r1507:2096ff074ca4
Show More
GenerateVariableMenuOperation.cpp
232 lines | 7.2 KiB | text/x-c | CppLexer
/ gui / src / Visualization / operations / GenerateVariableMenuOperation.cpp
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 #include "Visualization/operations/GenerateVariableMenuOperation.h"
Alexandre Leroux
Moves MenuBuilder in a new class
r222 #include "Visualization/operations/MenuBuilder.h"
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210
#include "Visualization/VisualizationGraphWidget.h"
#include "Visualization/VisualizationTabWidget.h"
#include "Visualization/VisualizationZoneWidget.h"
Switched to new TS impl but quite broken!...
r1420 #include <Variable/Variable2.h>
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210
#include <QMenu>
Alexandre Leroux
Defines a menu builder...
r211 #include <QStack>
Q_LOGGING_CATEGORY(LOG_GenerateVariableMenuOperation, "GenerateVariableMenuOperation")
Switched to new TS impl but quite broken!...
r1420 struct GenerateVariableMenuOperation::GenerateVariableMenuOperationPrivate
{
explicit GenerateVariableMenuOperationPrivate(QMenu* menu, std::shared_ptr<Variable2> variable,
std::set<IVisualizationWidget*> variableContainers)
: m_Variable { variable }
, m_VariableContainers { std::move(variableContainers) }
, m_PlotMenuBuilder { menu }
, m_UnplotMenuBuilder { menu }
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 {
}
Alexandre Leroux
Puts hierarchical menu in a 'Plot' menu
r309 void visitRootEnter()
{
// Creates the root menu
Alexandre Leroux
Disables 'plot' menu when variable data have not been loaded yet
r404 if (auto plotMenu
Switched to new TS impl but quite broken!...
r1420 = m_PlotMenuBuilder.addMenu(QObject::tr("Plot"), QIcon { ":/icones/plot.png" }))
{
plotMenu->setEnabled(m_Variable && m_Variable->data() != nullptr);
Alexandre Leroux
Disables 'plot' menu when variable data have not been loaded yet
r404 }
Switched to new TS impl but quite broken!...
r1420 m_UnplotMenuBuilder.addMenu(QObject::tr("Unplot"), QIcon { ":/icones/unplot.png" });
Alexandre Leroux
Puts hierarchical menu in a 'Plot' menu
r309 }
void visitRootLeave()
{
// Closes the root menu
Alexandre Leroux
Unplot menu (1)...
r323 m_PlotMenuBuilder.closeMenu();
Alexandre Leroux
Unplot menu (2)...
r324 m_UnplotMenuBuilder.closeMenu();
Alexandre Leroux
Puts hierarchical menu in a 'Plot' menu
r309 }
Switched to new TS impl but quite broken!...
r1420 void visitNodeEnter(const IVisualizationWidget& container)
Alexandre Leroux
Implements visit of tab and zone...
r212 {
// Opens a new menu associated to the node
Alexandre Leroux
Unplot menu (1)...
r323 m_PlotMenuBuilder.addMenu(container.name());
Alexandre Leroux
Unplot menu (3): handles 'Unplot' menu when entering a tab or a zone...
r325 m_UnplotMenuBuilder.addMenu(container.name());
Alexandre Leroux
Implements visit of tab and zone...
r212 }
template <typename ActionFun>
Switched to new TS impl but quite broken!...
r1420 void visitNodeLeavePlot(
const IVisualizationWidget& container, const QString& actionName, ActionFun actionFunction)
Alexandre Leroux
Implements visit of tab and zone...
r212 {
Switched to new TS impl but quite broken!...
r1420 if (isValidContainer(container))
{
Alexandre Leroux
Unplot menu (1)...
r323 m_PlotMenuBuilder.addSeparator();
m_PlotMenuBuilder.addAction(actionName, actionFunction);
Alexandre Leroux
Completes visit of tab and zone...
r214 }
Alexandre Leroux
Implements visit of tab and zone...
r212 // Closes the menu associated to the node
Alexandre Leroux
Unplot menu (1)...
r323 m_PlotMenuBuilder.closeMenu();
Alexandre Leroux
Implements visit of tab and zone...
r212 }
Alexandre Leroux
Unplot menu (4): handles 'Unplot' menu when leaving a tab or a zone...
r326 void visitNodeLeaveUnplot()
{
// Closes the menu associated to the node
m_UnplotMenuBuilder.closeMenu();
}
Alexandre Leroux
Implements visit of graph...
r213 template <typename ActionFun>
Switched to new TS impl but quite broken!...
r1420 void visitLeafPlot(
const IVisualizationWidget& container, const QString& actionName, ActionFun actionFunction)
Alexandre Leroux
Implements visit of graph...
r213 {
Switched to new TS impl but quite broken!...
r1420 if (isValidContainer(container))
{
Alexandre Leroux
Unplot menu (1)...
r323 m_PlotMenuBuilder.addAction(actionName, actionFunction);
Alexandre Leroux
Implements visit of graph...
r213 }
}
Alexandre Leroux
Unplot menu (6): handles 'Unplot' menu when visiting a graph...
r328 template <typename ActionFun>
Switched to new TS impl but quite broken!...
r1420 void visitLeafUnplot(
IVisualizationWidget* container, const QString& actionName, ActionFun actionFunction)
Alexandre Leroux
Unplot menu (6): handles 'Unplot' menu when visiting a graph...
r328 {
Alexandre Leroux
Prohibits the plot of a variable in several graphs (2)...
r736 // If the container contains the variable, we generate 'unplot' action
Switched to new TS impl but quite broken!...
r1420 if (m_VariableContainers.count(container) == 1)
{
Alexandre Leroux
Unplot menu (6): handles 'Unplot' menu when visiting a graph...
r328 m_UnplotMenuBuilder.addAction(actionName, actionFunction);
}
}
Switched to new TS impl but quite broken!...
r1420 bool isValidContainer(const IVisualizationWidget& container) const noexcept
Alexandre Leroux
Prohibits the plot of a variable in several graphs (2)...
r736 {
// A container is valid if it can contain the variable and if the variable is not already
// contained in another container
return m_Variable && m_VariableContainers.size() == 0 && container.canDrop(*m_Variable);
}
Switched to new TS impl but quite broken!...
r1420 std::shared_ptr<Variable2> m_Variable;
std::set<IVisualizationWidget*> m_VariableContainers;
MenuBuilder m_PlotMenuBuilder; ///< Builder for the 'Plot' menu
Alexandre Leroux
Unplot menu (6): handles 'Unplot' menu when visiting a graph...
r328 MenuBuilder m_UnplotMenuBuilder; ///< Builder for the 'Unplot' menu
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 };
Switched to new TS impl but quite broken!...
r1420 GenerateVariableMenuOperation::GenerateVariableMenuOperation(QMenu* menu,
std::shared_ptr<Variable2> variable, std::set<IVisualizationWidget*> variableContainers)
: impl { spimpl::make_unique_impl<GenerateVariableMenuOperationPrivate>(
menu, variable, std::move(variableContainers)) }
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 {
}
Switched to new TS impl but quite broken!...
r1420 void GenerateVariableMenuOperation::visitEnter(VisualizationWidget* widget)
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 {
// VisualizationWidget is not intended to accommodate a variable
Q_UNUSED(widget)
Alexandre Leroux
Puts hierarchical menu in a 'Plot' menu
r309
Alexandre Leroux
Unplot menu (2)...
r324 // 'Plot' and 'Unplot' menus
Alexandre Leroux
Puts hierarchical menu in a 'Plot' menu
r309 impl->visitRootEnter();
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 }
Switched to new TS impl but quite broken!...
r1420 void GenerateVariableMenuOperation::visitLeave(VisualizationWidget* widget)
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 {
// VisualizationWidget is not intended to accommodate a variable
Q_UNUSED(widget)
Alexandre Leroux
Puts hierarchical menu in a 'Plot' menu
r309
Alexandre Leroux
Unplot menu (2)...
r324 // 'Plot' and 'Unplot' menus
Alexandre Leroux
Puts hierarchical menu in a 'Plot' menu
r309 impl->visitRootLeave();
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 }
Switched to new TS impl but quite broken!...
r1420 void GenerateVariableMenuOperation::visitEnter(VisualizationTabWidget* tabWidget)
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 {
Switched to new TS impl but quite broken!...
r1420 if (tabWidget)
{
Alexandre Leroux
Unplot menu (3): handles 'Unplot' menu when entering a tab or a zone...
r325 // 'Plot' and 'Unplot' menus
Alexandre Leroux
Implements visit of tab and zone...
r212 impl->visitNodeEnter(*tabWidget);
}
Switched to new TS impl but quite broken!...
r1420 else
{
Alexandre Leroux
Adds comments
r221 qCCritical(LOG_GenerateVariableMenuOperation(),
Switched to new TS impl but quite broken!...
r1420 "Can't visit enter VisualizationTabWidget : the widget is null");
Alexandre Leroux
Adds comments
r221 }
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 }
Switched to new TS impl but quite broken!...
r1420 void GenerateVariableMenuOperation::visitLeave(VisualizationTabWidget* tabWidget)
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 {
Switched to new TS impl but quite broken!...
r1420 if (tabWidget)
{
Alexandre Leroux
Unplot menu (4): handles 'Unplot' menu when leaving a tab or a zone...
r326 // 'Plot' menu
Alexandre Leroux
Uses weak pointers in lambda functions to prevent a shared_ptr from ever being deleted (because a reference would always be kept in the lambda)
r361 impl->visitNodeLeavePlot(*tabWidget, QObject::tr("Open in a new zone"),
Switched to new TS impl but quite broken!...
r1420 [varW = std::weak_ptr<Variable2> { impl->m_Variable }, tabWidget]() {
if (auto var = varW.lock())
{
tabWidget->createZone(var);
}
});
Alexandre Leroux
Unplot menu (4): handles 'Unplot' menu when leaving a tab or a zone...
r326
// 'Unplot' menu
impl->visitNodeLeaveUnplot();
Alexandre Leroux
Implements visit of tab and zone...
r212 }
Switched to new TS impl but quite broken!...
r1420 else
{
Alexandre Leroux
Adds comments
r221 qCCritical(LOG_GenerateVariableMenuOperation(),
Switched to new TS impl but quite broken!...
r1420 "Can't visit leave VisualizationTabWidget : the widget is null");
Alexandre Leroux
Adds comments
r221 }
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 }
Switched to new TS impl but quite broken!...
r1420 void GenerateVariableMenuOperation::visitEnter(VisualizationZoneWidget* zoneWidget)
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 {
Switched to new TS impl but quite broken!...
r1420 if (zoneWidget)
{
Alexandre Leroux
Unplot menu (3): handles 'Unplot' menu when entering a tab or a zone...
r325 // 'Plot' and 'Unplot' menus
Alexandre Leroux
Implements visit of tab and zone...
r212 impl->visitNodeEnter(*zoneWidget);
}
Switched to new TS impl but quite broken!...
r1420 else
{
Alexandre Leroux
Adds comments
r221 qCCritical(LOG_GenerateVariableMenuOperation(),
Switched to new TS impl but quite broken!...
r1420 "Can't visit enter VisualizationZoneWidget : the widget is null");
Alexandre Leroux
Adds comments
r221 }
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 }
Switched to new TS impl but quite broken!...
r1420 void GenerateVariableMenuOperation::visitLeave(VisualizationZoneWidget* zoneWidget)
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 {
Switched to new TS impl but quite broken!...
r1420 if (zoneWidget)
{
Alexandre Leroux
Unplot menu (4): handles 'Unplot' menu when leaving a tab or a zone...
r326 // 'Plot' menu
Switched to new TS impl but quite broken!...
r1420 impl->visitNodeLeavePlot(*zoneWidget, QObject::tr("Open in a new graph"),
[varW = std::weak_ptr<Variable2> { impl->m_Variable }, zoneWidget]() {
if (auto var = varW.lock())
{
Alexandre Leroux
Uses weak pointers in lambda functions to prevent a shared_ptr from ever being deleted (because a reference would always be kept in the lambda)
r361 zoneWidget->createGraph(var);
}
});
Alexandre Leroux
Unplot menu (4): handles 'Unplot' menu when leaving a tab or a zone...
r326
// 'Unplot' menu
impl->visitNodeLeaveUnplot();
Alexandre Leroux
Implements visit of tab and zone...
r212 }
Switched to new TS impl but quite broken!...
r1420 else
{
Alexandre Leroux
Adds comments
r221 qCCritical(LOG_GenerateVariableMenuOperation(),
Switched to new TS impl but quite broken!...
r1420 "Can't visit leave VisualizationZoneWidget : the widget is null");
Alexandre Leroux
Adds comments
r221 }
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 }
Switched to new TS impl but quite broken!...
r1420 void GenerateVariableMenuOperation::visit(VisualizationGraphWidget* graphWidget)
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 {
Switched to new TS impl but quite broken!...
r1420 if (graphWidget)
{
Alexandre Leroux
Unplot menu (6): handles 'Unplot' menu when visiting a graph...
r328 // 'Plot' menu
Alexandre Leroux
Uses weak pointers in lambda functions to prevent a shared_ptr from ever being deleted (because a reference would always be kept in the lambda)
r361 impl->visitLeafPlot(*graphWidget, QObject::tr("Open in %1").arg(graphWidget->name()),
Switched to new TS impl but quite broken!...
r1420 [varW = std::weak_ptr<Variable2> { impl->m_Variable }, graphWidget]() {
if (auto var = varW.lock())
{
graphWidget->addVariable(var, graphWidget->graphRange());
}
});
Alexandre Leroux
Unplot menu (6): handles 'Unplot' menu when visiting a graph...
r328
// 'Unplot' menu
Alexandre Leroux
Prohibits the plot of a variable in several graphs (2)...
r736 impl->visitLeafUnplot(graphWidget, QObject::tr("Remove from %1").arg(graphWidget->name()),
Switched to new TS impl but quite broken!...
r1420 [varW = std::weak_ptr<Variable2> { impl->m_Variable }, graphWidget]() {
if (auto var = varW.lock())
{
graphWidget->removeVariable(var);
}
});
Alexandre Leroux
Implements visit of graph...
r213 }
Switched to new TS impl but quite broken!...
r1420 else
{
Alexandre Leroux
Adds comments
r221 qCCritical(LOG_GenerateVariableMenuOperation(),
Switched to new TS impl but quite broken!...
r1420 "Can't visit VisualizationGraphWidget : the widget is null");
Alexandre Leroux
Adds comments
r221 }
Alexandre Leroux
Creates the visitor that generates a hierarchical menu associated with a variable....
r210 }