Salome HOME
Issue #1787 : isAxisSelected() is workaround and should be replaced on code to make...
[modules/shaper.git] / src / PartSet / PartSet_WidgetPoint2d.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_WidgetPoint2D.cpp
4 // Created:     25 Apr 2014
5 // Author:      Natalia ERMOLAEVA
6
7 #include "PartSet_WidgetPoint2d.h"
8 #include <PartSet_Tools.h>
9 #include <PartSet_Module.h>
10 #include <PartSet_SketcherReetntrantMgr.h>
11
12 #include <XGUI_Tools.h>
13 #include <XGUI_Workshop.h>
14 #include <XGUI_Displayer.h>
15
16 #include <ModuleBase_ParamSpinBox.h>
17 #include <ModuleBase_Tools.h>
18 #include <ModuleBase_IViewer.h>
19 #include <ModuleBase_IViewWindow.h>
20 #include <ModuleBase_ISelection.h>
21 #include <ModuleBase_ViewerPrs.h>
22 #include <ModuleBase_WidgetValidator.h>
23 #include <ModuleBase_LabelValue.h>
24
25 #include <Config_Keywords.h>
26 #include <Config_WidgetAPI.h>
27
28 #include <Events_Loop.h>
29 #include <ModelAPI_Events.h>
30 #include <ModelAPI_AttributeBoolean.h>
31
32 #include <ModelAPI_Feature.h>
33 #include <ModelAPI_Data.h>
34 #include <ModelAPI_Object.h>
35 #include <GeomDataAPI_Point2D.h>
36 #include <GeomAPI_Pnt2d.h>
37
38 #include <GeomAPI_ShapeExplorer.h>
39 #include <GeomAPI_Vertex.h>
40
41 #include <SketchPlugin_Feature.h>
42 #include <SketchPlugin_ConstraintCoincidence.h>
43 #include <SketchPlugin_Line.h>
44 #include <SketchPlugin_Arc.h>
45 #include <SketchPlugin_Circle.h>
46 #include <SketchPlugin_Point.h>
47
48 #include <QGroupBox>
49 #include <QGridLayout>
50 #include <QLabel>
51 #include <QEvent>
52 #include <QMouseEvent>
53 #include <QApplication>
54
55 #include <TopoDS.hxx>
56 #include <TopoDS_Vertex.hxx>
57 #include <BRep_Tool.hxx>
58
59 #include <cfloat>
60 #include <climits>
61
62 const double MaxCoordinate = 1e12;
63
64 static QStringList MyFeaturesForCoincedence;
65
66 PartSet_WidgetPoint2D::PartSet_WidgetPoint2D(QWidget* theParent,
67                                              ModuleBase_IWorkshop* theWorkshop,
68                                              const Config_WidgetAPI* theData)
69 : ModuleBase_ModelWidget(theParent, theData), myWorkshop(theWorkshop),
70   myValueIsCashed(false), myIsFeatureVisibleInCash(true),
71   myXValueInCash(0), myYValueInCash(0)
72 {
73   if (MyFeaturesForCoincedence.isEmpty()) {
74     MyFeaturesForCoincedence << SketchPlugin_Line::ID().c_str()
75       << SketchPlugin_Arc::ID().c_str()
76       << SketchPlugin_Point::ID().c_str()
77       << SketchPlugin_Circle::ID().c_str();
78   }
79
80   // the control should accept the focus, so the boolean flag is corrected to be true
81   myIsObligatory = true;
82   QString aPageName = QString::fromStdString(theData->getProperty(CONTAINER_PAGE_NAME));
83   myGroupBox = new QGroupBox(aPageName, theParent);
84   myGroupBox->setFlat(false);
85
86   bool aAcceptVariables = theData->getBooleanAttribute(DOUBLE_WDG_ACCEPT_EXPRESSIONS, true);
87
88   QGridLayout* aGroupLay = new QGridLayout(myGroupBox);
89   ModuleBase_Tools::adjustMargins(aGroupLay);
90   aGroupLay->setSpacing(2);
91   aGroupLay->setColumnStretch(1, 1);
92   {
93     QLabel* aLabel = new QLabel(myGroupBox);
94
95     myXSpin = new ModuleBase_LabelValue(myGroupBox, tr("X"));
96     //ModuleBase_ParamSpinBox(myGroupBox);
97     //myXSpin->setAcceptVariables(aAcceptVariables);
98     //myXSpin->setMinimum(-DBL_MAX);
99     //myXSpin->setMaximum(DBL_MAX);
100     //myXSpin->setToolTip(tr("X"));
101     aGroupLay->addWidget(myXSpin, 0, 1);
102
103     //connect(myXSpin, SIGNAL(textChanged(const QString&)), this, SIGNAL(valuesModified()));
104     //myXSpin->setValueEnabled(isValueEnabled());
105   }
106   {
107     //QLabel* aLabel = new QLabel(myGroupBox);
108     //aLabel->setText(tr("Y "));
109     //aGroupLay->addWidget(aLabel, 1, 0);
110
111     myYSpin = new ModuleBase_LabelValue(myGroupBox, tr("Y"));
112     //ModuleBase_ParamSpinBox(myGroupBox);
113     //myYSpin = new ModuleBase_ParamSpinBox(myGroupBox);
114     //myYSpin->setAcceptVariables(aAcceptVariables);
115     //myYSpin->setMinimum(-DBL_MAX);
116     //myYSpin->setMaximum(DBL_MAX);
117     //myYSpin->setToolTip(tr("Y"));
118     aGroupLay->addWidget(myYSpin, 1, 1);
119
120     //connect(myYSpin, SIGNAL(textChanged(const QString&)), this, SIGNAL(valuesModified()));
121     //myYSpin->setValueEnabled(isValueEnabled());
122   }
123   QVBoxLayout* aLayout = new QVBoxLayout(this);
124   ModuleBase_Tools::zeroMargins(aLayout);
125   aLayout->addWidget(myGroupBox);
126   setLayout(aLayout);
127
128   myWidgetValidator = new ModuleBase_WidgetValidator(this, myWorkshop);
129 }
130
131 bool PartSet_WidgetPoint2D::isValidSelectionCustom(const ModuleBase_ViewerPrsPtr& theValue)
132 {
133   bool aValid = true;
134
135   PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
136   if (aModule->sketchReentranceMgr()->isInternalEditActive())
137     return true; /// when internal edit is started a new feature is created. I has not results, AIS
138
139   /// the selection is not possible if the current feature has no presentation for the current
140   /// attribute not in AIS not in results. If so, no object in current feature where make
141   /// coincidence, so selection is not necessary
142   bool aFoundPoint = false;
143   GeomShapePtr anAISShape;
144   GeomPresentablePtr aPrs = std::dynamic_pointer_cast<GeomAPI_IPresentable>(myFeature);
145   if (aPrs.get()) {
146     AISObjectPtr anAIS;
147     anAIS = aPrs->getAISObject(anAIS);
148     if (anAIS.get()) {
149       anAISShape = anAIS->getShape();
150     }
151   }
152   const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = myFeature->results();
153   if (!anAISShape.get() && aResults.empty())
154     return true;
155
156   /// analysis of AIS
157   std::shared_ptr<ModelAPI_Data> aData = myFeature->data();
158   std::shared_ptr<GeomDataAPI_Point2D> aPointAttr = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
159       aData->attribute(attributeID()));
160   std::shared_ptr<GeomAPI_Pnt2d> aPoint = aPointAttr->pnt();
161   if (anAISShape.get())
162     aFoundPoint = shapeContainsPoint(anAISShape, aPoint, mySketch);
163
164   /// analysis of results
165   std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRIter = aResults.cbegin();
166   for (; aRIter != aResults.cend() && !aFoundPoint; aRIter++) {
167     ResultPtr aResult = *aRIter;
168     if (aResult.get() && aResult->shape().get()) {
169       GeomShapePtr aShape = aResult->shape();
170       aFoundPoint = shapeContainsPoint(aShape, aPoint, mySketch);
171     }
172   }
173   return aFoundPoint;
174 }
175
176 bool PartSet_WidgetPoint2D::resetCustom()
177 {
178   bool aDone = false;
179   if (!isUseReset() || isComputedDefault()
180       /*|| myXSpin->hasVariable() || myYSpin->hasVariable()*/) {
181     aDone = false;
182   }
183   else {
184     if (myValueIsCashed) {
185       // if the restored value should be hidden, aDone = true to set
186       // reset state for the widget in the parent
187       aDone = restoreCurentValue();
188       emit objectUpdated();
189     }
190     else {
191       bool isOk;
192       double aDefValue = QString::fromStdString(getDefaultValue()).toDouble(&isOk);
193       // it is important to block the spin box control in order to do not through out the
194       // locking of the validating state.
195       myXSpin->setValue(isOk ? aDefValue : 0.0);
196       myYSpin->setValue(isOk ? aDefValue : 0.0);
197
198       //ModuleBase_Tools::setSpinValue(myXSpin, isOk ? aDefValue : 0.0);
199       //ModuleBase_Tools::setSpinValue(myYSpin, isOk ? aDefValue : 0.0);
200       storeValueCustom();
201       aDone = true;
202     }
203   }
204   return aDone;
205 }
206
207 PartSet_WidgetPoint2D::~PartSet_WidgetPoint2D()
208 {
209 }
210
211 bool PartSet_WidgetPoint2D::setSelection(QList<ModuleBase_ViewerPrsPtr>& theValues,
212                                          const bool theToValidate)
213 {
214   bool isDone = false;
215   if (theValues.empty())
216     return isDone;
217
218   ModuleBase_ViewerPrsPtr aValue = theValues.takeFirst();
219   GeomShapePtr aShape = aValue->shape();
220   if (aShape.get() && !aShape->isNull()) {
221     Handle(V3d_View) aView = myWorkshop->viewer()->activeView();
222     double aX, aY;
223     const TopoDS_Shape& aTDShape = aShape->impl<TopoDS_Shape>();
224     if (getPoint2d(aView, aTDShape, aX, aY)) {
225       isDone = setPoint(aX, aY);
226       PartSet_Tools::setConstraints(mySketch, feature(), attributeID(), aX, aY);
227     }
228   }
229   return isDone;
230 }
231
232 void PartSet_WidgetPoint2D::selectContent()
233 {
234  // myXSpin->selectAll();
235 }
236
237 bool PartSet_WidgetPoint2D::setPoint(double theX, double theY)
238 {
239   if (fabs(theX) >= MaxCoordinate)
240     return false;
241   if (fabs(theY) >= MaxCoordinate)
242     return false;
243
244   myXSpin->setValue(theX);
245   myYSpin->setValue(theY);
246
247   //ModuleBase_Tools::setSpinValue(myXSpin, theX);
248   //ModuleBase_Tools::setSpinValue(myYSpin, theY);
249
250   storeValue();
251   return true;
252 }
253
254 bool PartSet_WidgetPoint2D::storeValueCustom()
255 {
256   std::shared_ptr<ModelAPI_Data> aData = myFeature->data();
257   if (!aData) // can be on abort of sketcher element
258     return false;
259   std::shared_ptr<GeomDataAPI_Point2D> aPoint = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
260       aData->attribute(attributeID()));
261
262   PartSet_WidgetPoint2D* that = (PartSet_WidgetPoint2D*) this;
263   bool isBlocked = that->blockSignals(true);
264   bool isImmutable = aPoint->setImmutable(true);
265
266   // if text is not empty then setValue will be ignored
267   // so we should set the text at first
268   //aPoint->setText(myXSpin->hasVariable() ? myXSpin->text().toStdString() : "",
269   //                myYSpin->hasVariable() ? myYSpin->text().toStdString() : "");
270   //aPoint->setValue(!myXSpin->hasVariable() ? myXSpin->value() : aPoint->x(),
271   //                 !myYSpin->hasVariable() ? myYSpin->value() : aPoint->y());
272   aPoint->setValue(myXSpin->value(), myYSpin->value());
273
274   // after movement the solver will call the update event: optimization
275   moveObject(myFeature);
276   aPoint->setImmutable(isImmutable);
277   that->blockSignals(isBlocked);
278
279   return true;
280 }
281
282 bool PartSet_WidgetPoint2D::restoreValueCustom()
283 {
284   std::shared_ptr<ModelAPI_Data> aData = myFeature->data();
285   std::shared_ptr<GeomDataAPI_Point2D> aPoint = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
286       aData->attribute(attributeID()));
287   double aValueX = aPoint->isInitialized() ? aPoint->x() : 0.;
288   double aValueY = aPoint->isInitialized() ? aPoint->y() : 0.;
289   myXSpin->setValue(aValueX);
290   myYSpin->setValue(aValueY);
291
292   return true;
293 }
294
295 void PartSet_WidgetPoint2D::storeCurentValue()
296 {
297   // do not use cash if a variable is used
298   //if (myXSpin->hasVariable() || myYSpin->hasVariable())
299   //  return;
300
301   myValueIsCashed = true;
302   myIsFeatureVisibleInCash = XGUI_Displayer::isVisible(
303                        XGUI_Tools::workshop(myWorkshop)->displayer(), myFeature);
304   myXValueInCash = myXSpin->value();
305   myYValueInCash = myYSpin->value();
306 }
307
308 bool PartSet_WidgetPoint2D::restoreCurentValue()
309 {
310   bool aRestoredAndHidden = true;
311
312   bool isVisible = myIsFeatureVisibleInCash;
313   // fill the control widgets by the cashed value
314
315   myValueIsCashed = false;
316   myIsFeatureVisibleInCash = true;
317   myXSpin->setValue(myXValueInCash);
318   myYSpin->setValue(myYValueInCash);
319   //ModuleBase_Tools::setSpinValue(myXSpin, myXValueInCash);
320   //ModuleBase_Tools::setSpinValue(myYSpin, myYValueInCash);
321
322   // store value to the model
323   storeValueCustom();
324   if (isVisible) {
325     setValueState(Stored);
326     aRestoredAndHidden = false;
327   }
328   else
329     aRestoredAndHidden = true;
330
331   return aRestoredAndHidden;
332 }
333
334 QList<QWidget*> PartSet_WidgetPoint2D::getControls() const
335 {
336   QList<QWidget*> aControls;
337   aControls.append(myXSpin);
338   aControls.append(myYSpin);
339   return aControls;
340 }
341
342
343 void PartSet_WidgetPoint2D::activateCustom()
344 {
345   QIntList aModes;
346   aModes << TopAbs_VERTEX;
347   aModes << TopAbs_EDGE;
348   myWorkshop->activateSubShapesSelection(aModes);
349
350   if (!isEditingMode()) {
351     FeaturePtr aFeature = feature();
352     if (aFeature.get() && aFeature->getKind() == SketchPlugin_Point::ID())
353       storeValue();
354   }
355 }
356
357 void PartSet_WidgetPoint2D::setHighlighted(bool isHighlighted)
358 {
359 }
360
361 void PartSet_WidgetPoint2D::deactivate()
362 {
363   // the value of the control should be stored to model if it was not
364   // initialized yet. It is important when we leave this control by Tab key.
365   // It should not be performed by the widget activation as the preview
366   // is visualized with default value. Line point is moved to origin.
367   AttributePtr anAttribute = myFeature->data()->attribute(attributeID());
368   if (anAttribute && !anAttribute->isInitialized())
369     storeValue();
370
371   ModuleBase_ModelWidget::deactivate();
372   myWorkshop->deactivateSubShapesSelection();
373 }
374
375 bool PartSet_WidgetPoint2D::getPoint2d(const Handle(V3d_View)& theView,
376                                        const TopoDS_Shape& theShape,
377                                        double& theX, double& theY) const
378 {
379   if (!theShape.IsNull()) {
380     if (theShape.ShapeType() == TopAbs_VERTEX) {
381       const TopoDS_Vertex& aVertex = TopoDS::Vertex(theShape);
382       if (!aVertex.IsNull()) {
383         // A case when point is taken from existing vertex
384         gp_Pnt aPoint = BRep_Tool::Pnt(aVertex);
385         PartSet_Tools::convertTo2D(aPoint, mySketch, theView, theX, theY);
386         return true;
387       }
388     }
389   }
390   return false;
391 }
392
393 bool PartSet_WidgetPoint2D::setConstraintWith(const ObjectPtr& theObject)
394 {
395   std::shared_ptr<GeomDataAPI_Point2D> aFeaturePoint;
396   if (feature()->isMacro()) {
397     AttributePtr aThisAttr = feature()->data()->attribute(attributeID());
398     std::shared_ptr<GeomDataAPI_Point2D> anAttrPoint =
399                                std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aThisAttr);
400     if (anAttrPoint.get()) {
401       // the macro feature will be removed after the operation is stopped, so we need to build
402       // coicidence to possible sub-features
403       aFeaturePoint = PartSet_Tools::findFirstEqualPointInArgumentFeatures(feature(),
404                                                                  anAttrPoint->pnt());
405     }
406   }
407   else {
408     AttributePtr aThisAttr = feature()->data()->attribute(attributeID());
409     aFeaturePoint = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aThisAttr);
410   }
411   if (!aFeaturePoint.get())
412     return false;
413
414   // Create point-edge coincedence
415   FeaturePtr aFeature = mySketch->addFeature(SketchPlugin_ConstraintCoincidence::ID());
416   std::shared_ptr<ModelAPI_Data> aData = aFeature->data();
417
418   std::shared_ptr<ModelAPI_AttributeRefAttr> aRef1 = std::dynamic_pointer_cast<
419       ModelAPI_AttributeRefAttr>(aData->attribute(SketchPlugin_Constraint::ENTITY_A()));
420
421   aRef1->setAttr(aFeaturePoint);
422
423   std::shared_ptr<ModelAPI_AttributeRefAttr> aRef2 = std::dynamic_pointer_cast<
424       ModelAPI_AttributeRefAttr>(aData->attribute(SketchPlugin_Constraint::ENTITY_B()));
425   aRef2->setObject(theObject);
426
427   // we need to flush created signal in order to coincidence is processed by solver
428   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_CREATED));
429
430   return true;
431 }
432
433 void PartSet_WidgetPoint2D::mouseReleased(ModuleBase_IViewWindow* theWindow, QMouseEvent* theEvent)
434 {
435   // the contex menu release by the right button should not be processed by this widget
436   if (theEvent->button() != Qt::LeftButton)
437     return;
438
439   ModuleBase_ISelection* aSelection = myWorkshop->selection();
440   Handle(V3d_View) aView = theWindow->v3dView();
441
442   QList<ModuleBase_ViewerPrsPtr> aList = aSelection->getSelected(ModuleBase_ISelection::Viewer);
443   ModuleBase_ViewerPrsPtr aFirstValue =
444     aList.size() > 0 ? aList.first() : ModuleBase_ViewerPrsPtr();
445   if (!aFirstValue.get() && myPreSelected.get()) {
446     aFirstValue = myPreSelected;
447   }
448   // if we have selection and use it
449   if (aFirstValue.get() && isValidSelectionCustom(aFirstValue) &&
450       aFirstValue->shape().get()) { /// Trihedron Axis may be selected, but shape is empty
451     GeomShapePtr aGeomShape = aFirstValue->shape();
452     TopoDS_Shape aShape = aGeomShape->impl<TopoDS_Shape>();
453     ObjectPtr aObject = aFirstValue->object();
454
455     FeaturePtr aSelectedFeature = ModelAPI_Feature::feature(aObject);
456     bool anExternal = false;
457     std::shared_ptr<SketchPlugin_Feature> aSPFeature;
458     if (aSelectedFeature.get() != NULL)
459       aSPFeature = std::dynamic_pointer_cast<SketchPlugin_Feature>(aSelectedFeature);
460       if ((!aSPFeature && !aShape.IsNull()) ||
461           (aSPFeature.get() && aSPFeature->isExternal())) {
462         ResultPtr aFixedObject;
463         anExternal = true;
464         aFixedObject = PartSet_Tools::findFixedObjectByExternal(aShape, aObject, mySketch);
465         if (!aFixedObject.get())
466           aFixedObject = PartSet_Tools::createFixedObjectByExternal(aShape, aObject, mySketch);
467         double aX, aY;
468         if (getPoint2d(aView, aShape, aX, aY) && isFeatureContainsPoint(myFeature, aX, aY)) {
469           // do not create a constraint to the point, which already used by the feature
470           // if the feature contains the point, focus is not switched
471           setPoint(aX, aY);
472         }
473         else {
474           if (getPoint2d(aView, aShape, aX, aY))
475             setPoint(aX, aY);
476           else
477             setValueState(Stored); // in case of edge selection, Apply state should also be updated
478           bool anOrphanPoint = aShape.ShapeType() == TopAbs_VERTEX ||
479                                isOrphanPoint(aSelectedFeature, mySketch, aX, aY);
480           if (anExternal) {
481             // we should not stop reentrant operation on external objects because
482             anOrphanPoint = true;
483             // they are not participate in the contour creation excepting external vertices
484             if (aShape.ShapeType() == TopAbs_VERTEX) {
485               FeaturePtr aFixedFeature = ModelAPI_Feature::feature(aFixedObject);
486               if (aFixedFeature.get() && aFixedFeature->getKind() == SketchPlugin_Point::ID()) {
487                 anOrphanPoint = isOrphanPoint(aFixedFeature, mySketch, aX, aY);
488               }
489             }
490           }
491           if (aFixedObject.get())
492             setConstraintWith(aFixedObject);
493           // fignal updated should be flushed in order to visualize possible created
494           // external objects e.g. selection of trihedron axis when input end arc point
495           updateObject(feature());
496
497           if (!anOrphanPoint)
498             emit vertexSelected(); // it stops the reentrant operation
499
500           emit focusOutWidget(this);
501         }
502       }
503     if (!anExternal) {
504       double aX, aY;
505       bool isProcessed = false;
506       if (getPoint2d(aView, aShape, aX, aY) && isFeatureContainsPoint(myFeature, aX, aY)) {
507         // when the point is selected, the coordinates of the point should be set into the attribute
508         // if the feature contains the point, focus is not switched
509         setPoint(aX, aY);
510       }
511       else {
512         bool anOrphanPoint = isOrphanPoint(aSelectedFeature, mySketch, aX, aY);
513         // do not set a coincidence constraint in the attribute if the feature contains a point
514         // with the same coordinates. It is important for line creation in order to do not set
515         // the same constraints for the same points, oterwise the result line has zero length.
516         bool isAuxiliaryFeature = false;
517         if (getPoint2d(aView, aShape, aX, aY)) {
518           setPoint(aX, aY);
519           feature()->execute();
520           PartSet_Tools::setConstraints(mySketch, feature(), attributeID(), aX, aY);
521         }
522         else if (aShape.ShapeType() == TopAbs_EDGE) {
523           // point is taken from mouse event and set in attribute. It should be done before setting
524           // coinident constraint to the external line. If a point is created, it should be in
525           // the mouse clicked point
526           gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), theWindow->v3dView());
527           PartSet_Tools::convertTo2D(aPoint, mySketch, aView, aX, aY);
528           setPoint(aX, aY);
529           setConstraintWith(aObject);
530           setValueState(Stored); // in case of edge selection, Apply state should also be updated
531           isAuxiliaryFeature = PartSet_Tools::isAuxiliarySketchEntity(aObject);
532         }
533         // it is important to perform updateObject() in order to the current value is
534         // processed by Sketch Solver. Test case: line is created from a previous point
535         // to some distance, but in the area of the highlighting of the point. Constraint
536         // coincidence is created, after the solver is performed, the distance between the
537         // points of the line becomes less than the tolerance. Validator of the line returns
538         // false, the line will be aborted, but sketch stays valid.
539         updateObject(feature());
540         if (!anOrphanPoint && !anExternal && !isAuxiliaryFeature)
541           emit vertexSelected();
542         emit focusOutWidget(this);
543       }
544     }
545   }
546   // End of Bug dependent fragment
547   else {
548     // A case when point is taken from mouse event
549     gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), theWindow->v3dView());
550     double aX, anY;
551     PartSet_Tools::convertTo2D(aPoint, mySketch, aView, aX, anY);
552
553     // if the feature contains the point, focus is not switched
554     if (!setPoint(aX, anY) || isFeatureContainsPoint(myFeature, aX, anY))
555       return;
556
557     /// Start alternative code
558     //std::shared_ptr<GeomDataAPI_Point2D> aFeaturePoint = std::dynamic_pointer_cast<
559     //    GeomDataAPI_Point2D>(feature()->data()->attribute(attributeID()));
560     //QList<FeaturePtr> aIgnore;
561     //aIgnore.append(feature());
562
563     //double aTolerance = aView->Convert(7);
564     //std::shared_ptr<GeomDataAPI_Point2D> aAttrPnt =
565     //  PartSet_Tools::findAttributePoint(mySketch, aX, anY, aTolerance, aIgnore);
566     //if (aAttrPnt.get() != NULL) {
567     //  aFeaturePoint->setValue(aAttrPnt->pnt());
568     //  PartSet_Tools::createConstraint(mySketch, aAttrPnt, aFeaturePoint);
569     //  emit vertexSelected();
570     //}
571     /// End alternative code
572     emit focusOutWidget(this);
573   }
574 }
575
576 void PartSet_WidgetPoint2D::setPreSelection(
577   const std::shared_ptr<ModuleBase_ViewerPrs>& thePreSelected)
578 {
579   myPreSelected = thePreSelected;
580 }
581
582 void PartSet_WidgetPoint2D::mouseMoved(ModuleBase_IViewWindow* theWindow, QMouseEvent* theEvent)
583 {
584   PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
585
586   if (isEditingMode() || aModule->sketchReentranceMgr()->isInternalEditStarted())
587     return;
588
589   gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), theWindow->v3dView());
590
591   double aX, anY;
592   PartSet_Tools::convertTo2D(aPoint, mySketch, theWindow->v3dView(), aX, anY);
593   if (myState != ModifiedInViewer)
594     storeCurentValue();
595   // we need to block the value state change
596   bool isBlocked = blockValueState(true);
597   setPoint(aX, anY);
598   blockValueState(isBlocked);
599   setValueState(ModifiedInViewer);
600 }
601
602 double PartSet_WidgetPoint2D::x() const
603 {
604   return myXSpin->value();
605 }
606
607 double PartSet_WidgetPoint2D::y() const
608 {
609   return myYSpin->value();
610 }
611
612
613 bool PartSet_WidgetPoint2D::isFeatureContainsPoint(const FeaturePtr& theFeature,
614                                                    double theX, double theY)
615 {
616   bool aPointIsFound = false;
617
618   if (feature()->getKind() != SketchPlugin_Line::ID())
619     return aPointIsFound;
620
621   AttributePtr aWidgetAttribute = myFeature->attribute(attributeID());
622
623   std::shared_ptr<GeomAPI_Pnt2d> aPnt2d =
624                                     std::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(theX, theY));
625   std::list<AttributePtr> anAttributes =
626                                 myFeature->data()->attributes(GeomDataAPI_Point2D::typeId());
627   std::list<AttributePtr>::iterator anIter = anAttributes.begin();
628   for(; anIter != anAttributes.end() && !aPointIsFound; anIter++) {
629     AttributePoint2DPtr aPoint2DAttribute =
630       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(*anIter);
631     if (aPoint2DAttribute == aWidgetAttribute)
632       continue;
633     if (aPoint2DAttribute.get() && aPoint2DAttribute->isInitialized()) {
634       aPointIsFound = aPoint2DAttribute->pnt()->isEqual(aPnt2d);
635     }
636   }
637   return aPointIsFound;
638 }
639
640 void PartSet_WidgetPoint2D::initializeValueByActivate()
641 {
642 }
643
644 /*void PartSet_WidgetPoint2D::onValuesChanged()
645 {
646   emit valuesChanged();
647 }*/
648
649 bool PartSet_WidgetPoint2D::processEnter()
650 {
651   return false;
652   /*bool isModified = getValueState() == ModifiedInPP;
653   if (isModified) {
654     bool isXModified = myXSpin->hasFocus();
655     emit valuesChanged();
656     if (isXModified)
657       myXSpin->selectAll();
658     else
659       myYSpin->selectAll();
660   }
661   return isModified;*/
662 }
663
664 bool PartSet_WidgetPoint2D::useSelectedShapes() const
665 {
666   return true;
667 }
668
669 bool PartSet_WidgetPoint2D::isOrphanPoint(const FeaturePtr& theFeature,
670                                           const CompositeFeaturePtr& theSketch,
671                                           double theX, double theY)
672 {
673   bool anOrphanPoint = false;
674   if (theFeature.get()) {
675     std::shared_ptr<GeomDataAPI_Point2D> aPointAttr;
676     std::string aFeatureKind = theFeature->getKind();
677     if (aFeatureKind == SketchPlugin_Point::ID())
678       aPointAttr = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
679                                        theFeature->attribute(SketchPlugin_Point::COORD_ID()));
680     else if (aFeatureKind == SketchPlugin_Circle::ID())
681       aPointAttr = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
682                                        theFeature->attribute(SketchPlugin_Circle::CENTER_ID()));
683
684     else if (aFeatureKind == SketchPlugin_Arc::ID())
685       aPointAttr = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
686                                        theFeature->attribute(SketchPlugin_Arc::CENTER_ID()));
687
688     /// check that the geometry point with the given coordinates is the checked point
689     /// e.g. in arc the (x,y) point can not coicide to the center point and it automatically
690     /// means that this point is not an orphant one.
691     if (aPointAttr.get()) {
692       std::shared_ptr<GeomAPI_Pnt2d> aCheckedPoint = std::shared_ptr<GeomAPI_Pnt2d>(
693                                                     new GeomAPI_Pnt2d(theX, theY));
694       if (!aCheckedPoint->isEqual(aPointAttr->pnt()))
695         return anOrphanPoint;
696     }
697
698     if (aPointAttr.get()) {
699       std::shared_ptr<GeomAPI_Pnt2d> aPoint = aPointAttr->pnt();
700       // we need to find coincidence features in results also, because external object(point)
701       // uses refs to me in another feature.
702       FeaturePtr aCoincidence = PartSet_Tools::findFirstCoincidence(theFeature, aPoint);
703       anOrphanPoint = true;
704       // if there is at least one concident line to the point, the point is not an orphant
705       if (aCoincidence.get()) {
706         QList<FeaturePtr> aCoinsideLines;
707         QList<FeaturePtr> aCoins;
708         PartSet_Tools::findCoincidences(aCoincidence, aCoinsideLines, aCoins,
709                                         SketchPlugin_ConstraintCoincidence::ENTITY_A());
710         PartSet_Tools::findCoincidences(aCoincidence, aCoinsideLines, aCoins,
711                                         SketchPlugin_ConstraintCoincidence::ENTITY_B());
712         QList<FeaturePtr>::const_iterator anIt = aCoinsideLines.begin(),
713                                           aLast = aCoinsideLines.end();
714         for (; anIt != aLast && anOrphanPoint; anIt++) {
715           anOrphanPoint = (*anIt)->getKind() != SketchPlugin_Line::ID();
716         }
717       }
718     }
719   }
720   return anOrphanPoint;
721 }
722
723 bool PartSet_WidgetPoint2D::shapeContainsPoint(const GeomShapePtr& theShape,
724                                                const std::shared_ptr<GeomAPI_Pnt2d>& thePoint,
725                                                const CompositeFeaturePtr& theSketch)
726 {
727   std::shared_ptr<GeomAPI_Pnt> aPoint = PartSet_Tools::point3D(thePoint, theSketch);
728
729   bool aContainPoint = false;
730   GeomAPI_ShapeExplorer anExp(theShape, GeomAPI_Shape::VERTEX);
731   for(; anExp.more() && !aContainPoint; anExp.next()) {
732     std::shared_ptr<GeomAPI_Shape> aVertexInCompSolid = anExp.current();
733     std::shared_ptr<GeomAPI_Vertex> aVertex(new GeomAPI_Vertex(aVertexInCompSolid));
734     if (aVertex.get())
735       aContainPoint = aPoint->isEqual(aVertex->point());
736   }
737   return aContainPoint;
738 }