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