Salome HOME
Merge branch 'V9_2_2_BR'
[modules/med.git] / src / MEDCalc / gui / PresentationController.hxx
1 // Copyright (C) 2016-2019  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 PRESENTATION_CONTROLLER_HXX
21 #define PRESENTATION_CONTROLLER_HXX
22
23 #include "MEDEventListener_i.hxx"
24
25 #include <QObject>
26 #include "MEDCALCGUI.hxx"
27
28 #include <SALOMEconfig.h>
29 #include CORBA_SERVER_HEADER(MEDPresentationManager)
30 #include CORBA_CLIENT_HEADER(MEDDataManager)
31
32 #include "XmedDataModel.hxx"
33 #include <SALOME_AppStudyEditor.hxx>
34 #include "WidgetPresentationParameters.hxx"
35
36 #include "PresentationEvent.hxx"
37
38 class MEDModule;
39 class QDockWidget;
40 class MEDWidgetHelper;
41 class XmedConsoleDriver;
42
43 class MEDCALCGUI_EXPORT PresentationController : public QObject {
44   Q_OBJECT
45
46 public:
47   PresentationController(MEDModule* salomeModule);
48   ~PresentationController();
49
50   void createActions();
51
52   MEDCALC::ViewModeType getSelectedViewMode() const;
53   MEDCALC::ColorMapType getSelectedColorMap() const;
54   MEDCALC::ScalarBarRangeType getSelectedScalarBarRange() const;
55
56   void showDockWidgets(bool isVisible);
57
58   std::string getPresTypeFromWidgetHelper(int presId) const;
59
60   void setConsoleDriver(XmedConsoleDriver* driver) { _consoleDriver = driver; };
61
62 signals:
63   void presentationSignal(const PresentationEvent*);
64
65 protected slots:
66   void onVisualizeMeshView();
67   void onVisualizeScalarMap();
68   void onVisualizeContour();
69   void onVisualizeVectorField();
70   void onVisualizeSlices();
71   void onVisualizeDeflectionShape();
72   void onVisualizePointSprite();
73
74   void onDeletePresentation();
75   void onParavisDump();
76
77   void onPresentationSelected(int presId, const QString& presType, const QString& presName);
78
79   void processWorkspaceEvent(const MEDCALC::MedEvent*);
80   void processPresentationEvent(const PresentationEvent*);
81
82 private:
83   void visualize(PresentationEvent::EventType);
84   void updateTreeViewWithNewPresentation(long dataId, long presentationId);
85   void updateTreeViewForPresentationRemoval(long presId);
86   std::string _getIconName(const std::string&);
87   MEDWidgetHelper * findOrCreateWidgetHelper(MEDCALC::MEDPresentationManager_ptr presManager,
88                                              int presId, const std::string& type, const std::string& name);
89
90   QString getViewModePython() const;
91   QString getColorMapPython() const;
92   QString getScalarBarRangePython() const;
93   QString getMeshModePython(const int mode) const;
94   QString getSliceOrientationPython(const int orient) const;
95
96   void _dealWithReplaceMode();
97
98 private:
99   MEDModule* _salomeModule;
100   XmedConsoleDriver* _consoleDriver;   // the same as in WorkspaceController
101   SALOME_AppStudyEditor* _studyEditor; // borrowed to MEDModule
102
103   QDockWidget *_dockWidget;
104   WidgetPresentationParameters* _widgetPresentationParameters;
105
106   // GUI needs to talk directly to the pres manager to activate a view, get some params, print low level py dump, etc ...:
107   static MEDCALC::MEDPresentationManager_ptr _presManager;
108
109   // Key: presentation ID, value MEDPresentationHelper *
110   std::map<int, MEDWidgetHelper *> _presHelperMap;
111
112   MEDWidgetHelper * _currentWidgetHelper;
113 };
114
115 #endif /* PRESENTATION_CONTROLLER_HXX */