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