30 void EnabledActions::Add(QAction* a)
35 void EnabledActions::Add(
QMenu* m)
40 void EnabledActions::Set(vector<QAction*> a)
45 void EnabledActions::Enable()
47 for (
auto a : actions) a->setEnabled(
true);
48 for (
auto m : menus) m->setEnabled(
true);
51 void EnabledActions::Disable()
53 for (
auto a : actions) a->setEnabled(
false);
54 for (
auto m : menus) m->setEnabled(
false);
EnabledActions interface.
see the online Qt documentation
Namespace for generic graphical shell for simulators.