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