Salome HOME
Merge from V6_main 11/02/2013
[modules/med.git] / src / MEDOP / gui / MEDOPModule.cxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // Author : Guillaume Boulant (EDF) 
24
25 #include "MEDOPModule.hxx"
26 #include "QtHelper.hxx"
27
28 #include <SALOMEconfig.h>
29 #include CORBA_CLIENT_HEADER(SALOMEDS)
30
31 #include "MEDOPFactoryClient.hxx"
32
33 MEDOPModule::MEDOPModule() :
34   StandardApp_Module()
35 {
36   // Note also that we can't use the getApp() function here because
37   // the initialize(...) function has not been called yet.
38
39   this->setModuleName("MED");
40 }
41
42 //
43 // =====================================================================
44 // This part implements the mandatory interface
45 // =====================================================================
46 //
47
48 /*!
49  * Returns the engine of the XMED module, i.e. the SALOME component
50  * associated to the study root of the module.
51  */
52 Engines::EngineComponent_ptr MEDOPModule::getEngine() const {
53   return MEDOPFactoryClient::getFactory();
54 }
55
56 /*!
57  * Returns the base file name of the image used for the icon's
58  * module. The file is supposed to be located in the resource
59  * directory of the module.
60  */
61 QString MEDOPModule::studyIconName() {
62   return QString("MEDOP_small.png");
63 }
64
65 //
66 // =====================================================================
67 // This part add custom widgets (a dockwidget containing a tree view
68 // in this example) and add special actions in the toolbox of the
69 // module.
70 // =====================================================================
71 //
72
73 /*!
74  * This function implements the interface StandardApp_Module. It
75  * creates the widgets specific for this module, in particular the
76  * workspace widget and the dataspace widget.
77  */
78 void MEDOPModule::createModuleWidgets() {
79   _datasourceController = new DatasourceController(this);
80   _workspaceController = new WorkspaceController(this);
81   _xmedDataModel  = new XmedDataModel();
82   _workspaceController->setDataModel(_xmedDataModel);
83
84   connect(_datasourceController, SIGNAL(datasourceSignal(const DatasourceEvent *)),
85           _workspaceController, SLOT(processDatasourceEvent(const DatasourceEvent *)));
86 }
87
88 bool MEDOPModule::activateModule( SUIT_Study* theStudy )
89 {
90   bool bOk = StandardApp_Module::activateModule( theStudy );
91   _workspaceController->showDockWidgets(true);
92   this->setDockLayout(StandardApp_Module::DOCKLAYOUT_LEFT_VLARGE);
93   return bOk;
94 }
95 bool MEDOPModule::deactivateModule( SUIT_Study* theStudy )
96 {
97   _workspaceController->showDockWidgets(false);
98   this->unsetDockLayout();
99   return StandardApp_Module::deactivateModule( theStudy );
100 }
101
102 void MEDOPModule::createModuleActions() {
103   // Creating actions concerning the dataspace
104   _datasourceController->createActions();
105   // Creating actions concerning the workspace
106   _workspaceController->createActions();
107 }