]> SALOME platform Git repositories - modules/med.git/blob - src/MEDCalc/gui/DatasourceController.hxx
Salome HOME
Add MED engine
[modules/med.git] / src / MEDCalc / gui / DatasourceController.hxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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 #ifndef DATASOURCE_CONTROLLER_H
23 #define DATASOURCE_CONTROLLER_H
24
25 #include "MEDEventListener_i.hxx"
26 #include <SALOMEconfig.h>
27 #include CORBA_CLIENT_HEADER(MEDDataManager)
28 //#include <StandardApp_Module.hxx>
29 #include <SalomeApp_Module.h>
30 #include <SALOME_AppStudyEditor.hxx>
31 #include <MEDPresentation.hxx>
32
33 #include "XmedDataModel.hxx"
34 #include "DlgChangeUnderlyingMesh.hxx"
35 #include "DlgInterpolateField.hxx"
36 #include "MEDCALCGUI.hxx"
37 //
38 // The DatasourceController defines data structures and classes to
39 // manage the usage of objects in the data space. The data space is
40 // technically the study, whose graphical representation is the
41 // objects browser.
42 //
43
44 // A datasource event is used by the DatasourceController to notify a
45 // job to the Workspace controller (Qt signal/slot pattern connected
46 // by the main controller MEDModule). The setting of attributes and
47 // usage of these attributes in the WorkspaceController depends on the
48 // event type. For example, in the case of a IMPORT event, we just
49 // have to transmit the object, while in the USE event we have to
50 // transmit an object AND an alias.
51 typedef struct {
52   enum EventType {
53     //
54     EVENT_IMPORT_OBJECT, // Simply import the object in the workspace
55     EVENT_USE_OBJECT,    // Import in the workspace AND define a proxy
56                          // variable in the tui console to use it
57     EVENT_VIEW_OBJECT_SCALAR_MAP,
58     // these ones forward actions to workspace (and then to python console)
59     EVENT_ADD_DATASOURCE,
60     EVENT_ADD_IMAGE_AS_DATASOURCE,
61     EVENT_ADD_PRESENTATION
62   };
63   int eventtype;
64   XmedDataObject * objectdata;
65   QString objectalias;
66 } DatasourceEvent;
67
68 class MEDModule;
69
70 //
71 // ==============================================================
72 // Datasource controller
73 // ==============================================================
74 //
75 class MEDCALCGUI_EXPORT DatasourceController: public QObject {
76   Q_OBJECT
77
78 public:
79   //DatasourceController(StandardApp_Module * salomeModule);
80   //DatasourceController(SalomeApp_Module * salomeModule);
81   DatasourceController(MEDModule * salomeModule);
82   ~DatasourceController();
83
84   void createActions();
85
86 public slots:
87   // Callback connected to dialog box validation signals
88   void OnChangeUnderlyingMeshInputValidated();
89   void OnInterpolateFieldInputValidated();
90   void processWorkspaceEvent(const MEDCALC::MedEvent * event);
91
92 signals:
93   void datasourceSignal(const DatasourceEvent * event);
94
95 protected slots:
96   void OnAddDatasource();
97   void OnAddImagesource();
98   void OnExpandField();
99   void OnVisualizeScalarMap();
100   void OnUseInWorkspace();
101   void OnChangeUnderlyingMesh();
102   void OnInterpolateField();
103
104 private:
105   void visualize(DatasourceEvent::EventType);
106   void addDatasource(const char* filename);
107   void updateTreeViewWithNewDatasource(const MEDCALC::DatasourceHandler*);
108   void updateTreeViewWithNewPresentation(long fieldId, long presentationId);
109
110 private:
111   //StandardApp_Module * _salomeModule;
112   MEDModule* _salomeModule;
113   SALOME_AppStudyEditor * _studyEditor;
114
115   DlgChangeUnderlyingMesh * _dlgChangeUnderlyingMesh;
116   DlgInterpolateField * _dlgInterpolateField;
117
118 };
119
120 #endif