]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_Module.cpp
Salome HOME
d3058ab2bf63bd86a83ad8898517260b10365a00
[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 #include <GeomDataAPI_Point.h>
24 #include <GeomDataAPI_Dir.h>
25
26 #include <XGUI_MainWindow.h>
27 #include <XGUI_Displayer.h>
28 #include <XGUI_Viewer.h>
29 #include <XGUI_Workshop.h>
30 #include <XGUI_OperationMgr.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 #include <SketchPlugin_Sketch.h>
41
42 #include <Config_PointerMessage.h>
43 #include <Config_ModuleReader.h>
44 #include <Config_WidgetReader.h>
45 #include <Events_Loop.h>
46 //#include <Events_Message.h>
47 //#include <Events_Error.h>
48
49 #include <GeomAPI_Shape.h>
50 #include <GeomAPI_AISObject.h>
51 #include <AIS_Shape.hxx>
52 #include <AIS_DimensionSelectionMode.hxx>
53
54 #include <StdSelect_TypeOfFace.hxx>
55
56 #include <QObject>
57 #include <QMouseEvent>
58 #include <QString>
59
60 #include <GeomAlgoAPI_FaceBuilder.h>
61 #include <GeomDataAPI_Dir.h>
62
63 #ifdef _DEBUG
64 #include <QDebug>
65 #endif
66
67 /*!Create and return new instance of XGUI_Module*/
68 extern "C" PARTSET_EXPORT ModuleBase_IModule* createModule(ModuleBase_IWorkshop* theWshop)
69 {
70   return new PartSet_Module(theWshop);
71 }
72
73 PartSet_Module::PartSet_Module(ModuleBase_IWorkshop* theWshop)
74   : ModuleBase_IModule(theWshop)
75 {
76   //myWorkshop = theWshop;
77   myListener = new PartSet_Listener(this);
78
79   connect(myWorkshop, SIGNAL(operationStarted(ModuleBase_Operation*)), 
80     this, SLOT(onOperationStarted(ModuleBase_Operation*)));
81
82   connect(myWorkshop, SIGNAL(operationStopped(ModuleBase_Operation*)), this,
83           SLOT(onOperationStopped(ModuleBase_Operation*)));
84
85   XGUI_Workshop* aXWshop = xWorkshop();
86   XGUI_ContextMenuMgr* aContextMenuMgr = aXWshop->contextMenuMgr();
87   connect(aContextMenuMgr, SIGNAL(actionTriggered(const QString&, bool)), this,
88           SLOT(onContextMenuCommand(const QString&, bool)));
89
90 }
91
92 PartSet_Module::~PartSet_Module()
93 {
94 }
95
96 void PartSet_Module::createFeatures()
97 {
98   //Registering of validators
99   SessionPtr aMgr = ModelAPI_Session::get();
100   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
101   aFactory->registerValidator("PartSet_DistanceValidator", new PartSet_DistanceValidator);
102   aFactory->registerValidator("PartSet_LengthValidator", new PartSet_LengthValidator);
103   aFactory->registerValidator("PartSet_PerpendicularValidator", new PartSet_PerpendicularValidator);
104   aFactory->registerValidator("PartSet_ParallelValidator", new PartSet_ParallelValidator);
105   aFactory->registerValidator("PartSet_RadiusValidator", new PartSet_RadiusValidator);
106
107   Config_ModuleReader aXMLReader = Config_ModuleReader();
108   aXMLReader.readAll();
109   myFeaturesInFiles = aXMLReader.featuresInFiles();
110 }
111
112 void PartSet_Module::featureCreated(QAction* theFeature)
113 {
114   connect(theFeature, SIGNAL(triggered(bool)), this, SLOT(onFeatureTriggered()));
115 }
116
117 std::string PartSet_Module::featureFile(const std::string& theFeatureId)
118 {
119   return myFeaturesInFiles[theFeatureId];
120 }
121
122 /*
123  *
124  */
125 void PartSet_Module::onFeatureTriggered()
126 {
127   QAction* aCmd = dynamic_cast<QAction*>(sender());
128   //Do nothing on uncheck
129   if (aCmd->isCheckable() && !aCmd->isChecked())
130     return;
131   launchOperation(aCmd->data().toString());
132 }
133
134
135 void PartSet_Module::onOperationStarted(ModuleBase_Operation* theOperation)
136 {
137   XGUI_Workshop* aXWshp = xWorkshop();
138   XGUI_Displayer* aDisplayer = aXWshp->displayer();
139   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(theOperation);
140   if (aPreviewOp) {
141     XGUI_PropertyPanel* aPropPanel = aXWshp->propertyPanel();
142     connect(aPropPanel, SIGNAL(storedPoint2D(ObjectPtr, const std::string&)), this,
143             SLOT(onStorePoint2D(ObjectPtr, const std::string&)), Qt::UniqueConnection);
144
145     //aDisplayer->deactivateObjectsOutOfContext();
146     PartSet_OperationSketch* aSketchOp = dynamic_cast<PartSet_OperationSketch*>(aPreviewOp);
147     if (aSketchOp) {
148       if (aSketchOp->isEditOperation()) {
149         setSketchingMode(getSketchPlane(aSketchOp->feature()));
150       } else {
151         aDisplayer->openLocalContext();
152         aDisplayer->activateObjectsOutOfContext(QIntList());
153         myPlaneFilter = new StdSelect_FaceFilter(StdSelect_Plane);
154         aDisplayer->addSelectionFilter(myPlaneFilter);
155         QIntList aModes = sketchSelectionModes(aPreviewOp->feature());
156         aDisplayer->setSelectionModes(aModes);
157       } 
158     }
159   }
160 }
161
162 void PartSet_Module::onOperationStopped(ModuleBase_Operation* theOperation)
163 {
164   if (!theOperation)
165     return;
166   XGUI_Workshop* aXWshp = xWorkshop();
167   XGUI_Displayer* aDisplayer = aXWshp->displayer();
168   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(theOperation);
169   if (aPreviewOp) {
170     XGUI_PropertyPanel* aPropPanel = aXWshp->propertyPanel();
171
172     PartSet_OperationSketch* aSketchOp = dynamic_cast<PartSet_OperationSketch*>(aPreviewOp);
173     if (aSketchOp) {
174       aDisplayer->closeLocalContexts();
175     } else {
176       PartSet_OperationFeatureCreate* aCreationOp = 
177         dynamic_cast<PartSet_OperationFeatureCreate*>(aPreviewOp);
178       if (aCreationOp) {
179         // Activate just created object for selection
180         FeaturePtr aFeature = aCreationOp->feature();
181         QIntList aModes = sketchSelectionModes(aFeature);
182         const std::list<ResultPtr>& aResults = aFeature->results();
183         std::list<ResultPtr>::const_iterator anIt, aLast = aResults.end();
184         for (anIt = aResults.begin(); anIt != aLast; anIt++) {
185           aDisplayer->activate(*anIt, aModes);
186         }
187         aDisplayer->activate(aFeature, aModes);
188       }
189     }
190   }// else {
191     // Activate results of current feature for selection
192     //FeaturePtr aFeature = theOperation->feature();
193     //XGUI_Displayer* aDisplayer = aXWshp->displayer();
194     //std::list<ResultPtr> aResults = aFeature->results();
195     //std::list<ResultPtr>::const_iterator aIt;
196     //for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt) {
197     //  aDisplayer->activate(*aIt);
198     //}    
199   //}
200 }
201
202 void PartSet_Module::onContextMenuCommand(const QString& theId, bool isChecked)
203 {
204   QList<ObjectPtr> aFeatures = workshop()->selection()->selectedObjects();
205   if (theId == "EDIT_CMD" && (aFeatures.size() > 0)) {
206     FeaturePtr aFeature = boost::dynamic_pointer_cast<ModelAPI_Feature>(aFeatures.first());
207     if (aFeature)
208       editFeature(aFeature);
209   }
210 }
211
212 void PartSet_Module::onMousePressed(QMouseEvent* theEvent)
213 {
214   XGUI_Workshop* aXWshp = xWorkshop();
215   PartSet_OperationSketchBase* aPreviewOp = 
216     dynamic_cast<PartSet_OperationSketchBase*>(workshop()->currentOperation());
217   if (aPreviewOp) {
218     ModuleBase_ISelection* aSelection = workshop()->selection();
219     // Initialise operation with preliminary selection
220     //QList<ModuleBase_ViewerPrs> aSelected = aSelection->getSelected();
221     //QList<ModuleBase_ViewerPrs> aHighlighted = aSelection->getHighlighted();
222     //QList<ObjectPtr> aObjList;
223     //bool aHasShift = (theEvent->modifiers() & Qt::ShiftModifier);
224     //if (aHasShift) {
225     //  foreach(ModuleBase_ViewerPrs aPrs, aSelected)
226     //    aObjList.append(aPrs.object());
227
228     //  foreach (ModuleBase_ViewerPrs aPrs, aHighlighted) {
229     //    if (!aObjList.contains(aPrs.object()))
230     //      aObjList.append(aPrs.object());
231     //  }
232     //} else {
233     //  foreach(ModuleBase_ViewerPrs aPrs, aHighlighted)
234     //    aObjList.append(aPrs.object());
235     //}
236     //onSetSelection(aObjList);
237     aPreviewOp->mousePressed(theEvent, myWorkshop->viewer(), aSelection);
238   }
239 }
240
241 void PartSet_Module::onMouseReleased(QMouseEvent* theEvent)
242 {
243   PartSet_OperationSketchBase* aPreviewOp = 
244     dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop->currentOperation());
245   if (aPreviewOp) {
246     ModuleBase_ISelection* aSelection = workshop()->selection();
247     // Initialise operation with preliminary selection
248     aPreviewOp->mouseReleased(theEvent, myWorkshop->viewer(), aSelection);
249   }
250 }
251
252 void PartSet_Module::onMouseMoved(QMouseEvent* theEvent)
253 {
254   PartSet_OperationSketchBase* aPreviewOp = 
255     dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop->currentOperation());
256   if (aPreviewOp)
257     aPreviewOp->mouseMoved(theEvent, myWorkshop->viewer());
258 }
259
260 void PartSet_Module::onKeyRelease(QKeyEvent* theEvent)
261 {
262   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
263   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
264   if (aPreviewOp) {
265     aPreviewOp->keyReleased(theEvent->key());
266   }
267 }
268
269 void PartSet_Module::onMouseDoubleClick(QMouseEvent* theEvent)
270 {
271   PartSet_OperationSketchBase* aPreviewOp = 
272     dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop->currentOperation());
273   Handle(V3d_View) aView = myWorkshop->viewer()->activeView();
274   if (aPreviewOp && (!aView.IsNull())) {
275     ModuleBase_ISelection* aSelection = workshop()->selection();
276     // Initialise operation with preliminary selection
277     aPreviewOp->mouseDoubleClick(theEvent, aView, aSelection);
278   }
279 }
280
281 void PartSet_Module::onPlaneSelected(double theX, double theY, double theZ)
282 {
283   myWorkshop->viewer()->setViewProjection(theX, theY, theZ);
284   xWorkshop()->actionsMgr()->update();
285   // Set working plane
286   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
287   FeaturePtr aSketch = anOperation->feature();
288   setSketchingMode(getSketchPlane(aSketch));
289 }
290
291 void PartSet_Module::onFitAllView()
292 {
293   myWorkshop->viewer()->fitAll();
294 }
295
296 void PartSet_Module::onRestartOperation(std::string theName, ObjectPtr theObject)
297 {
298   FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
299
300   std::string aKind = aFeature ? aFeature->getKind() : "";
301   ModuleBase_Operation* anOperation = createOperation(theName, aKind);
302
303   PartSet_OperationSketchBase* aSketchOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
304   if (aSketchOp) {
305     PartSet_OperationFeatureCreate* aCreateOp = dynamic_cast<PartSet_OperationFeatureCreate*>(anOperation);
306     if (aCreateOp)
307       aCreateOp->initFeature(aFeature);
308     else {
309       anOperation->setFeature(aFeature);
310     }
311     ModuleBase_ISelection* aSelection = workshop()->selection();
312     // Initialise operation with preliminary selection
313     QList<ModuleBase_ViewerPrs> aSelected = aSelection->getSelected();
314     QList<ModuleBase_ViewerPrs> aHighlighted = aSelection->getHighlighted();
315     aSketchOp->initSelection(aSelected, aHighlighted);
316   } //else if (aFeature) {
317     //anOperation->setFeature(aFeature);
318     ////Deactivate result of current feature in order to avoid its selection
319     //XGUI_Displayer* aDisplayer = xWorkshop()->displayer();
320     //std::list<ResultPtr> aResults = aFeature->results();
321     //std::list<ResultPtr>::const_iterator aIt;
322     //for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt) {
323     //  aDisplayer->deactivate(*aIt);
324     //}
325   //}
326   sendOperation(anOperation);
327   xWorkshop()->actionsMgr()->updateCheckState();
328 }
329
330 void PartSet_Module::onMultiSelectionEnabled(bool theEnabled)
331 {
332   ModuleBase_IViewer* aViewer = myWorkshop->viewer();
333   aViewer->enableMultiselection(theEnabled);
334 }
335
336 void PartSet_Module::onStopSelection(const QList<ObjectPtr>& theFeatures, const bool isStop)
337 {
338   XGUI_Displayer* aDisplayer = xWorkshop()->displayer();
339   //if (!isStop) {
340   //  foreach(ObjectPtr aObject, theFeatures) {
341   //    activateFeature(aObject);
342   //  }
343   //}
344   aDisplayer->stopSelection(theFeatures, isStop, false);
345
346   ModuleBase_IViewer* aViewer = myWorkshop->viewer();
347   aViewer->enableSelection(!isStop);
348
349   aDisplayer->updateViewer();
350 }
351
352 void PartSet_Module::onSetSelection(const QList<ObjectPtr>& theFeatures)
353 {
354   XGUI_Displayer* aDisplayer = xWorkshop()->displayer();
355   aDisplayer->setSelected(theFeatures, false);
356   aDisplayer->updateViewer();
357 }
358
359 void PartSet_Module::setSketchingMode(const gp_Pln& thePln)
360 {
361   XGUI_Displayer* aDisplayer = xWorkshop()->displayer();
362   if (!myPlaneFilter.IsNull()) {
363     aDisplayer->removeSelectionFilter(myPlaneFilter);
364     myPlaneFilter.Nullify();
365   }
366   QIntList aModes;
367   // Clear standard selection modes
368   aDisplayer->setSelectionModes(aModes);
369   aDisplayer->openLocalContext();
370   // Get default selection modes
371   aModes = sketchSelectionModes(ObjectPtr());
372   aDisplayer->activateObjectsOutOfContext(aModes);
373
374   // Set filter
375   mySketchFilter = new ModuleBase_ShapeInPlaneFilter(thePln);
376   aDisplayer->addSelectionFilter(mySketchFilter);
377 }
378
379 void PartSet_Module::onFeatureConstructed(ObjectPtr theFeature, int theMode)
380 {
381   bool isDisplay = theMode != PartSet_OperationSketchBase::FM_Hide;
382   ModuleBase_Operation* aCurOperation = myWorkshop->currentOperation();
383   PartSet_OperationSketchBase* aPrevOp = dynamic_cast<PartSet_OperationSketchBase*>(aCurOperation);
384   if (aPrevOp) {
385     std::list<FeaturePtr> aList = aPrevOp->subFeatures();
386     XGUI_Displayer* aDisplayer = xWorkshop()->displayer();
387     QIntList aModes = sketchSelectionModes(aPrevOp->feature());
388     std::list<FeaturePtr>::iterator aSFIt;
389     for (aSFIt = aList.begin(); aSFIt != aList.end(); ++aSFIt) {
390       std::list<ResultPtr> aResults = (*aSFIt)->results();
391       std::list<ResultPtr>::iterator aIt;
392       for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
393         if (!isDisplay)
394           aDisplayer->erase((*aIt), false);
395       }
396       if (!isDisplay)
397         aDisplayer->erase((*aSFIt), false);
398     }
399     //aDisplayer->deactivateObjectsOutOfContext();
400   }
401   if (isDisplay)
402     ModelAPI_EventCreator::get()->sendUpdated(
403         theFeature, Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY));
404 }
405
406 ModuleBase_Operation* PartSet_Module::createOperation(const std::string& theCmdId,
407                                                       const std::string& theFeatureKind)
408 {
409   // create the operation
410   ModuleBase_Operation* anOperation = 0;
411   if (theCmdId == PartSet_OperationSketch::Type()) {
412     anOperation = new PartSet_OperationSketch(theCmdId.c_str(), this);
413   } else {
414     ModuleBase_Operation* aCurOperation = myWorkshop->currentOperation();
415     CompositeFeaturePtr aSketch;
416     PartSet_OperationSketchBase* aPrevOp = dynamic_cast<PartSet_OperationSketchBase*>(aCurOperation);
417     if (aPrevOp) {
418       aSketch = aPrevOp->sketch();
419     }
420     if (PartSet_OperationFeatureCreate::canProcessKind(theCmdId)) {
421       anOperation = new PartSet_OperationFeatureCreate(theCmdId.c_str(), this, aSketch);
422     } else if (theCmdId == PartSet_OperationFeatureEditMulti::Type()) {
423       anOperation = new PartSet_OperationFeatureEditMulti(theCmdId.c_str(), this, aSketch);
424     } else if (theCmdId == PartSet_OperationFeatureEdit::Type()) {
425       anOperation = new PartSet_OperationFeatureEdit(theCmdId.c_str(), this, aSketch);
426     }
427   }
428
429   if (!anOperation) {
430     anOperation = new ModuleBase_Operation(theCmdId.c_str(), this);
431   }
432
433   // set operation description and list of widgets corresponding to the feature xml definition
434   std::string aFeatureKind = theFeatureKind.empty() ? theCmdId : theFeatureKind;
435
436   std::string aPluginFileName = featureFile(aFeatureKind);
437   Config_WidgetReader aWdgReader = Config_WidgetReader(aPluginFileName);
438   aWdgReader.readAll();
439   std::string aXmlCfg = aWdgReader.featureWidgetCfg(aFeatureKind);
440   std::string aDescription = aWdgReader.featureDescription(aFeatureKind);
441
442   anOperation->getDescription()->setDescription(QString::fromStdString(aDescription));
443   anOperation->getDescription()->setXmlRepresentation(QString::fromStdString(aXmlCfg));
444
445   // connect the operation
446   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
447   if (aPreviewOp) {
448     connect(aPreviewOp, SIGNAL(featureConstructed(ObjectPtr, int)), this,
449             SLOT(onFeatureConstructed(ObjectPtr, int)));
450     connect(aPreviewOp, SIGNAL(restartRequired(std::string, ObjectPtr)), this,
451             SLOT(onRestartOperation(std::string, ObjectPtr)));
452     // If manage multi selection the it will be impossible to select more then one
453     // object under operation Edit
454 //    connect(aPreviewOp, SIGNAL(multiSelectionEnabled(bool)), this,
455 //            SLOT(onMultiSelectionEnabled(bool)));
456
457     connect(aPreviewOp, SIGNAL(stopSelection(const QList<ObjectPtr>&, const bool)), this,
458             SLOT(onStopSelection(const QList<ObjectPtr>&, const bool)));
459     connect(aPreviewOp, SIGNAL(setSelection(const QList<ObjectPtr>&)), this,
460             SLOT(onSetSelection(const QList<ObjectPtr>&)));
461
462     PartSet_OperationSketch* aSketchOp = dynamic_cast<PartSet_OperationSketch*>(aPreviewOp);
463     if (aSketchOp) {
464       connect(aSketchOp, SIGNAL(planeSelected(double, double, double)), this,
465               SLOT(onPlaneSelected(double, double, double)));
466       connect(aSketchOp, SIGNAL(fitAllView()), this, SLOT(onFitAllView()));
467     }
468   }
469
470   return anOperation;
471 }
472
473
474 void PartSet_Module::updateCurrentPreview(const std::string& theCmdId)
475 {
476   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
477   if (!anOperation)
478     return;
479
480   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
481   if (!aPreviewOp)
482     return;
483
484   FeaturePtr aFeature = aPreviewOp->feature();
485   if (!aFeature || aFeature->getKind() != theCmdId)
486     return;
487
488   XGUI_Displayer* aDisplayer = xWorkshop()->displayer();
489   // Hide result of sketch
490   std::list<ResultPtr> aResults = aFeature->results();
491   std::list<ResultPtr>::const_iterator aIt;
492   for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt)
493     aDisplayer->erase(*aIt, false);
494
495   std::list<FeaturePtr> aList = aPreviewOp->subFeatures();
496
497   std::list<FeaturePtr>::const_iterator anIt = aList.begin(), aLast = aList.end();
498   for (; anIt != aLast; anIt++) {
499     boost::shared_ptr<SketchPlugin_Feature> aSPFeature = boost::dynamic_pointer_cast<
500         SketchPlugin_Feature>(*anIt);
501     if (!aSPFeature)
502       continue;
503     std::list<ResultPtr> aResults = aSPFeature->results();
504     std::list<ResultPtr>::const_iterator aRIt;
505     for (aRIt = aResults.cbegin(); aRIt != aResults.cend(); ++aRIt) {
506       aDisplayer->display((*aRIt), false);
507       aDisplayer->activate((*aRIt), sketchSelectionModes((*aRIt)));
508     }
509     aDisplayer->display(aSPFeature, false);
510     aDisplayer->activate(aSPFeature, sketchSelectionModes(aSPFeature));
511   }
512   aDisplayer->updateViewer();
513 }
514
515 void PartSet_Module::editFeature(FeaturePtr theFeature)
516 {
517   if (!theFeature)
518     return;
519
520 //  if (theFeature->getKind() == SKETCH_KIND) {
521   //FeaturePtr aFeature = theFeature;
522   //if (XGUI_Tools::isModelObject(aFeature)) {
523   //  ObjectPtr aObject = boost::dynamic_pointer_cast<ModelAPI_Object>(aFeature);
524   //  aFeature = aObject->featureRef();
525   //}
526
527   //if (aFeature) {
528   onRestartOperation(theFeature->getKind(), theFeature);
529   updateCurrentPreview(theFeature->getKind());
530   //}
531 //  }
532 }
533
534 void PartSet_Module::onStorePoint2D(ObjectPtr theFeature, const std::string& theAttribute)
535 {
536   FeaturePtr aFeature = boost::dynamic_pointer_cast<ModelAPI_Feature>(theFeature);
537
538   PartSet_OperationSketchBase* aPreviewOp = 
539     dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop->currentOperation());
540   if (!aPreviewOp)
541     return;
542
543   boost::shared_ptr<GeomDataAPI_Point2D> aPoint = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(
544       aFeature->data()->attribute(theAttribute));
545
546   PartSet_Tools::setConstraints(aPreviewOp->sketch(), aFeature, theAttribute, aPoint->x(),
547                                 aPoint->y());
548 }
549
550 QWidget* PartSet_Module::createWidgetByType(const std::string& theType, QWidget* theParent,
551                                             Config_WidgetAPI* theWidgetApi,
552                                             QList<ModuleBase_ModelWidget*>& theModelWidgets)
553 {
554   if (theType == "sketch-start-label") {
555     PartSet_WidgetSketchLabel* aWgt = new PartSet_WidgetSketchLabel(theParent, theWidgetApi, "");
556     aWgt->setOperationsMgr(xWorkshop()->operationMgr());
557     theModelWidgets.append(aWgt);
558     return aWgt->getControl();
559   } else
560     return 0;
561 }
562
563
564 XGUI_Workshop* PartSet_Module::xWorkshop() const
565 {
566   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
567   if (aConnector) {
568     return aConnector->workshop();
569   }
570   return 0;
571 }
572
573
574 QIntList PartSet_Module::sketchSelectionModes(ObjectPtr theFeature)
575 {
576   QIntList aModes;
577   FeaturePtr aFeature = boost::dynamic_pointer_cast<ModelAPI_Feature>(theFeature);
578   if (aFeature) {
579     if (aFeature->getKind() == SketchPlugin_Sketch::ID()) {
580       aModes.append(TopAbs_FACE);
581       return aModes;
582     } else if (PartSet_Tools::isConstraintFeature(aFeature->getKind())) {
583       aModes.append(AIS_DSM_Text);
584       aModes.append(AIS_DSM_Line);
585       return aModes;
586     }
587   } 
588   aModes.append(AIS_Shape::SelectionMode((TopAbs_ShapeEnum) TopAbs_VERTEX));
589   aModes.append(AIS_Shape::SelectionMode((TopAbs_ShapeEnum) TopAbs_EDGE));
590   return aModes;
591 }
592
593
594 gp_Pln PartSet_Module::getSketchPlane(FeaturePtr theSketch) const
595 {
596   DataPtr aData = theSketch->data();
597   boost::shared_ptr<GeomDataAPI_Point> anOrigin = boost::dynamic_pointer_cast<GeomDataAPI_Point>(
598       aData->attribute(SketchPlugin_Sketch::ORIGIN_ID()));
599   boost::shared_ptr<GeomDataAPI_Dir> aNorm = boost::dynamic_pointer_cast<GeomDataAPI_Dir>(
600       aData->attribute(SketchPlugin_Sketch::NORM_ID()));
601   gp_Pnt aOrig(anOrigin->x(), anOrigin->y(), anOrigin->z());
602   gp_Dir aDir(aNorm->x(), aNorm->y(), aNorm->z());
603   return gp_Pln(aOrig, aDir);
604 }
605
606
607 void PartSet_Module::onSelectionChanged()
608 {
609   ModuleBase_ISelection* aSelect = myWorkshop->selection();
610   QList<ModuleBase_ViewerPrs> aSelected = aSelect->getSelected();
611   // We need to stop edit operation if selection is cleared
612   if (aSelected.size() == 0) {
613     PartSet_OperationFeatureEdit* anEditOp = 
614       dynamic_cast<PartSet_OperationFeatureEdit*>(myWorkshop->currentOperation());
615     if (!anEditOp)
616       return;
617     anEditOp->commit();
618   } else {
619     PartSet_OperationSketchBase* aSketchOp = 
620       dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop->currentOperation());
621     if (aSketchOp) {
622       aSketchOp->selectionChanged(aSelect);
623     }
624   }
625 }