Salome HOME
Merge remote-tracking branch 'origin/DISPLAY_FIELD_STEP'
[modules/shaper.git] / src / ModelAPI / ModelAPI_ResultField.cpp
1 // Copyright (C) 2014-2019  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 void ModelAPI_ResultField::ModelAPI_FieldStep::setDisplayed(const bool theDisplay)
35 {
36   if (myIsDisplayed != theDisplay) {
37     myIsDisplayed = theDisplay;
38     static Events_Loop* aLoop = Events_Loop::loop();
39     static Events_ID EVENT_DISP = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
40     static const ModelAPI_EventCreator* aECreator = ModelAPI_EventCreator::get();
41     ModelAPI_ResultField* aField = field();
42     if (aField) {
43       aECreator->sendUpdated(aField->step(id()), EVENT_DISP); // updated pointer to this
44       if (myIsDisplayed) {
45         for (int i = 0; i < aField->stepsSize(); i++)
46           if (i != id())
47             aField->step(i)->setDisplayed(false);
48         aField->setDisplayed(false);
49       }
50     }
51   }
52 }
53
54
55 void ModelAPI_ResultField::setDisplayed(const bool theDisplay)
56 {
57   ModelAPI_Result::setDisplayed(theDisplay);
58   if (isDisplayed()) {
59     for (int i = 0; i < stepsSize(); i++)
60       step(i)->setDisplayed(false);
61   }
62 }