]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_WidgetSketchLabel.cpp
Salome HOME
#2309 Possibility to hide faces
[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   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
199   if (aPlane.get())
200     return;
201
202   QList<ModuleBase_ViewerPrsPtr> aSelected = getFilteredSelected();
203
204   if (aSelected.empty())
205     return;
206   ModuleBase_ViewerPrsPtr aPrs = aSelected.first();
207   bool aDone = setSelectionInternal(aSelected, false);
208   if (aDone) {
209     updateByPlaneSelected(aPrs);
210     updateObject(myFeature);
211   }
212 }
213
214 void PartSet_WidgetSketchLabel::onShowConstraint(bool theOn)
215 {
216   QCheckBox* aSenderCheckBox = qobject_cast<QCheckBox*>(sender());
217
218   QMap<PartSet_Tools::ConstraintVisibleState, QCheckBox*>::const_iterator
219                           anIt = myShowConstraints.begin(), aLast = myShowConstraints.end();
220
221   PartSet_Tools::ConstraintVisibleState aState = PartSet_Tools::Geometrical;
222   bool aFound = false;
223   for (; anIt != aLast && !aFound; anIt++) {
224     aFound = anIt.value() == aSenderCheckBox;
225     if (aFound)
226       aState = anIt.key();
227   }
228   if (aFound)
229     emit showConstraintToggled(aState, theOn);
230 }
231
232 void PartSet_WidgetSketchLabel::blockAttribute(const AttributePtr& theAttribute,
233                                                const bool& theToBlock, bool& isFlushesActived,
234                                                bool& isAttributeSetInitializedBlocked,
235                                                bool& isAttributeSendUpdatedBlocked)
236 {
237   ModuleBase_WidgetValidated::blockAttribute(theAttribute, theToBlock, isFlushesActived,
238                                              isAttributeSetInitializedBlocked,
239                                              isAttributeSendUpdatedBlocked);
240   // We do not restore the previous state of isAttributeSetInitializedBlocked for each of
241   // attributes. It it is necessary, these states should be append to the method attributes
242   // or stored in the widget
243
244   std::list<AttributePtr> anAttributes = myFeature->data()->attributes("");
245   std::list<AttributePtr>::const_iterator anIt = anAttributes.begin(), aLast = anAttributes.end();
246   QStringList aValues;
247   for(; anIt != aLast; anIt++) {
248     AttributePtr anAttribute = *anIt;
249     if (theToBlock)
250       anAttribute->blockSetInitialized(true);
251     else
252       anAttribute->blockSetInitialized(isAttributeSetInitializedBlocked);
253   }
254 }
255
256 bool PartSet_WidgetSketchLabel::setSelectionInternal(
257                                           const QList<ModuleBase_ViewerPrsPtr>& theValues,
258                                           const bool theToValidate)
259 {
260   bool aDone = false;
261   if (theValues.empty()) {
262     // In order to make reselection possible, set empty object and shape should be done
263     setSelectionCustom(std::shared_ptr<ModuleBase_ViewerPrs>(
264                               new ModuleBase_ViewerPrs(ObjectPtr(), GeomShapePtr(), NULL)));
265     aDone = false;
266   }
267   else {
268     // it removes the processed value from the parameters list
269     ModuleBase_ViewerPrsPtr aValue = theValues.first();//.takeFirst();
270     if (!theToValidate || isValidInFilters(aValue))
271       aDone = setSelectionCustom(aValue);
272   }
273
274   return aDone;
275 }
276
277 void PartSet_WidgetSketchLabel::updateByPlaneSelected(const ModuleBase_ViewerPrsPtr& thePrs)
278 {
279   // 1. hide main planes if they have been displayed and display sketch preview plane
280   myPreviewPlanes->erasePreviewPlanes(myWorkshop);
281
282   PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
283   if (aModule) {
284     CompositeFeaturePtr aSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(myFeature);
285     bool isSetSizeOfView = false;
286     double aSizeOfView = 0;
287     QString aSizeOfViewStr = mySizeOfView->text();
288     if (!aSizeOfViewStr.isEmpty()) {
289       aSizeOfView = aSizeOfViewStr.toDouble(&isSetSizeOfView);
290       if (isSetSizeOfView && aSizeOfView <= 0) {
291         isSetSizeOfView = false;
292       }
293     }
294     if (isSetSizeOfView)
295       aModule->sketchMgr()->previewSketchPlane()->setSizeOfView(aSizeOfView, true);
296     aModule->sketchMgr()->previewSketchPlane()->createSketchPlane(aSketch, myWorkshop);
297     if (isSetSizeOfView)
298       aModule->sketchMgr()->previewSketchPlane()->setSizeOfView(aSizeOfView, false);
299   }
300   // 2. if the planes were displayed, change the view projection
301   const GeomShapePtr& aShape = thePrs->shape();
302   std::shared_ptr<GeomAPI_Shape> aGShape;
303
304   DataPtr aData = feature()->data();
305   AttributeSelectionPtr aSelAttr = std::dynamic_pointer_cast<ModelAPI_AttributeSelection>
306                             (aData->attribute(SketchPlugin_SketchEntity::EXTERNAL_ID()));
307
308   // selection happens in OCC viewer
309   if (aShape.get() && !aShape->isNull()) {
310     aGShape = aShape;
311   }
312   else { // selection happens in OCC viewer(on body) of in the OB browser
313     if (aSelAttr) {
314       aGShape = aSelAttr->value();
315     }
316   }
317   // If the selected object is a sketch then use its plane
318   std::shared_ptr<GeomAPI_Pln> aPlane;
319   ObjectPtr aObj = thePrs->object();
320   // obsolete as selected sketch is stored in external attribute
321   /*if (aObj.get()) {
322     FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
323     if (aFeature.get() && (aFeature != feature())) {
324       if (aFeature->getKind() == SketchPlugin_Sketch::ID()) {
325         CompositeFeaturePtr aSketch =
326           std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
327         aPlane = PartSet_Tools::sketchPlane(aSketch);
328       }
329     }
330   }*/
331   if (aGShape.get() != NULL) {
332     // get plane parameters
333     if (!aPlane.get()) {
334       std::shared_ptr<GeomAPI_Face> aFace(new GeomAPI_Face(aGShape));
335       aPlane = aFace->getPlane();
336     }
337     if (!aPlane.get())
338       return;
339     std::shared_ptr<GeomAPI_Dir> aDir = aPlane->direction();
340     gp_XYZ aXYZ = aDir->impl<gp_Dir>().XYZ();
341     double aTwist = 0.0;
342
343     // orienting projection is not needed: it is done in GeomAlgoAPI_FaceBuilder::plane
344     /*if (aGShape->impl<TopoDS_Shape>().Orientation() == TopAbs_REVERSED) {
345       aXYZ.Reverse();
346     }*/
347
348     // Rotate view if the sketcher plane is selected only from preview planes
349     // Preview planes are created only if there is no any shape
350     bool aRotate = Config_PropManager::boolean(SKETCH_TAB_NAME, "rotate_to_plane");
351     if (aRotate) {
352       myWorkshop->viewer()->setViewProjection(aXYZ.X(), aXYZ.Y(), aXYZ.Z(), aTwist);
353     }
354     PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
355     if (aModule)
356       aModule->onViewTransformed();
357   }
358   // 3. Clear text in the label
359   myStackWidget->setCurrentIndex(1);
360   //myLabel->setText("");
361   //myLabel->setToolTip("");
362   XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(myWorkshop);
363   // 4. deactivate face selection filter
364   activateFilters(false);
365
366   // 5. Clear selection mode and define sketching mode
367   emit planeSelected(plane());
368   // after the plane is selected in the sketch, the sketch selection should be activated
369   // it can not be performed in the sketch label widget because, we don't need to switch off
370   // the selection by any label deactivation, but need to switch it off by stop the sketch
371   activateSelection(true);
372
373   // 6. Update sketcher actions
374   XGUI_ActionsMgr* anActMgr = aWorkshop->actionsMgr();
375
376   myWorkshop->updateCommandStatus();
377   aWorkshop->selector()->clearSelection();
378   myWorkshop->viewer()->update();
379 }
380
381 std::shared_ptr<GeomAPI_Pln> PartSet_WidgetSketchLabel::plane() const
382 {
383   CompositeFeaturePtr aSketch = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(myFeature);
384   return PartSet_Tools::sketchPlane(aSketch);
385 }
386
387 bool PartSet_WidgetSketchLabel::focusTo()
388 {
389   ModuleBase_Tools::setFocus(myStackWidget, "PartSet_WidgetSketchLabel::focusTo()");
390   return true;
391 }
392
393 void PartSet_WidgetSketchLabel::enableFocusProcessing()
394 {
395   myStackWidget->installEventFilter(this);
396 }
397
398 void PartSet_WidgetSketchLabel::storeAttributeValue(const AttributePtr& theAttribute)
399 {
400   ModuleBase_WidgetValidated::storeAttributeValue(theAttribute);
401 }
402
403 void PartSet_WidgetSketchLabel::restoreAttributeValue(const AttributePtr& theAttribute,
404                                                       const bool theValid)
405 {
406   ModuleBase_WidgetValidated::restoreAttributeValue(theAttribute, theValid);
407
408   // it is not necessary to save the previous plane value because the plane is chosen once
409   DataPtr aData = feature()->data();
410   AttributeSelectionPtr aSelAttr = std::dynamic_pointer_cast<ModelAPI_AttributeSelection>
411     (aData->attribute(SketchPlugin_SketchEntity::EXTERNAL_ID()));
412   if (aSelAttr) {
413     ResultPtr anEmptyResult;
414     GeomShapePtr anEmptyShape;
415     aSelAttr->setValue(anEmptyResult, anEmptyShape);
416   }
417 }
418
419 bool PartSet_WidgetSketchLabel::setSelectionCustom(const ModuleBase_ViewerPrsPtr& thePrs)
420 {
421   return fillSketchPlaneBySelection(thePrs);
422 }
423
424 bool PartSet_WidgetSketchLabel::canFillSketch(const ModuleBase_ViewerPrsPtr& thePrs)
425 {
426   bool aCanFillSketch = true;
427   // avoid any selection on sketch object
428   ObjectPtr anObject = thePrs->object();
429   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
430   if (aResult.get()) {
431     FeaturePtr aFeature = ModelAPI_Feature::feature(aResult);
432     if (aFeature->getKind() == SketchPlugin_Sketch::ID())
433       aCanFillSketch = false;
434   }
435   // check plane or planar face of any non-sketch object
436   if (aCanFillSketch) {
437     std::shared_ptr<GeomAPI_Face> aGeomFace;
438
439     GeomShapePtr aGeomShape = thePrs->shape();
440     if ((!aGeomShape.get() || aGeomShape->isNull()) && aResult.get()) {
441       aGeomShape = aResult->shape();
442     }
443
444     if (aGeomShape.get() && aGeomShape->shapeType() == GeomAPI_Shape::FACE) {
445       std::shared_ptr<GeomAPI_Face> aGeomFace(new GeomAPI_Face(aGeomShape));
446       aCanFillSketch = aGeomFace.get() && aGeomFace->isPlanar();
447     }
448     else
449       aCanFillSketch = false;
450   }
451   return aCanFillSketch;
452 }
453
454 //********************************************************************
455 bool PartSet_WidgetSketchLabel::processAction(ModuleBase_ActionType theActionType)
456 {
457   if (theActionType == ActionSelection)
458     onSelectionChanged();
459   else
460     return ModuleBase_WidgetValidated::processAction(theActionType);
461
462   return true;
463 }
464
465 bool PartSet_WidgetSketchLabel::fillSketchPlaneBySelection(const ModuleBase_ViewerPrsPtr& thePrs)
466 {
467   bool isOwnerSet = false;
468
469   const GeomShapePtr& aShape = thePrs->shape();
470   std::shared_ptr<GeomAPI_Dir> aDir;
471
472   if (thePrs->object() && (feature() != thePrs->object())) {
473     FeaturePtr aFeature = ModelAPI_Feature::feature(thePrs->object());
474     DataPtr aData = feature()->data();
475     AttributeSelectionPtr aSelAttr =
476       std::dynamic_pointer_cast<ModelAPI_AttributeSelection>
477       (aData->attribute(SketchPlugin_SketchEntity::EXTERNAL_ID()));
478     if (aSelAttr) {
479       ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(thePrs->object());
480       if (aRes) {
481         GeomShapePtr aShapePtr(new GeomAPI_Shape());
482         if (!aShape.get() || aShape->isNull()) {  // selection happens in the OCC viewer
483           aShapePtr = ModelAPI_Tools::shape(aRes);
484         }
485         else { // selection happens in OB browser
486           aShapePtr = aShape;
487         }
488         if (aShapePtr.get() != NULL) {
489           aSelAttr->setValue(aRes, aShapePtr);
490           isOwnerSet = true;
491         }
492       }
493     }
494   }
495   else if (aShape.get() && !aShape->isNull()) {
496     const TopoDS_Shape& aTDShape = aShape->impl<TopoDS_Shape>();
497     aDir = setSketchPlane(aTDShape);
498     isOwnerSet = aDir.get();
499   }
500   return isOwnerSet;
501 }
502
503 void PartSet_WidgetSketchLabel::activateCustom()
504 {
505   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
506   if (aPlane.get()) {
507     myStackWidget->setCurrentIndex(1);
508     activateSelection(true);
509     return;
510   }
511
512   myStackWidget->setCurrentIndex(0);
513   bool aBodyIsVisualized = myPreviewPlanes->hasVisualizedBodies(myWorkshop);
514
515   // Clear previous selection mode It is necessary for correct activation of preview planes
516   XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(myWorkshop);
517   XGUI_Displayer* aDisp = aWorkshop->displayer();
518   aDisp->activateObjects(QIntList(), aDisp->displayedObjects(), false);
519
520   if (!aBodyIsVisualized) {
521     // We have to select a plane before any operation
522     myPreviewPlanes->showPreviewPlanes(myWorkshop);
523     mySizeOfViewWidget->setVisible(true);
524   }
525   else
526     mySizeOfViewWidget->setVisible(false);
527
528   activateSelection(true);
529   activateFilters(true);
530 }
531
532 void PartSet_WidgetSketchLabel::deactivate()
533 {
534   ModuleBase_ModelWidget::deactivate();
535   bool aHidePreview = myPreviewPlanes->isPreviewDisplayed();
536   myPreviewPlanes->erasePreviewPlanes(myWorkshop);
537   activateSelection(false);
538
539   activateFilters(false);
540   if (aHidePreview)
541     myWorkshop->viewer()->update();
542 }
543
544 void PartSet_WidgetSketchLabel::activateSelection(bool toActivate)
545 {
546   if (toActivate) {
547     QIntList aModes;
548     std::shared_ptr<GeomAPI_Pln> aPlane = plane();
549     if (aPlane.get()) {
550       myWorkshop->module()->activeSelectionModes(aModes);
551     }
552     else {
553       aModes << TopAbs_FACE;
554     }
555     myWorkshop->activateSubShapesSelection(aModes);
556   } else {
557     myWorkshop->deactivateSubShapesSelection();
558   }
559 }
560
561
562 std::shared_ptr<GeomAPI_Dir>
563   PartSet_WidgetSketchLabel::setSketchPlane(const TopoDS_Shape& theShape)
564 {
565   if (theShape.IsNull())
566     return std::shared_ptr<GeomAPI_Dir>();
567
568   // get selected shape
569   std::shared_ptr<GeomAPI_Shape> aGShape(new GeomAPI_Shape);
570   aGShape->setImpl(new TopoDS_Shape(theShape));
571
572   // get plane parameters
573   std::shared_ptr<GeomAPI_Face> aFace(new GeomAPI_Face(aGShape));
574   std::shared_ptr<GeomAPI_Pln> aPlane = aFace->getPlane();
575   if (!aPlane.get())
576     return std::shared_ptr<GeomAPI_Dir>();
577   return setSketchPlane(aPlane);
578 }
579
580 std::shared_ptr<GeomAPI_Dir>
581   PartSet_WidgetSketchLabel::setSketchPlane(std::shared_ptr<GeomAPI_Pln> thePlane)
582 {
583   // set plane parameters to feature
584   std::shared_ptr<ModelAPI_Data> aData = feature()->data();
585   double anA, aB, aC, aD;
586   thePlane->coefficients(anA, aB, aC, aD);
587
588   // calculate attributes of the sketch
589   std::shared_ptr<GeomAPI_Dir> aNormDir(new GeomAPI_Dir(anA, aB, aC));
590   std::shared_ptr<GeomAPI_XYZ> aCoords = aNormDir->xyz();
591   std::shared_ptr<GeomAPI_XYZ> aZero(new GeomAPI_XYZ(0, 0, 0));
592   aCoords = aCoords->multiplied(-aD * aCoords->distance(aZero));
593   std::shared_ptr<GeomAPI_Pnt> anOrigPnt(new GeomAPI_Pnt(aCoords));
594   // X axis is preferable to be dirX on the sketch
595   const double tol = Precision::Confusion();
596   bool isX = fabs(fabs(anA) - 1.0) < tol && fabs(aB) < tol && fabs(aC) < tol;
597   std::shared_ptr<GeomAPI_Dir> aTempDir(
598       isX ? new GeomAPI_Dir(0, 1, 0) : new GeomAPI_Dir(1, 0, 0));
599   std::shared_ptr<GeomAPI_Dir> aYDir(new GeomAPI_Dir(aNormDir->cross(aTempDir)));
600   std::shared_ptr<GeomAPI_Dir> aXDir(new GeomAPI_Dir(aYDir->cross(aNormDir)));
601
602   std::shared_ptr<GeomDataAPI_Point> anOrigin = std::dynamic_pointer_cast<GeomDataAPI_Point>(
603       aData->attribute(SketchPlugin_Sketch::ORIGIN_ID()));
604   anOrigin->setValue(anOrigPnt);
605   std::shared_ptr<GeomDataAPI_Dir> aNormal = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
606       aData->attribute(SketchPlugin_Sketch::NORM_ID()));
607   aNormal->setValue(aNormDir);
608   std::shared_ptr<GeomDataAPI_Dir> aDirX = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
609       aData->attribute(SketchPlugin_Sketch::DIRX_ID()));
610   aDirX->setValue(aXDir);
611   std::shared_ptr<GeomAPI_Dir> aDir = thePlane->direction();
612   return aDir;
613 }
614
615 void PartSet_WidgetSketchLabel::onSetPlaneView()
616 {
617   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
618   if (aPlane.get()) {
619     std::shared_ptr<GeomAPI_Dir> aDirection = aPlane->direction();
620     gp_Dir aDir = aDirection->impl<gp_Dir>();
621     if (myViewInverted->isChecked())
622       aDir.Reverse();
623     myWorkshop->viewer()->setViewProjection(aDir.X(), aDir.Y(), aDir.Z(), 0.);
624     PartSet_Module* aModule = dynamic_cast<PartSet_Module*>(myWorkshop->module());
625     if (aModule)
626       aModule->onViewTransformed();
627   }
628 }
629
630
631 //******************************************************
632 QList<std::shared_ptr<ModuleBase_ViewerPrs>> PartSet_WidgetSketchLabel::findCircularEdgesInPlane()
633 {
634   QList<std::shared_ptr<ModuleBase_ViewerPrs>> aResult;
635   XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(myWorkshop);
636   XGUI_Displayer* aDisplayer = aWorkshop->displayer();
637   QObjectPtrList aDispObjects = aDisplayer->displayedObjects();
638
639   std::shared_ptr<GeomAPI_Pln> aPlane = plane();
640   foreach(ObjectPtr aObj, aDispObjects) {
641     ResultPtr aResObj = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
642     if (aResObj.get()) {
643       GeomShapePtr aShape = aResObj->shape();
644       if (aShape.get()) {
645         GeomAPI_ShapeExplorer aExplorer(aShape, GeomAPI_Shape::EDGE);
646         for(; aExplorer.more(); aExplorer.next()) {
647           GeomShapePtr aEdgeShape = aExplorer.current();
648           GeomAPI_Edge anEdge(aEdgeShape);
649           if ((anEdge.isCircle() || anEdge.isArc() || anEdge.isEllipse()) &&
650                anEdge.isInPlane(aPlane)) {
651             bool isContains = false;
652             // Check that edge is not used.
653             // It is possible that the same edge will be taken from different faces
654             foreach(std::shared_ptr<ModuleBase_ViewerPrs> aPrs, aResult) {
655               GeomAPI_Edge aUsedEdge(aPrs->shape());
656               if (aUsedEdge.isEqual(aEdgeShape)) {
657                 isContains = true;
658                 break;
659               }
660             }
661             if (!isContains) {
662               std::shared_ptr<ModuleBase_ViewerPrs>
663                 aPrs(new ModuleBase_ViewerPrs(aResObj, aEdgeShape));
664               aResult.append(aPrs);
665             }
666           }
667         }
668       }
669     }
670   }
671   return aResult;
672 }