Salome HOME
Issue #101: Fixed editing of nested features
[modules/shaper.git] / src / XGUI / XGUI_MainMenu.h
1 #ifndef XGUI_MainMenu_H
2 #define XGUI_MainMenu_H
3
4 #include "XGUI.h"
5 #include <QObject>
6 #include <QList>
7 #include <QMap>
8 #include <QWidget>
9
10 class XGUI_Command;
11 class XGUI_MainWindow;
12 class XGUI_Workbench;
13 class XGUI_MenuGroupPanel;
14
15 class QTabWidget;
16 class QLabel;
17 class QAction;
18 class QDockWidget;
19 class QEvent;
20
21 /**\class XGUI_MainMenu
22  * \ingroup GUI
23  * \brief Class for creation of main menu (set of workbenches)
24  */
25 class XGUI_EXPORT XGUI_MainMenu : public QWidget
26 {
27 Q_OBJECT
28
29  public:
30   XGUI_MainMenu(XGUI_MainWindow *parent);
31   virtual ~XGUI_MainMenu();
32
33   //! Creates and adds a new workbench (menu group) with the given name and returns it.
34   XGUI_Workbench* addWorkbench(const QString& theId, const QString& theText = "");
35
36   //! Returns workbench (menu group) by the given name.
37   XGUI_Workbench* findWorkbench(const QString& theId) const;
38
39   //! Returns General page (predefined workbench)
40   XGUI_MenuGroupPanel* generalPage() const
41   {
42     return myGeneralPage;
43   }
44
45   //! Rerturns last created workbench in dock widget container
46   //QDockWidget* getLastDockWindow() const;
47
48   //! Returns already created command by its ID
49   XGUI_Command* feature(const QString& theId) const;
50
51   //! Returns list of created commands
52   QList<XGUI_Command*> features() const;
53
54   virtual bool eventFilter(QObject *theWatched, QEvent *theEvent);
55
56   //! Displays given console as a tab in the workbench
57   void insertConsole(QWidget*);
58   //! Removes already created tab with python console
59   void removeConsole();
60
61   //! Defines size of menu item.
62   //! In the future this value should be extracted from the preferences.
63   int menuItemSize() const;
64   //! Defines number of menu item rows.
65   //! In the future this value should be extracted from the preferences.
66   int menuItemRowsCount() const;
67   //! Defines height of the main menu. (Number of rows * row height)
68   int menuHeight() const;
69
70   void updateFromResources();
71
72  private:
73   XGUI_MainWindow* myDesktop;
74   QTabWidget* myMenuTabs;
75   XGUI_MenuGroupPanel* myGeneralPage;
76   QList<XGUI_Workbench*> myWorkbenches;
77
78   QMap<XGUI_Command*, bool> myCommandState;
79 };
80
81 #endif