]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Fucntion createModule moved from VisuGUI.cxx to VisuGUI_Factory.cxx
authorouv <ouv@opencascade.com>
Wed, 10 Aug 2005 14:26:48 +0000 (14:26 +0000)
committerouv <ouv@opencascade.com>
Wed, 10 Aug 2005 14:26:48 +0000 (14:26 +0000)
in order to provide a way to customize VisuGUI module.

src/VISUGUI/Makefile.in
src/VISUGUI/VisuGUI.cxx
src/VISUGUI/VisuGUI_Factory.cxx [new file with mode: 0644]

index 3551f99f715cf32ba6e03aedf6b4a933bdff4aec..b0c97a00cce9f6b33e163cdd7e237de8b2ec8217 100644 (file)
@@ -48,6 +48,7 @@ LIB = libVISU.la
 #LIB_MOC =     VisuGUI_SweepPrefDlg.h
 
 LIB_SRC =      VisuGUI.cxx \
+               VisuGUI_Factory.cxx \
                VisuGUI_Selection.cxx \
                VisuGUI_Tools.cxx \
                VisuGUI_PopupTools.cxx \
index 0f7c14a64c28007537aa8be294e526a72a407160..925841c21ad55ea5cfb6bcaafbaaf956f74b7dc6 100644 (file)
@@ -2754,7 +2754,7 @@ void VisuGUI::studyActivated()
   GetVisuGen(this)->SetCurrentStudy(GetDSStudy(GetCStudy(GetAppStudy(this))));
 }
 
-
+/*
 extern "C" {
   CAM_Module*
   createModule()
@@ -2762,7 +2762,7 @@ extern "C" {
     return new VisuGUI();
   }
 }
-
+*/
 void VisuGUI::createPreferences()
 {
   int sbarTab = addPreference( tr( "VISU_SCALAR_BAR" ) );
diff --git a/src/VISUGUI/VisuGUI_Factory.cxx b/src/VISUGUI/VisuGUI_Factory.cxx
new file mode 100644 (file)
index 0000000..24ea841
--- /dev/null
@@ -0,0 +1,40 @@
+//  VISU VISUGUI : GUI of VISU component
+//
+//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+//  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 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
+//
+//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
+//
+//
+//
+//  File   : VisuGUI_Factory.cxx
+//  Author : 
+//  Module : VISU
+//  $Header$
+
+#include "VisuGUI.h"
+
+#include "CAM_Module.h"
+
+extern "C" {
+  CAM_Module*
+  createModule()
+  {
+    return new VisuGUI();
+  }
+}
+