Salome HOME
Introduce Long Operation event: now for waiting cursor only
[modules/shaper.git] / src / XGUI / XGUI_Command.h
1 #ifndef XGUI_Command_H
2 #define XGUI_Command_H
3
4 #include "XGUI.h"
5 #include <QWidgetAction>
6
7 #define MIN_BUTTON_HEIGHT 25
8 #define MIN_BUTTON_WIDTH 60
9
10 /**\class XGUI_Command
11  * \ingroup GUI
12  * \brief Represents a command item in the application menu (Workbench)
13  */
14 class XGUI_EXPORT XGUI_Command: public QWidgetAction
15 {
16 Q_OBJECT
17 public:
18   XGUI_Command(const QString& theId, QObject * parent, bool isCheckable = false);
19   XGUI_Command(const QString& theId, const QIcon& icon, const QString& text, QObject* parent, bool isCheckable = false);
20   ~XGUI_Command();
21
22   //VSV: Don't use this method for compatibility with SALOME. Use the construction below
23   /*virtual QString id() const
24   {
25     return data().toString();
26   }*/
27
28   const QStringList& nestedCommands() const;
29   void setNestedCommands(const QStringList& myUnblockableCommands);
30
31   //! Connect the command to a slot
32   virtual void connectTo(const QObject* theResiver, const char* theSlot);
33
34 protected:
35   //! Creates a command representation widget dependently on parent widget type
36   virtual QWidget* createWidget(QWidget* theParent);
37
38 private:
39   bool myCheckable;
40   //! List of Ids of commands which WILL NOT be blocked when the command is on.
41   QStringList myNestedCommands;
42 };
43
44 #endif