1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #include "ModelAPI_Result.h"
22 #include <ModelAPI_Events.h>
23 #include <ModelAPI_Data.h>
24 #include <ModelAPI_Attribute.h>
25 #include <ModelAPI_AttributeIntArray.h>
26 #include <ModelAPI_AttributeDouble.h>
28 #include <Events_Loop.h>
30 ModelAPI_Result::~ModelAPI_Result()
34 void ModelAPI_Result::initAttributes()
36 // append the color attribute. It is empty, the attribute will be filled by a request
37 DataPtr aData = data();
38 aData->addAttribute(COLOR_ID(), ModelAPI_AttributeIntArray::typeId());
39 aData->addAttribute(DEFLECTION_ID(), ModelAPI_AttributeDouble::typeId());
40 aData->addAttribute(TRANSPARENCY_ID(), ModelAPI_AttributeDouble::typeId());
43 bool ModelAPI_Result::setDisabled(std::shared_ptr<ModelAPI_Result> theThis, const bool theFlag)
45 if (myIsDisabled != theFlag) {
46 myIsDisabled = theFlag;
47 if (data()->isValid())
48 data()->setIsDeleted(theFlag); // store it in data model (to get back on undo/redo, etc)
49 // this must be before "updated" message send to have history updated for OB update
50 document()->updateHistory(groupName()); // to update the history cash data in the document
51 // generate related events
52 static Events_Loop* aLoop = Events_Loop::loop();
53 static const ModelAPI_EventCreator* aECreator = ModelAPI_EventCreator::get();
54 if (myIsDisabled) { // disabled result looks like removed
55 aECreator->sendDeleted(document(), groupName());
56 } else { // un-disabled equals to created
57 static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
58 aECreator->sendUpdated(theThis, anEvent /*, false*/); // flush is in setCurrentFeature
60 static Events_ID EVENT_DISP = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
61 aECreator->sendUpdated(theThis, EVENT_DISP/*, false*/); // flush is in setCurrentFeature
67 bool ModelAPI_Result::isDisabled()
69 if (myIsDisabled != data()->isDeleted())
70 setDisabled(std::dynamic_pointer_cast<ModelAPI_Result>(
71 data()->owner()), data()->isDeleted()); // restore from the data model the correct value
75 bool ModelAPI_Result::isConcealed()
80 void ModelAPI_Result::setIsConcealed(const bool theValue)
82 if (myIsConcealed != theValue) {
83 myIsConcealed = theValue;
84 if (document().get()) { // can be on creation of result
85 document()->updateHistory(groupName()); // to update the history cash data in the document
87 ModelAPI_EventCreator::get()->sendDeleted(document(), groupName());
88 static Events_ID kDispEvent = Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
89 ModelAPI_EventCreator::get()->sendUpdated(data()->owner(), kDispEvent);
91 static Events_ID kEventCreated = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
92 ModelAPI_EventCreator::get()->sendUpdated(data()->owner(), kEventCreated);
99 std::shared_ptr<GeomAPI_Shape> ModelAPI_Result::shape()
101 return std::shared_ptr<GeomAPI_Shape>();
104 void ModelAPI_Result::attributeChanged(const std::string& theID)
106 static Events_Loop* aLoop = Events_Loop::loop();
107 static Events_ID EVENT_DISP = aLoop->eventByName(EVENT_OBJECT_TO_REDISPLAY);
108 static const ModelAPI_EventCreator* aECreator = ModelAPI_EventCreator::get();
109 aECreator->sendUpdated(data()->attribute(theID)->owner(), EVENT_DISP);
112 void ModelAPI_Result::init()
114 myIsDisabled = true; // by default it is not initialized and false to be after created
115 myIsConcealed = false;