Salome HOME
fix conflict: ctest requires SUBDIRS, not ADD_SUBDIRECTORY directives
[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
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(MEDModule * salomeModule);
80   ~DatasourceController();
81
82   void createActions();
83
84 public slots:
85   // Callback connected to dialog box validation signals
86   void OnChangeUnderlyingMeshInputValidated();
87   void OnInterpolateFieldInputValidated();
88   void processWorkspaceEvent(const MEDCALC::MedEvent * event);
89
90 signals:
91   void datasourceSignal(const DatasourceEvent * event);
92
93 protected slots:
94   void OnAddDatasource();
95   void OnAddImagesource();
96   void OnExpandField();
97   void OnVisualizeScalarMap();
98   void OnUseInWorkspace();
99   void OnChangeUnderlyingMesh();
100   void OnInterpolateField();
101
102 private:
103   void visualize(DatasourceEvent::EventType);
104   void addDatasource(const char* filename);
105   void updateTreeViewWithNewDatasource(const MEDCALC::DatasourceHandler*);
106   void updateTreeViewWithNewPresentation(long fieldId, long presentationId);
107
108 private:
109   MEDModule* _salomeModule;
110   SALOME_AppStudyEditor * _studyEditor;
111
112   DlgChangeUnderlyingMesh * _dlgChangeUnderlyingMesh;
113   DlgInterpolateField * _dlgInterpolateField;
114
115 };
116
117 #endif