Salome HOME
Merge from V6_main 01/04/2013
[modules/med.git] / src / MEDOP / gui / MEDOPModule.cxx
1 // Copyright (C) 2007-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 // Author : Guillaume Boulant (EDF) 
21
22 #include "MEDOPModule.hxx"
23 #include "QtHelper.hxx"
24
25 #include <SALOMEconfig.h>
26 #include CORBA_CLIENT_HEADER(SALOMEDS)
27
28 #include "MEDOPFactoryClient.hxx"
29
30 MEDOPModule::MEDOPModule() :
31   StandardApp_Module()
32 {
33   // Note also that we can't use the getApp() function here because
34   // the initialize(...) function has not been called yet.
35
36   this->setModuleName("MED");
37 }
38
39 //
40 // =====================================================================
41 // This part implements the mandatory interface
42 // =====================================================================
43 //
44
45 /*!
46  * Returns the engine of the XMED module, i.e. the SALOME component
47  * associated to the study root of the module.
48  */
49 Engines::EngineComponent_ptr MEDOPModule::getEngine() const {
50   return MEDOPFactoryClient::getFactory();
51 }
52
53 /*!
54  * Returns the base file name of the image used for the icon's
55  * module. The file is supposed to be located in the resource
56  * directory of the module.
57  */
58 QString MEDOPModule::studyIconName() {
59   return QString("MEDOP_small.png");
60 }
61
62 //
63 // =====================================================================
64 // This part add custom widgets (a dockwidget containing a tree view
65 // in this example) and add special actions in the toolbox of the
66 // module.
67 // =====================================================================
68 //
69
70 /*!
71  * This function implements the interface StandardApp_Module. It
72  * creates the widgets specific for this module, in particular the
73  * workspace widget and the dataspace widget.
74  */
75 void MEDOPModule::createModuleWidgets() {
76   _datasourceController = new DatasourceController(this);
77   _workspaceController = new WorkspaceController(this);
78   _xmedDataModel  = new XmedDataModel();
79   _workspaceController->setDataModel(_xmedDataModel);
80
81   connect(_datasourceController, SIGNAL(datasourceSignal(const DatasourceEvent *)),
82     _workspaceController, SLOT(processDatasourceEvent(const DatasourceEvent *)));
83 }
84
85 bool MEDOPModule::activateModule( SUIT_Study* theStudy )
86 {
87   bool bOk = StandardApp_Module::activateModule( theStudy );
88   _workspaceController->showDockWidgets(true);
89   this->setDockLayout(StandardApp_Module::DOCKLAYOUT_LEFT_VLARGE);
90   return bOk;
91 }
92 bool MEDOPModule::deactivateModule( SUIT_Study* theStudy )
93 {
94   _workspaceController->showDockWidgets(false);
95   this->unsetDockLayout();
96   return StandardApp_Module::deactivateModule( theStudy );
97 }
98
99 void MEDOPModule::createModuleActions() {
100   // Creating actions concerning the dataspace
101   _datasourceController->createActions();
102   // Creating actions concerning the workspace
103   _workspaceController->createActions();
104 }