]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_Module.cpp
Salome HOME
1a26bbeb947409204def09b220bb103cdfda0974
[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     anOperation->initSelection(aSelected, aHighlighted);
162   //}
163   sendOperation(anOperation);
164 }
165
166 void PartSet_Module::onOperationStarted()
167 {
168   ModuleBase_Operation* aOperation = myWorkshop->operationMgr()->currentOperation();
169
170   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(aOperation);
171   if (aPreviewOp) {
172     XGUI_PropertyPanel* aPropPanel = myWorkshop->propertyPanel();
173     connect(aPropPanel, SIGNAL(storedPoint2D(ObjectPtr, const std::string&)), this,
174             SLOT(onStorePoint2D(ObjectPtr, const std::string&)), Qt::UniqueConnection);
175
176     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
177     aDisplayer->openLocalContext();
178     aDisplayer->deactivateObjectsOutOfContext();
179   }
180 }
181
182 void PartSet_Module::onOperationStopped(ModuleBase_Operation* theOperation)
183 {
184   if (!theOperation)
185     return;
186   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(theOperation);
187   if (aPreviewOp) {
188     XGUI_PropertyPanel* aPropPanel = myWorkshop->propertyPanel();
189     //disconnect(aPropPanel, SIGNAL(storedPoint2D(ObjectPtr, const std::string&)),
190     //           this, SLOT(onStorePoint2D(ObjectPtr, const std::string&)));
191   } else {
192     // Activate results of current feature for selection
193     FeaturePtr aFeature = theOperation->feature();
194     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
195     std::list<ResultPtr> aResults = aFeature->results();
196     std::list<ResultPtr>::const_iterator aIt;
197     for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt) {
198       aDisplayer->activate(*aIt);
199     }
200   }
201 }
202
203 void PartSet_Module::onContextMenuCommand(const QString& theId, bool isChecked)
204 {
205   QList<ObjectPtr> aFeatures = myWorkshop->selector()->selection()->selectedObjects();
206   if (theId == "EDIT_CMD" && (aFeatures.size() > 0)) {
207     FeaturePtr aFeature = boost::dynamic_pointer_cast<ModelAPI_Feature>(aFeatures.first());
208     if (aFeature)
209       editFeature(aFeature);
210   }
211 }
212
213 void PartSet_Module::onMousePressed(QMouseEvent* theEvent)
214 {
215
216   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop
217       ->operationMgr()->currentOperation());
218   Handle(V3d_View) aView = myWorkshop->viewer()->activeView();
219   if (aPreviewOp && (!aView.IsNull())) {
220     XGUI_Selection* aSelection = myWorkshop->selector()->selection();
221     // Initialise operation with preliminary selection
222     std::list<ModuleBase_ViewerPrs> aSelected = aSelection->getSelected();
223     std::list<ModuleBase_ViewerPrs> aHighlighted = aSelection->getHighlighted();
224
225     aPreviewOp->mousePressed(theEvent, aView, aSelected, aHighlighted);
226   }
227 }
228
229 void PartSet_Module::onMouseReleased(QMouseEvent* theEvent)
230 {
231   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop
232       ->operationMgr()->currentOperation());
233   Handle(V3d_View) aView = myWorkshop->viewer()->activeView();
234   if (aPreviewOp && (!aView.IsNull())) {
235     XGUI_Selection* aSelection = myWorkshop->selector()->selection();
236     // Initialise operation with preliminary selection
237     std::list<ModuleBase_ViewerPrs> aSelected = aSelection->getSelected();
238     std::list<ModuleBase_ViewerPrs> aHighlighted = aSelection->getHighlighted();
239
240     aPreviewOp->mouseReleased(theEvent, aView, aSelected, aHighlighted);
241   }
242 }
243
244 void PartSet_Module::onMouseMoved(QMouseEvent* theEvent)
245 {
246   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop
247       ->operationMgr()->currentOperation());
248   Handle(V3d_View) aView = myWorkshop->viewer()->activeView();
249   if (aPreviewOp && (!aView.IsNull()))
250     aPreviewOp->mouseMoved(theEvent, aView);
251 }
252
253 void PartSet_Module::onKeyRelease(QKeyEvent* theEvent)
254 {
255   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
256   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
257   if (aPreviewOp) {
258     aPreviewOp->keyReleased(theEvent->key());
259   }
260 }
261
262 void PartSet_Module::onMouseDoubleClick(QMouseEvent* theEvent)
263 {
264   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop
265       ->operationMgr()->currentOperation());
266   Handle(V3d_View) aView = myWorkshop->viewer()->activeView();
267   if (aPreviewOp && (!aView.IsNull())) {
268     XGUI_Selection* aSelection = myWorkshop->selector()->selection();
269     // Initialise operation with preliminary selection
270     std::list<ModuleBase_ViewerPrs> aSelected = aSelection->getSelected();
271     std::list<ModuleBase_ViewerPrs> aHighlighted = aSelection->getHighlighted();
272     aPreviewOp->mouseDoubleClick(theEvent, aView, aSelected, aHighlighted);
273   }
274 }
275
276 void PartSet_Module::onPlaneSelected(double theX, double theY, double theZ)
277 {
278   //erasePlanes();
279   myWorkshop->viewer()->setViewProjection(theX, theY, theZ);
280   myWorkshop->actionsMgr()->update();
281
282   //PartSet_TestOCC::testSelection(myWorkshop);
283 }
284
285 void PartSet_Module::onFitAllView()
286 {
287   myWorkshop->viewer()->fitAll();
288 }
289
290 void PartSet_Module::onRestartOperation(std::string theName, ObjectPtr theObject)
291 {
292   FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
293
294   std::string aKind = aFeature ? aFeature->getKind() : "";
295   ModuleBase_Operation* anOperation = createOperation(theName, aKind);
296
297   PartSet_OperationSketchBase* aSketchOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
298   if (aSketchOp) {
299     PartSet_OperationFeatureCreate* aCreateOp = dynamic_cast<PartSet_OperationFeatureCreate*>(anOperation);
300     if (aCreateOp)
301       aCreateOp->initFeature(aFeature);
302     else {
303       anOperation->setFeature(aFeature);
304     }
305     XGUI_Selection* aSelection = myWorkshop->selector()->selection();
306     // Initialise operation with preliminary selection
307     std::list<ModuleBase_ViewerPrs> aSelected = aSelection->getSelected();
308     std::list<ModuleBase_ViewerPrs> aHighlighted = aSelection->getHighlighted();
309     aSketchOp->initSelection(aSelected, aHighlighted);
310   } else if (aFeature) {
311     anOperation->setFeature(aFeature);
312     //Deactivate result of current feature in order to avoid its selection
313     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
314     std::list<ResultPtr> aResults = aFeature->results();
315     std::list<ResultPtr>::const_iterator aIt;
316     for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt) {
317       aDisplayer->deactivate(*aIt);
318     }
319   }
320   sendOperation(anOperation);
321   myWorkshop->actionsMgr()->updateCheckState();
322 }
323
324 void PartSet_Module::onMultiSelectionEnabled(bool theEnabled)
325 {
326   XGUI_ViewerProxy* aViewer = myWorkshop->viewer();
327   aViewer->enableMultiselection(theEnabled);
328 }
329
330 void PartSet_Module::onStopSelection(const QList<ObjectPtr>& theFeatures, const bool isStop)
331 {
332   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
333   if (!isStop) {
334     foreach(ObjectPtr aObject, theFeatures)
335     {
336       activateFeature(aObject, false);
337     }
338   }
339   aDisplayer->stopSelection(theFeatures, isStop, false);
340
341   XGUI_ViewerProxy* aViewer = myWorkshop->viewer();
342   aViewer->enableSelection(!isStop);
343
344   aDisplayer->updateViewer();
345 }
346
347 void PartSet_Module::onSetSelection(const QList<ObjectPtr>& theFeatures)
348 {
349   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
350   aDisplayer->setSelected(theFeatures, false);
351   aDisplayer->updateViewer();
352 }
353
354 void PartSet_Module::onCloseLocalContext()
355 {
356   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
357   aDisplayer->deactivateObjectsOutOfContext();
358   aDisplayer->closeLocalContexts();
359 }
360
361 void PartSet_Module::onFeatureConstructed(ObjectPtr theFeature, int theMode)
362 {
363   bool isDisplay = theMode != PartSet_OperationSketchBase::FM_Hide;
364   ModuleBase_Operation* aCurOperation = myWorkshop->operationMgr()->currentOperation();
365   PartSet_OperationSketchBase* aPrevOp = dynamic_cast<PartSet_OperationSketchBase*>(aCurOperation);
366   if (aPrevOp) {
367     std::list<FeaturePtr> aList = aPrevOp->subFeatures();
368     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
369     std::list<int> aModes = aPrevOp->getSelectionModes(aPrevOp->feature());
370     std::list<FeaturePtr>::iterator aSFIt;
371     for (aSFIt = aList.begin(); aSFIt != aList.end(); ++aSFIt) {
372       std::list<ResultPtr> aResults = (*aSFIt)->results();
373       std::list<ResultPtr>::iterator aIt;
374       for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
375         if (isDisplay)
376           aDisplayer->activateInLocalContext((*aIt), aModes, false);
377         else
378           aDisplayer->erase((*aIt), false);
379       }
380       if (!isDisplay)
381         aDisplayer->erase((*aSFIt), false);
382     }
383     aDisplayer->deactivateObjectsOutOfContext();
384   }
385   if (isDisplay)
386     ModelAPI_EventCreator::get()->sendUpdated(
387         theFeature, Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY));
388 }
389
390 ModuleBase_Operation* PartSet_Module::createOperation(const std::string& theCmdId,
391                                                       const std::string& theFeatureKind)
392 {
393   // create the operation
394   ModuleBase_Operation* anOperation = 0;
395   if (theCmdId == PartSet_OperationSketch::Type()) {
396     anOperation = new PartSet_OperationSketch(theCmdId.c_str(), this);
397   } else {
398     ModuleBase_Operation* aCurOperation = myWorkshop->operationMgr()->currentOperation();
399     FeaturePtr aSketch;
400     PartSet_OperationSketchBase* aPrevOp = dynamic_cast<PartSet_OperationSketchBase*>(aCurOperation);
401     if (aPrevOp) {
402       aSketch = aPrevOp->sketch();
403     }
404     if (PartSet_OperationFeatureCreate::canProcessKind(theCmdId)) {
405       anOperation = new PartSet_OperationFeatureCreate(theCmdId.c_str(), this, aSketch);
406     } else if (theCmdId == PartSet_OperationFeatureEditMulti::Type()) {
407       anOperation = new PartSet_OperationFeatureEditMulti(theCmdId.c_str(), this, aSketch);
408     } else if (theCmdId == PartSet_OperationFeatureEdit::Type()) {
409       anOperation = new PartSet_OperationFeatureEdit(theCmdId.c_str(), this, aSketch);
410     }
411   }
412
413   if (!anOperation) {
414     anOperation = new ModuleBase_Operation(theCmdId.c_str(), this);
415   }
416
417   // set operation description and list of widgets corresponding to the feature xml definition
418   std::string aFeatureKind = theFeatureKind.empty() ? theCmdId : theFeatureKind;
419
420   std::string aPluginFileName = featureFile(aFeatureKind);
421   Config_WidgetReader aWdgReader = Config_WidgetReader(aPluginFileName);
422   aWdgReader.readAll();
423   std::string aXmlCfg = aWdgReader.featureWidgetCfg(aFeatureKind);
424   std::string aDescription = aWdgReader.featureDescription(aFeatureKind);
425
426   //QString aXmlRepr = QString::fromStdString(aXmlCfg);
427   //ModuleBase_WidgetFactory aFactory = ModuleBase_WidgetFactory(aXmlRepr.toStdString(),
428   //                                                             myWorkshop->moduleConnector());
429   //QWidget* aContent = myWorkshop->propertyPanel()->contentWidget();
430   //qDeleteAll(aContent->children());
431   //aFactory.createWidget(aContent);
432
433   anOperation->getDescription()->setDescription(QString::fromStdString(aDescription));
434   anOperation->getDescription()->setXmlRepresentation(QString::fromStdString(aXmlCfg));
435
436   //anOperation->setModelWidgets(aXmlRepr.toStdString(), aFactory.getModelWidgets());
437
438   // connect the operation
439   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
440   if (aPreviewOp) {
441     connect(aPreviewOp, SIGNAL(featureConstructed(ObjectPtr, int)), this,
442             SLOT(onFeatureConstructed(ObjectPtr, int)));
443     connect(aPreviewOp, SIGNAL(restartRequired(std::string, ObjectPtr)), this,
444             SLOT(onRestartOperation(std::string, ObjectPtr)));
445     connect(aPreviewOp, SIGNAL(multiSelectionEnabled(bool)), this,
446             SLOT(onMultiSelectionEnabled(bool)));
447
448     connect(aPreviewOp, SIGNAL(stopSelection(const QList<ObjectPtr>&, const bool)), this,
449             SLOT(onStopSelection(const QList<ObjectPtr>&, const bool)));
450     connect(aPreviewOp, SIGNAL(setSelection(const QList<ObjectPtr>&)), this,
451             SLOT(onSetSelection(const QList<ObjectPtr>&)));
452
453     connect(aPreviewOp, SIGNAL(closeLocalContext()), this, SLOT(onCloseLocalContext()));
454
455     PartSet_OperationSketch* aSketchOp = dynamic_cast<PartSet_OperationSketch*>(aPreviewOp);
456     if (aSketchOp) {
457       connect(aSketchOp, SIGNAL(planeSelected(double, double, double)), this,
458               SLOT(onPlaneSelected(double, double, double)));
459       connect(aSketchOp, SIGNAL(fitAllView()), this, SLOT(onFitAllView()));
460     }
461   }
462
463   return anOperation;
464 }
465
466 void PartSet_Module::sendOperation(ModuleBase_Operation* theOperation)
467 {
468   static Events_ID aModuleEvent = Events_Loop::eventByName(EVENT_OPERATION_LAUNCHED);
469   boost::shared_ptr<Config_PointerMessage> aMessage =
470       boost::shared_ptr<Config_PointerMessage>(new Config_PointerMessage(aModuleEvent, this));
471   aMessage->setPointer(theOperation);
472   Events_Loop::loop()->send(aMessage);
473 }
474
475 void PartSet_Module::activateFeature(ObjectPtr theFeature, const bool isUpdateViewer)
476 {
477   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
478   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
479   if (aPreviewOp) {
480     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
481     std::list<int> aModes = aPreviewOp->getSelectionModes(theFeature);
482     aDisplayer->activateInLocalContext(theFeature, aModes, isUpdateViewer);
483
484     // If this is a Sketcher then activate objects (planar faces) outside of context
485     PartSet_OperationSketch* aSketchOp = dynamic_cast<PartSet_OperationSketch*>(aPreviewOp);
486     if (aSketchOp) {
487       Handle(StdSelect_FaceFilter) aFilter = new StdSelect_FaceFilter(StdSelect_Plane);
488       aDisplayer->activateObjectsOutOfContext(aModes, aFilter);
489     } else {
490       aDisplayer->deactivateObjectsOutOfContext();
491     }
492   }
493 }
494
495 void PartSet_Module::updateCurrentPreview(const std::string& theCmdId)
496 {
497   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
498   if (!anOperation)
499     return;
500
501   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
502   if (!aPreviewOp)
503     return;
504
505   FeaturePtr aFeature = aPreviewOp->feature();
506   if (!aFeature || aFeature->getKind() != theCmdId)
507     return;
508
509   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
510   // Hide result of sketch
511   std::list<ResultPtr> aResults = aFeature->results();
512   std::list<ResultPtr>::const_iterator aIt;
513   for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt)
514     aDisplayer->erase(*aIt, false);
515
516   std::list<FeaturePtr> aList = aPreviewOp->subFeatures();
517   std::list<int> aModes = aPreviewOp->getSelectionModes(aPreviewOp->feature());
518
519   std::list<FeaturePtr>::const_iterator anIt = aList.begin(), aLast = aList.end();
520   for (; anIt != aLast; anIt++) {
521     boost::shared_ptr<SketchPlugin_Feature> aSPFeature = boost::dynamic_pointer_cast<
522         SketchPlugin_Feature>(*anIt);
523     if (!aSPFeature)
524       continue;
525     std::list<ResultPtr> aResults = aSPFeature->results();
526     std::list<ResultPtr>::const_iterator aRIt;
527     for (aRIt = aResults.cbegin(); aRIt != aResults.cend(); ++aRIt) {
528       aDisplayer->display((*aRIt), false);
529       aDisplayer->activateInLocalContext((*aRIt), aModes, false);
530     }
531     aDisplayer->display(aSPFeature, false);
532     aDisplayer->activateInLocalContext(aSPFeature, aModes, false);
533   }
534   aDisplayer->updateViewer();
535 }
536
537 void PartSet_Module::editFeature(FeaturePtr theFeature)
538 {
539   if (!theFeature)
540     return;
541
542 //  if (theFeature->getKind() == SKETCH_KIND) {
543   //FeaturePtr aFeature = theFeature;
544   //if (XGUI_Tools::isModelObject(aFeature)) {
545   //  ObjectPtr aObject = boost::dynamic_pointer_cast<ModelAPI_Object>(aFeature);
546   //  aFeature = aObject->featureRef();
547   //}
548
549   //if (aFeature) {
550   onRestartOperation(theFeature->getKind(), theFeature);
551   updateCurrentPreview(theFeature->getKind());
552   //}
553 //  }
554 }
555
556 void PartSet_Module::onStorePoint2D(ObjectPtr theFeature, const std::string& theAttribute)
557 {
558   FeaturePtr aFeature = boost::dynamic_pointer_cast<ModelAPI_Feature>(theFeature);
559
560   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop
561       ->operationMgr()->currentOperation());
562   if (!aPreviewOp)
563     return;
564
565   boost::shared_ptr<GeomDataAPI_Point2D> aPoint = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(
566       aFeature->data()->attribute(theAttribute));
567
568   PartSet_Tools::setConstraints(aPreviewOp->sketch(), aFeature, theAttribute, aPoint->x(),
569                                 aPoint->y());
570 }
571
572 QWidget* PartSet_Module::createWidgetByType(const std::string& theType, QWidget* theParent,
573                                             Config_WidgetAPI* theWidgetApi,
574                                             QList<ModuleBase_ModelWidget*>& theModelWidgets)
575 {
576   if (theType == "sketch-start-label") {
577     PartSet_WidgetSketchLabel* aWgt = new PartSet_WidgetSketchLabel(theParent, theWidgetApi, "");
578     aWgt->setOperationsMgr(myWorkshop->operationMgr());
579     theModelWidgets.append(aWgt);
580     return aWgt->getControl();
581   } else
582     return 0;
583 }