Salome HOME
Copyright update 2022
[modules/shaper.git] / src / ModelAPI / ModelAPI_ResultField.cpp
1 // Copyright (C) 2014-2022  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 "ModelAPI_ResultField.h"
21 #include "ModelAPI_Events.h"
22 #include <Events_Loop.h>
23
24 ModelAPI_ResultField::~ModelAPI_ResultField()
25 {
26
27 }
28
29 std::string ModelAPI_ResultField::groupName()
30 {
31   return group();
32 }
33
34 // LCOV_EXCL_START
35 void ModelAPI_ResultField::ModelAPI_FieldStep::setDisplayed(const bool theDisplay)
36 {
37   if (myIsDisplayed != theDisplay) {
38     myIsDisplayed = theDisplay;
39     static Events_Loop* aLoop = Events_Loop::loop();
40     static Events_ID EVENT_DISP = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
41     static const ModelAPI_EventCreator* aECreator = ModelAPI_EventCreator::get();
42     ModelAPI_ResultField* aField = field();
43     if (aField) {
44       aECreator->sendUpdated(aField->step(id()), EVENT_DISP); // updated pointer to this
45       if (myIsDisplayed) {
46         for (int i = 0; i < aField->stepsSize(); i++)
47           if (i != id())
48             aField->step(i)->setDisplayed(false);
49         aField->setDisplayed(false);
50       }
51     }
52   }
53 }
54
55
56 void ModelAPI_ResultField::setDisplayed(const bool theDisplay)
57 {
58   ModelAPI_Result::setDisplayed(theDisplay);
59   if (isDisplayed()) {
60     for (int i = 0; i < stepsSize(); i++)
61       step(i)->setDisplayed(false);
62   }
63 }
64 // LCOV_EXCL_STOP