]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_Module.cpp
Salome HOME
Provide hasPreview method for operations with preview
[modules/shaper.git] / src / PartSet / PartSet_Module.cpp
1 #include <PartSet_Module.h>
2 #include <PartSet_OperationSketch.h>
3 #include <PartSet_OperationFeatureCreate.h>
4 #include <PartSet_OperationFeatureEditMulti.h>
5 #include <PartSet_OperationFeatureEdit.h>
6 #include <PartSet_Listener.h>
7 #include <PartSet_TestOCC.h>
8 #include <PartSet_WidgetSketchLabel.h>
9 #include <PartSet_Validators.h>
10 #include <PartSet_Tools.h>
11
12 #include <ModuleBase_Operation.h>
13 #include <ModuleBase_OperationDescription.h>
14 #include <ModuleBase_WidgetFactory.h>
15 #include <ModuleBase_Operation.h>
16
17 #include <ModelAPI_Object.h>
18 #include <ModelAPI_Events.h>
19 #include <ModelAPI_Validator.h>
20 #include <ModelAPI_Data.h>
21
22 #include <GeomDataAPI_Point2D.h>
23
24 #include <XGUI_MainWindow.h>
25 #include <XGUI_Displayer.h>
26 #include <XGUI_Viewer.h>
27 #include <XGUI_Workshop.h>
28 #include <XGUI_OperationMgr.h>
29 #include <XGUI_SelectionMgr.h>
30 #include <XGUI_Selection.h>
31 #include <XGUI_ViewPort.h>
32 #include <XGUI_ActionsMgr.h>
33 #include <XGUI_ViewerProxy.h>
34 #include <XGUI_ContextMenuMgr.h>
35 #include <XGUI_PropertyPanel.h>
36 #include <XGUI_ModuleConnector.h>
37 #include <XGUI_Tools.h>
38
39 #include <SketchPlugin_Line.h>
40
41 #include <Config_PointerMessage.h>
42 #include <Config_ModuleReader.h>
43 #include <Config_WidgetReader.h>
44 #include <Events_Loop.h>
45 #include <Events_Message.h>
46 #include <Events_Error.h>
47
48 #include <GeomAPI_Shape.h>
49 #include <GeomAPI_AISObject.h>
50 #include <AIS_Shape.hxx>
51
52 #include <StdSelect_FaceFilter.hxx>
53 #include <StdSelect_TypeOfFace.hxx>
54
55 #include <QObject>
56 #include <QMouseEvent>
57 #include <QString>
58
59 #include <GeomAlgoAPI_FaceBuilder.h>
60 #include <GeomDataAPI_Dir.h>
61
62 #ifdef _DEBUG
63 #include <QDebug>
64 #endif
65
66 /*!Create and return new instance of XGUI_Module*/
67 extern "C" PARTSET_EXPORT ModuleBase_IModule* createModule(XGUI_Workshop* theWshop)
68 {
69   return new PartSet_Module(theWshop);
70 }
71
72 PartSet_Module::PartSet_Module(XGUI_Workshop* theWshop)
73 {
74   myWorkshop = theWshop;
75   myListener = new PartSet_Listener(this);
76
77   XGUI_OperationMgr* anOperationMgr = myWorkshop->operationMgr();
78
79   connect(anOperationMgr, SIGNAL(operationStarted()), this, SLOT(onOperationStarted()));
80
81   connect(anOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)), this,
82           SLOT(onOperationStopped(ModuleBase_Operation*)));
83
84   XGUI_ContextMenuMgr* aContextMenuMgr = myWorkshop->contextMenuMgr();
85   connect(aContextMenuMgr, SIGNAL(actionTriggered(const QString&, bool)), this,
86           SLOT(onContextMenuCommand(const QString&, bool)));
87
88   connect(myWorkshop->viewer(), SIGNAL(mousePress(QMouseEvent*)), this,
89           SLOT(onMousePressed(QMouseEvent*)));
90   connect(myWorkshop->viewer(), SIGNAL(mouseRelease(QMouseEvent*)), this,
91           SLOT(onMouseReleased(QMouseEvent*)));
92   connect(myWorkshop->viewer(), SIGNAL(mouseMove(QMouseEvent*)), this,
93           SLOT(onMouseMoved(QMouseEvent*)));
94   connect(myWorkshop->viewer(), SIGNAL(keyRelease(QKeyEvent*)), this,
95           SLOT(onKeyRelease(QKeyEvent*)));
96   connect(myWorkshop->viewer(), SIGNAL(mouseDoubleClick(QMouseEvent*)), this,
97           SLOT(onMouseDoubleClick(QMouseEvent*)));
98 }
99
100 PartSet_Module::~PartSet_Module()
101 {
102 }
103
104 XGUI_Workshop* PartSet_Module::workshop() const
105 {
106   return myWorkshop;
107 }
108
109 void PartSet_Module::createFeatures()
110 {
111   //Registering of validators
112   SessionPtr aMgr = ModelAPI_Session::get();
113   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
114   aFactory->registerValidator("PartSet_DistanceValidator", new PartSet_DistanceValidator);
115   aFactory->registerValidator("PartSet_LengthValidator", new PartSet_LengthValidator);
116   aFactory->registerValidator("PartSet_PerpendicularValidator", new PartSet_PerpendicularValidator);
117   aFactory->registerValidator("PartSet_ParallelValidator", new PartSet_ParallelValidator);
118   aFactory->registerValidator("PartSet_RadiusValidator", new PartSet_RadiusValidator);
119
120   Config_ModuleReader aXMLReader = Config_ModuleReader();
121   aXMLReader.readAll();
122   myFeaturesInFiles = aXMLReader.featuresInFiles();
123 }
124
125 void PartSet_Module::featureCreated(QAction* theFeature)
126 {
127   connect(theFeature, SIGNAL(triggered(bool)), this, SLOT(onFeatureTriggered()));
128 }
129
130 std::string PartSet_Module::featureFile(const std::string& theFeatureId)
131 {
132   return myFeaturesInFiles[theFeatureId];
133 }
134
135 /*
136  *
137  */
138 void PartSet_Module::onFeatureTriggered()
139 {
140   //PartSet_TestOCC::local_selection_change_shape(myWorkshop->viewer()->AISContext(),
141   //                                   myWorkshop->viewer()->activeView());
142
143   //PartSet_TestOCC::local_selection_erase(myWorkshop->viewer()->AISContext(),
144   //                                       myWorkshop->viewer()->activeView());
145   QAction* aCmd = dynamic_cast<QAction*>(sender());
146   //Do nothing on uncheck
147   if (aCmd->isCheckable() && !aCmd->isChecked())
148     return;
149   launchOperation(aCmd->data().toString());
150 }
151
152 void PartSet_Module::launchOperation(const QString& theCmdId)
153 {
154   ModuleBase_Operation* anOperation = createOperation(theCmdId.toStdString());
155   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
156   if (aPreviewOp) {
157     XGUI_Selection* aSelection = myWorkshop->selector()->selection();
158     // Initialise operation with preliminary selection
159     std::list<ModuleBase_ViewerPrs> aSelected = aSelection->getSelected();
160     std::list<ModuleBase_ViewerPrs> aHighlighted = aSelection->getHighlighted();
161     aPreviewOp->initSelection(aSelected, aHighlighted);
162   }
163   sendOperation(anOperation);
164 }
165
166 void PartSet_Module::onOperationStarted()
167 {
168   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop
169       ->operationMgr()->currentOperation());
170   if (aPreviewOp) {
171     XGUI_PropertyPanel* aPropPanel = myWorkshop->propertyPanel();
172     connect(aPropPanel, SIGNAL(storedPoint2D(ObjectPtr, const std::string&)), this,
173             SLOT(onStorePoint2D(ObjectPtr, const std::string&)), Qt::UniqueConnection);
174     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
175     aDisplayer->openLocalContext();
176     aDisplayer->deactivateObjectsOutOfContext();
177   }
178 }
179
180 void PartSet_Module::onOperationStopped(ModuleBase_Operation* theOperation)
181 {
182   if (!theOperation)
183     return;
184   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(theOperation);
185   if (aPreviewOp) {
186     XGUI_PropertyPanel* aPropPanel = myWorkshop->propertyPanel();
187     //disconnect(aPropPanel, SIGNAL(storedPoint2D(ObjectPtr, const std::string&)),
188     //           this, SLOT(onStorePoint2D(ObjectPtr, const std::string&)));
189   } else {
190     // Activate results of current feature for selection
191     FeaturePtr aFeature = theOperation->feature();
192     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
193     std::list<ResultPtr> aResults = aFeature->results();
194     std::list<ResultPtr>::const_iterator aIt;
195     for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt) {
196       aDisplayer->activate(*aIt);
197     }
198   }
199 }
200
201 void PartSet_Module::onContextMenuCommand(const QString& theId, bool isChecked)
202 {
203   QList<ObjectPtr> aFeatures = myWorkshop->selector()->selection()->selectedObjects();
204   if (theId == "EDIT_CMD" && (aFeatures.size() > 0)) {
205     FeaturePtr aFeature = boost::dynamic_pointer_cast<ModelAPI_Feature>(aFeatures.first());
206     if (aFeature)
207       editFeature(aFeature);
208   }
209 }
210
211 void PartSet_Module::onMousePressed(QMouseEvent* theEvent)
212 {
213   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop
214       ->operationMgr()->currentOperation());
215   Handle(V3d_View) aView = myWorkshop->viewer()->activeView();
216   if (aPreviewOp && (!aView.IsNull())) {
217     XGUI_Selection* aSelection = myWorkshop->selector()->selection();
218     // Initialise operation with preliminary selection
219     std::list<ModuleBase_ViewerPrs> aSelected = aSelection->getSelected();
220     std::list<ModuleBase_ViewerPrs> aHighlighted = aSelection->getHighlighted();
221
222     aPreviewOp->mousePressed(theEvent, aView, aSelected, aHighlighted);
223   }
224 }
225
226 void PartSet_Module::onMouseReleased(QMouseEvent* theEvent)
227 {
228   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop
229       ->operationMgr()->currentOperation());
230   Handle(V3d_View) aView = myWorkshop->viewer()->activeView();
231   if (aPreviewOp && (!aView.IsNull())) {
232     XGUI_Selection* aSelection = myWorkshop->selector()->selection();
233     // Initialise operation with preliminary selection
234     std::list<ModuleBase_ViewerPrs> aSelected = aSelection->getSelected();
235     std::list<ModuleBase_ViewerPrs> aHighlighted = aSelection->getHighlighted();
236
237     aPreviewOp->mouseReleased(theEvent, aView, aSelected, aHighlighted);
238   }
239 }
240
241 void PartSet_Module::onMouseMoved(QMouseEvent* theEvent)
242 {
243   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop
244       ->operationMgr()->currentOperation());
245   Handle(V3d_View) aView = myWorkshop->viewer()->activeView();
246   if (aPreviewOp && (!aView.IsNull()))
247     aPreviewOp->mouseMoved(theEvent, aView);
248 }
249
250 void PartSet_Module::onKeyRelease(QKeyEvent* theEvent)
251 {
252   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
253   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
254   if (aPreviewOp) {
255     aPreviewOp->keyReleased(theEvent->key());
256   }
257 }
258
259 void PartSet_Module::onMouseDoubleClick(QMouseEvent* theEvent)
260 {
261   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop
262       ->operationMgr()->currentOperation());
263   Handle(V3d_View) aView = myWorkshop->viewer()->activeView();
264   if (aPreviewOp && (!aView.IsNull())) {
265     XGUI_Selection* aSelection = myWorkshop->selector()->selection();
266     // Initialise operation with preliminary selection
267     std::list<ModuleBase_ViewerPrs> aSelected = aSelection->getSelected();
268     std::list<ModuleBase_ViewerPrs> aHighlighted = aSelection->getHighlighted();
269     aPreviewOp->mouseDoubleClick(theEvent, aView, aSelected, aHighlighted);
270   }
271 }
272
273 void PartSet_Module::onPlaneSelected(double theX, double theY, double theZ)
274 {
275   //erasePlanes();
276   myWorkshop->viewer()->setViewProjection(theX, theY, theZ);
277   myWorkshop->actionsMgr()->update();
278
279   //PartSet_TestOCC::testSelection(myWorkshop);
280 }
281
282 void PartSet_Module::onFitAllView()
283 {
284   myWorkshop->viewer()->fitAll();
285 }
286
287 void PartSet_Module::onRestartOperation(std::string theName, ObjectPtr theObject)
288 {
289   FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
290
291   std::string aKind = aFeature ? aFeature->getKind() : "";
292   ModuleBase_Operation* anOperation = createOperation(theName, aKind);
293   PartSet_OperationSketchBase* aSketchOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
294   if (aSketchOp) {
295     XGUI_Selection* aSelection = myWorkshop->selector()->selection();
296     // Initialise operation with preliminary selection
297     std::list<ModuleBase_ViewerPrs> aSelected = aSelection->getSelected();
298     std::list<ModuleBase_ViewerPrs> aHighlighted = aSelection->getHighlighted();
299     aSketchOp->initFeature(aFeature);
300     aSketchOp->initSelection(aSelected, aHighlighted);
301   } else if (aFeature) {
302     anOperation->setEditingFeature(aFeature);
303     //Deactivate result of current feature in order to avoid its selection
304     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
305     std::list<ResultPtr> aResults = aFeature->results();
306     std::list<ResultPtr>::const_iterator aIt;
307     for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt) {
308       aDisplayer->deactivate(*aIt);
309     }
310   }
311   sendOperation(anOperation);
312   myWorkshop->actionsMgr()->updateCheckState();
313 }
314
315 void PartSet_Module::onMultiSelectionEnabled(bool theEnabled)
316 {
317   XGUI_ViewerProxy* aViewer = myWorkshop->viewer();
318   aViewer->enableMultiselection(theEnabled);
319 }
320
321 void PartSet_Module::onStopSelection(const QList<ObjectPtr>& theFeatures, const bool isStop)
322 {
323   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
324   if (!isStop) {
325     foreach(ObjectPtr aObject, theFeatures)
326     {
327       activateFeature(aObject, false);
328     }
329   }
330   aDisplayer->stopSelection(theFeatures, isStop, false);
331
332   XGUI_ViewerProxy* aViewer = myWorkshop->viewer();
333   aViewer->enableSelection(!isStop);
334
335   aDisplayer->updateViewer();
336 }
337
338 void PartSet_Module::onSetSelection(const QList<ObjectPtr>& theFeatures)
339 {
340   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
341   aDisplayer->setSelected(theFeatures, false);
342   aDisplayer->updateViewer();
343 }
344
345 void PartSet_Module::onCloseLocalContext()
346 {
347   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
348   aDisplayer->deactivateObjectsOutOfContext();
349   aDisplayer->closeLocalContexts();
350 }
351
352 void PartSet_Module::onFeatureConstructed(ObjectPtr theFeature, int theMode)
353 {
354   bool isDisplay = theMode != PartSet_OperationSketchBase::FM_Hide;
355   ModuleBase_Operation* aCurOperation = myWorkshop->operationMgr()->currentOperation();
356   PartSet_OperationSketchBase* aPrevOp = dynamic_cast<PartSet_OperationSketchBase*>(aCurOperation);
357   if (aPrevOp) {
358     std::list<FeaturePtr> aList = aPrevOp->subFeatures();
359     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
360     std::list<int> aModes = aPrevOp->getSelectionModes(aPrevOp->feature());
361     std::list<FeaturePtr>::iterator aSFIt;
362     for (aSFIt = aList.begin(); aSFIt != aList.end(); ++aSFIt) {
363       std::list<ResultPtr> aResults = (*aSFIt)->results();
364       std::list<ResultPtr>::iterator aIt;
365       for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
366         if (isDisplay)
367           aDisplayer->activateInLocalContext((*aIt), aModes, false);
368         else
369           aDisplayer->erase((*aIt), false);
370       }
371       if (!isDisplay)
372         aDisplayer->erase((*aSFIt), false);
373     }
374     aDisplayer->deactivateObjectsOutOfContext();
375   }
376   if (isDisplay)
377     ModelAPI_EventCreator::get()->sendUpdated(
378         theFeature, Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY));
379 }
380
381 ModuleBase_Operation* PartSet_Module::createOperation(const std::string& theCmdId,
382                                                       const std::string& theFeatureKind)
383 {
384   // create the operation
385   ModuleBase_Operation* anOperation = 0;
386   if (theCmdId == PartSet_OperationSketch::Type()) {
387     anOperation = new PartSet_OperationSketch(theCmdId.c_str(), this);
388   } else {
389     ModuleBase_Operation* aCurOperation = myWorkshop->operationMgr()->currentOperation();
390     FeaturePtr aSketch;
391     PartSet_OperationSketchBase* aPrevOp = dynamic_cast<PartSet_OperationSketchBase*>(aCurOperation);
392     if (aPrevOp) {
393       aSketch = aPrevOp->sketch();
394     }
395     if (PartSet_OperationFeatureCreate::canProcessKind(theCmdId)) {
396       anOperation = new PartSet_OperationFeatureCreate(theCmdId.c_str(), this, aSketch);
397     } else if (theCmdId == PartSet_OperationFeatureEditMulti::Type()) {
398       anOperation = new PartSet_OperationFeatureEditMulti(theCmdId.c_str(), this, aSketch);
399     } else if (theCmdId == PartSet_OperationFeatureEdit::Type()) {
400       anOperation = new PartSet_OperationFeatureEdit(theCmdId.c_str(), this, aSketch);
401     }
402   }
403
404   if (!anOperation) {
405     anOperation = new ModuleBase_Operation(theCmdId.c_str(), this);
406   }
407
408   // set operation description and list of widgets corresponding to the feature xml definition
409   std::string aFeatureKind = theFeatureKind.empty() ? theCmdId : theFeatureKind;
410
411   std::string aPluginFileName = featureFile(aFeatureKind);
412   Config_WidgetReader aWdgReader = Config_WidgetReader(aPluginFileName);
413   aWdgReader.readAll();
414   std::string aXmlCfg = aWdgReader.featureWidgetCfg(aFeatureKind);
415   std::string aDescription = aWdgReader.featureDescription(aFeatureKind);
416
417   //QString aXmlRepr = QString::fromStdString(aXmlCfg);
418   //ModuleBase_WidgetFactory aFactory = ModuleBase_WidgetFactory(aXmlRepr.toStdString(),
419   //                                                             myWorkshop->moduleConnector());
420   //QWidget* aContent = myWorkshop->propertyPanel()->contentWidget();
421   //qDeleteAll(aContent->children());
422   //aFactory.createWidget(aContent);
423
424   anOperation->getDescription()->setDescription(QString::fromStdString(aDescription));
425   anOperation->getDescription()->setXmlRepresentation(QString::fromStdString(aXmlCfg));
426
427   //anOperation->setModelWidgets(aXmlRepr.toStdString(), aFactory.getModelWidgets());
428
429   // connect the operation
430   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
431   if (aPreviewOp) {
432     connect(aPreviewOp, SIGNAL(featureConstructed(ObjectPtr, int)), this,
433             SLOT(onFeatureConstructed(ObjectPtr, int)));
434     connect(aPreviewOp, SIGNAL(restartRequired(std::string, ObjectPtr)), this,
435             SLOT(onRestartOperation(std::string, ObjectPtr)));
436     connect(aPreviewOp, SIGNAL(multiSelectionEnabled(bool)), this,
437             SLOT(onMultiSelectionEnabled(bool)));
438
439     connect(aPreviewOp, SIGNAL(stopSelection(const QList<ObjectPtr>&, const bool)), this,
440             SLOT(onStopSelection(const QList<ObjectPtr>&, const bool)));
441     connect(aPreviewOp, SIGNAL(setSelection(const QList<ObjectPtr>&)), this,
442             SLOT(onSetSelection(const QList<ObjectPtr>&)));
443
444     connect(aPreviewOp, SIGNAL(closeLocalContext()), this, SLOT(onCloseLocalContext()));
445
446     PartSet_OperationSketch* aSketchOp = dynamic_cast<PartSet_OperationSketch*>(aPreviewOp);
447     if (aSketchOp) {
448       connect(aSketchOp, SIGNAL(planeSelected(double, double, double)), this,
449               SLOT(onPlaneSelected(double, double, double)));
450       connect(aSketchOp, SIGNAL(fitAllView()), this, SLOT(onFitAllView()));
451     }
452   }
453
454   return anOperation;
455 }
456
457 void PartSet_Module::sendOperation(ModuleBase_Operation* theOperation)
458 {
459   static Events_ID aModuleEvent = Events_Loop::eventByName(EVENT_OPERATION_LAUNCHED);
460   boost::shared_ptr<Config_PointerMessage> aMessage =
461       boost::shared_ptr<Config_PointerMessage>(new Config_PointerMessage(aModuleEvent, this));
462   aMessage->setPointer(theOperation);
463   Events_Loop::loop()->send(aMessage);
464 }
465
466 void PartSet_Module::activateFeature(ObjectPtr theFeature, const bool isUpdateViewer)
467 {
468   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
469   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
470   if (aPreviewOp) {
471     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
472     std::list<int> aModes = aPreviewOp->getSelectionModes(theFeature);
473     aDisplayer->activateInLocalContext(theFeature, aModes, isUpdateViewer);
474
475     // If this is a Sketcher then activate objects (planar faces) outside of context
476     PartSet_OperationSketch* aSketchOp = dynamic_cast<PartSet_OperationSketch*>(aPreviewOp);
477     if (aSketchOp) {
478       Handle(StdSelect_FaceFilter) aFilter = new StdSelect_FaceFilter(StdSelect_Plane);
479       aDisplayer->activateObjectsOutOfContext(aModes, aFilter);
480     } else {
481       aDisplayer->deactivateObjectsOutOfContext();
482     }
483   }
484 }
485
486 void PartSet_Module::updateCurrentPreview(const std::string& theCmdId)
487 {
488   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
489   if (!anOperation)
490     return;
491
492   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
493   if (!aPreviewOp)
494     return;
495
496   FeaturePtr aFeature = aPreviewOp->feature();
497   if (!aFeature || aFeature->getKind() != theCmdId)
498     return;
499
500   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
501   // Hide result of sketch
502   std::list<ResultPtr> aResults = aFeature->results();
503   std::list<ResultPtr>::const_iterator aIt;
504   for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt)
505     aDisplayer->erase(*aIt, false);
506
507   std::list<FeaturePtr> aList = aPreviewOp->subFeatures();
508   std::list<int> aModes = aPreviewOp->getSelectionModes(aPreviewOp->feature());
509
510   std::list<FeaturePtr>::const_iterator anIt = aList.begin(), aLast = aList.end();
511   for (; anIt != aLast; anIt++) {
512     boost::shared_ptr<SketchPlugin_Feature> aSPFeature = boost::dynamic_pointer_cast<
513         SketchPlugin_Feature>(*anIt);
514     if (!aSPFeature)
515       continue;
516     std::list<ResultPtr> aResults = aSPFeature->results();
517     std::list<ResultPtr>::const_iterator aRIt;
518     for (aRIt = aResults.cbegin(); aRIt != aResults.cend(); ++aRIt) {
519       aDisplayer->display((*aRIt), false);
520       aDisplayer->activateInLocalContext((*aRIt), aModes, false);
521     }
522     aDisplayer->display(aSPFeature, false);
523     aDisplayer->activateInLocalContext(aSPFeature, aModes, false);
524   }
525   aDisplayer->updateViewer();
526 }
527
528 void PartSet_Module::editFeature(FeaturePtr theFeature)
529 {
530   if (!theFeature)
531     return;
532
533 //  if (theFeature->getKind() == SKETCH_KIND) {
534   //FeaturePtr aFeature = theFeature;
535   //if (XGUI_Tools::isModelObject(aFeature)) {
536   //  ObjectPtr aObject = boost::dynamic_pointer_cast<ModelAPI_Object>(aFeature);
537   //  aFeature = aObject->featureRef();
538   //}
539
540   //if (aFeature) {
541   onRestartOperation(theFeature->getKind(), theFeature);
542   updateCurrentPreview(theFeature->getKind());
543   //}
544 //  }
545 }
546
547 void PartSet_Module::onStorePoint2D(ObjectPtr theFeature, const std::string& theAttribute)
548 {
549   FeaturePtr aFeature = boost::dynamic_pointer_cast<ModelAPI_Feature>(theFeature);
550
551   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop
552       ->operationMgr()->currentOperation());
553   if (!aPreviewOp)
554     return;
555
556   boost::shared_ptr<GeomDataAPI_Point2D> aPoint = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(
557       aFeature->data()->attribute(theAttribute));
558
559   PartSet_Tools::setConstraints(aPreviewOp->sketch(), aFeature, theAttribute, aPoint->x(),
560                                 aPoint->y());
561 }
562
563 QWidget* PartSet_Module::createWidgetByType(const std::string& theType, QWidget* theParent,
564                                             Config_WidgetAPI* theWidgetApi,
565                                             QList<ModuleBase_ModelWidget*>& theModelWidgets)
566 {
567   if (theType == "sketch-start-label") {
568     PartSet_WidgetSketchLabel* aWgt = new PartSet_WidgetSketchLabel(theParent, theWidgetApi, "");
569     aWgt->setOperationsMgr(myWorkshop->operationMgr());
570     theModelWidgets.append(aWgt);
571     return aWgt->getControl();
572   } else
573     return 0;
574 }