Salome HOME
Merge branch 'V8_0_0_BR'
[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 <QtGui>
24 #include <QDockWidget>
25 #include "MEDCALCGUI.hxx"
26
27 #include "MEDEventListener_i.hxx"
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 typedef struct {
37   enum EventType {
38     EVENT_VIEW_OBJECT_CONTOUR,
39     EVENT_VIEW_OBJECT_DEFLECTION_SHAPE,
40     EVENT_VIEW_OBJECT_POINT_SPRITE,
41     EVENT_VIEW_OBJECT_SCALAR_MAP,
42     EVENT_VIEW_OBJECT_SLICES,
43     EVENT_VIEW_OBJECT_VECTOR_FIELD
44   };
45   int eventtype;
46   XmedDataObject* objectdata;
47 } PresentationEvent;
48
49 class MEDModule;
50
51 class MEDCALCGUI_EXPORT PresentationController : public QObject {
52   Q_OBJECT
53
54 public:
55   PresentationController(MEDModule* salomeModule);
56   ~PresentationController();
57
58   void createActions();
59
60   MEDCALC::MEDPresentationViewMode getSelectedViewMode();
61   MEDCALC::MEDPresentationColorMap getSelectedColorMap();
62
63   void showDockWidgets(bool isVisible);
64
65 signals:
66   void presentationSignal(const PresentationEvent*);
67
68 protected slots:
69   void OnVisualizeScalarMap();
70   void OnVisualizeContour();
71   void OnVisualizeVectorField();
72   void OnVisualizeSlices();
73   void OnVisualizeDeflectionShape();
74   void OnVisualizePointSprite();
75   void processWorkspaceEvent(const MEDCALC::MedEvent*);
76
77 private:
78   void visualize(PresentationEvent::EventType);
79   void updateTreeViewWithNewPresentation(long, long);
80   std::string _getIconName(const std::string&);
81
82 private:
83   MEDModule* _salomeModule;
84   SALOME_AppStudyEditor* _studyEditor; // borrowed to MEDModule
85   QDockWidget *_dockWidget;
86   WidgetPresentationParameters* _widgetPresentationParameters;
87 };
88
89 #endif /* PRESENTATION_CONTROLLER_HXX */