Salome HOME
Update constraints symbols according to current sketch plane
[modules/shaper.git] / src / PartSet / PartSet_WidgetSketchLabel.cpp
1 // Copyright (C) 2014-2019  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
25 #include "SketchPlugin_SketchEntity.h"
26
27 #include <XGUI_ActionsMgr.h>
28 #include <XGUI_Displayer.h>
29 #include <XGUI_ModuleConnector.h>
30 #include <XGUI_SelectionActivate.h>
31 #include <XGUI_Selection.h>
32 #include <XGUI_SelectionMgr.h>
33 #include <XGUI_Tools.h>
34 #include <XGUI_ViewerProxy.h>
35 #include <XGUI_Workshop.h>
36
37 #include <ModelAPI_ResultBody.h>
38 #include <ModelAPI_Tools.h>
39
40 #include <ModuleBase_Operation.h>
41 #include <ModuleBase_ViewerPrs.h>
42 #include <ModuleBase_Tools.h>
43 #include <ModuleBase_IModule.h>
44 #include <ModuleBase_IPropertyPanel.h>
45
46 #include <GeomAlgoAPI_FaceBuilder.h>
47 #include <GeomAlgoAPI_ShapeTools.h>
48 #include <GeomDataAPI_Point.h>
49 #include <GeomDataAPI_Dir.h>
50 #include <GeomAPI_XYZ.h>
51 #include <GeomAPI_Face.h>
52 #include <GeomAPI_Edge.h>
53 #include <GeomAPI_ShapeExplorer.h>
54
55 #include <SketchPlugin_Sketch.h>
56 #include <SketcherPrs_Tools.h>
57
58 #include <Precision.hxx>
59 #include <gp_Pln.hxx>
60 #include <gp_Pnt.hxx>
61 #include <gp_Dir.hxx>
62 #include <AIS_Shape.hxx>
63 #include <AIS_DimensionSelectionMode.hxx>
64 #include <Bnd_Box.hxx>
65
66 #include <Config_WidgetAPI.h>
67 #include <Config_PropManager.h>
68
69 #include <QLabel>
70 #include <QApplication>
71 #include <QVBoxLayout>
72 #include <QHBoxLayout>
73 #include <QCheckBox>
74 #include <QGroupBox>
75 #include <QPushButton>
76 #include <QStackedWidget>
77 #include <QLineEdit>
78 #include <QDoubleValidator>
79
80 #ifndef DBL_MAX
81 #define DBL_MAX 1.7976931348623158e+308
82 #endif
83
84 PartSet_WidgetSketchLabel::PartSet_WidgetSketchLabel(QWidget* theParent,
85                         ModuleBase_IWorkshop* theWorkshop,
86                         const Config_WidgetAPI* theData,
87                         const QMap<PartSet_Tools::ConstraintVisibleState, bool>& toShowConstraints)
88 : ModuleBase_WidgetValidated(theParent, theWorkshop, theData), myOpenTransaction(false),
89 myIsSelection(false)
90 {
91   QVBoxLayout* aLayout = new QVBoxLayout(this);
92   ModuleBase_Tools::zeroMargins(aLayout);
93
94   myStackWidget = new QStackedWidget(this);
95   myStackWidget->setContentsMargins(0,0,0,0);
96   aLayout->addWidget(myStackWidget);
97
98   // Define label for plane selection
99   QWidget* aFirstWgt = new QWidget(this);
100
101   // Size of the View control
102   mySizeOfViewWidget = new QWidget(aFirstWgt);
103   QHBoxLayout* aSizeLayout = new QHBoxLayout(mySizeOfViewWidget);
104   aSizeLayout->addWidget(new QLabel("Size of the view", mySizeOfViewWidget));
105   mySizeOfView = new QLineEdit(mySizeOfViewWidget);
106
107   QDoubleValidator* aValidator = new QDoubleValidator(0, DBL_MAX, 12, mySizeOfView);
108   aValidator->setLocale(ModuleBase_Tools::doubleLocale());
109   aValidator->setNotation(QDoubleValidator::StandardNotation);
110   mySizeOfView->setValidator(aValidator);
111   aSizeLayout->addWidget(mySizeOfView);
112
113   QString aText = QString::fromStdString(theData->getProperty("title"));
114   QLabel* aLabel = new QLabel(aText, aFirstWgt);
115   aLabel->setWordWrap(true);
116   QString aTooltip = QString::fromStdString(theData->getProperty("tooltip"));
117   aLabel->setToolTip(aTooltip);
118   aLabel->setIndent(5);
119
120   aLayout = new QVBoxLayout(aFirstWgt);
121   ModuleBase_Tools::zeroMargins(aLayout);
122   aLayout->addWidget(mySizeOfViewWidget);
123   aLayout->addWidget(aLabel);
124
125   myRemoveExternal = new QCheckBox(tr("Remove external dependencies"), aFirstWgt);
126   myRemoveExternal->setChecked(false);
127   aLayout->addWidget(myRemoveExternal);
128   myRemoveExternal->setVisible(false);
129
130   aLayout->addStretch(1);
131
132   myStackWidget->addWidget(aFirstWgt);
133
134   // Define widget for sketch manmagement
135   QWidget* aSecondWgt = new QWidget(this);
136   aLayout = new QVBoxLayout(aSecondWgt);
137   ModuleBase_Tools::zeroMargins(aLayout);
138
139   QGroupBox* aViewBox = new QGroupBox(tr("Sketcher plane"), this);
140   QVBoxLayout* aViewLayout = new QVBoxLayout(aViewBox);
141
142   myViewInverted = new QCheckBox(tr("Reversed"), aViewBox);
143   aViewLayout->addWidget(myViewInverted);
144
145   QPushButton* aSetViewBtn =
146     new QPushButton(QIcon(":icons/plane_view.png"), tr("Set plane view"), aViewBox);
147   connect(aSetViewBtn, SIGNAL(clicked(bool)), this, SLOT(onSetPlaneView()));
148   aViewLayout->addWidget(aSetViewBtn);
149
150   aLayout->addWidget(aViewBox);
151
152   QMap<PartSet_Tools::ConstraintVisibleState, QString> aStates;
153   aStates[PartSet_Tools::Geometrical] = tr("Show geometrical constraints");
154   aStates[PartSet_Tools::Dimensional] = tr("Show dimensional constraints");
155   aStates[PartSet_Tools::Expressions] = tr("Show existing expressions");
156
157   QMap<PartSet_Tools::ConstraintVisibleState, QString>::const_iterator anIt = aStates.begin(),
158                                                         aLast = aStates.end();
159   for (; anIt != aLast; anIt++) {
160     QCheckBox* aShowConstraints = new QCheckBox(anIt.value(), this);
161     connect(aShowConstraints, SIGNAL(toggled(bool)), this, SLOT(onShowConstraint(bool)));
162     aLayout->addWidget(aShowConstraints);
163
164     PartSet_Tools::ConstraintVisibleState aState = anIt.key();
165     myShowConstraints[aState] = aShowConstraints;
166
167     if (toShowConstraints.contains(aState))
168       aShowConstraints->setChecked(toShowConstraints[aState]);
169   }
170
171
172   QPushButton* aPlaneBtn = new QPushButton(tr("Change sketch plane"), aSecondWgt);
173   connect(aPlaneBtn, SIGNAL(clicked(bool)), SLOT(onChangePlane()));
174   aLayout->addWidget(aPlaneBtn);
175
176   myStackWidget->addWidget(aSecondWgt);
177   //setLayout(aLayout);
178
179   myPreviewPlanes = new PartSet_PreviewPlanes();
180 }
181
182 PartSet_WidgetSketchLabel::~PartSet_WidgetSketchLabel()
183 {
184 }
185
186 bool PartSet_WidgetSketchLabel::setSelection(QList<ModuleBase_ViewerPrsPtr>& theValues,
187                                              const bool theToValidate)
188 {
189   // do not use the given selection if the plane of the sketch has been already set.
190   // If this check is absent, a selected plane in the viewer can be set in the sketch
191   // even if the sketch is built on another plane.
192   if (plane().get())
193     return true;
194
195   ModuleBase_ViewerPrsPtr aPrs = theValues.first();
196   bool aDone = setSelectionInternal(theValues, theToValidate);
197   if (aDone)
198     updateByPlaneSelected(aPrs);
199   return aDone;
200 }
201
202 QList<QWidget*> PartSet_WidgetSketchLabel::getControls() const
203 {
204   QList<QWidget*> aResult;
205   aResult << myStackWidget;
206   return aResult;
207 }
208
209 bool PartSet_WidgetSketchLabel::processSelection()
210 {
211   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
212   if (aPlane.get())
213     return false;
214
215   QList<ModuleBase_ViewerPrsPtr> aSelected = getFilteredSelected();
216
217   if (aSelected.empty())
218     return false;
219   ModuleBase_ViewerPrsPtr aPrs = aSelected.first();
220   bool aDone = setSelectionInternal(aSelected, false);
221   if (aDone) {
222     updateByPlaneSelected(aPrs);
223     updateObject(myFeature);
224   }
225
226   return aDone;
227 }
228
229 void PartSet_WidgetSketchLabel::onShowConstraint(bool theOn)
230 {
231   QCheckBox* aSenderCheckBox = qobject_cast<QCheckBox*>(sender());
232
233   QMap<PartSet_Tools::ConstraintVisibleState, QCheckBox*>::const_iterator
234                           anIt = myShowConstraints.begin(), aLast = myShowConstraints.end();
235
236   PartSet_Tools::ConstraintVisibleState aState = PartSet_Tools::Geometrical;
237   bool aFound = false;
238   for (; anIt != aLast && !aFound; anIt++) {
239     aFound = anIt.value() == aSenderCheckBox;
240     if (aFound)
241       aState = anIt.key();
242   }
243   if (aFound)
244     emit showConstraintToggled(aState, theOn);
245 }
246
247 void PartSet_WidgetSketchLabel::blockAttribute(const AttributePtr& theAttribute,
248                                                const bool& theToBlock, bool& isFlushesActived,
249                                                bool& isAttributeSetInitializedBlocked,
250                                                bool& isAttributeSendUpdatedBlocked)
251 {
252   ModuleBase_WidgetValidated::blockAttribute(theAttribute, theToBlock, isFlushesActived,
253                                              isAttributeSetInitializedBlocked,
254                                              isAttributeSendUpdatedBlocked);
255   // We do not restore the previous state of isAttributeSetInitializedBlocked for each of
256   // attributes. It it is necessary, these states should be append to the method attributes
257   // or stored in the widget
258
259   std::list<AttributePtr> anAttributes = myFeature->data()->attributes("");
260   std::list<AttributePtr>::const_iterator anIt = anAttributes.begin(), aLast = anAttributes.end();
261   QStringList aValues;
262   for(; anIt != aLast; anIt++) {
263     AttributePtr anAttribute = *anIt;
264     if (theToBlock)
265       anAttribute->blockSetInitialized(true);
266     else
267       anAttribute->blockSetInitialized(isAttributeSetInitializedBlocked);
268   }
269 }
270
271 bool PartSet_WidgetSketchLabel::setSelectionInternal(
272                                           const QList<ModuleBase_ViewerPrsPtr>& theValues,
273                                           const bool theToValidate)
274 {
275   bool aDone = false;
276   if (theValues.empty()) {
277     // In order to make reselection possible, set empty object and shape should be done
278     setSelectionCustom(std::shared_ptr<ModuleBase_ViewerPrs>(
279                               new ModuleBase_ViewerPrs(ObjectPtr(), GeomShapePtr(), NULL)));
280     aDone = false;
281   }
282   else {
283     // it removes the processed value from the parameters list
284     ModuleBase_ViewerPrsPtr aValue = theValues.first();//.takeFirst();
285     if (!theToValidate || isValidInFilters(aValue)) {
286       myIsSelection = true;
287       aDone = setSelectionCustom(aValue);
288       myIsSelection = false;
289     }
290   }
291
292   return aDone;
293 }
294
295 void PartSet_WidgetSketchLabel::updateByPlaneSelected(const ModuleBase_ViewerPrsPtr& thePrs)
296 {
297   GeomPlanePtr aPlane = plane();
298   if (!aPlane.get())
299     return;
300   // 1. hide main planes if they have been displayed and display sketch preview plane
301   myPreviewPlanes->erasePreviewPlanes(myWorkshop);
302
303   PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
304   if (aModule) {
305     CompositeFeaturePtr aSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(myFeature);
306     bool isSetSizeOfView = false;
307     double aSizeOfView = 0;
308     QString aSizeOfViewStr = mySizeOfView->text();
309     if (!aSizeOfViewStr.isEmpty()) {
310       aSizeOfView = aSizeOfViewStr.toDouble(&isSetSizeOfView);
311       if (isSetSizeOfView && aSizeOfView <= 0) {
312         isSetSizeOfView = false;
313       }
314     }
315     if (isSetSizeOfView)
316       aModule->sketchMgr()->previewSketchPlane()->setSizeOfView(aSizeOfView, true);
317     aModule->sketchMgr()->previewSketchPlane()->createSketchPlane(aSketch, myWorkshop);
318     if (isSetSizeOfView)
319       aModule->sketchMgr()->previewSketchPlane()->setSizeOfView(aSizeOfView, false);
320   }
321   // 2. if the planes were displayed, change the view projection
322
323   std::shared_ptr<GeomAPI_Dir> aDir = aPlane->direction();
324   gp_XYZ aXYZ = aDir->impl<gp_Dir>().XYZ();
325   double aTwist = 0.0;
326
327   // Rotate view if the sketcher plane is selected only from preview planes
328   // Preview planes are created only if there is no any shape
329   bool aRotate = Config_PropManager::boolean(SKETCH_TAB_NAME, "rotate_to_plane");
330   if (aRotate) {
331     myWorkshop->viewer()->setViewProjection(aXYZ.X(), aXYZ.Y(), aXYZ.Z(), aTwist);
332   }
333   QString aSizeOfViewStr = mySizeOfView->text();
334   if (!aSizeOfViewStr.isEmpty()) {
335     bool isOk;
336     double aSizeOfView = aSizeOfViewStr.toDouble(&isOk);
337     if (isOk && aSizeOfView > 0) {
338       Handle(V3d_View) aView3d = myWorkshop->viewer()->activeView();
339       if (!aView3d.IsNull()) {
340         Bnd_Box aBndBox;
341         double aHalfSize = aSizeOfView/2.0;
342         aBndBox.Update(-aHalfSize, -aHalfSize, -aHalfSize, aHalfSize, aHalfSize, aHalfSize);
343         aView3d->FitAll(aBndBox, 0.01, false);
344       }
345     }
346   }
347   if (myOpenTransaction) {
348     SessionPtr aMgr = ModelAPI_Session::get();
349     aMgr->finishOperation();
350     myOpenTransaction = false;
351   }
352   // 3. Clear text in the label
353   myStackWidget->setCurrentIndex(1);
354   //myLabel->setText("");
355   //myLabel->setToolTip("");
356   XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(myWorkshop);
357
358   // 5. Clear selection mode and define sketching mode
359   emit planeSelected(plane());
360   // after the plane is selected in the sketch, the sketch selection should be activated
361   // it can not be performed in the sketch label widget because, we don't need to switch off
362   // the selection by any label deactivation, but need to switch it off by stop the sketch
363   myWorkshop->selectionActivate()->updateSelectionFilters();
364   myWorkshop->selectionActivate()->updateSelectionModes();
365
366   if (aModule)
367     aModule->onViewTransformed();
368
369   // 6. Update sketcher actions
370   XGUI_ActionsMgr* anActMgr = aWorkshop->actionsMgr();
371
372   myWorkshop->updateCommandStatus();
373   aWorkshop->selector()->clearSelection();
374   myWorkshop->viewer()->update();
375
376   myRemoveExternal->setVisible(false);
377 }
378
379 std::shared_ptr<GeomAPI_Pln> PartSet_WidgetSketchLabel::plane() const
380 {
381   CompositeFeaturePtr aSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(myFeature);
382   return PartSet_Tools::sketchPlane(aSketch);
383 }
384
385 bool PartSet_WidgetSketchLabel::focusTo()
386 {
387   ModuleBase_Tools::setFocus(myStackWidget, "PartSet_WidgetSketchLabel::focusTo()");
388   return true;
389 }
390
391 void PartSet_WidgetSketchLabel::enableFocusProcessing()
392 {
393   myStackWidget->installEventFilter(this);
394 }
395
396 void PartSet_WidgetSketchLabel::storeAttributeValue(const AttributePtr& theAttribute)
397 {
398   ModuleBase_WidgetValidated::storeAttributeValue(theAttribute);
399 }
400
401 void PartSet_WidgetSketchLabel::restoreAttributeValue(const AttributePtr& theAttribute,
402                                                       const bool theValid)
403 {
404   ModuleBase_WidgetValidated::restoreAttributeValue(theAttribute, theValid);
405
406   // it is not necessary to save the previous plane value because the plane is chosen once
407   DataPtr aData = feature()->data();
408   AttributeSelectionPtr aSelAttr = std::dynamic_pointer_cast<ModelAPI_AttributeSelection>
409     (aData->attribute(SketchPlugin_SketchEntity::EXTERNAL_ID()));
410   if (aSelAttr) {
411     ResultPtr anEmptyResult;
412     GeomShapePtr anEmptyShape;
413     aSelAttr->setValue(anEmptyResult, anEmptyShape);
414   }
415 }
416
417 bool PartSet_WidgetSketchLabel::setSelectionCustom(const ModuleBase_ViewerPrsPtr& thePrs)
418 {
419   if (myIsSelection && myRemoveExternal->isVisible()) {
420     if (myRemoveExternal->isChecked()) {
421       myFeature->customAction(SketchPlugin_Sketch::ACTION_REMOVE_EXTERNAL());
422     }
423   }
424   return fillSketchPlaneBySelection(thePrs);
425 }
426
427 bool PartSet_WidgetSketchLabel::canFillSketch(const ModuleBase_ViewerPrsPtr& thePrs)
428 {
429   bool aCanFillSketch = true;
430   // avoid any selection on sketch object
431   ObjectPtr anObject = thePrs->object();
432   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
433   if (aResult.get()) {
434     FeaturePtr aFeature = ModelAPI_Feature::feature(aResult);
435     if (aFeature->getKind() == SketchPlugin_Sketch::ID())
436       aCanFillSketch = false;
437   }
438   // check plane or planar face of any non-sketch object
439   if (aCanFillSketch) {
440     std::shared_ptr<GeomAPI_Face> aGeomFace;
441
442     GeomShapePtr aGeomShape = thePrs->shape();
443     if ((!aGeomShape.get() || aGeomShape->isNull()) && aResult.get()) {
444       aGeomShape = aResult->shape();
445     }
446
447     if (aGeomShape.get() && aGeomShape->shapeType() == GeomAPI_Shape::FACE) {
448       std::shared_ptr<GeomAPI_Face> aGeomFace(new GeomAPI_Face(aGeomShape));
449       aCanFillSketch = aGeomFace.get() && aGeomFace->isPlanar();
450     }
451     else
452       aCanFillSketch = false;
453   }
454   return aCanFillSketch;
455 }
456
457 bool PartSet_WidgetSketchLabel::fillSketchPlaneBySelection(const ModuleBase_ViewerPrsPtr& thePrs)
458 {
459   bool isOwnerSet = false;
460
461   const GeomShapePtr& aShape = thePrs->shape();
462   std::shared_ptr<GeomAPI_Dir> aDir;
463
464   if (aShape.get() && !aShape->isNull()) {
465     const TopoDS_Shape& aTDShape = aShape->impl<TopoDS_Shape>();
466     aDir = setSketchPlane(aTDShape);
467     isOwnerSet = aDir.get();
468   }
469   if (thePrs->object() && (feature() != thePrs->object())) {
470     FeaturePtr aFeature = ModelAPI_Feature::feature(thePrs->object());
471     DataPtr aData = feature()->data();
472     AttributeSelectionPtr aSelAttr =
473       std::dynamic_pointer_cast<ModelAPI_AttributeSelection>
474       (aData->attribute(SketchPlugin_SketchEntity::EXTERNAL_ID()));
475     if (aSelAttr.get()) {
476       ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(thePrs->object());
477       if (aRes.get()) {
478         GeomShapePtr aShapePtr;
479         if (!aShape.get() || aShape->isNull()) {  // selection happens in the OCC viewer
480           aShapePtr = ModelAPI_Tools::shape(aRes);
481         }
482         else { // selection happens in OB browser
483           aShapePtr = aShape;
484         }
485         if (aShapePtr.get() && aShapePtr->isFace()) {
486           const TopoDS_Shape& aTDShape = aShapePtr->impl<TopoDS_Shape>();
487           setSketchPlane(aTDShape);
488           aSelAttr->setValue(aRes, aShapePtr);
489           isOwnerSet = true;
490         }
491       }
492       else {
493         aSelAttr->setValue(aFeature, GeomShapePtr());
494         GeomShapePtr aShape = aSelAttr->value();
495         if (!aShape.get() && aSelAttr->contextFeature().get() &&
496           aSelAttr->contextFeature()->firstResult().get()) {
497           aShape = aSelAttr->contextFeature()->firstResult()->shape();
498         }
499         if (aShape.get() && aShape->isPlanar()) {
500           const TopoDS_Shape& aTDShape = aShape->impl<TopoDS_Shape>();
501           setSketchPlane(aTDShape);
502           isOwnerSet = true;
503         }
504       }
505     }
506   }
507   return isOwnerSet;
508 }
509
510 void PartSet_WidgetSketchLabel::activateCustom()
511 {
512   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
513   if (aPlane.get()) {
514     myStackWidget->setCurrentIndex(1);
515     return;
516   }
517
518   myStackWidget->setCurrentIndex(0);
519   bool aBodyIsVisualized = myPreviewPlanes->hasVisualizedBodies(myWorkshop);
520
521   // Clear previous selection mode It is necessary for correct activation of preview planes
522   XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(myWorkshop);
523   XGUI_Displayer* aDisp = aWorkshop->displayer();
524   aWorkshop->selectionActivate()->activateObjects(QIntList(), aDisp->displayedObjects(), false);
525
526   if (!aBodyIsVisualized) {
527     // We have to select a plane before any operation
528     myPreviewPlanes->showPreviewPlanes(myWorkshop);
529     mySizeOfViewWidget->setVisible(true);
530   }
531   else
532     mySizeOfViewWidget->setVisible(false);
533 }
534
535 void PartSet_WidgetSketchLabel::deactivate()
536 {
537   ModuleBase_WidgetValidated::deactivate();
538   bool aHidePreview = myPreviewPlanes->isPreviewDisplayed();
539   myPreviewPlanes->erasePreviewPlanes(myWorkshop);
540
541   if (aHidePreview)
542     myWorkshop->viewer()->update();
543 }
544
545 void PartSet_WidgetSketchLabel::selectionModes(int& theModuleSelectionModes, QIntList& theModes)
546 {
547   theModuleSelectionModes = -1;
548   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
549   if (!aPlane.get())
550     theModes << TopAbs_FACE;
551 }
552
553 void PartSet_WidgetSketchLabel::selectionFilters(QIntList& theModuleSelectionFilters,
554                                                  SelectMgr_ListOfFilter& theSelectionFilters)
555 {
556   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
557   if (aPlane.get())
558     return;
559   return ModuleBase_WidgetValidated::selectionFilters(theModuleSelectionFilters,
560                                                       theSelectionFilters);
561 }
562
563 std::shared_ptr<GeomAPI_Dir>
564   PartSet_WidgetSketchLabel::setSketchPlane(const TopoDS_Shape& theShape)
565 {
566   if (theShape.IsNull())
567     return std::shared_ptr<GeomAPI_Dir>();
568
569   // get selected shape
570   std::shared_ptr<GeomAPI_Shape> aGShape(new GeomAPI_Shape);
571   aGShape->setImpl(new TopoDS_Shape(theShape));
572
573   // get plane parameters
574   std::shared_ptr<GeomAPI_Face> aFace(new GeomAPI_Face(aGShape));
575   std::shared_ptr<GeomAPI_Pln> aPlane = aFace->getPlane();
576   if (!aPlane.get())
577     return std::shared_ptr<GeomAPI_Dir>();
578   return setSketchPlane(aPlane);
579 }
580
581 std::shared_ptr<GeomAPI_Dir>
582   PartSet_WidgetSketchLabel::setSketchPlane(std::shared_ptr<GeomAPI_Pln> thePlane)
583 {
584   // set plane parameters to feature
585   std::shared_ptr<ModelAPI_Data> aData = feature()->data();
586   double anA, aB, aC, aD;
587   thePlane->coefficients(anA, aB, aC, aD);
588
589   // calculate attributes of the sketch
590   std::shared_ptr<GeomAPI_Dir> aNormDir(new GeomAPI_Dir(anA, aB, aC));
591   std::shared_ptr<GeomAPI_XYZ> aCoords = aNormDir->xyz();
592   std::shared_ptr<GeomAPI_XYZ> aZero(new GeomAPI_XYZ(0, 0, 0));
593   aCoords = aCoords->multiplied(-aD * aCoords->distance(aZero));
594   std::shared_ptr<GeomAPI_Pnt> anOrigPnt(new GeomAPI_Pnt(aCoords));
595   // X axis is preferable to be dirX on the sketch
596   const double tol = Precision::Confusion();
597   bool isX = fabs(fabs(anA) - 1.0) < tol && fabs(aB) < tol && fabs(aC) < tol;
598   std::shared_ptr<GeomAPI_Dir> aTempDir(
599       isX ? new GeomAPI_Dir(0, 1, 0) : new GeomAPI_Dir(1, 0, 0));
600   std::shared_ptr<GeomAPI_Dir> aYDir(new GeomAPI_Dir(aNormDir->cross(aTempDir)));
601   std::shared_ptr<GeomAPI_Dir> aXDir(new GeomAPI_Dir(aYDir->cross(aNormDir)));
602
603   std::shared_ptr<GeomDataAPI_Point> anOrigin = std::dynamic_pointer_cast<GeomDataAPI_Point>(
604       aData->attribute(SketchPlugin_Sketch::ORIGIN_ID()));
605   anOrigin->setValue(anOrigPnt);
606   std::shared_ptr<GeomDataAPI_Dir> aNormal = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
607       aData->attribute(SketchPlugin_Sketch::NORM_ID()));
608   aNormal->setValue(aNormDir);
609   std::shared_ptr<GeomDataAPI_Dir> aDirX = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
610       aData->attribute(SketchPlugin_Sketch::DIRX_ID()));
611   aDirX->setValue(aXDir);
612   std::shared_ptr<GeomAPI_Dir> aDir = thePlane->direction();
613   return aDir;
614 }
615
616 void PartSet_WidgetSketchLabel::onSetPlaneView()
617 {
618   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
619   if (aPlane.get()) {
620     std::shared_ptr<GeomAPI_Dir> aDirection = aPlane->direction();
621     gp_Dir aDir = aDirection->impl<gp_Dir>();
622     if (myViewInverted->isChecked())
623       aDir.Reverse();
624     myWorkshop->viewer()->setViewProjection(aDir.X(), aDir.Y(), aDir.Z(), 0.);
625     PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
626     if (aModule)
627       aModule->onViewTransformed();
628   }
629 }
630
631
632 //******************************************************
633 QList<std::shared_ptr<ModuleBase_ViewerPrs>> PartSet_WidgetSketchLabel::findCircularEdgesInPlane()
634 {
635   QList<std::shared_ptr<ModuleBase_ViewerPrs>> aResult;
636   XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(myWorkshop);
637   XGUI_Displayer* aDisplayer = aWorkshop->displayer();
638   QObjectPtrList aDispObjects = aDisplayer->displayedObjects();
639
640   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
641   foreach(ObjectPtr aObj, aDispObjects) {
642     ResultPtr aResObj = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
643     if (aResObj.get()) {
644       GeomShapePtr aShape = aResObj->shape();
645       if (aShape.get()) {
646         GeomAPI_ShapeExplorer aExplorer(aShape, GeomAPI_Shape::EDGE);
647         for(; aExplorer.more(); aExplorer.next()) {
648           GeomShapePtr aEdgeShape = aExplorer.current();
649           GeomAPI_Edge anEdge(aEdgeShape);
650           if ((anEdge.isCircle() || anEdge.isArc() || anEdge.isEllipse()) &&
651                anEdge.isInPlane(aPlane)) {
652             bool isContains = false;
653             // Check that edge is not used.
654             // It is possible that the same edge will be taken from different faces
655             foreach(std::shared_ptr<ModuleBase_ViewerPrs> aPrs, aResult) {
656               GeomAPI_Edge aUsedEdge(aPrs->shape());
657               if (aUsedEdge.isEqual(aEdgeShape)) {
658                 isContains = true;
659                 break;
660               }
661             }
662             if (!isContains) {
663               std::shared_ptr<ModuleBase_ViewerPrs>
664                 aPrs(new ModuleBase_ViewerPrs(aResObj, aEdgeShape));
665               aResult.append(aPrs);
666             }
667           }
668         }
669       }
670     }
671   }
672   return aResult;
673 }
674
675 //******************************************************
676 void PartSet_WidgetSketchLabel::onChangePlane()
677 {
678   PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
679   if (aModule) {
680     mySizeOfViewWidget->setVisible(false);
681     myRemoveExternal->setVisible(true);
682     myStackWidget->setCurrentIndex(0);
683
684     CompositeFeaturePtr aSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(myFeature);
685     PartSet_Tools::nullifySketchPlane(aSketch);
686
687     Handle(SelectMgr_Filter) aFilter = aModule->selectionFilter(SF_SketchPlaneFilter);
688     if (!aFilter.IsNull()) {
689       std::shared_ptr<GeomAPI_Pln> aPln;
690       Handle(ModuleBase_ShapeInPlaneFilter)::DownCast(aFilter)->setPlane(aPln);
691     }
692     XGUI_Workshop* aWorkshop = aModule->getWorkshop();
693
694     aWorkshop->selectionActivate()->updateSelectionFilters();
695     aWorkshop->selectionActivate()->updateSelectionModes();
696
697     SessionPtr aMgr = ModelAPI_Session::get();
698     aMgr->startOperation();
699     myOpenTransaction = true;
700   }
701 }