Salome HOME
b41cf30053ce1651c7b0a3bbc1115b6714ac8be0
[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   ModuleBase_Operation* aCurOperation = myWorkshop->operationMgr()->currentOperation();
348   PartSet_OperationSketchBase* aPrevOp = dynamic_cast<PartSet_OperationSketchBase*>(aCurOperation);
349   if (aPrevOp) {
350     std::list<FeaturePtr> aList = aPrevOp->subFeatures();
351     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
352     std::list<int> aModes = aPrevOp->getSelectionModes(aPrevOp->feature());
353     std::list<FeaturePtr>::iterator aSFIt; 
354     for (aSFIt = aList.begin(); aSFIt != aList.end(); ++aSFIt) {
355       std::list<ResultPtr> aResults = (*aSFIt)->results();
356       std::list<ResultPtr>::iterator aIt;
357       for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
358         aDisplayer->activateInLocalContext((*aIt), aModes, false);
359       }
360     }
361   }
362   ModelAPI_EventCreator::get()->sendUpdated(theFeature, 
363       Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY));
364
365 /*  bool isDisplay = theMode != PartSet_OperationSketchBase::FM_Hide;
366   // TODO visualizePreview(theFeature, isDisplay, false);
367   if (!isDisplay) {
368     ModuleBase_Operation* aCurOperation = myWorkshop->operationMgr()->currentOperation();
369     FeaturePtr aSketch;
370     PartSet_OperationSketchBase* aPrevOp = dynamic_cast<PartSet_OperationSketchBase*>(aCurOperation);
371     if (aPrevOp) {
372       std::list<FeaturePtr> aList = aPrevOp->subFeatures();
373       XGUI_Displayer* aDisplayer = myWorkshop->displayer();
374       std::list<int> aModes = aPrevOp->getSelectionModes(aPrevOp->feature());
375
376       std::list<FeaturePtr>::const_iterator anIt = aList.begin(),
377                                             aLast = aList.end();
378       //TODO for (; anIt != aLast; anIt++)
379       //  visualizePreview((*anIt), false, false);
380       //aDisplayer->updateViewer();
381     }
382   }
383
384   if (theMode == PartSet_OperationSketchBase::FM_Activation ||
385       theMode == PartSet_OperationSketchBase::FM_Deactivation)
386     activateFeature(theFeature, true);*/
387 }
388
389 ModuleBase_Operation* PartSet_Module::createOperation(const std::string& theCmdId,
390                                                       const std::string& theFeatureKind)
391 {
392   // create the operation
393   ModuleBase_Operation* anOperation = 0;
394   if (theCmdId == PartSet_OperationSketch::Type()) {
395     anOperation = new PartSet_OperationSketch(theCmdId.c_str(), this);
396   }
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     if (PartSet_OperationFeatureCreate::canProcessKind(theCmdId))
404       anOperation = new PartSet_OperationFeatureCreate(theCmdId.c_str(), this, aSketch);
405     else if (theCmdId == PartSet_OperationFeatureEditMulti::Type())
406                 anOperation = new PartSet_OperationFeatureEditMulti(theCmdId.c_str(), this, aSketch);
407     else if (theCmdId == PartSet_OperationFeatureEdit::Type())
408       anOperation = new PartSet_OperationFeatureEdit(theCmdId.c_str(), this, aSketch);
409   }
410
411   if (!anOperation) {
412     anOperation = new ModuleBase_Operation(theCmdId.c_str(), this);
413   }
414
415   // set operation description and list of widgets corresponding to the feature xml definition
416   std::string aFeatureKind = theFeatureKind.empty() ? theCmdId : theFeatureKind;
417
418   std::string aPluginFileName = featureFile(aFeatureKind);
419   Config_WidgetReader aWdgReader = Config_WidgetReader(aPluginFileName);
420   aWdgReader.readAll();
421   std::string aXmlCfg = aWdgReader.featureWidgetCfg(aFeatureKind);
422   std::string aDescription = aWdgReader.featureDescription(aFeatureKind);
423
424   //QString aXmlRepr = QString::fromStdString(aXmlCfg);
425   //ModuleBase_WidgetFactory aFactory = ModuleBase_WidgetFactory(aXmlRepr.toStdString(),
426   //                                                             myWorkshop->moduleConnector());
427   //QWidget* aContent = myWorkshop->propertyPanel()->contentWidget();
428   //qDeleteAll(aContent->children());
429   //aFactory.createWidget(aContent);
430
431   anOperation->getDescription()->setDescription(QString::fromStdString(aDescription));
432   anOperation->getDescription()->setXmlRepresentation(QString::fromStdString(aXmlCfg));
433
434   //anOperation->setModelWidgets(aXmlRepr.toStdString(), aFactory.getModelWidgets());
435
436   // connect the operation
437   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
438   if (aPreviewOp) {
439     connect(aPreviewOp, SIGNAL(featureConstructed(FeaturePtr, int)),
440             this, SLOT(onFeatureConstructed(FeaturePtr, int)));
441     connect(aPreviewOp, SIGNAL(launchOperation(std::string, ObjectPtr)),
442             this, SLOT(onLaunchOperation(std::string, ObjectPtr)));
443     connect(aPreviewOp, SIGNAL(multiSelectionEnabled(bool)),
444             this, SLOT(onMultiSelectionEnabled(bool)));
445
446     connect(aPreviewOp, SIGNAL(stopSelection(const QList<ObjectPtr>&, const bool)),
447             this, SLOT(onStopSelection(const QList<ObjectPtr>&, const bool)));
448     connect(aPreviewOp, SIGNAL(setSelection(const QList<ObjectPtr>&)),
449             this, SLOT(onSetSelection(const QList<ObjectPtr>&)));
450
451      connect(aPreviewOp, SIGNAL(closeLocalContext()),
452              this, SLOT(onCloseLocalContext()));
453
454     PartSet_OperationSketch* aSketchOp = dynamic_cast<PartSet_OperationSketch*>(aPreviewOp);
455     if (aSketchOp) {
456       connect(aSketchOp, SIGNAL(planeSelected(double, double, double)),
457               this, SLOT(onPlaneSelected(double, double, double)));
458       connect(aSketchOp, SIGNAL(fitAllView()),
459               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   Config_PointerMessage aMessage(aModuleEvent, this);
470   aMessage.setPointer(theOperation);
471   Events_Loop::loop()->send(aMessage);
472 }
473
474
475 /*void PartSet_Module::visualizePreview(FeaturePtr theFeature, bool isDisplay,
476                                       const bool isUpdateViewer)
477 {
478   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
479   if (!anOperation)
480     return;
481
482   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
483   if (!aPreviewOp)
484     return;
485
486   ResultPtr aResult = theFeature->firstResult();
487   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
488   if (isDisplay) {
489     boost::shared_ptr<SketchPlugin_Feature> aSPFeature = 
490       boost::dynamic_pointer_cast<SketchPlugin_Feature>(theFeature);
491     if (aSPFeature) {
492       PartSet_OperationSketch* aSketchOp = dynamic_cast<PartSet_OperationSketch*>(aPreviewOp);
493       if (aSketchOp && !aSketchOp->hasSketchPlane())
494         showPlanes();
495     }
496   }
497   else
498     aDisplayer->erase(aResult, false);
499
500   if (isUpdateViewer)
501     aDisplayer->updateViewer();
502 }*/
503
504 void PartSet_Module::activateFeature(ObjectPtr theFeature, const bool isUpdateViewer)
505 {
506   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
507   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
508   if (aPreviewOp) {
509     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
510     aDisplayer->activateInLocalContext(theFeature, aPreviewOp->getSelectionModes(theFeature),
511                                         isUpdateViewer);
512 /*    FeaturePtr aFeature = aPreviewOp->feature();
513     if (aFeature) {
514       std::list<ResultPtr> aResList = aFeature->results();
515       std::list<ResultPtr>::iterator aIt;
516       for (aIt = aResList.begin(); aIt != aResList.end(); ++aIt) {
517         aDisplayer->deactivate((*aIt), false);
518       }
519     }*/
520   }
521 }
522
523 void PartSet_Module::updateCurrentPreview(const std::string& theCmdId)
524 {
525   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
526   if (!anOperation)
527     return;
528
529   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
530   if (!aPreviewOp)
531     return;
532
533   FeaturePtr aFeature = aPreviewOp->feature();
534   if (!aFeature || aFeature->getKind() != theCmdId)
535     return;
536
537   std::list<FeaturePtr> aList = aPreviewOp->subFeatures();
538   XGUI_Displayer* aDisplayer = myWorkshop->displayer();
539   std::list<int> aModes = aPreviewOp->getSelectionModes(aPreviewOp->feature());
540
541   std::list<FeaturePtr>::const_iterator anIt = aList.begin(), 
542                                         aLast = aList.end();
543   for (; anIt != aLast; anIt++) {
544     boost::shared_ptr<SketchPlugin_Feature> aSPFeature = 
545       boost::dynamic_pointer_cast<SketchPlugin_Feature>(*anIt);
546     if (!aSPFeature)
547       continue;
548     //visualizePreview((*anIt), true, false);
549     aDisplayer->activateInLocalContext((*anIt), aModes, false);
550   }
551   aDisplayer->updateViewer();
552 }
553
554 void PartSet_Module::editFeature(FeaturePtr theFeature)
555 {
556   if (!theFeature)
557     return;
558
559 //  if (theFeature->getKind() == SKETCH_KIND) {
560     //FeaturePtr aFeature = theFeature;
561     //if (XGUI_Tools::isModelObject(aFeature)) {
562     //  ObjectPtr aObject = boost::dynamic_pointer_cast<ModelAPI_Object>(aFeature);
563     //  aFeature = aObject->featureRef();
564     //}
565
566     //if (aFeature) {
567       onLaunchOperation(theFeature->getKind(), theFeature);
568       updateCurrentPreview(theFeature->getKind());
569     //}
570 //  }
571 }
572
573 void PartSet_Module::onStorePoint2D(FeaturePtr theFeature, const std::string& theAttribute)
574 {
575   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(
576                                        myWorkshop->operationMgr()->currentOperation());
577   if (!aPreviewOp)
578     return;
579
580   boost::shared_ptr<GeomDataAPI_Point2D> aPoint =
581         boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(theFeature->data()->attribute(theAttribute));
582
583   PartSet_Tools::setConstraints(aPreviewOp->sketch(), theFeature, theAttribute,
584                                 aPoint->x(), aPoint->y());
585 }
586
587 /*bool PartSet_Module::isFeatureEnabled(const QString& theCmdId) const
588 {
589   XGUI_OperationMgr* aOpMgr = myWorkshop->operationMgr();
590   XGUI_ActionsMgr* aActMgr = myWorkshop->actionsMgr();
591
592   ModuleBase_Operation* aOperation = aOpMgr->currentOperation();
593   if (!aOperation)
594     return !aActMgr->isNested(theCmdId);
595
596   PartSet_OperationFeatureEdit* aSketchEdtOp = dynamic_cast<PartSet_OperationFeatureEdit*>(aOperation);
597   if (aSketchEdtOp) {
598     QStringList aConstraintList;
599     aConstraintList<<"SketchConstraintDistance"<<"SketchConstraintLength"
600       <<"SketchConstraintRadius"<<"SketchConstraintParallel"<<"SketchConstraintPerpendicular";
601     return aConstraintList.contains(theCmdId);
602   }
603   QStringList aList = aActMgr->nestedCommands(aOperation->id());
604   return aList.contains(theCmdId);
605 }*/
606
607 QWidget* PartSet_Module::createWidgetByType(const std::string& theType, QWidget* theParent, 
608                          Config_WidgetAPI* theWidgetApi, QList<ModuleBase_ModelWidget*>& theModelWidgets)
609 {
610   if (theType == "sketch-start-label") {
611     PartSet_WidgetSketchLabel* aWgt = new PartSet_WidgetSketchLabel(theParent, theWidgetApi);
612     aWgt->setOperationsMgr(myWorkshop->operationMgr());
613     theModelWidgets.append(aWgt);
614     return aWgt->getControl();
615   } else
616     return 0;
617 }