Salome HOME
3d16e980842b458f0b9ed39e2689ad36fbe3b12d
[modules/jobmanager.git] / src / wrappers / BL_MainWindows_Wrap.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_WRAP_HXX_
21 #define _BL_MAINWINDOWS_WRAP_HXX_
22
23 #include <QtGui>
24 #include "BL_Traces.hxx"
25
26 namespace BL
27 {
28   class MainWindows_Wrap
29   {
30     
31     public:
32       MainWindows_Wrap() {}
33       virtual ~MainWindows_Wrap() {}
34
35       virtual QMainWindow * getDockParent() = 0;
36       virtual QMainWindow * getTabParent()  = 0;
37
38       virtual QAction* createAction(const QString& toolTip,
39                                     const QIcon& icon,
40                                     const QString& menu,
41                                     const QString& status,
42                                     const int shortCut,
43                                     QObject* parent =0,
44                                     bool checkable = false,
45                                     QObject* receiver =0,
46                                     const char* member =0) = 0;
47
48       virtual int createTopMenu(const QString & menu_name) = 0;
49       virtual void addActionToMenu(QAction * action, int menu_id) = 0;
50
51   };
52 }
53
54 #endif