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