Salome HOME
b9470abc7ce1bcc2bc45ad2b47034bdcf390a849
[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
461     if ((!aSPFeature && !aShape.IsNull()) ||
462         (aSPFeature.get() && aSPFeature->isExternal())) {
463       ResultPtr aFixedObject;
464       anExternal = true;
465       aFixedObject = PartSet_Tools::findFixedObjectByExternal(aShape, aObject, mySketch);
466       if (!aFixedObject.get())
467         aFixedObject = PartSet_Tools::createFixedObjectByExternal(aShape, aObject, mySketch);
468       double aX, aY;
469       if (getPoint2d(aView, aShape, aX, aY) && isFeatureContainsPoint(myFeature, aX, aY)) {
470         // do not create a constraint to the point, which already used by the feature
471         // if the feature contains the point, focus is not switched
472         setPoint(aX, aY);
473       }
474       else {
475         if (getPoint2d(aView, aShape, aX, aY))
476           setPoint(aX, aY);
477         else
478           setValueState(Stored); // in case of edge selection, Apply state should also be updated
479         bool anOrphanPoint = aShape.ShapeType() == TopAbs_VERTEX ||
480                               isOrphanPoint(aSelectedFeature, mySketch, aX, aY);
481         if (anExternal) {
482           // we should not stop reentrant operation on external objects because
483           anOrphanPoint = true;
484           // they are not participate in the contour creation excepting external vertices
485           if (aShape.ShapeType() == TopAbs_VERTEX) {
486             FeaturePtr aFixedFeature = ModelAPI_Feature::feature(aFixedObject);
487             if (aFixedFeature.get() && aFixedFeature->getKind() == SketchPlugin_Point::ID()) {
488               anOrphanPoint = isOrphanPoint(aFixedFeature, mySketch, aX, aY);
489             }
490           }
491         }
492         if (aFixedObject.get())
493           setConstraintWith(aFixedObject);
494         // fignal updated should be flushed in order to visualize possible created
495         // external objects e.g. selection of trihedron axis when input end arc point
496         updateObject(feature());
497
498         if (!anOrphanPoint)
499           emit vertexSelected(); // it stops the reentrant operation
500
501         emit focusOutWidget(this);
502       }
503     }
504     if (!anExternal) {
505       double aX, aY;
506       bool isProcessed = false;
507       if (getPoint2d(aView, aShape, aX, aY) && isFeatureContainsPoint(myFeature, aX, aY)) {
508         // when the point is selected, the coordinates of the point should be set into the attribute
509         // if the feature contains the point, focus is not switched
510         setPoint(aX, aY);
511       }
512       else {
513         bool anOrphanPoint = isOrphanPoint(aSelectedFeature, mySketch, aX, aY);
514         // do not set a coincidence constraint in the attribute if the feature contains a point
515         // with the same coordinates. It is important for line creation in order to do not set
516         // the same constraints for the same points, oterwise the result line has zero length.
517         bool isAuxiliaryFeature = false;
518         if (getPoint2d(aView, aShape, aX, aY)) {
519           setPoint(aX, aY);
520           feature()->execute();
521           PartSet_Tools::setConstraints(mySketch, feature(), attributeID(), aX, aY);
522         }
523         else if (aShape.ShapeType() == TopAbs_EDGE) {
524           // point is taken from mouse event and set in attribute. It should be done before setting
525           // coinident constraint to the external line. If a point is created, it should be in
526           // the mouse clicked point
527           gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), theWindow->v3dView());
528           PartSet_Tools::convertTo2D(aPoint, mySketch, aView, aX, aY);
529           setPoint(aX, aY);
530           setConstraintWith(aObject);
531           setValueState(Stored); // in case of edge selection, Apply state should also be updated
532           isAuxiliaryFeature = PartSet_Tools::isAuxiliarySketchEntity(aObject);
533         }
534         // it is important to perform updateObject() in order to the current value is
535         // processed by Sketch Solver. Test case: line is created from a previous point
536         // to some distance, but in the area of the highlighting of the point. Constraint
537         // coincidence is created, after the solver is performed, the distance between the
538         // points of the line becomes less than the tolerance. Validator of the line returns
539         // false, the line will be aborted, but sketch stays valid.
540         updateObject(feature());
541         if (!anOrphanPoint && !anExternal && !isAuxiliaryFeature)
542           emit vertexSelected();
543         emit focusOutWidget(this);
544       }
545     }
546   }
547   // End of Bug dependent fragment
548   else {
549     // A case when point is taken from mouse event
550     gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), theWindow->v3dView());
551     double aX, anY;
552     PartSet_Tools::convertTo2D(aPoint, mySketch, aView, aX, anY);
553
554     // if the feature contains the point, focus is not switched
555     if (!setPoint(aX, anY) || isFeatureContainsPoint(myFeature, aX, anY))
556       return;
557
558     /// Start alternative code
559     //std::shared_ptr<GeomDataAPI_Point2D> aFeaturePoint = std::dynamic_pointer_cast<
560     //    GeomDataAPI_Point2D>(feature()->data()->attribute(attributeID()));
561     //QList<FeaturePtr> aIgnore;
562     //aIgnore.append(feature());
563
564     //double aTolerance = aView->Convert(7);
565     //std::shared_ptr<GeomDataAPI_Point2D> aAttrPnt =
566     //  PartSet_Tools::findAttributePoint(mySketch, aX, anY, aTolerance, aIgnore);
567     //if (aAttrPnt.get() != NULL) {
568     //  aFeaturePoint->setValue(aAttrPnt->pnt());
569     //  PartSet_Tools::createConstraint(mySketch, aAttrPnt, aFeaturePoint);
570     //  emit vertexSelected();
571     //}
572     /// End alternative code
573     emit focusOutWidget(this);
574   }
575 }
576
577 void PartSet_WidgetPoint2D::setPreSelection(
578   const std::shared_ptr<ModuleBase_ViewerPrs>& thePreSelected)
579 {
580   myPreSelected = thePreSelected;
581 }
582
583 void PartSet_WidgetPoint2D::mouseMoved(ModuleBase_IViewWindow* theWindow, QMouseEvent* theEvent)
584 {
585   PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
586
587   if (isEditingMode() || aModule->sketchReentranceMgr()->isInternalEditStarted())
588     return;
589
590   gp_Pnt aPoint = PartSet_Tools::convertClickToPoint(theEvent->pos(), theWindow->v3dView());
591
592   double aX, anY;
593   PartSet_Tools::convertTo2D(aPoint, mySketch, theWindow->v3dView(), aX, anY);
594   if (myState != ModifiedInViewer)
595     storeCurentValue();
596   // we need to block the value state change
597   bool isBlocked = blockValueState(true);
598   setPoint(aX, anY);
599   blockValueState(isBlocked);
600   setValueState(ModifiedInViewer);
601 }
602
603 double PartSet_WidgetPoint2D::x() const
604 {
605   return myXSpin->value();
606 }
607
608 double PartSet_WidgetPoint2D::y() const
609 {
610   return myYSpin->value();
611 }
612
613
614 bool PartSet_WidgetPoint2D::isFeatureContainsPoint(const FeaturePtr& theFeature,
615                                                    double theX, double theY)
616 {
617   bool aPointIsFound = false;
618
619   if (feature()->getKind() != SketchPlugin_Line::ID())
620     return aPointIsFound;
621
622   AttributePtr aWidgetAttribute = myFeature->attribute(attributeID());
623
624   std::shared_ptr<GeomAPI_Pnt2d> aPnt2d =
625                                     std::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(theX, theY));
626   std::list<AttributePtr> anAttributes =
627                                 myFeature->data()->attributes(GeomDataAPI_Point2D::typeId());
628   std::list<AttributePtr>::iterator anIter = anAttributes.begin();
629   for(; anIter != anAttributes.end() && !aPointIsFound; anIter++) {
630     AttributePoint2DPtr aPoint2DAttribute =
631       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(*anIter);
632     if (aPoint2DAttribute == aWidgetAttribute)
633       continue;
634     if (aPoint2DAttribute.get() && aPoint2DAttribute->isInitialized()) {
635       aPointIsFound = aPoint2DAttribute->pnt()->isEqual(aPnt2d);
636     }
637   }
638   return aPointIsFound;
639 }
640
641 void PartSet_WidgetPoint2D::initializeValueByActivate()
642 {
643 }
644
645 /*void PartSet_WidgetPoint2D::onValuesChanged()
646 {
647   emit valuesChanged();
648 }*/
649
650 bool PartSet_WidgetPoint2D::processEnter()
651 {
652   return false;
653   /*bool isModified = getValueState() == ModifiedInPP;
654   if (isModified) {
655     bool isXModified = myXSpin->hasFocus();
656     emit valuesChanged();
657     if (isXModified)
658       myXSpin->selectAll();
659     else
660       myYSpin->selectAll();
661   }
662   return isModified;*/
663 }
664
665 bool PartSet_WidgetPoint2D::useSelectedShapes() const
666 {
667   return true;
668 }
669
670 bool PartSet_WidgetPoint2D::isOrphanPoint(const FeaturePtr& theFeature,
671                                           const CompositeFeaturePtr& theSketch,
672                                           double theX, double theY)
673 {
674   bool anOrphanPoint = false;
675   if (theFeature.get()) {
676     std::shared_ptr<GeomDataAPI_Point2D> aPointAttr;
677     std::string aFeatureKind = theFeature->getKind();
678     if (aFeatureKind == SketchPlugin_Point::ID())
679       aPointAttr = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
680                                        theFeature->attribute(SketchPlugin_Point::COORD_ID()));
681     else if (aFeatureKind == SketchPlugin_Circle::ID())
682       aPointAttr = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
683                                        theFeature->attribute(SketchPlugin_Circle::CENTER_ID()));
684
685     else if (aFeatureKind == SketchPlugin_Arc::ID())
686       aPointAttr = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
687                                        theFeature->attribute(SketchPlugin_Arc::CENTER_ID()));
688
689     /// check that the geometry point with the given coordinates is the checked point
690     /// e.g. in arc the (x,y) point can not coicide to the center point and it automatically
691     /// means that this point is not an orphant one.
692     if (aPointAttr.get()) {
693       std::shared_ptr<GeomAPI_Pnt2d> aCheckedPoint = std::shared_ptr<GeomAPI_Pnt2d>(
694                                                     new GeomAPI_Pnt2d(theX, theY));
695       if (!aCheckedPoint->isEqual(aPointAttr->pnt()))
696         return anOrphanPoint;
697     }
698
699     if (aPointAttr.get()) {
700       std::shared_ptr<GeomAPI_Pnt2d> aPoint = aPointAttr->pnt();
701       // we need to find coincidence features in results also, because external object(point)
702       // uses refs to me in another feature.
703       FeaturePtr aCoincidence = PartSet_Tools::findFirstCoincidence(theFeature, aPoint);
704       anOrphanPoint = true;
705       // if there is at least one concident line to the point, the point is not an orphant
706       if (aCoincidence.get()) {
707         QList<FeaturePtr> aCoinsideLines;
708         QList<FeaturePtr> aCoins;
709         PartSet_Tools::findCoincidences(aCoincidence, aCoinsideLines, aCoins,
710                                         SketchPlugin_ConstraintCoincidence::ENTITY_A());
711         PartSet_Tools::findCoincidences(aCoincidence, aCoinsideLines, aCoins,
712                                         SketchPlugin_ConstraintCoincidence::ENTITY_B());
713         QList<FeaturePtr>::const_iterator anIt = aCoinsideLines.begin(),
714                                           aLast = aCoinsideLines.end();
715         for (; anIt != aLast && anOrphanPoint; anIt++) {
716           anOrphanPoint = (*anIt)->getKind() != SketchPlugin_Line::ID();
717         }
718       }
719     }
720   }
721   return anOrphanPoint;
722 }
723
724 bool PartSet_WidgetPoint2D::shapeContainsPoint(const GeomShapePtr& theShape,
725                                                const std::shared_ptr<GeomAPI_Pnt2d>& thePoint,
726                                                const CompositeFeaturePtr& theSketch)
727 {
728   std::shared_ptr<GeomAPI_Pnt> aPoint = PartSet_Tools::point3D(thePoint, theSketch);
729
730   bool aContainPoint = false;
731   GeomAPI_ShapeExplorer anExp(theShape, GeomAPI_Shape::VERTEX);
732   for(; anExp.more() && !aContainPoint; anExp.next()) {
733     std::shared_ptr<GeomAPI_Shape> aVertexInCompSolid = anExp.current();
734     std::shared_ptr<GeomAPI_Vertex> aVertex(new GeomAPI_Vertex(aVertexInCompSolid));
735     if (aVertex.get())
736       aContainPoint = aPoint->isEqual(aVertex->point());
737   }
738   return aContainPoint;
739 }