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