Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / XGUI / XGUI_ActionsMgr.h
1 /*
2  * XGUI_ActionsMgr.h
3  */
4
5 #ifndef XGUI_ACTIONSMGR_H_
6 #define XGUI_ACTIONSMGR_H_
7
8 #include "XGUI.h"
9
10 #include <QObject>
11 #include <QMap>
12 #include <QList>
13 #include <QStringList>
14 #include <QKeySequence>
15
16 class XGUI_Command;
17 class XGUI_Workshop;
18 class XGUI_OperationMgr;
19 class QAction;
20
21 class XGUI_EXPORT XGUI_ActionsMgr : public QObject
22 {
23 Q_OBJECT
24
25  public:
26   XGUI_ActionsMgr(XGUI_Workshop* theWorkshop);
27   virtual ~XGUI_ActionsMgr();
28
29   //! Add a command in the manager.
30   //! Please note that nested commands in the Salome mode (No XGUI_Command, pure QActions)
31   //! won't be extracted and should be added manually using the addNestedCommands method.
32   void addCommand(QAction* theCmd);
33   //! Sets relation between the command (with given Id) and it's nested actions.
34   void addNestedCommands(const QString& theId, const QStringList& theCommands);
35
36   QStringList nestedCommands(const QString& theId) const;
37
38   bool isNested(const QString& theId) const;
39
40   QKeySequence registerShortcut(const QString& theKeySequence);
41
42  public slots:
43   //! Update workbench actions according to OperationMgr state:
44   //! No active operations: all actions but nested are available
45   //! There is active operation: current operation + it's nested
46   //! are enabled, all the rest is disabled. All active commands is checked.
47   void update();
48   //! Sets all commands checked if it's operation is active.
49   void updateCheckState();
50
51  protected:
52   //! Sets all actions to isEnabled state.
53   void setAllEnabled(bool isEnabled);
54   //! Sets all nested actions to isEnabled state for the command with given ID.
55   //! If ID is empty - all nested actions will be affected.
56   void setNestedCommandsEnabled(bool isEnabled, const QString& theParent = QString());
57   //! Sets the action with theId to theChecked state.
58   void setActionChecked(const QString& theId, const bool theChecked);
59   //! Sets the action with theId to theEnabled state.
60   void setActionEnabled(const QString& theId, const bool theEnabled);
61
62  private:
63   QMap<QString, QAction*> myActions;
64   QMap<QString, QStringList> myNestedActions;
65   QList<QKeySequence> myShortcuts;
66
67   XGUI_Workshop* myWorkshop;
68   XGUI_OperationMgr* myOperationMgr;
69 };
70
71 #endif /* XGUI_ACTIONSMGR_H_ */
72