Salome HOME
bos #20430 [CEA 20428] FIELDS : improvement of simplified visualisations
[modules/med.git] / src / MEDCalc / gui / PresentationController.hxx
1 // Copyright (C) 2016-2021  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   static std::string presentationName2Type(const std::string& name);
60
61   void setConsoleDriver(XmedConsoleDriver* driver) { _consoleDriver = driver; };
62
63   void emitPresentationSignal(const PresentationEvent* event);
64
65 signals:
66   void presentationSignal(const PresentationEvent*);
67
68 protected slots:
69   void onVisualizeMeshView();
70   void onVisualizeScalarMap();
71   void onVisualizeContour();
72   void onVisualizeVectorField();
73   void onVisualizeSlices();
74   void onVisualizeDeflectionShape();
75   void onVisualizePointSprite();
76   void onVisualizePlot3D();
77   void onVisualizeStreamLines();
78   void onVisualizeCutSegment();
79
80   void onDeletePresentation();
81   void onParavisDump();
82
83   void onPresentationSelected(int presId, const QString& presType, const QString& presName);
84
85   void processWorkspaceEvent(const MEDCALC::MedEvent*);
86   void processPresentationEvent(const PresentationEvent*);
87
88 private:
89   void visualize(PresentationEvent::EventType);
90   void updateTreeViewWithNewPresentation(long dataId, long presentationId);
91   void updateTreeViewForPresentationRemoval(long presId);
92   void updateVisibilityState(long presId);
93   std::string _getIconName(const std::string&);
94   MEDWidgetHelper * findOrCreateWidgetHelper(MEDCALC::MEDPresentationManager_ptr presManager,
95                                              int presId, const std::string& type, const std::string& name);
96
97   QString getViewModePython() const;
98   QString getColorMapPython() const;
99   QString getScalarBarRangePython() const;
100   QString getMeshModePython(const int mode) const;
101   QString getSliceOrientationPython(const int orient) const;
102   QString getIntegrDirTypePython(const int intDir) const;
103   QString getContourComponentTypePython(const int comp) const;
104
105   void _dealWithReplaceMode();
106
107 private:
108   MEDModule* _salomeModule;
109   XmedConsoleDriver* _consoleDriver;   // the same as in WorkspaceController
110   SALOME_AppStudyEditor* _studyEditor; // borrowed to MEDModule
111
112   QDockWidget *_dockWidget;
113   WidgetPresentationParameters* _widgetPresentationParameters;
114
115   // GUI needs to talk directly to the pres manager to activate a view, get some params, print low level py dump, etc ...:
116   static MEDCALC::MEDPresentationManager_ptr _presManager;
117
118   // Key: presentation ID, value MEDPresentationHelper *
119   std::map<int, MEDWidgetHelper *> _presHelperMap;
120
121   MEDWidgetHelper * _currentWidgetHelper;
122 };
123
124 #endif /* PRESENTATION_CONTROLLER_HXX */