Salome HOME
Merge remote-tracking branch 'origin/master' into gni/documentation
[modules/shaper.git] / src / PartSet / PartSet_WidgetSketchLabel.cpp
1 // Copyright (C) 2014-2020  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "PartSet_WidgetSketchLabel.h"
21 #include "PartSet_Tools.h"
22 #include "PartSet_Module.h"
23 #include "PartSet_PreviewPlanes.h"
24 #include "PartSet_SketcherReentrantMgr.h"
25
26 #include "SketchPlugin_SketchEntity.h"
27
28 #include <XGUI_ActionsMgr.h>
29 #include <XGUI_Displayer.h>
30 #include <XGUI_ModuleConnector.h>
31 #include <XGUI_SelectionActivate.h>
32 #include <XGUI_Selection.h>
33 #include <XGUI_SelectionMgr.h>
34 #include <XGUI_Tools.h>
35 #include <XGUI_ViewerProxy.h>
36 #include <XGUI_Workshop.h>
37
38 #include <ModelAPI_ResultBody.h>
39 #include <ModelAPI_Tools.h>
40 #include <ModelAPI_AttributeString.h>
41 #include <ModelAPI_Events.h>
42
43 #include <ModuleBase_Operation.h>
44 #include <ModuleBase_ViewerPrs.h>
45 #include <ModuleBase_Tools.h>
46 #include <ModuleBase_IModule.h>
47 #include <ModuleBase_IPropertyPanel.h>
48
49 #include <GeomAlgoAPI_FaceBuilder.h>
50 #include <GeomAlgoAPI_ShapeTools.h>
51 #include <GeomDataAPI_Point.h>
52 #include <GeomDataAPI_Dir.h>
53 #include <GeomAPI_XYZ.h>
54 #include <GeomAPI_Face.h>
55 #include <GeomAPI_Edge.h>
56 #include <GeomAPI_ShapeExplorer.h>
57
58 #include <SketchPlugin_Sketch.h>
59 #include <SketcherPrs_Tools.h>
60
61 #include <Precision.hxx>
62 #include <gp_Pln.hxx>
63 #include <gp_Pnt.hxx>
64 #include <gp_Dir.hxx>
65 #include <AIS_Shape.hxx>
66 #include <Bnd_Box.hxx>
67
68 #include <Config_WidgetAPI.h>
69 #include <Config_PropManager.h>
70
71 #include <QLabel>
72 #include <QApplication>
73 #include <QVBoxLayout>
74 #include <QHBoxLayout>
75 #include <QCheckBox>
76 #include <QGroupBox>
77 #include <QPushButton>
78 #include <QLineEdit>
79 #include <QDoubleValidator>
80 #include <QDialog>
81 #include <QTimer>
82
83 #ifndef DBL_MAX
84 #define DBL_MAX 1.7976931348623158e+308
85 #endif
86
87 PartSet_WidgetSketchLabel::PartSet_WidgetSketchLabel(QWidget* theParent,
88                         ModuleBase_IWorkshop* theWorkshop,
89                         const Config_WidgetAPI* theData,
90                         const QMap<PartSet_Tools::ConstraintVisibleState, bool>& toShowConstraints)
91 : ModuleBase_WidgetValidated(theParent, theWorkshop, theData), myOpenTransaction(false),
92 myIsSelection(false)
93 {
94   QVBoxLayout* aLayout = new QVBoxLayout(this);
95   ModuleBase_Tools::zeroMargins(aLayout);
96
97   myStackWidget = new QStackedWidget(this);
98   myStackWidget->setContentsMargins(0,0,0,0);
99   aLayout->addWidget(myStackWidget);
100
101   // Define label for plane selection
102   QWidget* aFirstWgt = new QWidget(this);
103
104   // Size of the View control
105   mySizeOfViewWidget = new QWidget(aFirstWgt);
106   QHBoxLayout* aSizeLayout = new QHBoxLayout(mySizeOfViewWidget);
107   aSizeLayout->addWidget(new QLabel(tr("Size of the view"), mySizeOfViewWidget));
108   mySizeOfView = new QLineEdit(mySizeOfViewWidget);
109
110   QDoubleValidator* aValidator = new QDoubleValidator(0, DBL_MAX, 12, mySizeOfView);
111   aValidator->setLocale(ModuleBase_Tools::doubleLocale());
112   aValidator->setNotation(QDoubleValidator::StandardNotation);
113   mySizeOfView->setValidator(aValidator);
114   aSizeLayout->addWidget(mySizeOfView);
115
116   myPartSetMessage = new QDialog(this, Qt::ToolTip);
117   myPartSetMessage->setModal(false);
118   myPartSetMessage->setStyleSheet("background-color:lightyellow;");
119   QVBoxLayout* aMsgLay = new QVBoxLayout(myPartSetMessage);
120   QString aMsg = tr("The Sketch is created in PartSet.\n"
121     "It will be necessary to create a Part in order to use this sketch for body creation");
122   aMsgLay->addWidget(new QLabel(aMsg, myPartSetMessage));
123   myPartSetMessage->hide();
124
125   mySizeMessage = new QDialog(mySizeOfView, Qt::ToolTip);
126   mySizeMessage->setModal(false);
127   mySizeMessage->setStyleSheet("background-color:lightyellow;");
128   aMsgLay = new QVBoxLayout(mySizeMessage);
129   aMsg = tr("A size of Sketch view can be defined here.");
130   aMsgLay->addWidget(new QLabel(aMsg, mySizeMessage));
131   mySizeMessage->hide();
132
133   QString aText = translate(theData->getProperty("title"));
134   QLabel* aLabel = new QLabel(aText, aFirstWgt);
135   aLabel->setWordWrap(true);
136   QString aTooltip = translate(theData->getProperty("tooltip"));
137   aLabel->setToolTip(aTooltip);
138   aLabel->setIndent(5);
139
140   aLayout = new QVBoxLayout(aFirstWgt);
141   ModuleBase_Tools::zeroMargins(aLayout);
142   aLayout->addWidget(mySizeOfViewWidget);
143   aLayout->addWidget(aLabel);
144
145   myRemoveExternal = new QCheckBox(tr("Remove external dependencies"), aFirstWgt);
146   myRemoveExternal->setChecked(false);
147   aLayout->addWidget(myRemoveExternal);
148   myRemoveExternal->setVisible(false);
149
150   aLayout->addStretch(1);
151
152   myStackWidget->addWidget(aFirstWgt);
153
154   // Define widget for sketch manmagement
155   QWidget* aSecondWgt = new QWidget(this);
156   aLayout = new QVBoxLayout(aSecondWgt);
157   ModuleBase_Tools::zeroMargins(aLayout);
158
159   QGroupBox* aViewBox = new QGroupBox(tr("Sketcher plane"), this);
160   QGridLayout* aViewLayout = new QGridLayout(aViewBox);
161
162   myViewInverted = new QCheckBox(tr("Reversed"), aViewBox);
163   aViewLayout->addWidget(myViewInverted, 0, 0);
164
165   myViewVisible = new QCheckBox(tr("Visible"), aViewBox);
166   myViewVisible->setChecked(true);
167   aViewLayout->addWidget(myViewVisible, 0, 1, Qt::AlignRight);
168   connect(myViewVisible, SIGNAL(toggled(bool)), this, SLOT(onShowViewPlane(bool)));
169
170   QPushButton* aSetViewBtn =
171     new QPushButton(QIcon(":icons/plane_view.png"), tr("Set plane view"), aViewBox);
172   connect(aSetViewBtn, SIGNAL(clicked(bool)), this, SLOT(onSetPlaneView()));
173   aViewLayout->addWidget(aSetViewBtn, 1, 0, 1, 2);
174
175   aLayout->addWidget(aViewBox);
176
177   QMap<PartSet_Tools::ConstraintVisibleState, QString> aStates;
178   aStates[PartSet_Tools::Geometrical] = tr("Show geometrical constraints");
179   aStates[PartSet_Tools::Dimensional] = tr("Show dimensional constraints");
180   aStates[PartSet_Tools::Expressions] = tr("Show existing expressions");
181
182   QMap<PartSet_Tools::ConstraintVisibleState, QString>::const_iterator anIt = aStates.begin(),
183                                                         aLast = aStates.end();
184   for (; anIt != aLast; anIt++) {
185     QCheckBox* aShowConstraints = new QCheckBox(anIt.value(), this);
186     connect(aShowConstraints, SIGNAL(toggled(bool)), this, SLOT(onShowConstraint(bool)));
187     aLayout->addWidget(aShowConstraints);
188
189     PartSet_Tools::ConstraintVisibleState aState = anIt.key();
190     myShowConstraints[aState] = aShowConstraints;
191
192     if (toShowConstraints.contains(aState))
193       aShowConstraints->setChecked(toShowConstraints[aState]);
194   }
195   myShowPoints = new QCheckBox(tr("Show free points"), this);
196   connect(myShowPoints, SIGNAL(toggled(bool)), this, SIGNAL(showFreePoints(bool)));
197   aLayout->addWidget(myShowPoints);
198
199   myAutoConstraints = new QCheckBox(tr("Automatic constraints"), this);
200   myAutoConstraints->setToolTip(tr("Automatic vertical and horizontal constraints"));
201   connect(myAutoConstraints, SIGNAL(toggled(bool)), this, SIGNAL(autoConstraints(bool)));
202   aLayout->addWidget(myAutoConstraints);
203
204   QPushButton* aPlaneBtn = new QPushButton(tr("Change sketch plane"), aSecondWgt);
205   connect(aPlaneBtn, SIGNAL(clicked(bool)), SLOT(onChangePlane()));
206   aLayout->addWidget(aPlaneBtn);
207
208   aLayout->addSpacing(15);
209
210   myDoFLabel = new QLabel("", aSecondWgt);
211   aLayout->addWidget(myDoFLabel);
212
213   myShowDOFBtn = new QPushButton(tr("Show remaining DoFs"), aSecondWgt);
214   aLayout->addWidget(myShowDOFBtn);
215   myShowDOFBtn->setEnabled(false);
216   connect(myShowDOFBtn, SIGNAL(clicked(bool)), SLOT(onShowDOF()));
217
218   myStackWidget->addWidget(aSecondWgt);
219   //setLayout(aLayout);
220
221   myPreviewPlanes = new PartSet_PreviewPlanes();
222 }
223
224 PartSet_WidgetSketchLabel::~PartSet_WidgetSketchLabel()
225 {
226 }
227
228 bool PartSet_WidgetSketchLabel::setSelection(QList<ModuleBase_ViewerPrsPtr>& theValues,
229                                              const bool theToValidate)
230 {
231   // do not use the given selection if the plane of the sketch has been already set.
232   // If this check is absent, a selected plane in the viewer can be set in the sketch
233   // even if the sketch is built on another plane.
234   if (plane().get())
235     return true;
236
237   ModuleBase_ViewerPrsPtr aPrs = theValues.first();
238   bool aDone = setSelectionInternal(theValues, theToValidate);
239   if (aDone)
240     updateByPlaneSelected(aPrs);
241   return aDone;
242 }
243
244 QList<QWidget*> PartSet_WidgetSketchLabel::getControls() const
245 {
246   QList<QWidget*> aResult;
247   aResult << myStackWidget;
248   return aResult;
249 }
250
251 bool PartSet_WidgetSketchLabel::processSelection()
252 {
253   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
254   if (aPlane.get())
255     return false;
256
257   QList<ModuleBase_ViewerPrsPtr> aSelected = getFilteredSelected();
258
259   if (aSelected.empty())
260     return false;
261   ModuleBase_ViewerPrsPtr aPrs = aSelected.first();
262   bool aDone = setSelectionInternal(aSelected, false);
263   if (aDone) {
264     updateByPlaneSelected(aPrs);
265     updateObject(myFeature);
266   }
267
268   return aDone;
269 }
270
271 void PartSet_WidgetSketchLabel::onShowConstraint(bool theOn)
272 {
273   QCheckBox* aSenderCheckBox = qobject_cast<QCheckBox*>(sender());
274
275   QMap<PartSet_Tools::ConstraintVisibleState, QCheckBox*>::const_iterator
276                           anIt = myShowConstraints.begin(), aLast = myShowConstraints.end();
277
278   PartSet_Tools::ConstraintVisibleState aState = PartSet_Tools::Geometrical;
279   bool aFound = false;
280   for (; anIt != aLast && !aFound; anIt++) {
281     aFound = anIt.value() == aSenderCheckBox;
282     if (aFound)
283       aState = anIt.key();
284   }
285   if (aFound)
286     emit showConstraintToggled(aState, theOn);
287 }
288
289 void PartSet_WidgetSketchLabel::blockAttribute(const AttributePtr& theAttribute,
290                                                const bool& theToBlock, bool& isFlushesActived,
291                                                bool& isAttributeSetInitializedBlocked,
292                                                bool& isAttributeSendUpdatedBlocked)
293 {
294   ModuleBase_WidgetValidated::blockAttribute(theAttribute, theToBlock, isFlushesActived,
295                                              isAttributeSetInitializedBlocked,
296                                              isAttributeSendUpdatedBlocked);
297   // We do not restore the previous state of isAttributeSetInitializedBlocked for each of
298   // attributes. It it is necessary, these states should be append to the method attributes
299   // or stored in the widget
300
301   std::list<AttributePtr> anAttributes = myFeature->data()->attributes("");
302   std::list<AttributePtr>::const_iterator anIt = anAttributes.begin(), aLast = anAttributes.end();
303   QStringList aValues;
304   for(; anIt != aLast; anIt++) {
305     AttributePtr anAttribute = *anIt;
306     if (theToBlock)
307       anAttribute->blockSetInitialized(true);
308     else
309       anAttribute->blockSetInitialized(isAttributeSetInitializedBlocked);
310   }
311 }
312
313 bool PartSet_WidgetSketchLabel::setSelectionInternal(
314                                           const QList<ModuleBase_ViewerPrsPtr>& theValues,
315                                           const bool theToValidate)
316 {
317   bool aDone = false;
318   if (theValues.empty()) {
319     // In order to make reselection possible, set empty object and shape should be done
320     setSelectionCustom(ModuleBase_ViewerPrsPtr(
321                               new ModuleBase_ViewerPrs(ObjectPtr(), GeomShapePtr(), NULL)));
322     aDone = false;
323   }
324   else {
325     // it removes the processed value from the parameters list
326     ModuleBase_ViewerPrsPtr aValue = theValues.first();//.takeFirst();
327     if (!theToValidate || isValidInFilters(aValue)) {
328       myIsSelection = true;
329       aDone = setSelectionCustom(aValue);
330       myIsSelection = false;
331     }
332   }
333
334   return aDone;
335 }
336
337 void PartSet_WidgetSketchLabel::updateByPlaneSelected(const ModuleBase_ViewerPrsPtr& thePrs)
338 {
339   // Nullify a temporary remembered plane
340   if (myTmpPlane.get())
341     myTmpPlane.reset();
342
343   GeomPlanePtr aPlane = plane();
344   if (!aPlane.get())
345     return;
346
347   myPartSetMessage->hide();
348   mySizeMessage->hide();
349
350   // 1. hide main planes if they have been displayed and display sketch preview plane
351   myPreviewPlanes->erasePreviewPlanes(myWorkshop);
352
353   QString aSizeOfViewStr = mySizeOfView->text();
354   bool isSetSizeOfView = false;
355   double aSizeOfView = 0;
356   if (!aSizeOfViewStr.isEmpty()) {
357     aSizeOfView = aSizeOfViewStr.toDouble(&isSetSizeOfView);
358     if (isSetSizeOfView && aSizeOfView <= 0) {
359       isSetSizeOfView = false;
360     }
361   }
362   PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
363   if (aModule) {
364     CompositeFeaturePtr aSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(myFeature);
365     aModule->sketchMgr()->previewSketchPlane()->setSizeOfView(aSizeOfView, isSetSizeOfView);
366     if (myViewVisible->isChecked())
367       aModule->sketchMgr()->previewSketchPlane()->createSketchPlane(aSketch, myWorkshop);
368     else
369       aModule->sketchMgr()->previewSketchPlane()->clearPlanePreview();
370   }
371   // 2. if the planes were displayed, change the view projection
372
373   std::shared_ptr<GeomAPI_Dir> aDir = aPlane->direction();
374   gp_XYZ aXYZ = aDir->impl<gp_Dir>().XYZ();
375   double aTwist = 0.0;
376
377   // Rotate view if the sketcher plane is selected only from preview planes
378   // Preview planes are created only if there is no any shape
379   bool aRotate = Config_PropManager::boolean(SKETCH_TAB_NAME, "rotate_to_plane");
380   if (aRotate) {
381     myWorkshop->viewer()->setViewProjection(aXYZ.X(), aXYZ.Y(), aXYZ.Z(), aTwist);
382   }
383   if (isSetSizeOfView && aSizeOfView > 0) {
384     Handle(V3d_View) aView3d = myWorkshop->viewer()->activeView();
385     if (!aView3d.IsNull()) {
386       Bnd_Box aBndBox;
387       double aHalfSize = aSizeOfView/2.0;
388       aBndBox.Update(-aHalfSize, -aHalfSize, -aHalfSize, aHalfSize, aHalfSize, aHalfSize);
389       aView3d->FitAll(aBndBox, 0.01, false);
390     }
391   }
392   if (myOpenTransaction) {
393     SessionPtr aMgr = ModelAPI_Session::get();
394     aMgr->finishOperation();
395     myOpenTransaction = false;
396   }
397   // 3. Clear text in the label
398   myStackWidget->setCurrentIndex(1);
399   //myLabel->setText("");
400   //myLabel->setToolTip("");
401   XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(myWorkshop);
402
403   // 5. Clear selection mode and define sketching mode
404   emit planeSelected(plane());
405   // after the plane is selected in the sketch, the sketch selection should be activated
406   // it can not be performed in the sketch label widget because, we don't need to switch off
407   // the selection by any label deactivation, but need to switch it off by stop the sketch
408   myWorkshop->selectionActivate()->updateSelectionFilters();
409   myWorkshop->selectionActivate()->updateSelectionModes();
410
411   if (aModule)
412     aModule->onViewTransformed();
413
414   myWorkshop->updateCommandStatus();
415   aWorkshop->selector()->clearSelection();
416   myWorkshop->viewer()->update();
417
418   myRemoveExternal->setVisible(false);
419 }
420
421 std::shared_ptr<GeomAPI_Pln> PartSet_WidgetSketchLabel::plane() const
422 {
423   CompositeFeaturePtr aSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(myFeature);
424   return PartSet_Tools::sketchPlane(aSketch);
425 }
426
427 bool PartSet_WidgetSketchLabel::focusTo()
428 {
429   ModuleBase_Tools::setFocus(myStackWidget, "PartSet_WidgetSketchLabel::focusTo()");
430   return true;
431 }
432
433 void PartSet_WidgetSketchLabel::enableFocusProcessing()
434 {
435   myStackWidget->installEventFilter(this);
436 }
437
438 void PartSet_WidgetSketchLabel::storeAttributeValue(const AttributePtr& theAttribute)
439 {
440   ModuleBase_WidgetValidated::storeAttributeValue(theAttribute);
441 }
442
443 void PartSet_WidgetSketchLabel::restoreAttributeValue(const AttributePtr& theAttribute,
444                                                       const bool theValid)
445 {
446   ModuleBase_WidgetValidated::restoreAttributeValue(theAttribute, theValid);
447
448   // it is not necessary to save the previous plane value because the plane is chosen once
449   DataPtr aData = feature()->data();
450   AttributeSelectionPtr aSelAttr = std::dynamic_pointer_cast<ModelAPI_AttributeSelection>
451     (aData->attribute(SketchPlugin_SketchEntity::EXTERNAL_ID()));
452   if (aSelAttr) {
453     ResultPtr anEmptyResult;
454     GeomShapePtr anEmptyShape;
455     aSelAttr->setValue(anEmptyResult, anEmptyShape);
456   }
457   std::shared_ptr<GeomDataAPI_Point> anOrigin = std::dynamic_pointer_cast<GeomDataAPI_Point>(
458     aData->attribute(SketchPlugin_Sketch::ORIGIN_ID()));
459   anOrigin->reset();
460   std::shared_ptr<GeomDataAPI_Dir> aNormal = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
461     aData->attribute(SketchPlugin_Sketch::NORM_ID()));
462   aNormal->reset();
463   std::shared_ptr<GeomDataAPI_Dir> aDirX = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
464     aData->attribute(SketchPlugin_Sketch::DIRX_ID()));
465   aDirX->reset();
466 }
467
468 bool PartSet_WidgetSketchLabel::setSelectionCustom(const ModuleBase_ViewerPrsPtr& thePrs)
469 {
470   if (myIsSelection && myRemoveExternal->isVisible()) {
471     if (myRemoveExternal->isChecked()) {
472       myFeature->customAction(SketchPlugin_Sketch::ACTION_REMOVE_EXTERNAL());
473     }
474   }
475   return fillSketchPlaneBySelection(thePrs);
476 }
477
478 bool PartSet_WidgetSketchLabel::canFillSketch(const ModuleBase_ViewerPrsPtr& thePrs)
479 {
480   bool aCanFillSketch = true;
481   // avoid any selection on sketch object
482   ObjectPtr anObject = thePrs->object();
483   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
484   if (aResult.get()) {
485     FeaturePtr aFeature = ModelAPI_Feature::feature(aResult);
486     if (aFeature->getKind() == SketchPlugin_Sketch::ID())
487       aCanFillSketch = false;
488   }
489   // check plane or planar face of any non-sketch object
490   if (aCanFillSketch) {
491     GeomShapePtr aGeomShape = thePrs->shape();
492     if ((!aGeomShape.get() || aGeomShape->isNull()) && aResult.get()) {
493       aGeomShape = aResult->shape();
494     }
495
496     if (aGeomShape.get() && aGeomShape->shapeType() == GeomAPI_Shape::FACE) {
497       std::shared_ptr<GeomAPI_Face> aGeomFace(new GeomAPI_Face(aGeomShape));
498       aCanFillSketch = aGeomFace.get() && aGeomFace->isPlanar();
499     }
500     else
501       aCanFillSketch = false;
502   }
503   return aCanFillSketch;
504 }
505
506 bool PartSet_WidgetSketchLabel::fillSketchPlaneBySelection(const ModuleBase_ViewerPrsPtr& thePrs)
507 {
508   bool isOwnerSet = false;
509
510   const GeomShapePtr& aShape = thePrs->shape();
511   std::shared_ptr<GeomAPI_Dir> aDir;
512
513   if (aShape.get() && !aShape->isNull()) {
514     const TopoDS_Shape& aTDShape = aShape->impl<TopoDS_Shape>();
515     aDir = setSketchPlane(aTDShape);
516     isOwnerSet = aDir.get();
517   }
518   if (thePrs->object() && (feature() != thePrs->object())) {
519     FeaturePtr aFeature = ModelAPI_Feature::feature(thePrs->object());
520     DataPtr aData = feature()->data();
521     AttributeSelectionPtr aSelAttr =
522       std::dynamic_pointer_cast<ModelAPI_AttributeSelection>
523       (aData->attribute(SketchPlugin_SketchEntity::EXTERNAL_ID()));
524     if (aSelAttr.get()) {
525       ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(thePrs->object());
526       if (aRes.get()) {
527         GeomShapePtr aShapePtr;
528         if (!aShape.get() || aShape->isNull()) {  // selection happens in the OCC viewer
529           aShapePtr = ModelAPI_Tools::shape(aRes);
530         }
531         else { // selection happens in OB browser
532           aShapePtr = aShape;
533         }
534         if (aShapePtr.get() && aShapePtr->isFace()) {
535           const TopoDS_Shape& aTDShape = aShapePtr->impl<TopoDS_Shape>();
536           setSketchPlane(aTDShape);
537           aSelAttr->setValue(aRes, aShapePtr);
538           isOwnerSet = true;
539         }
540       }
541       else {
542         aSelAttr->setValue(aFeature, GeomShapePtr());
543         GeomShapePtr aSelShape = aSelAttr->value();
544         if (!aSelShape.get() && aSelAttr->contextFeature().get() &&
545           aSelAttr->contextFeature()->firstResult().get()) {
546           aSelShape = aSelAttr->contextFeature()->firstResult()->shape();
547         }
548         if (aSelShape.get() && aSelShape->isPlanar()) {
549           const TopoDS_Shape& aTDShape = aSelShape->impl<TopoDS_Shape>();
550           setSketchPlane(aTDShape);
551           isOwnerSet = true;
552         }
553       }
554     }
555   }
556   return isOwnerSet;
557 }
558
559 void PartSet_WidgetSketchLabel::activateCustom()
560 {
561   QWidget* aTopWidget = window();
562   if (aTopWidget)
563     aTopWidget->installEventFilter(this);
564
565   PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
566   if (aModule) {
567     bool isBlocked = myAutoConstraints->blockSignals(true);
568     myAutoConstraints->setChecked(aModule->sketchReentranceMgr()->isAutoConstraints());
569     myAutoConstraints->blockSignals(isBlocked);
570   }
571
572   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
573   if (aPlane.get()) {
574     myStackWidget->setCurrentIndex(1);
575     return;
576   }
577
578   myStackWidget->setCurrentIndex(0);
579   bool aBodyIsVisualized = myPreviewPlanes->hasVisualizedBodies(myWorkshop);
580
581   // Clear previous selection mode It is necessary for correct activation of preview planes
582   XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(myWorkshop);
583   XGUI_Displayer* aDisp = aWorkshop->displayer();
584   aWorkshop->selectionActivate()->activateObjects(QIntList(), aDisp->displayedObjects(), false);
585
586   if (!aBodyIsVisualized) {
587     // We have to select a plane before any operation
588     myPreviewPlanes->showPreviewPlanes(myWorkshop);
589     mySizeOfViewWidget->setVisible(true);
590   }
591   else
592     mySizeOfViewWidget->setVisible(false);
593 }
594
595 void PartSet_WidgetSketchLabel::showEvent(QShowEvent* theEvent)
596 {
597   ModuleBase_WidgetValidated::showEvent(theEvent);
598   QTimer::singleShot(10, this, SLOT(onShowPanel()));
599 }
600
601 void PartSet_WidgetSketchLabel::hideEvent(QHideEvent* theEvent)
602 {
603   ModuleBase_WidgetValidated::hideEvent(theEvent);
604   if (myPartSetMessage->isVisible())
605     myPartSetMessage->hide();
606   if (mySizeMessage->isVisible())
607     mySizeMessage->hide();
608 }
609
610
611 void PartSet_WidgetSketchLabel::onShowPanel()
612 {
613   //if (mySizeOfViewWidget->isVisible()) {
614   if (myStackWidget->currentIndex() == 0) {
615     DocumentPtr aDoc = feature()->document();
616     DocumentPtr aModDoc = ModelAPI_Session::get()->moduleDocument();
617     if (aModDoc == aDoc) {
618       myPartSetMessage->move(mapToGlobal(geometry().bottomLeft()));
619       myPartSetMessage->show();
620     }
621     if (mySizeOfViewWidget->isVisible()) {
622       QPoint aPnt = mySizeOfView->mapToGlobal(mySizeOfView->geometry().center());
623       mySizeMessage->move(aPnt);
624       mySizeMessage->show();
625     }
626   }
627 }
628
629 void PartSet_WidgetSketchLabel::deactivate()
630 {
631   QWidget* aTopWidget = window();
632   if (aTopWidget)
633     aTopWidget->removeEventFilter(this);
634
635   if (myTmpPlane.get()) {
636     setSketchPlane(myTmpPlane);
637     myTmpPlane.reset();
638   }
639
640   ModuleBase_WidgetValidated::deactivate();
641   bool aHidePreview = myPreviewPlanes->isPreviewDisplayed();
642   myPreviewPlanes->erasePreviewPlanes(myWorkshop);
643
644   if (aHidePreview)
645     myWorkshop->viewer()->update();
646
647   if (myOpenTransaction) {
648     SessionPtr aMgr = ModelAPI_Session::get();
649     aMgr->finishOperation();
650     myOpenTransaction = false;
651   }
652 }
653
654 void PartSet_WidgetSketchLabel::selectionModes(int& theModuleSelectionModes, QIntList& theModes)
655 {
656   theModuleSelectionModes = -1;
657   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
658   if (!aPlane.get())
659     theModes << TopAbs_FACE;
660 }
661
662 void PartSet_WidgetSketchLabel::selectionFilters(QIntList& theModuleSelectionFilters,
663                                                  SelectMgr_ListOfFilter& theSelectionFilters)
664 {
665   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
666   if (aPlane.get())
667     return;
668   return ModuleBase_WidgetValidated::selectionFilters(theModuleSelectionFilters,
669                                                       theSelectionFilters);
670 }
671
672 std::shared_ptr<GeomAPI_Dir>
673   PartSet_WidgetSketchLabel::setSketchPlane(const TopoDS_Shape& theShape)
674 {
675   if (theShape.IsNull())
676     return std::shared_ptr<GeomAPI_Dir>();
677
678   // get selected shape
679   std::shared_ptr<GeomAPI_Shape> aGShape(new GeomAPI_Shape);
680   aGShape->setImpl(new TopoDS_Shape(theShape));
681
682   // get plane parameters
683   std::shared_ptr<GeomAPI_Face> aFace(new GeomAPI_Face(aGShape));
684   std::shared_ptr<GeomAPI_Pln> aPlane = aFace->getPlane();
685   if (!aPlane.get())
686     return std::shared_ptr<GeomAPI_Dir>();
687   return setSketchPlane(aPlane);
688 }
689
690 std::shared_ptr<GeomAPI_Dir>
691   PartSet_WidgetSketchLabel::setSketchPlane(std::shared_ptr<GeomAPI_Pln> thePlane)
692 {
693   // set plane parameters to feature
694   std::shared_ptr<ModelAPI_Data> aData = feature()->data();
695   double anA, aB, aC, aD;
696   thePlane->coefficients(anA, aB, aC, aD);
697
698   // calculate attributes of the sketch
699   std::shared_ptr<GeomAPI_Dir> aNormDir(new GeomAPI_Dir(anA, aB, aC));
700   std::shared_ptr<GeomAPI_XYZ> aCoords = aNormDir->xyz();
701   std::shared_ptr<GeomAPI_XYZ> aZero(new GeomAPI_XYZ(0, 0, 0));
702   aCoords = aCoords->multiplied(-aD * aCoords->distance(aZero));
703   std::shared_ptr<GeomAPI_Pnt> anOrigPnt(new GeomAPI_Pnt(aCoords));
704   // X axis is preferable to be dirX on the sketch
705   const double tol = Precision::Confusion();
706   bool isX = fabs(fabs(anA) - 1.0) < tol && fabs(aB) < tol && fabs(aC) < tol;
707   std::shared_ptr<GeomAPI_Dir> aTempDir(
708       isX ? new GeomAPI_Dir(0, 1, 0) : new GeomAPI_Dir(1, 0, 0));
709   std::shared_ptr<GeomAPI_Dir> aYDir(new GeomAPI_Dir(aNormDir->cross(aTempDir)));
710   std::shared_ptr<GeomAPI_Dir> aXDir(new GeomAPI_Dir(aYDir->cross(aNormDir)));
711
712   std::shared_ptr<GeomDataAPI_Point> anOrigin = std::dynamic_pointer_cast<GeomDataAPI_Point>(
713       aData->attribute(SketchPlugin_Sketch::ORIGIN_ID()));
714   anOrigin->setValue(anOrigPnt);
715   std::shared_ptr<GeomDataAPI_Dir> aNormal = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
716       aData->attribute(SketchPlugin_Sketch::NORM_ID()));
717   aNormal->setValue(aNormDir);
718   std::shared_ptr<GeomDataAPI_Dir> aDirX = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
719       aData->attribute(SketchPlugin_Sketch::DIRX_ID()));
720   aDirX->setValue(aXDir);
721   std::shared_ptr<GeomAPI_Dir> aDir = thePlane->direction();
722   return aDir;
723 }
724
725 void PartSet_WidgetSketchLabel::onSetPlaneView()
726 {
727   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
728   if (aPlane.get()) {
729     std::shared_ptr<GeomAPI_Dir> aDirection = aPlane->direction();
730     gp_Dir aDir = aDirection->impl<gp_Dir>();
731     if (myViewInverted->isChecked())
732       aDir.Reverse();
733     myWorkshop->viewer()->setViewProjection(aDir.X(), aDir.Y(), aDir.Z(), 0.);
734     PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
735     if (aModule)
736       aModule->onViewTransformed();
737   }
738 }
739
740
741 //******************************************************
742 QList<ModuleBase_ViewerPrsPtr> PartSet_WidgetSketchLabel::findCircularEdgesInPlane()
743 {
744   QList<std::shared_ptr<ModuleBase_ViewerPrs>> aResult;
745   XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(myWorkshop);
746   XGUI_Displayer* aDisplayer = aWorkshop->displayer();
747   QObjectPtrList aDispObjects = aDisplayer->displayedObjects();
748
749   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
750   foreach(ObjectPtr aObj, aDispObjects) {
751     ResultPtr aResObj = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
752     if (aResObj.get()) {
753       GeomShapePtr aShape = aResObj->shape();
754       if (aShape.get()) {
755         GeomAPI_ShapeExplorer aExplorer(aShape, GeomAPI_Shape::EDGE);
756         for(; aExplorer.more(); aExplorer.next()) {
757           GeomShapePtr aEdgeShape = aExplorer.current();
758           GeomAPI_Edge anEdge(aEdgeShape);
759           if ((anEdge.isCircle() || anEdge.isArc() || anEdge.isEllipse()) &&
760                anEdge.isInPlane(aPlane)) {
761             bool isContains = false;
762             // Check that edge is not used.
763             // It is possible that the same edge will be taken from different faces
764             foreach(ModuleBase_ViewerPrsPtr aPrs, aResult) {
765               GeomAPI_Edge aUsedEdge(aPrs->shape());
766               if (aUsedEdge.isEqual(aEdgeShape)) {
767                 isContains = true;
768                 break;
769               }
770             }
771             if (!isContains) {
772               ModuleBase_ViewerPrsPtr aPrs(new ModuleBase_ViewerPrs(aResObj, aEdgeShape));
773               aResult.append(aPrs);
774             }
775           }
776         }
777       }
778     }
779   }
780   return aResult;
781 }
782
783 //******************************************************
784 void PartSet_WidgetSketchLabel::onChangePlane()
785 {
786   PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
787   if (aModule) {
788     mySizeOfViewWidget->setVisible(false);
789     myRemoveExternal->setVisible(true);
790     myStackWidget->setCurrentIndex(0);
791
792     bool aBodyIsVisualized = myPreviewPlanes->hasVisualizedBodies(myWorkshop);
793
794     if (!aBodyIsVisualized) {
795       // We have to select a plane before any operation
796       myPreviewPlanes->showPreviewPlanes(myWorkshop);
797     }
798
799     CompositeFeaturePtr aSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(myFeature);
800     myTmpPlane = PartSet_Tools::sketchPlane(aSketch);
801     PartSet_Tools::nullifySketchPlane(aSketch);
802
803     Handle(SelectMgr_Filter) aFilter = aModule->selectionFilter(SF_SketchPlaneFilter);
804     if (!aFilter.IsNull()) {
805       std::shared_ptr<GeomAPI_Pln> aPln;
806       Handle(ModuleBase_ShapeInPlaneFilter)::DownCast(aFilter)->setPlane(aPln);
807     }
808     XGUI_Workshop* aWorkshop = aModule->getWorkshop();
809
810     aWorkshop->selectionActivate()->updateSelectionFilters();
811     aWorkshop->selectionActivate()->updateSelectionModes();
812
813     SessionPtr aMgr = ModelAPI_Session::get();
814     aMgr->startOperation("Change Sketch plane");
815     myOpenTransaction = true;
816     myWorkshop->viewer()->update();
817   }
818 }
819
820 void PartSet_WidgetSketchLabel::setShowPointsState(bool theState)
821 {
822   bool aBlock = myShowPoints->blockSignals(true);
823   myShowPoints->setChecked(theState);
824   myShowPoints->blockSignals(aBlock);
825 }
826
827 bool PartSet_WidgetSketchLabel::restoreValueCustom()
828 {
829   if (myFeature.get()) {
830     CompositeFeaturePtr aSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(myFeature);
831     if (aSketch.get() && (aSketch->numberOfSubs() > 0)) {
832       AttributeStringPtr aDOFStr = aSketch->string("SolverDOF");
833       if (aDOFStr.get()) {
834         QString aVal(aDOFStr->value().c_str());
835         if (aVal.contains('=')) {
836           // to support old data
837           aVal = aVal.right(aVal.length() - aVal.lastIndexOf('='));
838         }
839         int aDoF = aVal.toInt();
840         if (aDoF == 0) {
841           myDoFLabel->setText(tr("Sketch is fully fixed (DoF = 0)"));
842           myShowDOFBtn->setEnabled(false);
843         } else {
844           myDoFLabel->setText(tr("DoF (degrees of freedom) = ") + aVal);
845           myShowDOFBtn->setEnabled(true);
846         }
847       }
848     }
849     else {
850       myDoFLabel->setText("");
851       myShowDOFBtn->setEnabled(false);
852     }
853   }
854   return true;
855 }
856
857
858 void PartSet_WidgetSketchLabel::onShowDOF()
859 {
860   CompositeFeaturePtr aCompFeature =
861     std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(myFeature);
862   if (aCompFeature.get()) {
863     static const Events_ID anEvent = Events_Loop::eventByName(EVENT_GET_DOF_OBJECTS);
864     ModelAPI_EventCreator::get()->sendUpdated(aCompFeature, anEvent);
865     Events_Loop::loop()->flush(anEvent);
866
867     // Transfer focus to the current viewport for correct processing of a key event
868     QWidget* aViewPort = myWorkshop->viewer()->activeViewPort();
869     if (aViewPort)
870       aViewPort->setFocus();
871   }
872 }
873
874 bool PartSet_WidgetSketchLabel::eventFilter(QObject* theObj, QEvent* theEvent)
875 {
876   if (theObj == window()) {
877     int aType = theEvent->type();
878     if ((aType == QEvent::Hide) || (aType == QEvent::WindowDeactivate)) {
879       if (myPartSetMessage->isVisible())
880         myPartSetMessage->hide();
881       if (mySizeMessage->isVisible())
882         mySizeMessage->hide();
883     }
884     else if ((aType == QEvent::Show) || (aType == QEvent::WindowActivate))
885       onShowPanel();
886   }
887   return ModuleBase_WidgetValidated::eventFilter(theObj, theEvent);
888 }
889
890 void PartSet_WidgetSketchLabel::onShowViewPlane(bool toShow)
891 {
892   PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
893   PartSet_PreviewSketchPlane* aPreviewPlane = aModule->sketchMgr()->previewSketchPlane();
894   if (toShow) {
895     CompositeFeaturePtr aSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(myFeature);
896     if (aPreviewPlane->isPlaneCreated())
897       aPreviewPlane->displaySketchPlane(myWorkshop);
898     else
899       aPreviewPlane->createSketchPlane(aSketch, myWorkshop);
900   }
901   else {
902     aPreviewPlane->eraseSketchPlane(myWorkshop, false);
903   }
904   myWorkshop->viewer()->update();
905 }