Salome HOME
Initial commit
[modules/jobmanager.git] / src / wrappers / BL_MainWindows_Qt.hxx
1 //  Copyright (C) 2009 CEA/DEN, EDF R&D
2 //
3 //  This library is free software; you can redistribute it and/or
4 //  modify it under the terms of the GNU Lesser General Public
5 //  License as published by the Free Software Foundation; either
6 //  version 2.1 of the License.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //  Lesser General Public License for more details.
12 //
13 //  You should have received a copy of the GNU Lesser General Public
14 //  License along with this library; if not, write to the Free Software
15 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18
19
20 #ifndef _BL_MAINWINDOWS_QT_HXX_
21 #define _BL_MAINWINDOWS_QT_HXX_
22
23 #include "BL_MainWindows_Wrap.hxx"
24 #include <map>
25
26 namespace BL
27 {
28   class MainWindows_Qt : public MainWindows_Wrap, public QObject
29   {
30     public:
31       MainWindows_Qt(QMainWindow * main_window);
32       virtual ~MainWindows_Qt();
33
34       virtual QMainWindow * getDockParent();
35       virtual QMainWindow * getTabParent();
36
37       virtual QAction* createAction(const QString& toolTip,
38                                     const QIcon& icon,
39                                     const QString& menu,
40                                     const QString& status,
41                                     const int shortCut,
42                                     QObject* parent =0,
43                                     bool checkable = false,
44                                     QObject* receiver =0,
45                                     const char* member =0);
46
47       virtual int createTopMenu(const QString & menu_name);
48       virtual void addActionToMenu(QAction * action, int menu_id);
49
50     protected:
51       QMainWindow * _main_window;
52       int _menuId;
53       int getMenuId() { return _menuId++; }
54       std::map<int, QMenu*> _menu_map;
55   };
56 }
57
58 #endif