Salome HOME
AIS presentation for result is created
[modules/shaper.git] / src / XGUI / XGUI_ActionsMgr.h
index 5f8c4ab93a6131fc5249cc7a7479a06359706669..8df73304db8b4a2f1a8031d62ddb664277219b08 100644 (file)
 class XGUI_Command;
 class XGUI_Workshop;
 class XGUI_OperationMgr;
+class ModuleBase_Operation;
 class QAction;
 
-class XGUI_EXPORT XGUI_ActionsMgr: public QObject
+class XGUI_EXPORT XGUI_ActionsMgr : public QObject
 {
-  Q_OBJECT
+Q_OBJECT
 
-public:
+ public:
   XGUI_ActionsMgr(XGUI_Workshop* theWorkshop);
   virtual ~XGUI_ActionsMgr();
 
@@ -39,7 +40,9 @@ public:
 
   QKeySequence registerShortcut(const QString& theKeySequence);
 
-public slots:
+  void updateByDocumentKind();
+
+ public slots:
   //! Update workbench actions according to OperationMgr state:
   //! No active operations: all actions but nested are available
   //! There is active operation: current operation + it's nested
@@ -48,9 +51,11 @@ public slots:
   //! Sets all commands checked if it's operation is active.
   void updateCheckState();
 
-protected:
+ protected:
   //! Sets all actions to isEnabled state.
   void setAllEnabled(bool isEnabled);
+  //! Sets to isEnabled state all siblings of the given operation and it's parents recursively
+  void setNestedStackEnabled(ModuleBase_Operation* theOperation);
   //! Sets all nested actions to isEnabled state for the command with given ID.
   //! If ID is empty - all nested actions will be affected.
   void setNestedCommandsEnabled(bool isEnabled, const QString& theParent = QString());
@@ -59,7 +64,7 @@ protected:
   //! Sets the action with theId to theEnabled state.
   void setActionEnabled(const QString& theId, const bool theEnabled);
 
-private:
+ private:
   QMap<QString, QAction*> myActions;
   QMap<QString, QStringList> myNestedActions;
   QList<QKeySequence> myShortcuts;