Salome HOME
98e44e8e5aba9435c1d5cf869bc205e700d609d1
[modules/med.git] / src / MEDCalc / gui / MEDWidgetHelperContour.cxx
1 // Copyright (C) 2016-2021  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   _contourComponent(0)
34 {}
35
36 MEDWidgetHelperContour::~MEDWidgetHelperContour()
37 {}
38
39 void MEDWidgetHelperContour::loadParametersFromEngine()
40 {
41   MEDWidgetHelper::loadParametersFromEngine();
42   _nbContours = _presManager->getPresentationIntProperty(_presId, MEDPresentationContour::PROP_NB_CONTOUR.c_str());
43   _contourComponent = _presManager->getPresentationIntProperty(_presId, MEDPresentationContour::PROB_CONTOUR_COMPONENT_ID.c_str());
44
45 }
46
47 void MEDWidgetHelperContour::updateWidget(bool connect)
48 {
49   MEDWidgetHelper::updateWidget(connect);
50   STDLOG("MEDWidgetHelperContour::udpateWidget() nbContour is " << _nbContours);
51
52   // Contour presentation needs the number of contours
53   _paramWidget->setNbContour(_nbContours);
54   _paramWidget->setContourComponents(_allCompos, _contourComponent);
55
56   // Connect combo box changes
57   if (connect)
58     {
59       QObject::connect( this, SIGNAL(presentationUpdateSignal(const PresentationEvent *)),
60                         _presController, SIGNAL(presentationSignal(const PresentationEvent *)) );
61       QObject::connect( _paramWidget, SIGNAL(spinBoxValueChanged(int)), this, SLOT(onNbContourChanged(int)) );
62       QObject::connect( _paramWidget, SIGNAL(comboContCompIndexChanged(int)), this, SLOT(onContourComponentTypeChanged(int)) );
63     }
64   if(_nbCompos == 1)
65     _paramWidget->hideContourComponent();
66 }
67
68 void MEDWidgetHelperContour::releaseWidget()
69 {
70   MEDWidgetHelper::releaseWidget();
71
72   QObject::disconnect( this, SIGNAL(presentationUpdateSignal(const PresentationEvent *)),
73                        _presController, SIGNAL(presentationSignal(const PresentationEvent *)) );
74   QObject::disconnect( _paramWidget, SIGNAL(spinBoxValueChanged(int)), this, SLOT(onNbContourChanged(int)) );
75   QObject::disconnect( _paramWidget, SIGNAL(comboContCompIndexChanged(int)), this, SLOT(onContourComponentTypeChanged(int)) );
76 }
77
78 void MEDWidgetHelperContour::onNbContourChanged(int nbContour)
79 {
80   STDLOG("MEDWidgetHelperContour::onNbContourChanged");
81   PresentationEvent* event = new PresentationEvent();
82   event->eventtype = PresentationEvent::EVENT_CHANGE_NB_CONTOUR;
83   event->presentationId = _presId;
84   event->anInteger = nbContour;
85
86   emit presentationUpdateSignal(event); // --> PresentationController::processPresentationEvent
87 }
88
89 void MEDWidgetHelperContour::onContourComponentTypeChanged(int index)
90 {
91   STDLOG("MEDWidgetHelperContour::onContourComponentTypeChanged");
92   PresentationEvent* event = new PresentationEvent();
93   event->eventtype = PresentationEvent::EVENT_CHANGE_CONTOUR_COMPONENT;
94   event->presentationId = _presId;
95   event->anInteger = index;
96   event->aString = _paramWidget->getContourComponent();
97
98   emit presentationUpdateSignal(event); // --> PresentationController::processPresentationEvent
99 }