Salome HOME
Merge branch 'V7_dev'
[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_PROCESS_INTERPOLATE_FIELD,
41     EVENT_PROCESS_CHANGE_UNDERLYING_MESH
42   };
43   int eventtype;
44   XmedDataObject* objectdata;
45 } ProcessingEvent;
46
47 class MEDModule;
48
49 class MEDCALCGUI_EXPORT ProcessingController : public QObject {
50   Q_OBJECT
51
52 public:
53   ProcessingController(MEDModule* salomeModule);
54   ~ProcessingController();
55
56   void createActions();
57
58 public slots:
59   // Callback connected to dialog box validation signals
60   void OnChangeUnderlyingMeshInputValidated();
61   void OnInterpolateFieldInputValidated();
62
63 protected slots:
64   void OnChangeUnderlyingMesh();
65   void OnInterpolateField();
66
67 signals:
68   void processingSignal(const ProcessingEvent*);
69
70 private:
71   MEDModule* _salomeModule;
72   SALOME_AppStudyEditor* _studyEditor; // borrowed to MEDModule
73   DlgChangeUnderlyingMesh* _dlgChangeUnderlyingMesh;
74   DlgInterpolateField* _dlgInterpolateField;
75 };
76
77 #endif /* PROCESSING_CONTROLLER_HXX */