]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_SketcherMgr.cpp
Salome HOME
Merge branch 'Dev_0.6.1' of newgeom:newgeom into Dev_0.6.1
[modules/shaper.git] / src / PartSet / PartSet_SketcherMgr.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_SketcherMgr.cpp
4 // Created:     19 Dec 2014
5 // Author:      Vitaly SMETANNIKOV
6
7 #include "PartSet_SketcherMgr.h"
8 #include "PartSet_Module.h"
9 #include "PartSet_WidgetPoint2D.h"
10 #include "PartSet_Tools.h"
11
12 #include <XGUI_ModuleConnector.h>
13 #include <XGUI_Displayer.h>
14 #include <XGUI_Workshop.h>
15 #include <XGUI_Selection.h>
16 #include <XGUI_SelectionMgr.h>
17
18 #include <ModuleBase_IViewer.h>
19 #include <ModuleBase_IWorkshop.h>
20 #include <ModuleBase_IViewWindow.h>
21 #include <ModuleBase_Operation.h>
22 #include <ModuleBase_ISelection.h>
23 #include <ModuleBase_IPropertyPanel.h>
24 #include <ModuleBase_Operation.h>
25
26 #include <Events_Loop.h>
27
28 #include <SketchPlugin_Line.h>
29 #include <SketchPlugin_Sketch.h>
30 #include <SketchPlugin_Point.h>
31 #include <SketchPlugin_Arc.h>
32 #include <SketchPlugin_Circle.h>
33 #include <SketchPlugin_ConstraintLength.h>
34 #include <SketchPlugin_ConstraintDistance.h>
35 #include <SketchPlugin_ConstraintParallel.h>
36 #include <SketchPlugin_ConstraintPerpendicular.h>
37 #include <SketchPlugin_ConstraintRadius.h>
38 #include <SketchPlugin_ConstraintRigid.h>
39
40 #include <SelectMgr_IndexedMapOfOwner.hxx>
41 #include <StdSelect_BRepOwner.hxx>
42
43 #include <ModelAPI_Events.h>
44
45 #include <QMouseEvent>
46 #include <QApplication>
47
48
49
50
51 /// Returns list of unique objects by sum of objects from List1 and List2
52 QList<ObjectPtr> getSumList(const QList<ModuleBase_ViewerPrs>& theList1,
53                                        const QList<ModuleBase_ViewerPrs>& theList2)
54 {
55   QList<ObjectPtr> aRes;
56   foreach (ModuleBase_ViewerPrs aPrs, theList1) {
57     if (!aRes.contains(aPrs.object()))
58       aRes.append(aPrs.object());
59   }
60   foreach (ModuleBase_ViewerPrs aPrs, theList2) {
61     if (!aRes.contains(aPrs.object()))
62       aRes.append(aPrs.object());
63   }
64   return aRes;
65 }
66
67
68
69
70 PartSet_SketcherMgr::PartSet_SketcherMgr(PartSet_Module* theModule)
71   : QObject(theModule), myModule(theModule), myIsDragging(false), myDragDone(false)
72 {
73   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
74   ModuleBase_IViewer* aViewer = aWorkshop->viewer();
75
76   connect(aViewer, SIGNAL(mousePress(ModuleBase_IViewWindow*, QMouseEvent*)),
77           this, SLOT(onMousePressed(ModuleBase_IViewWindow*, QMouseEvent*)));
78
79   connect(aViewer, SIGNAL(mouseRelease(ModuleBase_IViewWindow*, QMouseEvent*)),
80           this, SLOT(onMouseReleased(ModuleBase_IViewWindow*, QMouseEvent*)));
81
82   connect(aViewer, SIGNAL(mouseMove(ModuleBase_IViewWindow*, QMouseEvent*)),
83           this, SLOT(onMouseMoved(ModuleBase_IViewWindow*, QMouseEvent*)));
84
85   connect(aViewer, SIGNAL(mouseDoubleClick(ModuleBase_IViewWindow*, QMouseEvent*)),
86           this, SLOT(onMouseDoubleClick(ModuleBase_IViewWindow*, QMouseEvent*)));
87 }
88
89 PartSet_SketcherMgr::~PartSet_SketcherMgr()
90 {
91   if (!myPlaneFilter.IsNull())
92     myPlaneFilter.Nullify();
93 }
94
95 void PartSet_SketcherMgr::onMousePressed(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
96 {
97   // 
98   if (!(theEvent->buttons() & Qt::LeftButton))
99     return;
100
101   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
102   ModuleBase_Operation* aOperation = aWorkshop->currentOperation();
103   // Use only for sketch operations
104   if (aOperation && myCurrentSketch) {
105     if (!PartSet_Tools::sketchPlane(myCurrentSketch))
106       return;
107
108     bool isSketcher = (aOperation->id().toStdString() == SketchPlugin_Sketch::ID());
109     bool isSketchOpe = sketchOperationIdList().contains(aOperation->id());
110
111     // Avoid non-sketch operations
112     if ((!isSketchOpe) && (!isSketcher))
113       return;
114
115     bool isEditing = aOperation->isEditOperation();
116
117     // Ignore creation sketch operation
118     if ((!isSketcher) && (!isEditing))
119       return;
120
121     if (theEvent->modifiers()) {
122       // If user performs multiselection
123       if (isSketchOpe /* && (!isSketcher)*/)
124         if (!aOperation->commit())
125           aOperation->abort();
126       return;
127     }
128
129     // MoveTo in order to highlight current object
130     ModuleBase_IViewer* aViewer = aWorkshop->viewer();
131     aViewer->AISContext()->MoveTo(theEvent->x(), theEvent->y(), theWnd->v3dView());
132
133     // Remember highlighted objects for editing
134     ModuleBase_ISelection* aSelect = aWorkshop->selection();
135     QList<ModuleBase_ViewerPrs> aHighlighted = aSelect->getHighlighted();
136     QList<ModuleBase_ViewerPrs> aSelected = aSelect->getSelected();
137     myEditingFeatures.clear();
138     myEditingAttr.clear();
139
140     bool aHasShift = (theEvent->modifiers() & Qt::ShiftModifier);
141     QObjectPtrList aSelObjects;
142     if (aHasShift)
143       aSelObjects = getSumList(aHighlighted, aSelected);
144     else {
145       foreach (ModuleBase_ViewerPrs aPrs, aHighlighted) {
146         aSelObjects.append(aPrs.object());
147       }
148     }
149     if ((aSelObjects.size() == 0)) {
150       if (isSketchOpe && (!isSketcher))
151         // commit previous operation
152         if (!aOperation->commit())
153           aOperation->abort();
154       return;
155     }
156     if (aSelObjects.size() == 1) {
157       // Move by selected shape (vertex). Can be used only for single selection
158       foreach(ModuleBase_ViewerPrs aPrs, aHighlighted) {
159         FeaturePtr aFeature = ModelAPI_Feature::feature(aHighlighted.first().object());
160         if (aFeature) {
161           myEditingFeatures.append(aFeature);
162           TopoDS_Shape aShape = aPrs.shape();
163           if (!aShape.IsNull()) {
164             if (aShape.ShapeType() == TopAbs_VERTEX) {
165               AttributePtr aAttr = PartSet_Tools::findAttributeBy2dPoint(myEditingFeatures.first(), 
166                                                                          aShape, myCurrentSketch);
167               if (aAttr)
168                 myEditingAttr.append(aAttr);
169             }
170           }
171         }
172       }
173     } else {
174       // Provide multi-selection. Can be used only for features
175       foreach (ObjectPtr aObj, aSelObjects) {
176         FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
177         if (aFeature && (!myEditingFeatures.contains(aFeature)))
178           myEditingFeatures.append(aFeature);
179       }
180
181     }
182     // If nothing highlighted - return
183     if (myEditingFeatures.size() == 0)
184       return;
185
186     if (isSketcher) {
187       myIsDragging = true;
188       get2dPoint(theWnd, theEvent, myCurX, myCurY);
189       myDragDone = false;
190       aWorkshop->viewer()->enableMultiselection(false);
191       launchEditing();
192
193     } else if (isSketchOpe && isEditing) {
194       // If selected another object commit current result
195       aOperation->commit();
196
197       myIsDragging = true;
198       get2dPoint(theWnd, theEvent, myCurX, myCurY);
199       myDragDone = false;
200       aWorkshop->viewer()->enableMultiselection(false);
201
202       // This is necessary in order to finalize previous operation
203       QApplication::processEvents();
204       launchEditing();
205     }
206   }
207 }
208
209 void PartSet_SketcherMgr::onMouseReleased(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
210 {
211   ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
212   ModuleBase_Operation* aOp = aWorkshop->currentOperation();
213   if (!aOp)
214     return;
215   if (!sketchOperationIdList().contains(aOp->id()))
216     return;
217
218   // Only for sketcher operations
219   ModuleBase_IViewer* aViewer = aWorkshop->viewer();
220   if (myIsDragging) {
221     myIsDragging = false;
222     if (myDragDone) {
223       aViewer->enableMultiselection(true);
224       //aOp->commit();
225       myEditingFeatures.clear();
226       myEditingAttr.clear();
227
228       // Reselect edited object
229       aViewer->AISContext()->MoveTo(theEvent->x(), theEvent->y(), theWnd->v3dView());
230       if (theEvent->modifiers() & Qt::ShiftModifier)
231         aViewer->AISContext()->ShiftSelect();
232       else
233         aViewer->AISContext()->Select();
234       return;
235     }
236   }
237   if (!aViewer->isMultiSelectionEnabled()) {
238     aViewer->enableMultiselection(true);
239   }
240 }
241
242 void PartSet_SketcherMgr::onMouseMoved(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
243 {
244   if (myIsDragging) {
245     ModuleBase_Operation* aOperation = myModule->workshop()->currentOperation();
246     if (aOperation->id().toStdString() == SketchPlugin_Sketch::ID())
247       return; // No edit operation activated
248
249     static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_MOVED);
250
251     Handle(V3d_View) aView = theWnd->v3dView();
252     gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), aView);
253     double aX, aY;
254     PartSet_Tools::convertTo2D(aPoint, myCurrentSketch, aView, aX, aY);
255     double dX =  aX - myCurX;
256     double dY =  aY - myCurY;
257
258     if ((myEditingAttr.size() == 1) && myEditingAttr.first()) {
259       // probably we have prehighlighted point
260       AttributePtr aAttr = myEditingAttr.first();
261       std::string aAttrId = aAttr->id();
262       ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
263       QList<ModuleBase_ModelWidget*> aWidgets = aPanel->modelWidgets();
264       // Find corresponded widget to provide dragging
265       foreach (ModuleBase_ModelWidget* aWgt, aWidgets) {
266         if (aWgt->attributeID() == aAttrId) {
267           PartSet_WidgetPoint2D* aWgt2d = dynamic_cast<PartSet_WidgetPoint2D*>(aWgt);
268           if (aWgt2d) {
269             aWgt2d->setPoint(aWgt2d->x() + dX, aWgt2d->y() + dY);
270             break;
271           }
272         }
273       }
274     } else {
275       ModuleBase_IWorkshop* aWorkshop = myModule->workshop();
276       XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(aWorkshop);
277       XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
278       bool isEnableUpdateViewer = aDisplayer->enableUpdateViewer(false);
279
280       foreach(FeaturePtr aFeature, myEditingFeatures) {
281         std::shared_ptr<SketchPlugin_Feature> aSketchFeature =
282           std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
283         if (aSketchFeature) {
284           // save the previous selection
285
286           std::list<AttributePtr> aSelectedAttributes;
287           std::list<ResultPtr> aSelectedResults;
288           getCurrentSelection(aSketchFeature, myCurrentSketch, aWorkshop, aSelectedAttributes,
289                               aSelectedResults);
290           // save the previous selection: end
291
292           aSketchFeature->move(dX, dY);
293           // TODO: the selection restore should be after the AIS presentation is rebuilt
294           Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_MOVED));
295           Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
296
297           // restore the previous selection
298           SelectMgr_IndexedMapOfOwner anOwnersToSelect;
299           getSelectionOwners(aSketchFeature, myCurrentSketch, aWorkshop, aSelectedAttributes,
300                              aSelectedResults, anOwnersToSelect);
301           aConnector->workshop()->selector()->setSelectedOwners(anOwnersToSelect, false);
302           // restore the previous selection
303         }
304         ModelAPI_EventCreator::get()->sendUpdated(aSketchFeature, anEvent, true);
305         Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
306       }
307       // TODO: set here
308       //Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_MOVED));
309       //Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
310
311       //Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
312       aDisplayer->enableUpdateViewer(isEnableUpdateViewer);
313       aDisplayer->updateViewer();
314     }
315     myDragDone = true;
316     myCurX = aX;
317     myCurY = aY;
318   }
319 }
320
321 void PartSet_SketcherMgr::onMouseDoubleClick(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent)
322 {
323   ModuleBase_Operation* aOperation = myModule->workshop()->currentOperation();
324   if (aOperation && aOperation->isEditOperation()) {
325     std::string aId = aOperation->id().toStdString();
326     if ((aId == SketchPlugin_ConstraintLength::ID()) ||
327       (aId == SketchPlugin_ConstraintDistance::ID()) ||
328       (aId == SketchPlugin_ConstraintRadius::ID())) 
329     {
330       // Activate dimension value editing on double click
331       ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
332       QList<ModuleBase_ModelWidget*> aWidgets = aPanel->modelWidgets();
333       // Find corresponded widget to activate value editing
334       foreach (ModuleBase_ModelWidget* aWgt, aWidgets) {
335         if (aWgt->attributeID() == "ConstraintValue") {
336           aWgt->focusTo();
337           return;
338         }
339       }
340     }
341   }
342 }
343
344 void PartSet_SketcherMgr::get2dPoint(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent, 
345                                 double& theX, double& theY)
346 {
347   Handle(V3d_View) aView = theWnd->v3dView();
348   gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), aView);
349   PartSet_Tools::convertTo2D(aPoint, myCurrentSketch, aView, theX, theY);
350 }
351
352 void PartSet_SketcherMgr::launchEditing()
353 {
354   if (myEditingFeatures.size() > 0) {
355     FeaturePtr aFeature = myEditingFeatures.first();
356     std::shared_ptr<SketchPlugin_Feature> aSPFeature = 
357               std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
358     if (aSPFeature) {
359       myModule->editFeature(aSPFeature);
360     }
361   }
362 }
363
364
365 QStringList PartSet_SketcherMgr::sketchOperationIdList()
366 {
367   static QStringList aIds;
368   if (aIds.size() == 0) {
369     aIds << SketchPlugin_Line::ID().c_str();
370     aIds << SketchPlugin_Point::ID().c_str();
371     aIds << SketchPlugin_Arc::ID().c_str();
372     aIds << SketchPlugin_Circle::ID().c_str();
373     aIds << SketchPlugin_ConstraintLength::ID().c_str();
374     aIds << SketchPlugin_ConstraintDistance::ID().c_str();
375     aIds << SketchPlugin_ConstraintRigid::ID().c_str();
376     aIds << SketchPlugin_ConstraintRadius::ID().c_str();
377     aIds << SketchPlugin_ConstraintPerpendicular::ID().c_str();
378     aIds << SketchPlugin_ConstraintParallel::ID().c_str();
379   }
380   return aIds;
381 }
382
383 void PartSet_SketcherMgr::startSketch(ModuleBase_Operation* theOperation)
384 {
385   // Display all sketcher sub-Objects
386   myCurrentSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(theOperation->feature());
387   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myModule->workshop());
388   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
389
390   // Hide sketcher result
391   std::list<ResultPtr> aResults = myCurrentSketch->results();
392   std::list<ResultPtr>::const_iterator aIt;
393   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
394     aDisplayer->erase((*aIt), false);
395   }
396   aDisplayer->erase(myCurrentSketch, false);
397
398   // Display sketcher objects
399   for (int i = 0; i < myCurrentSketch->numberOfSubs(); i++) {
400     FeaturePtr aFeature = myCurrentSketch->subFeature(i);
401     std::list<ResultPtr> aResults = aFeature->results();
402     std::list<ResultPtr>::const_iterator aIt;
403     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
404       aDisplayer->display((*aIt), false);
405     }
406     aDisplayer->display(aFeature, false);
407   }
408
409   if (myPlaneFilter.IsNull()) 
410     myPlaneFilter = new ModuleBase_ShapeInPlaneFilter();
411
412   myModule->workshop()->viewer()->addSelectionFilter(myPlaneFilter);
413   if (theOperation->isEditOperation()) {
414     // If it is editing of sketch then it means that plane is already defined
415     std::shared_ptr<GeomAPI_Pln> aPln = PartSet_Tools::sketchPlane(myCurrentSketch);
416     myPlaneFilter->setPlane(aPln->impl<gp_Pln>());
417   }
418   aDisplayer->updateViewer();
419 }
420
421 void PartSet_SketcherMgr::stopSketch(ModuleBase_Operation* theOperation)
422 {
423   DataPtr aData = myCurrentSketch->data();
424   if ((!aData) || (!aData->isValid())) {
425     // The sketch was aborted
426     myCurrentSketch = CompositeFeaturePtr();
427     myModule->workshop()->viewer()->removeSelectionFilter(myPlaneFilter);
428     return; 
429   }
430   // Hide all sketcher sub-Objects
431   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myModule->workshop());
432   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
433   for (int i = 0; i < myCurrentSketch->numberOfSubs(); i++) {
434     FeaturePtr aFeature = myCurrentSketch->subFeature(i);
435     std::list<ResultPtr> aResults = aFeature->results();
436     std::list<ResultPtr>::const_iterator aIt;
437     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
438       aDisplayer->erase((*aIt), false);
439     }
440     aDisplayer->erase(aFeature, false);
441   }
442   // Display sketcher result
443   std::list<ResultPtr> aResults = myCurrentSketch->results();
444   std::list<ResultPtr>::const_iterator aIt;
445   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
446     aDisplayer->display((*aIt), false);
447   }
448   aDisplayer->display(myCurrentSketch);
449     
450   myCurrentSketch = CompositeFeaturePtr();
451   myModule->workshop()->viewer()->removeSelectionFilter(myPlaneFilter);
452   aDisplayer->updateViewer();
453 }
454
455
456 void PartSet_SketcherMgr::onPlaneSelected(const std::shared_ptr<GeomAPI_Pln>& thePln)
457 {
458   myPlaneFilter->setPlane(thePln->impl<gp_Pln>());
459 }
460
461 void PartSet_SketcherMgr::getCurrentSelection(const ObjectPtr& theObject,
462                                               const FeaturePtr& theSketch,
463                                               ModuleBase_IWorkshop* theWorkshop,
464                                               std::list<AttributePtr>& theSelectedAttributes,
465                                               std::list<ResultPtr>& theSelectedResults)
466 {
467   FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
468   if (aFeature.get() == NULL)
469     return;
470
471   ModuleBase_IViewer* aViewer = theWorkshop->viewer();
472   Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
473   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(theWorkshop);
474   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
475
476   // TODO: check all results and IPresentable feature
477   std::list<ResultPtr> aResults = aFeature->results();
478   std::list<ResultPtr>::const_iterator aIt;
479   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt)
480   {
481     ResultPtr aResult = *aIt;
482
483     AISObjectPtr aAISObj = aDisplayer->getAISObject(aResult);
484     if (aAISObj.get() == NULL)
485       continue;
486     Handle(AIS_InteractiveObject) anAISIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
487     for (aContext->InitSelected(); aContext->MoreSelected(); aContext->NextSelected())
488     {
489       Handle(StdSelect_BRepOwner) aBRepOwner = Handle(StdSelect_BRepOwner)::DownCast(
490                                                                       aContext->SelectedOwner());
491       if (aBRepOwner.IsNull())
492         continue;
493
494       Handle(AIS_InteractiveObject) anIO = Handle(AIS_InteractiveObject)::DownCast(
495                                                                         aBRepOwner->Selectable());
496       if (anIO != anAISIO)
497         continue;
498
499       if (aBRepOwner->HasShape()) {
500         const TopoDS_Shape& aShape = aBRepOwner->Shape();
501         TopAbs_ShapeEnum aShapeType = aShape.ShapeType();
502         if (aShapeType == TopAbs_VERTEX) {
503           AttributePtr aPntAttr = PartSet_Tools::findAttributeBy2dPoint(theObject,
504                                                                         aShape, theSketch);
505           if (aPntAttr.get() != NULL)
506             theSelectedAttributes.push_back(aPntAttr);
507         }
508         else if (aShapeType == TopAbs_EDGE) {
509           theSelectedResults.push_back(aResult);
510         }
511       }
512     }
513   }
514 }
515
516 void PartSet_SketcherMgr::getSelectionOwners(const ObjectPtr& theObject,
517                                              const FeaturePtr& theSketch,
518                                              ModuleBase_IWorkshop* theWorkshop,
519                                              const std::list<AttributePtr>& theSelectedAttributes,
520                                              const std::list<ResultPtr>& theSelectedResults,
521                                              SelectMgr_IndexedMapOfOwner& anOwnersToSelect)
522 {
523   FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
524   if (aFeature.get() == NULL)
525     return;
526
527   ModuleBase_IViewer* aViewer = theWorkshop->viewer();
528   Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
529   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(theWorkshop);
530   XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
531
532   // TODO: check all results and IPresentable feature
533   ResultPtr aResult = aFeature->firstResult();
534
535   AISObjectPtr aAISObj = aDisplayer->getAISObject(aResult);
536
537   if (aAISObj.get() != NULL) {
538     Handle(AIS_InteractiveObject) anAISIO = aAISObj->impl<Handle(AIS_InteractiveObject)>();
539
540     SelectMgr_IndexedMapOfOwner aSelectedOwners;
541
542     aConnector->workshop()->selector()->selection()->entityOwners(anAISIO, aSelectedOwners);
543     for  ( Standard_Integer i = 1, n = aSelectedOwners.Extent(); i <= n; i++ ) {
544       Handle(StdSelect_BRepOwner) anOwner = Handle(StdSelect_BRepOwner)::DownCast(aSelectedOwners(i));
545       if ( anOwner.IsNull() || !anOwner->HasShape() )
546         continue;
547       const TopoDS_Shape& aShape = anOwner->Shape();
548       TopAbs_ShapeEnum aShapeType = aShape.ShapeType();
549       if (aShapeType == TopAbs_VERTEX) {
550         AttributePtr aPntAttr = PartSet_Tools::findAttributeBy2dPoint(aFeature, aShape, theSketch);
551         if (aPntAttr.get() != NULL) {
552           std::list<AttributePtr>::const_iterator anIt = theSelectedAttributes.begin(),
553                                                   aLast = theSelectedAttributes.end();
554           for (; anIt != aLast; anIt++) {
555             AttributePtr anAttrIt = *anIt;
556             if (anAttrIt.get() == aPntAttr.get()) {
557               anOwnersToSelect.Add(anOwner);
558             }
559           }
560         }
561       }
562     }
563   }
564 }