Salome HOME
updated copyright message
[modules/yacs.git] / src / salomewrap / SalomeWrap_Module.hxx
index cebed00aeeff27dd88fa80b31fecdfd50c8427d7..378875ad50a4d618f045c5865c92d254b8a3fc05 100644 (file)
@@ -1,29 +1,33 @@
-//  Copyright (C) 2006-2008  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2023  CEA, EDF
 //
-//  This library is free software; you can redistribute it and/or
-//  modify it under the terms of the GNU Lesser General Public
-//  License as published by the Free Software Foundation; either
-//  version 2.1 of the License.
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
 //
-//  This library is distributed in the hope that it will be useful,
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-//  Lesser General Public License for more details.
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
-//  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 #ifndef _SALOMEWRAP_MODULE_HXX_
 #define _SALOMEWRAP_MODULE_HXX_
 
+#include "SalomeWrapExport.hxx"
+
 #include <SalomeApp_Module.h>
 #include <SALOMEconfig.h>
 
 #include <QGraphicsScene>
 #include <QGraphicsView>
+#include <QDockWidget>
 
 #include <map>
 
@@ -32,7 +36,7 @@ class QxScene_ViewWindow;
 
 class SalomeWrap_DataModel;
 
-class SalomeWrap_Module: public SalomeApp_Module
+class SALOMEWRAP_EXPORT SalomeWrap_Module: public SalomeApp_Module
 {
   Q_OBJECT
 
@@ -41,10 +45,10 @@ public:
 
   QxScene_ViewWindow* getNewWindow(QGraphicsScene *scene);
 
-  int AssociateViewToWindow(QGraphicsView* gView,
+  void AssociateViewToWindow(QGraphicsView* gView,
                             QxScene_ViewWindow* viewWindow);
 
-  int activeStudyId();
+  QDockWidget* objectBrowser();
 
   QAction* wCreateAction(const int id,
                          const QString& toolTip,
@@ -91,7 +95,8 @@ public:
                   const int groupId = -1,
                   const int index = -1);
 
-  int wCreateTool(const QString& name);
+  int wCreateTool(const QString& title,
+                 const QString& name = QString());
 
   int wCreateTool(const int actionId,
                   const int toolbarId, 
@@ -119,6 +124,7 @@ protected:
   virtual  CAM_DataModel* createDataModel();
 
   std::map<QGraphicsScene*, QxScene_ViewWindow*> _mapOfViewWindow;
+
 };
 
 #endif