Salome HOME
3be908792422bc615f555073b0c96bc855d37718
[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   //! Size of menu item
30   //TODO(sbh, vsv): Move to the settings
31   enum ItemSize {
32     Small = 20,
33     Medium = 25,
34     Large = 30
35   };
36
37 public:
38   XGUI_MainMenu(XGUI_MainWindow *parent);
39   virtual ~XGUI_MainMenu();
40
41   //! Creates and adds a new workbench (menu group) with the given name and returns it.
42   XGUI_Workbench* addWorkbench(const QString& theId, const QString& theText = "");
43
44   //! Returns workbench (menu group) by the given name.
45   XGUI_Workbench* findWorkbench(const QString& theId)  const;
46
47   //! Returns General page (predefined workbench)
48   XGUI_MenuGroupPanel* generalPage() const { return myGeneralPage; }
49
50   //! Rerturns last created workbench in dock widget container
51   //QDockWidget* getLastDockWindow() const;
52
53   //! Returns already created command by its ID
54   XGUI_Command* feature(const QString& theId) const;
55
56   //! Returns list of created commands
57   QList<XGUI_Command*> features() const;
58
59   QList<XGUI_Workbench*> workbenches() const;
60
61   virtual bool eventFilter(QObject *theWatched, QEvent *theEvent);
62
63   //! Displays given console as a tab in the workbench
64   void insertConsole(QWidget*);
65   //! Removes already created tab with python console
66   void removeConsole();
67
68   int menuItemSize() const;
69   int menuItemRowsCount() const;
70   int menuHeight() const;
71
72 private:
73   XGUI_MainWindow* myDesktop;
74   QTabWidget* myMenuTabs;
75   XGUI_MenuGroupPanel* myGeneralPage;
76
77   QMap<XGUI_Command*, bool> myCommandState;
78 };
79
80 #endif