Salome HOME
[MEDCalc] Simplifying IDL enum names.
[modules/med.git] / src / MEDCalc / gui / MEDWidgetHelper.cxx
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 #include "MEDWidgetHelper.hxx"
21 #include "PresentationController.hxx"
22 #include "MEDPresentation.hxx"
23 #include <Basics_Utils.hxx>
24
25 MEDWidgetHelper::MEDWidgetHelper(const PresentationController * presController,
26                                  MEDCALC::MEDPresentationManager_ptr presManager, int presId,
27                                  const std::string & presName,  WidgetPresentationParameters * paramWidget):
28   _presController(presController),
29   _presManager(presManager),
30   _presId(presId),
31   _presName(presName),
32   _paramWidget(paramWidget)
33 {}
34
35 MEDWidgetHelper::~MEDWidgetHelper()
36 {}
37
38 void MEDWidgetHelper::loadParametersFromEngine()
39 {
40   _selectedCompo = _presManager->getPresentationIntProperty(_presId, MEDPresentation::PROP_SELECTED_COMPONENT.c_str());
41   _nbCompos = _presManager->getPresentationIntProperty(_presId, MEDPresentation::PROP_NB_COMPONENTS.c_str());
42   _allCompos.clear();
43   _allCompos.reserve(_nbCompos);
44   for (int i = 0; i < _nbCompos; i++)
45     {
46       std::ostringstream oss;
47       oss << MEDPresentation::PROP_COMPONENT << i;
48       _allCompos.push_back(_presManager->getPresentationStringProperty(_presId, oss.str().c_str()));
49     }
50   _colorMap = static_cast<MEDCALC::ColorMapType>(
51       _presManager->getPresentationIntProperty(_presId, MEDPresentation::PROP_COLOR_MAP.c_str()));
52   _scalarBarRange = static_cast<MEDCALC::ScalarBarRangeType>(
53       _presManager->getPresentationIntProperty(_presId, MEDPresentation::PROP_SCALAR_BAR_RANGE.c_str()));
54 }
55
56 void MEDWidgetHelper::udpateWidget()
57 {
58   // Set presentation name
59   _paramWidget->setPresName(_presName);
60
61   // Show dynamic part of the widget (i.e. everything else than color map and scalar bar range)
62   _paramWidget->toggleWidget(true);
63
64   loadParametersFromEngine();
65
66   // Set properly color map and scalar bar range
67   _paramWidget->setColorMap(_colorMap);
68   _paramWidget->setScalarBarRange(_scalarBarRange);
69
70   QObject::connect( _paramWidget, SIGNAL(comboScalarBarRangeIndexChanged(int)), this, SLOT(onScalarBarRangeChanged(int)) );
71   QObject::connect( _paramWidget, SIGNAL(comboColorMapIndexChanged(int)), this, SLOT(onColorMapChanged(int)) );
72 }
73
74 void MEDWidgetHelper::releaseWidget()
75 {
76   QObject::disconnect( _paramWidget, SIGNAL(comboScalarBarRangeIndexChanged(int)), this, SLOT(onScalarBarRangeChanged(int)) );
77   QObject::disconnect( _paramWidget, SIGNAL(comboColorMapIndexChanged(int)), this, SLOT(onColorMapChanged(int)) );
78
79   // Reset default for color map and scalar bar range
80   _paramWidget->setColorMap(MEDCALC::COLOR_MAP_DEFAULT);
81   _paramWidget->setScalarBarRange(MEDCALC::SCALAR_BAR_RANGE_DEFAULT);
82 }
83
84 void MEDWidgetHelper::onComponentChanged(int idx)
85 {
86   STDLOG("MEDWidgetHelper::onComponentChanged");
87   PresentationEvent* event = new PresentationEvent();
88   event->eventtype = PresentationEvent::EVENT_CHANGE_COMPONENT;
89   event->presentationId = _presId;
90   event->anInteger = idx;
91   event->aString = _paramWidget->getComponent();
92
93   emit presentationUpdateSignal(event); // --> PresentationController::processPresentationEvent
94 }
95
96 void MEDWidgetHelper::onColorMapChanged(int idx)
97 {
98   STDLOG("MEDWidgetHelper::onColorMapChanged");
99   PresentationEvent* event = new PresentationEvent();
100   event->eventtype = PresentationEvent::EVENT_CHANGE_COLORMAP;
101   event->presentationId = _presId;
102   // The actual selected item in the combo list is retrieved by the workspace controller _getColorMap()
103 //  event->anInteger = idx;
104
105   emit presentationUpdateSignal(event); // --> PresentationController::processPresentationEvent
106 }
107
108 void MEDWidgetHelper::onScalarBarRangeChanged(int idx)
109 {
110   STDLOG("MEDWidgetHelper::onScalarBarRangeChanged");
111   PresentationEvent* event = new PresentationEvent();
112   event->eventtype = PresentationEvent::EVENT_CHANGE_TIME_RANGE;
113   event->presentationId = _presId;
114   event->anInteger = idx;
115   // The actual selected item in the combo list is retrieved by the workspace controller _getScalarBarRange()
116   //event->aString = _paramWidget->getScalarBarRange();
117
118   emit presentationUpdateSignal(event); // --> PresentationController::processPresentationEvent
119 }