Salome HOME
b304940d3f37a56d46ffac6dfca3b20abd5d7556
[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 #include <ModelAPI_Session.h>
22
23 #include <GeomDataAPI_Point2D.h>
24 #include <GeomDataAPI_Point.h>
25 #include <GeomDataAPI_Dir.h>
26
27 #include <XGUI_MainWindow.h>
28 #include <XGUI_Displayer.h>
29 #include <XGUI_Viewer.h>
30 #include <XGUI_Workshop.h>
31 #include <XGUI_OperationMgr.h>
32 #include <XGUI_ViewPort.h>
33 #include <XGUI_ActionsMgr.h>
34 #include <XGUI_ViewerProxy.h>
35 #include <XGUI_ContextMenuMgr.h>
36 #include <XGUI_PropertyPanel.h>
37 #include <XGUI_ModuleConnector.h>
38 #include <XGUI_Tools.h>
39
40 #include <SketchPlugin_Line.h>
41 #include <SketchPlugin_Sketch.h>
42
43 #include <Config_PointerMessage.h>
44 #include <Config_ModuleReader.h>
45 #include <Config_WidgetReader.h>
46 #include <Events_Loop.h>
47 //#include <Events_Message.h>
48 //#include <Events_Error.h>
49
50 #include <GeomAPI_Shape.h>
51 #include <GeomAPI_AISObject.h>
52 #include <AIS_Shape.hxx>
53 #include <AIS_DimensionSelectionMode.hxx>
54
55 #include <StdSelect_TypeOfFace.hxx>
56
57 #include <QObject>
58 #include <QMouseEvent>
59 #include <QString>
60
61 #include <GeomAlgoAPI_FaceBuilder.h>
62 #include <GeomDataAPI_Dir.h>
63
64 #ifdef _DEBUG
65 #include <QDebug>
66 #endif
67
68 /*!Create and return new instance of XGUI_Module*/
69 extern "C" PARTSET_EXPORT ModuleBase_IModule* createModule(ModuleBase_IWorkshop* theWshop)
70 {
71   return new PartSet_Module(theWshop);
72 }
73
74 PartSet_Module::PartSet_Module(ModuleBase_IWorkshop* theWshop)
75   : ModuleBase_IModule(theWshop)
76 {
77   //myWorkshop = theWshop;
78   myListener = new PartSet_Listener(this);
79
80   connect(myWorkshop, SIGNAL(operationStarted(ModuleBase_Operation*)), 
81     this, SLOT(onOperationStarted(ModuleBase_Operation*)));
82
83   connect(myWorkshop, SIGNAL(operationStopped(ModuleBase_Operation*)), this,
84           SLOT(onOperationStopped(ModuleBase_Operation*)));
85
86   XGUI_Workshop* aXWshop = xWorkshop();
87   XGUI_ContextMenuMgr* aContextMenuMgr = aXWshop->contextMenuMgr();
88   connect(aContextMenuMgr, SIGNAL(actionTriggered(const QString&, bool)), this,
89           SLOT(onContextMenuCommand(const QString&, bool)));
90
91 }
92
93 PartSet_Module::~PartSet_Module()
94 {
95 }
96
97 void PartSet_Module::createFeatures()
98 {
99   //Registering of validators
100   SessionPtr aMgr = ModelAPI_Session::get();
101   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
102   aFactory->registerValidator("PartSet_DistanceValidator", new PartSet_DistanceValidator);
103   aFactory->registerValidator("PartSet_LengthValidator", new PartSet_LengthValidator);
104   aFactory->registerValidator("PartSet_PerpendicularValidator", new PartSet_PerpendicularValidator);
105   aFactory->registerValidator("PartSet_ParallelValidator", new PartSet_ParallelValidator);
106   aFactory->registerValidator("PartSet_RadiusValidator", new PartSet_RadiusValidator);
107
108   Config_ModuleReader aXMLReader = Config_ModuleReader();
109   aXMLReader.readAll();
110   myFeaturesInFiles = aXMLReader.featuresInFiles();
111 }
112
113 void PartSet_Module::featureCreated(QAction* theFeature)
114 {
115   connect(theFeature, SIGNAL(triggered(bool)), this, SLOT(onFeatureTriggered()));
116 }
117
118 std::string PartSet_Module::featureFile(const std::string& theFeatureId)
119 {
120   return myFeaturesInFiles[theFeatureId];
121 }
122
123 /*
124  *
125  */
126 void PartSet_Module::onFeatureTriggered()
127 {
128   QAction* aCmd = dynamic_cast<QAction*>(sender());
129   //Do nothing on uncheck
130   if (aCmd->isCheckable() && !aCmd->isChecked())
131     return;
132   launchOperation(aCmd->data().toString());
133 }
134
135
136 void PartSet_Module::onOperationStarted(ModuleBase_Operation* theOperation)
137 {
138   XGUI_Workshop* aXWshp = xWorkshop();
139   XGUI_Displayer* aDisplayer = aXWshp->displayer();
140   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(theOperation);
141   if (aPreviewOp) {
142     XGUI_PropertyPanel* aPropPanel = aXWshp->propertyPanel();
143     connect(aPropPanel, SIGNAL(storedPoint2D(ObjectPtr, const std::string&)), this,
144             SLOT(onStorePoint2D(ObjectPtr, const std::string&)), Qt::UniqueConnection);
145
146     //aDisplayer->deactivateObjectsOutOfContext();
147     PartSet_OperationSketch* aSketchOp = dynamic_cast<PartSet_OperationSketch*>(aPreviewOp);
148     if (aSketchOp) {
149       if (aSketchOp->isEditOperation()) {
150         setSketchingMode(getSketchPlane(aSketchOp->feature()));
151       } else {
152         aDisplayer->openLocalContext();
153         aDisplayer->activateObjectsOutOfContext(QIntList());
154         myPlaneFilter = new StdSelect_FaceFilter(StdSelect_Plane);
155         aDisplayer->addSelectionFilter(myPlaneFilter);
156         QIntList aModes = sketchSelectionModes(aPreviewOp->feature());
157         aDisplayer->setSelectionModes(aModes);
158       } 
159     }
160   }
161 }
162
163 void PartSet_Module::onOperationStopped(ModuleBase_Operation* theOperation)
164 {
165   if (!theOperation)
166     return;
167   XGUI_Workshop* aXWshp = xWorkshop();
168   XGUI_Displayer* aDisplayer = aXWshp->displayer();
169   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(theOperation);
170   if (aPreviewOp) {
171     XGUI_PropertyPanel* aPropPanel = aXWshp->propertyPanel();
172
173     PartSet_OperationSketch* aSketchOp = dynamic_cast<PartSet_OperationSketch*>(aPreviewOp);
174     if (aSketchOp) {
175       aDisplayer->closeLocalContexts();
176     } else {
177       PartSet_OperationFeatureCreate* aCreationOp = 
178         dynamic_cast<PartSet_OperationFeatureCreate*>(aPreviewOp);
179       if (aCreationOp) {
180         // Activate just created object for selection
181         FeaturePtr aFeature = aCreationOp->feature();
182         QIntList aModes = sketchSelectionModes(aFeature);
183         const std::list<ResultPtr>& aResults = aFeature->results();
184         std::list<ResultPtr>::const_iterator anIt, aLast = aResults.end();
185         for (anIt = aResults.begin(); anIt != aLast; anIt++) {
186           aDisplayer->activate(*anIt, aModes);
187         }
188         aDisplayer->activate(aFeature, aModes);
189       }
190     }
191   }// else {
192     // Activate results of current feature for selection
193     //FeaturePtr aFeature = theOperation->feature();
194     //XGUI_Displayer* aDisplayer = aXWshp->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 = workshop()->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   XGUI_Workshop* aXWshp = xWorkshop();
216   PartSet_OperationSketchBase* aPreviewOp = 
217     dynamic_cast<PartSet_OperationSketchBase*>(workshop()->currentOperation());
218   if (aPreviewOp) {
219     ModuleBase_ISelection* aSelection = workshop()->selection();
220     // Initialise operation with preliminary selection
221     //QList<ModuleBase_ViewerPrs> aSelected = aSelection->getSelected();
222     //QList<ModuleBase_ViewerPrs> aHighlighted = aSelection->getHighlighted();
223     //QList<ObjectPtr> aObjList;
224     //bool aHasShift = (theEvent->modifiers() & Qt::ShiftModifier);
225     //if (aHasShift) {
226     //  foreach(ModuleBase_ViewerPrs aPrs, aSelected)
227     //    aObjList.append(aPrs.object());
228
229     //  foreach (ModuleBase_ViewerPrs aPrs, aHighlighted) {
230     //    if (!aObjList.contains(aPrs.object()))
231     //      aObjList.append(aPrs.object());
232     //  }
233     //} else {
234     //  foreach(ModuleBase_ViewerPrs aPrs, aHighlighted)
235     //    aObjList.append(aPrs.object());
236     //}
237     //onSetSelection(aObjList);
238     aPreviewOp->mousePressed(theEvent, myWorkshop->viewer(), aSelection);
239   }
240 }
241
242 void PartSet_Module::onMouseReleased(QMouseEvent* theEvent)
243 {
244   PartSet_OperationSketchBase* aPreviewOp = 
245     dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop->currentOperation());
246   if (aPreviewOp) {
247     ModuleBase_ISelection* aSelection = workshop()->selection();
248     // Initialise operation with preliminary selection
249     aPreviewOp->mouseReleased(theEvent, myWorkshop->viewer(), aSelection);
250   }
251 }
252
253 void PartSet_Module::onMouseMoved(QMouseEvent* theEvent)
254 {
255   PartSet_OperationSketchBase* aPreviewOp = 
256     dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop->currentOperation());
257   if (aPreviewOp)
258     aPreviewOp->mouseMoved(theEvent, myWorkshop->viewer());
259 }
260
261 void PartSet_Module::onKeyRelease(QKeyEvent* theEvent)
262 {
263   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
264   PartSet_OperationSketchBase* aPreviewOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
265   if (aPreviewOp) {
266     aPreviewOp->keyReleased(theEvent->key());
267   }
268 }
269
270 void PartSet_Module::onMouseDoubleClick(QMouseEvent* theEvent)
271 {
272   PartSet_OperationSketchBase* aPreviewOp = 
273     dynamic_cast<PartSet_OperationSketchBase*>(myWorkshop->currentOperation());
274   Handle(V3d_View) aView = myWorkshop->viewer()->activeView();
275   if (aPreviewOp && (!aView.IsNull())) {
276     ModuleBase_ISelection* aSelection = workshop()->selection();
277     // Initialise operation with preliminary selection
278     aPreviewOp->mouseDoubleClick(theEvent, aView, aSelection);
279   }
280 }
281
282 void PartSet_Module::onPlaneSelected(double theX, double theY, double theZ)
283 {
284   myWorkshop->viewer()->setViewProjection(theX, theY, theZ);
285   xWorkshop()->actionsMgr()->update();
286   // Set working plane
287   ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
288   FeaturePtr aSketch = anOperation->feature();
289   setSketchingMode(getSketchPlane(aSketch));
290 }
291
292 void PartSet_Module::onFitAllView()
293 {
294   myWorkshop->viewer()->fitAll();
295 }
296
297 void PartSet_Module::onRestartOperation(std::string theName, ObjectPtr theObject)
298 {
299   FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
300
301   std::string aKind = aFeature ? aFeature->getKind() : "";
302   ModuleBase_Operation* anOperation = createOperation(theName, aKind);
303
304   PartSet_OperationSketchBase* aSketchOp = dynamic_cast<PartSet_OperationSketchBase*>(anOperation);
305   if (aSketchOp) {
306     PartSet_OperationFeatureCreate* aCreateOp = dynamic_cast<PartSet_OperationFeatureCreate*>(anOperation);
307     if (aCreateOp)
308       aCreateOp->initFeature(aFeature);
309     else {
310       anOperation->setFeature(aFeature);
311     }
312     ModuleBase_ISelection* aSelection = workshop()->selection();
313     // Initialise operation with preliminary selection
314     aSketchOp->initSelection(aSelection, myWorkshop->viewer());
315   } else if (aFeature) { // In case of edit operation: set the previously created feature to the operation
316     anOperation->setFeature(aFeature);
317     ////Deactivate result of current feature in order to avoid its selection
318     XGUI_Displayer* aDisplayer = xWorkshop()->displayer();
319     std::list<ResultPtr> aResults = aFeature->results();
320     std::list<ResultPtr>::const_iterator aIt;
321     for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt) {
322       aDisplayer->deactivate(*aIt);
323     }
324   }
325   sendOperation(anOperation);
326   xWorkshop()->actionsMgr()->updateCheckState();
327 }
328
329 void PartSet_Module::onMultiSelectionEnabled(bool theEnabled)
330 {
331   ModuleBase_IViewer* aViewer = myWorkshop->viewer();
332   aViewer->enableMultiselection(theEnabled);
333 }
334
335 void PartSet_Module::onStopSelection(const QList<ObjectPtr>& theFeatures, const bool isStop)
336 {
337   XGUI_Displayer* aDisplayer = xWorkshop()->displayer();
338   //if (!isStop) {
339   //  foreach(ObjectPtr aObject, theFeatures) {
340   //    activateFeature(aObject);
341   //  }
342   //}
343   aDisplayer->stopSelection(theFeatures, isStop, false);
344
345   ModuleBase_IViewer* aViewer = myWorkshop->viewer();
346   aViewer->enableSelection(!isStop);
347
348   aDisplayer->updateViewer();
349 }
350
351 void PartSet_Module::onSetSelection(const QList<ObjectPtr>& theFeatures)
352 {
353   XGUI_Displayer* aDisplayer = xWorkshop()->displayer();
354   aDisplayer->setSelected(theFeatures, false);
355   aDisplayer->updateViewer();
356 }
357
358 void PartSet_Module::setSketchingMode(const gp_Pln& thePln)
359 {
360   XGUI_Displayer* aDisplayer = xWorkshop()->displayer();
361   if (!myPlaneFilter.IsNull()) {
362     aDisplayer->removeSelectionFilter(myPlaneFilter);
363     myPlaneFilter.Nullify();
364   }
365   QIntList aModes;
366   // Clear standard selection modes
367   aDisplayer->setSelectionModes(aModes);
368   aDisplayer->openLocalContext();
369
370   // Set filter
371   mySketchFilter = new ModuleBase_ShapeInPlaneFilter(thePln);
372   aDisplayer->addSelectionFilter(mySketchFilter);
373
374   // Get default selection modes
375   aModes = sketchSelectionModes(ObjectPtr());
376   aDisplayer->activateObjectsOutOfContext(aModes);
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 }