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 "ModuleBase_Operation.h"
23 #include "ModuleBase_OperationDescription.h"
24 #include "ModuleBase_ModelWidget.h"
25 #include "ModuleBase_ViewerPrs.h"
26 #include "ModuleBase_IPropertyPanel.h"
27 #include "ModuleBase_ISelection.h"
28 #include "ModuleBase_IViewer.h"
30 #include <ModelAPI_AttributeDouble.h>
31 #include <ModelAPI_Document.h>
32 #include <ModelAPI_Feature.h>
33 #include <ModelAPI_Data.h>
34 #include <ModelAPI_Document.h>
35 #include <ModelAPI_Events.h>
36 #include <ModelAPI_Result.h>
37 #include <ModelAPI_Object.h>
38 #include <ModelAPI_Validator.h>
39 #include <ModelAPI_Session.h>
41 #include <GeomAPI_Pnt2d.h>
43 #include <Events_Loop.h>
51 ModuleBase_Operation::ModuleBase_Operation(const QString& theId, QObject* theParent)
56 myDescription = new ModuleBase_OperationDescription(theId);
59 ModuleBase_Operation::~ModuleBase_Operation()
64 const QStringList& ModuleBase_Operation::grantedOperationIds() const
69 void ModuleBase_Operation::setGrantedOperationIds(const QStringList& theList)
71 myGrantedIds = theList;
74 QString ModuleBase_Operation::id() const
76 return getDescription()->operationId();
79 bool ModuleBase_Operation::isValid() const
84 bool ModuleBase_Operation::canBeCommitted() const
89 bool ModuleBase_Operation::start()
93 ModelAPI_Session::get()->startOperation(id().toStdString());
101 void ModuleBase_Operation::postpone()
107 void ModuleBase_Operation::resume()
113 void ModuleBase_Operation::abort()
115 // the viewer update should be blocked in order to avoid the features blinking before they are
117 //std::shared_ptr<Events_Message> aMsg = std::shared_ptr<Events_Message>(
118 // new Events_Message(Events_Loop::eventByName(EVENT_UPDATE_VIEWER_BLOCKED)));
119 //Events_Loop::loop()->send(aMsg);
121 ModelAPI_Session::get()->abortOperation();
124 // the viewer update should be unblocked in order to avoid the features blinking before they are
126 //aMsg = std::shared_ptr<Events_Message>(
127 // new Events_Message(Events_Loop::eventByName(EVENT_UPDATE_VIEWER_UNBLOCKED)));
128 //Events_Loop::loop()->send(aMsg);
133 bool ModuleBase_Operation::commit()
135 if (canBeCommitted()) {
136 SessionPtr aMgr = ModelAPI_Session::get();
139 aMgr->finishOperation();
145 afterCommitOperation();
151 void ModuleBase_Operation::onValuesChanged()
156 void ModuleBase_Operation::onValueStateChanged(int thePreviousState)
158 if (propertyPanel()) {
159 ModuleBase_ModelWidget* aWidget = propertyPanel()->activeWidget();
161 if (aWidget->getValueState() == ModuleBase_ModelWidget::ModifiedInPP)
167 void ModuleBase_Operation::setPropertyPanel(ModuleBase_IPropertyPanel* theProp)
169 myPropertyPanel = theProp;
172 bool ModuleBase_Operation::isGranted(QString theId) const
174 return myGrantedIds.contains(theId);