Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / XGUI / XGUI_ActionsMgr.h
index 965f2289f05e884d451e2c32450a68ad7aea7f3d..8df73304db8b4a2f1a8031d62ddb664277219b08 100644 (file)
@@ -9,48 +9,69 @@
 
 #include <QObject>
 #include <QMap>
+#include <QList>
 #include <QStringList>
+#include <QKeySequence>
 
 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:
-  XGUI_ActionsMgr(XGUI_Workshop* theParent);
+ public:
+  XGUI_ActionsMgr(XGUI_Workshop* theWorkshop);
   virtual ~XGUI_ActionsMgr();
 
-
-  void addCommand(XGUI_Command* theCmd);
-
-  /// Register a command in SALOME mode
-  /// \param theId - string ID of the command
-  /// \param theCmd - command object
-  void addCommand(QString theId, QAction* theCmd);
-
-  void saveCommandsState();
-  void restoreCommandState();
-
-  /// Set the action is checked
-  /// \param theId - string ID of the command
-  /// \praram theChecked - the new checked state
+  //! Add a command in the manager.
+  //! Please note that nested commands in the Salome mode (No XGUI_Command, pure QActions)
+  //! won't be extracted and should be added manually using the addNestedCommands method.
+  void addCommand(QAction* theCmd);
+  //! Sets relation between the command (with given Id) and it's nested actions.
+  void addNestedCommands(const QString& theId, const QStringList& theCommands);
+
+  QStringList nestedCommands(const QString& theId) const;
+
+  bool isNested(const QString& theId) const;
+
+  QKeySequence registerShortcut(const QString& theKeySequence);
+
+  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
+  //! are enabled, all the rest is disabled. All active commands is checked.
+  void update();
+  //! Sets all commands checked if it's operation is active.
+  void updateCheckState();
+
+ 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());
+  //! Sets the action with theId to theChecked state.
   void setActionChecked(const QString& theId, const bool theChecked);
+  //! Sets the action with theId to theEnabled state.
+  void setActionEnabled(const QString& theId, const bool theEnabled);
 
-  void updateAction(const QString&);
-  void setNestedActionsEnabled(bool);
-
-public slots:
-  void setActionsDisabled(bool isEnabled);
-
-private:
-  QStringList myNestedActions;
+ private:
   QMap<QString, QAction*> myActions;
-  QMap<QString, bool> myActionsState;
+  QMap<QString, QStringList> myNestedActions;
+  QList<QKeySequence> myShortcuts;
 
   XGUI_Workshop* myWorkshop;
+  XGUI_OperationMgr* myOperationMgr;
 };
 
 #endif /* XGUI_ACTIONSMGR_H_ */
+