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