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