Salome HOME
[MEDCalc] Use API from mesh support change and field interpolation
[modules/med.git] / src / MEDCalc / gui / ProcessingController.hxx
1 // Copyright (C) 2016  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 #ifndef PROCESSING_CONTROLLER_HXX
21 #define PROCESSING_CONTROLLER_HXX
22
23 #include "MEDCALCGUI.hxx"
24
25 #include "MEDEventListener_i.hxx"
26 #include <SALOMEconfig.h>
27 #include CORBA_CLIENT_HEADER(MEDDataManager)
28
29 #include <QObject>
30 #include <SalomeApp_Module.h>
31 #include <SALOME_AppStudyEditor.hxx>
32
33 #include "XmedDataModel.hxx"
34 #include "DlgChangeUnderlyingMesh.hxx"
35 #include "DlgInterpolateField.hxx"
36
37 typedef struct {
38   enum EventType {
39     EVENT_IMPORT_OBJECT,
40     EVENT_INTERPOLATE_FIELD,
41     EVENT_CHANGE_UNDERLYING_MESH
42   };
43   int eventtype;
44   int fieldId;
45   int meshId;
46   MEDCALC::InterpolationParameters interpParams;
47 } ProcessingEvent;
48
49 class MEDModule;
50
51 class MEDCALCGUI_EXPORT ProcessingController : public QObject {
52   Q_OBJECT
53
54 public:
55   ProcessingController(MEDModule* salomeModule);
56   ~ProcessingController();
57
58   void createActions();
59
60 public slots:
61   // Callback connected to dialog box validation signals
62   void OnChangeUnderlyingMeshInputValidated();
63   void OnInterpolateFieldInputValidated();
64
65 protected slots:
66   void OnChangeUnderlyingMesh();
67   void OnInterpolateField();
68
69 signals:
70   void processingSignal(const ProcessingEvent*);
71
72 private:
73   MEDModule* _salomeModule;
74   SALOME_AppStudyEditor* _studyEditor; // borrowed to MEDModule
75   DlgChangeUnderlyingMesh* _dlgChangeUnderlyingMesh;
76   DlgInterpolateField* _dlgInterpolateField;
77 };
78
79 #endif /* PROCESSING_CONTROLLER_HXX */