1 // Copyright (C) 2006-2014 CEA/DEN, EDF R&D
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, or (at your option) any later version.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #ifndef _SALOMEWRAP_MODULE_HXX_
21 #define _SALOMEWRAP_MODULE_HXX_
23 #include "SalomeWrapExport.hxx"
25 #include <SalomeApp_Module.h>
26 #include <SALOMEconfig.h>
28 #include <QGraphicsScene>
29 #include <QGraphicsView>
30 #include <QDockWidget>
34 class SalomeApp_Application;
35 class QxScene_ViewWindow;
37 class SalomeWrap_DataModel;
39 class SALOMEWRAP_EXPORT SalomeWrap_Module: public SalomeApp_Module
44 SalomeWrap_Module(const char* name);
46 QxScene_ViewWindow* getNewWindow(QGraphicsScene *scene);
48 int AssociateViewToWindow(QGraphicsView* gView,
49 QxScene_ViewWindow* viewWindow);
53 QDockWidget* objectBrowser();
55 QAction* wCreateAction(const int id,
56 const QString& toolTip,
59 const QString& status,
62 bool checkable = false,
64 const char* member =0);
66 int wCreateMenu(const QString& subMenu,
67 const int parentMenuId,
68 const int menuId = -1,
69 const int groupId = -1,
70 const int index = -1);
72 int wCreateMenu(const QString& subMenu,
73 const QString& parentMenu,
74 const int menuId = -1,
75 const int groupId = -1,
76 const int index = -1);
78 int wCreateMenu(const int actionId,
80 const int groupId = -1,
81 const int index = -1);
83 int wCreateMenu(const int actionId,
85 const int groupId = -1,
86 const int index = -1);
88 int wCreateMenu(QAction* action,
90 const int actionId = -1,
91 const int groupId = -1,
92 const int index = -1);
94 int wCreateMenu(QAction* action,
96 const int actionId = -1,
97 const int groupId = -1,
98 const int index = -1);
100 int wCreateTool(const QString& name);
102 int wCreateTool(const int actionId,
104 const int index = -1);
106 int wCreateTool(const int actionId,
107 const QString& toolbar,
108 const int index = -1);
110 int wCreateTool(QAction* action,
112 const int actionId = -1,
113 const int index = -1);
115 int wCreateTool(QAction* action,
116 const QString& toolbar,
117 const int actionId = -1,
118 const int index = -1);
120 static QAction* wSeparator();
122 SalomeWrap_DataModel* getDataModel();
125 virtual CAM_DataModel* createDataModel();
127 std::map<QGraphicsScene*, QxScene_ViewWindow*> _mapOfViewWindow;