Salome HOME
Sources formated according to the codeing standards
[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,
20                bool isCheckable = false);
21   ~XGUI_Command();
22
23   //VSV: Don't use this method for compatibility with SALOME. Use the construction below
24   /*virtual QString id() const
25    {
26    return data().toString();
27    }*/
28
29   const QStringList& nestedCommands() const;
30   void setNestedCommands(const QStringList& myUnblockableCommands);
31
32   //! Connect the command to a slot
33   virtual void connectTo(const QObject* theResiver, const char* theSlot);
34
35  protected:
36   //! Creates a command representation widget dependently on parent widget type
37   virtual QWidget* createWidget(QWidget* theParent);
38
39  private:
40   bool myCheckable;
41   //! List of Ids of commands which WILL NOT be blocked when the command is on.
42   QStringList myNestedCommands;
43 };
44
45 #endif