2 * ModuleBase_Operation.cpp
4 * Created on: Apr 2, 2014
8 #include "ModuleBase_Operation.h"
10 #include "ModuleBase_OperationDescription.h"
11 #include "ModuleBase_ModelWidget.h"
12 #include "ModuleBase_ViewerPrs.h"
13 #include "ModuleBase_IPropertyPanel.h"
14 #include "ModuleBase_ISelection.h"
15 #include "ModuleBase_IViewer.h"
17 #include <ModelAPI_AttributeDouble.h>
18 #include <ModelAPI_Document.h>
19 #include <ModelAPI_Feature.h>
20 #include <ModelAPI_Data.h>
21 #include <ModelAPI_Document.h>
22 #include <ModelAPI_Events.h>
23 #include <ModelAPI_Result.h>
24 #include <ModelAPI_Object.h>
25 #include <ModelAPI_Validator.h>
26 #include <ModelAPI_Session.h>
28 #include <GeomAPI_Pnt2d.h>
30 #include <Events_Loop.h>
38 ModuleBase_Operation::ModuleBase_Operation(const QString& theId, QObject* theParent)
44 myDescription = new ModuleBase_OperationDescription(theId);
47 ModuleBase_Operation::~ModuleBase_Operation()
53 QString ModuleBase_Operation::id() const
55 return getDescription()->operationId();
58 FeaturePtr ModuleBase_Operation::feature() const
63 bool ModuleBase_Operation::isValid() const
66 return true; // rename operation
67 //Get validators for the Id
68 SessionPtr aMgr = ModelAPI_Session::get();
69 ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
70 return aFactory->validate(myFeature);
73 bool ModuleBase_Operation::isNestedOperationsEnabled() const
78 //void ModuleBase_Operation::storeCustomValue()
82 // qDebug() << "ModuleBase_Operation::storeCustom: " <<
83 // "trying to store value without opening a transaction.";
88 // ModuleBase_ModelWidget* aCustom = dynamic_cast<ModuleBase_ModelWidget*>(sender());
90 // aCustom->storeValue();
94 bool ModuleBase_Operation::canBeCommitted() const
99 void ModuleBase_Operation::flushUpdated()
101 Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
104 void ModuleBase_Operation::flushCreated()
106 Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_CREATED));
109 FeaturePtr ModuleBase_Operation::createFeature(const bool theFlushMessage)
111 if (myParentFeature) {
112 myFeature = myParentFeature->addFeature(getDescription()->operationId().toStdString());
114 std::shared_ptr<ModelAPI_Document> aDoc = document();
115 myFeature = aDoc->addFeature(getDescription()->operationId().toStdString());
117 if (myFeature) { // TODO: generate an error if feature was not created
119 // Model update should call "execute" of a feature.
120 //myFeature->execute();
121 // Init default values
122 /*QList<ModuleBase_ModelWidget*> aWidgets = getDescription()->modelWidgets();
123 QList<ModuleBase_ModelWidget*>::const_iterator anIt = aWidgets.begin(), aLast = aWidgets.end();
124 for (; anIt != aLast; anIt++) {
125 (*anIt)->storeValue(aFeature);
134 void ModuleBase_Operation::setFeature(FeaturePtr theFeature)
136 myFeature = theFeature;
140 bool ModuleBase_Operation::hasObject(ObjectPtr theObj) const
142 FeaturePtr aFeature = feature();
144 if (aFeature == theObj)
146 std::list<ResultPtr> aResults = aFeature->results();
147 std::list<ResultPtr>::const_iterator aIt;
148 for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt) {
149 if (theObj == (*aIt))
157 std::shared_ptr<ModelAPI_Document> ModuleBase_Operation::document() const
159 return ModelAPI_Session::get()->moduleDocument();
163 void ModuleBase_Operation::start()
165 ModelAPI_Session::get()->startOperation();
174 void ModuleBase_Operation::postpone()
177 disconnect(myPropertyPanel, 0, this, 0);
181 void ModuleBase_Operation::resume()
183 // connect(myPropertyPanel, SIGNAL(widgetActivated(ModuleBase_ModelWidget*)),
184 // this, SLOT(onWidgetActivated(ModuleBase_ModelWidget*)));
188 void ModuleBase_Operation::abort()
193 disconnect(myPropertyPanel, 0, this, 0);
197 ModelAPI_Session::get()->abortOperation();
201 bool ModuleBase_Operation::commit()
203 if (canBeCommitted()) {
205 disconnect(myPropertyPanel, 0, this, 0);
208 // check whether there are modifications performed during the current operation
210 // in case if there are no modifications, do not increase the undo/redo stack
211 if (ModelAPI_Session::get()->isModified())
212 ModelAPI_Session::get()->finishOperation();
214 ModelAPI_Session::get()->abortOperation();
220 afterCommitOperation();
226 void ModuleBase_Operation::setRunning(bool theState)
233 bool ModuleBase_Operation::activateByPreselection()
235 if (!myPropertyPanel)
237 if (myPreSelection.empty())
239 const QList<ModuleBase_ModelWidget*>& aWidgets = myPropertyPanel->modelWidgets();
240 if (aWidgets.empty())
243 ModuleBase_ModelWidget* aWgt, *aFilledWgt = 0;
244 QList<ModuleBase_ModelWidget*>::const_iterator aWIt;
245 QList<ModuleBase_ViewerPrs>::const_iterator aPIt;
247 for (aWIt = aWidgets.constBegin(), aPIt = myPreSelection.constBegin();
248 (aWIt != aWidgets.constEnd()) && (aPIt != myPreSelection.constEnd());
251 ModuleBase_ViewerPrs aValue = (*aPIt);
252 if (!aWgt->canSetValue())
256 if (!aWgt->setSelection(aValue)) {
264 if (isSet && canBeCommitted()) {
265 // if all widgets are filled with selection - commit
266 // in order to commit the operation outside of starting procedure - use timer event
267 QTimer::singleShot(50, this, SLOT(commit()));
271 //activate next widget
273 myPropertyPanel->activateNextWidget(aFilledWgt);
280 void ModuleBase_Operation::initSelection(ModuleBase_ISelection* theSelection,
281 ModuleBase_IViewer* theViewer)
285 QList<ModuleBase_ViewerPrs> aPreSelected;
286 // Check that the selected result are not results of operation feature
287 FeaturePtr aFeature = feature();
289 QList<ModuleBase_ViewerPrs> aSelected = theSelection->getSelected();
291 std::list<ResultPtr> aResults = aFeature->results();
292 QObjectPtrList aResList;
293 std::list<ResultPtr>::const_iterator aIt;
294 for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt)
295 aResList.append(*aIt);
297 foreach (ModuleBase_ViewerPrs aPrs, aSelected) {
298 if ((!aResList.contains(aPrs.object())) && (aPrs.object() != aFeature))
299 aPreSelected.append(aPrs);
302 aPreSelected = theSelection->getSelected();
304 // convert the selection values to the values, which are set to the operation widgets
306 //Handle(V3d_View) aView = theViewer->activeView();
307 //foreach (ModuleBase_ViewerPrs aPrs, aPreSelected) {
308 // ModuleBase_WidgetValueFeature* aValue = new ModuleBase_WidgetValueFeature();
309 // aValue->setObject(aPrs.object());
312 // if (getViewerPoint(aPrs, theViewer, aX, anY))
313 // aValue->setPoint(std::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(aX, anY)));
314 // myPreSelection.append(aValue);
316 myPreSelection = aPreSelected;
319 //void ModuleBase_Operation::onWidgetActivated(ModuleBase_ModelWidget* theWidget)
321 // //activateByPreselection();
322 // //if (theWidget && myPropertyPanel) {
323 // // myPropertyPanel->activateNextWidget();
324 // //// //emit activateNextWidget(myActiveWidget);
328 //bool ModuleBase_Operation::setWidgetValue(ObjectPtr theFeature, double theX, double theY)
330 // ModuleBase_ModelWidget* aActiveWgt = myPropertyPanel->activeWidget();
333 // ModuleBase_WidgetValueFeature* aValue = new ModuleBase_WidgetValueFeature();
334 // aValue->setObject(theFeature);
335 // aValue->setPoint(std::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(theX, theY)));
336 // bool isApplyed = aActiveWgt->setValue(aValue);
339 // myIsModified = (myIsModified || isApplyed);
343 bool ModuleBase_Operation::getViewerPoint(ModuleBase_ViewerPrs thePrs,
344 ModuleBase_IViewer* theViewer,
345 double& theX, double& theY)
350 void ModuleBase_Operation::clearPreselection()
352 myPreSelection.clear();
355 void ModuleBase_Operation::setPropertyPanel(ModuleBase_IPropertyPanel* theProp)
357 myPropertyPanel = theProp;
358 myPropertyPanel->setEditingMode(isEditOperation());
359 //connect(myPropertyPanel, SIGNAL(widgetActivated(ModuleBase_ModelWidget*)), this,
360 // SLOT(onWidgetActivated(ModuleBase_ModelWidget*)));
363 bool ModuleBase_Operation::isGranted(QString theId) const
365 return myNestedFeatures.contains(theId);