Salome HOME
[MEDCalc] Presentation removal
[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   };
44   int eventtype;
45   XmedDataObject* objectdata;
46 } PresentationEvent;
47
48 class MEDModule;
49 class QDockWidget;
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   void updateTreeViewForPresentationRemoval(long);
81   std::string _getIconName(const std::string&);
82
83 private:
84   MEDModule* _salomeModule;
85   SALOME_AppStudyEditor* _studyEditor; // borrowed to MEDModule
86   QDockWidget *_dockWidget;
87   WidgetPresentationParameters* _widgetPresentationParameters;
88 };
89
90 #endif /* PRESENTATION_CONTROLLER_HXX */