Salome HOME
[MEDCalc]: deletion of an existing presentation
[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 typedef struct {
36   enum EventType {
37     EVENT_VIEW_OBJECT_CONTOUR,
38     EVENT_VIEW_OBJECT_DEFLECTION_SHAPE,
39     EVENT_VIEW_OBJECT_POINT_SPRITE,
40     EVENT_VIEW_OBJECT_SCALAR_MAP,
41     EVENT_VIEW_OBJECT_SLICES,
42     EVENT_VIEW_OBJECT_VECTOR_FIELD,
43     EVENT_DELETE_PRESENTATION
44   };
45   int eventtype;
46   XmedDataObject* objectdata;
47 } PresentationEvent;
48
49 class MEDModule;
50 class QDockWidget;
51
52 class MEDCALCGUI_EXPORT PresentationController : public QObject {
53   Q_OBJECT
54
55 public:
56   PresentationController(MEDModule* salomeModule);
57   ~PresentationController();
58
59   void createActions();
60
61   MEDCALC::MEDPresentationViewMode getSelectedViewMode();
62   MEDCALC::MEDPresentationColorMap getSelectedColorMap();
63
64   void showDockWidgets(bool isVisible);
65
66 signals:
67   void presentationSignal(const PresentationEvent*);
68
69 protected slots:
70   void OnVisualizeScalarMap();
71   void OnVisualizeContour();
72   void OnVisualizeVectorField();
73   void OnVisualizeSlices();
74   void OnVisualizeDeflectionShape();
75   void OnVisualizePointSprite();
76
77   void OnDeletePresentation();
78
79   void processWorkspaceEvent(const MEDCALC::MedEvent*);
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
87 private:
88   MEDModule* _salomeModule;
89   SALOME_AppStudyEditor* _studyEditor; // borrowed to MEDModule
90
91   QDockWidget *_dockWidget;
92   WidgetPresentationParameters* _widgetPresentationParameters;
93 };
94
95 #endif /* PRESENTATION_CONTROLLER_HXX */