Salome HOME
[MEDCalc] Multiple slices + other minor imps:
[modules/med.git] / src / MEDCalc / gui / MEDWidgetHelperContour.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 "MEDWidgetHelperContour.hxx"
21 #include "MEDPresentationContour.hxx"  // from component side.
22 #include "PresentationController.hxx"
23
24 #include <Basics_Utils.hxx>
25
26 #include <sstream>
27
28 MEDWidgetHelperContour::MEDWidgetHelperContour(const PresentationController * presController,
29                                                MEDCALC::MEDPresentationManager_ptr presManager, int presId,
30                                                const std::string & presName, WidgetPresentationParameters * paramW):
31   MEDWidgetHelper(presController, presManager, presId, presName, paramW),
32   _nbContours(-1)
33 {}
34
35 MEDWidgetHelperContour::~MEDWidgetHelperContour()
36 {}
37
38 void MEDWidgetHelperContour::loadParametersFromEngine()
39 {
40   MEDWidgetHelper::loadParametersFromEngine();
41   _nbContours = _presManager->getPresentationIntProperty(_presId, MEDPresentationContour::PROP_NB_CONTOUR.c_str());
42 }
43
44 void MEDWidgetHelperContour::updateWidget(bool connect)
45 {
46   MEDWidgetHelper::updateWidget(connect);
47   STDLOG("MEDWidgetHelperContour::udpateWidget() nbContour is " << _nbContours);
48
49   // Contour presentation needs the number of contours
50   _paramWidget->setNbContour(_nbContours);
51
52   // Connect combo box changes
53   if (connect)
54     {
55       QObject::connect( this, SIGNAL(presentationUpdateSignal(const PresentationEvent *)),
56                         _presController, SIGNAL(presentationSignal(const PresentationEvent *)) );
57       QObject::connect( _paramWidget, SIGNAL(spinBoxValueChanged(int)), this, SLOT(onNbContourChanged(int)) );
58     }
59 }
60
61 void MEDWidgetHelperContour::releaseWidget()
62 {
63   MEDWidgetHelper::releaseWidget();
64
65   QObject::disconnect( this, SIGNAL(presentationUpdateSignal(const PresentationEvent *)),
66                        _presController, SIGNAL(presentationSignal(const PresentationEvent *)) );
67 //  QObject::disconnect( _paramWidget, SIGNAL(comboCompoIndexChanged(int)), this, SLOT(onComponentChanged(int)) );
68   QObject::disconnect( _paramWidget, SIGNAL(spinBoxValueChanged(int)), this, SLOT(onNbContourChanged(int)) );
69 }
70
71 void MEDWidgetHelperContour::onNbContourChanged(int nbContour)
72 {
73   STDLOG("MEDWidgetHelperContour::onNbContourChanged");
74   PresentationEvent* event = new PresentationEvent();
75   event->eventtype = PresentationEvent::EVENT_CHANGE_NB_CONTOUR;
76   event->presentationId = _presId;
77   event->anInteger = nbContour;
78
79   emit presentationUpdateSignal(event); // --> PresentationController::processPresentationEvent
80 }
81