1 // Copyright (C) 2014-2019 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include "PartSet_Module.h"
21 #include "PartSet_WidgetSketchLabel.h"
22 #include "PartSet_Validators.h"
23 #include "PartSet_Tools.h"
24 #include "PartSet_PreviewPlanes.h"
25 #include "PartSet_WidgetBSplinePoints.h"
26 #include "PartSet_WidgetPoint2d.h"
27 #include "PartSet_WidgetPoint2DFlyout.h"
28 #include "PartSet_WidgetShapeSelector.h"
29 #include "PartSet_WidgetMultiSelector.h"
30 #include "PartSet_WidgetFeaturePointSelector.h"
31 #include "PartSet_WidgetEditor.h"
32 #include "PartSet_WidgetFileSelector.h"
33 #include "PartSet_WidgetSketchCreator.h"
34 #include "PartSet_SketcherMgr.h"
35 #include "PartSet_SketcherReentrantMgr.h"
36 #include "PartSet_ResultSketchPrs.h"
37 #include "PartSet_MenuMgr.h"
38 #include "PartSet_CustomPrs.h"
39 #include "PartSet_IconFactory.h"
40 #include "PartSet_OverconstraintListener.h"
41 #include "PartSet_TreeNodes.h"
42 #include "PartSet_FieldStepPrs.h"
43 #include "PartSet_BSplineWidget.h"
45 #include "PartSet_Filters.h"
46 #include "PartSet_FilterInfinite.h"
52 #include <PartSetPlugin_Remove.h>
53 #include <PartSetPlugin_Part.h>
54 #include <PartSetPlugin_Duplicate.h>
56 #include <SketchPlugin_ConstraintCoincidence.h>
58 #include <ModuleBase_Operation.h>
59 #include <ModuleBase_IViewer.h>
60 #include <ModuleBase_IViewWindow.h>
61 #include <ModuleBase_IPropertyPanel.h>
62 #include <ModuleBase_ISelectionActivate.h>
63 #include <ModuleBase_WidgetChoice.h>
64 #include <ModuleBase_WidgetEditor.h>
65 #include <ModuleBase_WidgetValidated.h>
66 #include <ModuleBase_Tools.h>
67 #include <ModuleBase_OperationFeature.h>
68 #include <ModuleBase_WidgetFactory.h>
69 #include <ModuleBase_OperationDescription.h>
70 #include <ModuleBase_ViewerPrs.h>
71 #include <ModuleBase_ResultPrs.h>
73 #include <ModelAPI_ResultField.h>
74 #include <ModelAPI_Object.h>
75 #include <ModelAPI_Events.h>
76 #include <ModelAPI_Validator.h>
77 #include <ModelAPI_Data.h>
78 #include <ModelAPI_Session.h>
79 #include <ModelAPI_ResultBody.h>
80 #include <ModelAPI_AttributeString.h>
81 #include <ModelAPI_AttributeSelectionList.h>
82 #include <ModelAPI_Tools.h>
83 #include <ModelAPI_ResultConstruction.h>
84 #include <ModelAPI_AttributeIntArray.h>
85 #include <ModelAPI_ResultGroup.h>
87 #include <GeomDataAPI_Point2D.h>
88 #include <GeomDataAPI_Point.h>
89 #include <GeomDataAPI_Dir.h>
91 #include <XGUI_ActiveControlMgr.h>
92 #include <XGUI_ActiveControlSelector.h>
93 #include <XGUI_ActionsMgr.h>
94 #include <XGUI_ContextMenuMgr.h>
95 #include <XGUI_DataModel.h>
96 #include <XGUI_Displayer.h>
97 #include <XGUI_ErrorMgr.h>
98 #include <XGUI_FacesPanelSelector.h>
99 #include <XGUI_ModuleConnector.h>
100 #include <XGUI_ObjectsBrowser.h>
101 #include <XGUI_OperationMgr.h>
102 #include <XGUI_PropertyPanel.h>
103 #include <XGUI_SelectionMgr.h>
104 #include <XGUI_Tools.h>
105 #include <XGUI_Workshop.h>
107 #include <SketchPlugin_ConstraintAngle.h>
108 #include <SketchPlugin_ConstraintLength.h>
109 #include <SketchPlugin_ConstraintDistance.h>
110 #include <SketchPlugin_ConstraintParallel.h>
111 #include <SketchPlugin_ConstraintPerpendicular.h>
112 #include <SketchPlugin_ConstraintRadius.h>
113 #include <SketchPlugin_Feature.h>
114 #include <SketchPlugin_Projection.h>
115 #include <SketchPlugin_Sketch.h>
117 #include <SketcherPrs_SymbolPrs.h>
118 #include <SketcherPrs_PositionMgr.h>
119 #include <SketcherPrs_Coincident.h>
120 #include <SketcherPrs_Tools.h>
122 #include <Events_Loop.h>
123 #include <Config_PropManager.h>
124 #include <Config_Keywords.h>
126 #include <AIS_Dimension.hxx>
127 #include <AIS_InteractiveObject.hxx>
128 #include <StdSelect_TypeOfFace.hxx>
129 #include <TopoDS_Vertex.hxx>
130 #include <TopoDS.hxx>
131 #include <TopoDS_Shape.hxx>
132 #include <BRep_Tool.hxx>
135 #include <QMouseEvent>
138 #include <QApplication>
139 #include <QMessageBox>
140 #include <QMainWindow>
144 #include <GeomAlgoAPI_FaceBuilder.h>
145 #include <GeomDataAPI_Dir.h>
147 #include <SelectMgr_ListIteratorOfListOfFilter.hxx>
149 #define FEATURE_ITEM_COLOR "0,0,225"
152 /*!Create and return new instance of XGUI_Module*/
153 extern "C" PARTSET_EXPORT ModuleBase_IModule* createModule(ModuleBase_IWorkshop* theWshop)
155 return new PartSet_Module(theWshop);
158 //******************************************************
159 PartSet_Module::PartSet_Module(ModuleBase_IWorkshop* theWshop)
160 : ModuleBase_IModule(theWshop),
163 myIsOperationIsLaunched(false)
165 new PartSet_IconFactory(this);
167 mySketchMgr = new PartSet_SketcherMgr(this);
168 mySketchReentrantMgr = new PartSet_SketcherReentrantMgr(theWshop);
170 XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(theWshop);
171 XGUI_Workshop* aWorkshop = aConnector->workshop();
173 ModuleBase_IViewer* aViewer = theWshop->viewer();
174 connect(aViewer, SIGNAL(keyRelease(ModuleBase_IViewWindow*, QKeyEvent*)),
175 this, SLOT(onKeyRelease(ModuleBase_IViewWindow*, QKeyEvent*)));
176 connect(aViewer, SIGNAL(viewTransformed(int)),
177 SLOT(onViewTransformed(int)));
178 connect(aViewer, SIGNAL(viewCreated(ModuleBase_IViewWindow*)),
179 SLOT(onViewCreated(ModuleBase_IViewWindow*)));
180 myMenuMgr = new PartSet_MenuMgr(this);
181 myCustomPrs = new PartSet_CustomPrs(theWshop);
183 myOverconstraintListener = new PartSet_OverconstraintListener(theWshop);
185 Events_Loop* aLoop = Events_Loop::loop();
186 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_DOCUMENT_CHANGED));
187 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
189 registerSelectionFilter(SF_GlobalFilter, new PartSet_GlobalFilter(myWorkshop));
190 registerSelectionFilter(SF_FilterInfinite, new PartSet_FilterInfinite(myWorkshop));
191 Handle(PartSet_ResultGroupNameFilter) aCRFilter = new PartSet_ResultGroupNameFilter(myWorkshop);
192 std::set<std::string> aCRGroupNames;
193 aCRGroupNames.insert(ModelAPI_ResultConstruction::group());
194 aCRFilter->setGroupNames(aCRGroupNames);
195 registerSelectionFilter(SF_ResultGroupNameFilter, aCRFilter);
197 setDefaultConstraintShown();
199 //Config_PropManager::registerProp("Visualization", "object_default_color", "Object color",
200 // Config_Prop::Color, "225,225,225");
202 Config_PropManager::registerProp("Visualization", "result_body_color", "Result color",
203 Config_Prop::Color, ModelAPI_ResultBody::DEFAULT_COLOR());
205 Config_PropManager::registerProp("Visualization", "result_group_color", "Group color",
206 Config_Prop::Color, ModelAPI_ResultGroup::DEFAULT_COLOR());
208 Config_PropManager::registerProp("Visualization", "result_construction_color",
209 "Construction color",
211 ModelAPI_ResultConstruction::DEFAULT_COLOR());
213 Config_PropManager::registerProp("Visualization", "result_part_color", "Part color",
214 Config_Prop::Color, ModelAPI_ResultPart::DEFAULT_COLOR());
216 Config_PropManager::registerProp("Visualization", "result_field_color", "Field color",
217 Config_Prop::Color, ModelAPI_ResultField::DEFAULT_COLOR());
219 Config_PropManager::registerProp("Visualization", "operation_parameter_color",
220 "Reference shape wireframe color in operation", Config_Prop::Color,
221 PartSet_CustomPrs::OPERATION_PARAMETER_COLOR());
222 Config_PropManager::registerProp("Visualization", "operation_result_color",
223 "Result shape wireframe color in operation", Config_Prop::Color,
224 PartSet_CustomPrs::OPERATION_RESULT_COLOR());
225 Config_PropManager::registerProp("Visualization", "operation_highlight_color",
226 "Multi selector item color in operation", Config_Prop::Color,
227 PartSet_CustomPrs::OPERATION_HIGHLIGHT_COLOR());
228 Config_PropManager::registerProp("Visualization", "operation_remove_feature_color",
229 "Color of removed feature in operation", Config_Prop::Color,
230 PartSet_CustomPrs::OPERATION_REMOVE_FEATURE_COLOR());
231 Config_PropManager::registerProp("Visualization", "sketch_preview_plane",
232 "Color of sketch plane", Config_Prop::Color,
233 PartSet_CustomPrs::OPERATION_SKETCH_PLANE());
235 Config_PropManager::registerProp("Visualization", "hidden_face_transparency",
236 "Hidden faces transparency",
237 Config_Prop::DblSpin,
239 std::ostringstream aStream;
240 aStream << SketcherPrs_Tools::getDefaultArrowSize();
241 Config_PropManager::registerProp("Visualization", "dimension_arrow_size",
242 "Dimension arrow size", Config_Prop::IntSpin, aStream.str());
244 Config_PropManager::registerProp("Visualization", "dimension_font", "Dimension font",
245 Config_Prop::String, "Times-bold");
249 aStream << SketcherPrs_Tools::getDefaultTextHeight();
250 Config_PropManager::registerProp("Visualization", "dimension_value_size",
251 "Dimension value size", Config_Prop::IntSpin, aStream.str());
253 Config_PropManager::registerProp("Visualization", "sketch_dimension_color",
255 Config_Prop::Color, SKETCH_DIMENSION_COLOR);
257 Config_PropManager::registerProp("Visualization", "feature_objectbrowser_color",
258 "Feature items in Object Browser",
259 Config_Prop::Color, FEATURE_ITEM_COLOR);
261 Config_PropManager::registerProp("Shortcuts", "add_parameter_shortcut",
262 "Add parameter in parameters manager dialog",
263 Config_Prop::Shortcut, "Ctrl+A");
265 Config_PropManager::registerProp("Windows", "use_hide_faces_panel",
266 "Use HideFaces panel in operations", Config_Prop::Boolean, "false");
269 //******************************************************
270 PartSet_Module::~PartSet_Module()
273 delete myOverconstraintListener;
277 //******************************************************
278 void PartSet_Module::createFeatures()
280 ModuleBase_IModule::createFeatures();
281 myRoot = new PartSet_RootNode();
282 myRoot->setWorkshop(workshop());
286 //******************************************************
287 void PartSet_Module::storeSelection()
289 // cash is used only to restore selection, so it should be filled in storeSelection and
290 // after applying immediatelly cleared in restoreSelection
291 myCurrentSelection.clear();
292 sketchMgr()->storeSelection(PartSet_SketcherMgr::ST_SelectType, myCurrentSelection);
295 //******************************************************
296 void PartSet_Module::restoreSelection()
298 // cash is used only to restore selection, so it should be filled in storeSelection and
299 // after applying immediatelly cleared in restoreSelection
300 sketchMgr()->restoreSelection(myCurrentSelection);
301 myCurrentSelection.clear();
304 //******************************************************
305 void PartSet_Module::registerValidators()
307 //Registering of validators
308 SessionPtr aMgr = ModelAPI_Session::get();
309 ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
310 aFactory->registerValidator("PartSet_DistanceSelection", new PartSet_DistanceSelection);
311 aFactory->registerValidator("PartSet_LengthSelection", new PartSet_LengthSelection);
312 aFactory->registerValidator("PartSet_PerpendicularSelection", new PartSet_PerpendicularSelection);
313 aFactory->registerValidator("PartSet_ParallelSelection", new PartSet_ParallelSelection);
314 aFactory->registerValidator("PartSet_RadiusSelection", new PartSet_RadiusSelection);
315 aFactory->registerValidator("PartSet_RigidSelection", new PartSet_RigidSelection);
316 aFactory->registerValidator("PartSet_CoincidentSelection", new PartSet_CoincidentSelection);
317 aFactory->registerValidator("PartSet_HVDirSelection", new PartSet_HVDirSelection);
318 aFactory->registerValidator("PartSet_TangentSelection", new PartSet_TangentSelection);
319 aFactory->registerValidator("PartSet_FilletSelection", new PartSet_FilletSelection);
320 aFactory->registerValidator("PartSet_AngleSelection", new PartSet_AngleSelection);
321 aFactory->registerValidator("PartSet_EqualSelection", new PartSet_EqualSelection);
322 aFactory->registerValidator("PartSet_CollinearSelection", new PartSet_CollinearSelection);
323 aFactory->registerValidator("PartSet_MiddlePointSelection", new PartSet_MiddlePointSelection);
324 aFactory->registerValidator("PartSet_DifferentObjects", new PartSet_DifferentObjectsValidator);
325 aFactory->registerValidator("PartSet_DifferentPoints", new PartSet_DifferentPointsValidator);
326 aFactory->registerValidator("PartSet_CoincidentAttr", new PartSet_CoincidentAttr);
327 aFactory->registerValidator("PartSet_MultyTranslationSelection",
328 new PartSet_MultyTranslationSelection);
329 aFactory->registerValidator("PartSet_SplitSelection", new PartSet_SplitSelection);
330 aFactory->registerValidator("PartSet_ProjectionSelection", new PartSet_ProjectionSelection);
331 aFactory->registerValidator("PartSet_IntersectionSelection", new PartSet_IntersectionSelection);
334 //******************************************************
335 void PartSet_Module::connectToPropertyPanel(ModuleBase_ModelWidget* theWidget,
336 const bool isToConnect)
338 mySketchMgr->connectToPropertyPanel(theWidget, isToConnect);
341 //******************************************************
342 void PartSet_Module::operationCommitted(ModuleBase_Operation* theOperation)
344 if (sketchMgr()->isNestedSketchOperation(theOperation)) {
345 mySketchMgr->commitNestedSketch(theOperation);
347 /// deactivate of overconstraint listener should be performed after Sketch commit (#2176)
348 if (PartSet_SketcherMgr::isSketchOperation(theOperation))
349 overconstraintListener()->setActive(false);
351 /// Restart sketcher operations automatically
352 if (!mySketchReentrantMgr->operationCommitted(theOperation)) {
354 ModuleBase_OperationFeature* aFOperation =
355 dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
356 if (aFOperation && !aFOperation->isEditOperation()) {
357 // the selection is cleared after commit the create operation
358 // in order to do not use the same selected objects in the restarted operation
359 // for common behaviour, the selection is cleared even if the operation is not restarted
360 getWorkshop()->selector()->clearSelection();
365 //******************************************************
366 void PartSet_Module::operationAborted(ModuleBase_Operation* theOperation)
368 /// Restart sketcher operations automatically
369 mySketchReentrantMgr->operationAborted(theOperation);
370 /// deactivate of overconstraint listener should be performed after Sketch abort (#2176)
371 if (PartSet_SketcherMgr::isSketchOperation(theOperation))
372 overconstraintListener()->setActive(false);
375 //******************************************************
376 void PartSet_Module::operationStarted(ModuleBase_Operation* theOperation)
378 ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
381 XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(workshop());
382 XGUI_PropertyPanel* aPropertyPanel = aWorkshop->propertyPanel();
384 ModuleBase_ModelWidget* aFilledWidget = 0;
385 bool aPostonedWidgetActivation = false;
387 FeaturePtr aFeature = aFOperation->feature();
388 /// Restart sketcher operations automatically
389 /// it is important to call method of sketch reentrant manager before filling of PP
390 /// because it fills some created feature attributes, these new values should be used
391 /// to fill the property panel
392 mySketchReentrantMgr->operationStarted(theOperation);
394 aWorkshop->fillPropertyPanel(aFOperation);
395 // filling the operation values by the current selection
396 // if the operation can be committed after the controls filling, the method perform should
397 // be stopped. Otherwise unnecessary presentations can be shown(e.g. operation prs in sketch)
398 bool isOperationCommitted = false;
399 if (!aFOperation->isEditOperation()) {
400 std::string aGreedAttributeId = ModuleBase_Tools::findGreedAttribute(workshop(), aFeature);
401 // if there is a greed attribute, automatic commit by preselection
402 // for this feature is prohibited
403 aFilledWidget = aFOperation->activateByPreselection(aGreedAttributeId);
404 if (currentOperation() != aFOperation)
405 isOperationCommitted = true;
407 if (aGreedAttributeId.empty()) {
408 // a signal should be emitted before the next widget activation
409 // because, the activation of the next widget will give a focus to the widget.
410 // As a result the value of the widget is initialized.
411 // And commit may happens until the value is entered.
413 if (mySketchReentrantMgr->canBeCommittedByPreselection())
414 isOperationCommitted = mySketchMgr->operationActivatedByPreselection();
415 // activate the next obligatory widget
416 if (!isOperationCommitted)
417 aPropertyPanel->activateNextWidget(aFilledWidget);
420 else { // there is a greed widget
421 const QList<ModuleBase_ModelWidget*>& aWidgets = aPropertyPanel->modelWidgets();
422 std::string aFirstAttributeId = aWidgets.front()->attributeID();
423 // activate next widget after greeded if it is the first widget in the panel
424 // else the first panel widget is already activated by operation start
425 if (aFirstAttributeId == aGreedAttributeId)
426 aPostonedWidgetActivation = true;
429 } if (!isOperationCommitted) {
430 aWorkshop->connectToPropertyPanel(true);
431 updateSketcherOnStart(aFOperation);
432 updatePresentationsOnStart(aFOperation);
434 // the objects of the current operation should be deactivated
435 QObjectPtrList anObjects;
436 anObjects.append(aFeature);
437 std::list<ResultPtr> aResults;
438 ModelAPI_Tools::allResults(aFeature, aResults);
439 std::list<ResultPtr>::const_iterator aIt;
440 for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
441 anObjects.append(*aIt);
443 QObjectPtrList::const_iterator anIt = anObjects.begin(), aLast = anObjects.end();
444 for (; anIt != aLast; anIt++)
445 aWorkshop->deactivateActiveObject(*anIt, false);
446 if (anObjects.size() > 0) {
447 XGUI_Displayer* aDisplayer = aWorkshop->displayer();
448 aDisplayer->updateViewer();
450 /// state of command actions should be updated after displayed objects modification because
451 /// deactivation(for example) of objects may influence on selection in the viewer
452 /// State of command actions may depend on selection in the viewer(e.g. Sketch)
453 workshop()->updateCommandStatus();
455 if (aPostonedWidgetActivation) {
456 // if the widget is an empty in the chain of activated widgets, the current operation
457 // is restarted. It should be performed after functionality of the operation starting
458 aPropertyPanel->activateNextWidget(aFilledWidget);
463 //******************************************************
464 void PartSet_Module::updateSketcherOnStart(ModuleBase_Operation* theOperation)
466 if (PartSet_SketcherMgr::isSketchOperation(theOperation)) {
467 mySketchMgr->startSketch(theOperation);
469 // It is switched off because of
470 // Task #3067: 5.2.2 Drawing in the sketcher: change the mouse cursor arrow
471 else if (sketchMgr()->isNestedSketchOperation(theOperation)) {
472 mySketchMgr->startNestedSketch(theOperation);
476 //******************************************************
477 void PartSet_Module::updatePresentationsOnStart(ModuleBase_Operation* theOperation)
479 ModuleBase_OperationFeature* aFOperation =
480 dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
482 myCustomPrs->activate(aFOperation->feature(), ModuleBase_IModule::CustomizeArguments, false);
483 myCustomPrs->activate(aFOperation->feature(), ModuleBase_IModule::CustomizeResults, false);
487 //******************************************************
488 void PartSet_Module::operationResumed(ModuleBase_Operation* theOperation)
490 ModuleBase_IModule::operationResumed(theOperation);
492 ModuleBase_OperationFeature* aFOperation =
493 dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
495 myCustomPrs->activate(aFOperation->feature(), ModuleBase_IModule::CustomizeArguments, false);
496 myCustomPrs->activate(aFOperation->feature(), ModuleBase_IModule::CustomizeResults, false);
500 //******************************************************
501 void PartSet_Module::operationStopped(ModuleBase_Operation* theOperation)
503 bool isModifiedArgs = myCustomPrs->deactivate(ModuleBase_IModule::CustomizeArguments, false);
504 bool isModifiedResults = myCustomPrs->deactivate(ModuleBase_IModule::CustomizeResults, false);
505 bool isModified = isModifiedArgs || isModifiedResults;
507 if (sketchMgr()->isNestedSketchOperation(theOperation)) {
508 mySketchMgr->stopNestedSketch(theOperation);
510 else if (PartSet_SketcherMgr::isSketchOperation(theOperation))
511 setDefaultConstraintShown();
513 //VSV: Viewer is updated on feature update and redisplay
515 XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myWorkshop);
516 XGUI_Displayer* aDisplayer = aConnector->workshop()->displayer();
517 aDisplayer->updateViewer();
520 QMap<PartSet_Tools::ConstraintVisibleState, bool>::const_iterator
521 anIt = myHasConstraintShown.begin(), aLast = myHasConstraintShown.end();
522 for (; anIt != aLast; anIt++) {
523 mySketchMgr->updateBySketchParameters(anIt.key(), anIt.value());
527 //******************************************************
528 ModuleBase_Operation* PartSet_Module::currentOperation() const
530 XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
531 XGUI_OperationMgr* anOpMgr = aConnector->workshop()->operationMgr();
532 return anOpMgr->currentOperation();
535 //******************************************************
536 bool PartSet_Module::canUndo() const
538 bool aCanUndo = false;
539 SessionPtr aMgr = ModelAPI_Session::get();
540 if (aMgr->hasModuleDocument() && aMgr->canUndo()) {
541 aCanUndo = !aMgr->isOperation();
542 if (!aCanUndo) // check the enable state additionally by sketch manager
543 aCanUndo = aMgr->canUndo();
548 //******************************************************
549 bool PartSet_Module::canRedo() const
551 bool aCanRedo = false;
552 SessionPtr aMgr = ModelAPI_Session::get();
553 if (aMgr->hasModuleDocument() && aMgr->canRedo()) {
554 aCanRedo = !aMgr->isOperation();
555 if (!aCanRedo) // check the enable state additionally by sketch manager
556 aCanRedo = aMgr->canRedo();
561 //******************************************************
562 bool PartSet_Module::canApplyAction(const ObjectPtr& theObject, const QString& theActionId) const
565 if (theActionId == "MOVE_CMD" || theActionId == "MOVE_SPLIT_CMD") {
566 FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
568 ResultPtr aResult = ModuleBase_Tools::firstResult(aFeature);
569 // part features can not be moved in the history.
570 if (aResult.get() && aResult->groupName() == ModelAPI_ResultPart::group())
577 //******************************************************
578 bool PartSet_Module::canEraseObject(const ObjectPtr& theObject) const
580 // the sketch manager put the restriction to the objects erase
581 return mySketchMgr->canEraseObject(theObject);
584 //******************************************************
585 bool PartSet_Module::canDisplayObject(const ObjectPtr& theObject) const
587 // the sketch manager put the restriction to the objects display
588 return mySketchMgr->canDisplayObject(theObject);
591 //******************************************************
592 bool PartSet_Module::canUsePreselection(const QString& thePreviousOperationKind,
593 const QString& theStartedOperationKind)
595 if (ModuleBase_IModule::canUsePreselection(thePreviousOperationKind, theStartedOperationKind))
598 return mySketchMgr->isNestedSketchFeature(theStartedOperationKind);
601 /*void PartSet_Module::processHiddenObject(const std::list<ObjectPtr>& theObjects)
603 mySketchMgr->processHiddenObject(theObjects);
606 //******************************************************
607 bool PartSet_Module::canActivateSelection(const ObjectPtr& theObject) const
609 bool aCanActivate = ModuleBase_IModule::canActivateSelection(theObject);
611 ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
612 bool isSketchOp = PartSet_SketcherMgr::isSketchOperation(anOperation),
613 isNestedOp = sketchMgr()->isNestedSketchOperation(anOperation);
614 if (isSketchOp || isNestedOp) {
615 // in active sketch operation it is possible to activate operation object in selection
616 // in the edit operation, e.g. points of the line can be moved when the line is edited
617 ModuleBase_OperationFeature* aFOperation =
618 dynamic_cast<ModuleBase_OperationFeature*>(anOperation);
619 aCanActivate = aCanActivate || (aFOperation && aFOperation->isEditOperation());
624 //******************************************************
625 bool PartSet_Module::addViewerMenu(const QMap<QString, QAction*>& theStdActions,
627 QMap<int, QAction*>& theMenuActions) const
629 return myMenuMgr->addViewerMenu(theStdActions, theParent, theMenuActions);
632 //******************************************************
633 void PartSet_Module::updateViewerMenu(const QMap<QString, QAction*>& theStdActions)
635 myMenuMgr->updateViewerMenu(theStdActions);
638 //******************************************************
639 bool PartSet_Module::isActionEnableStateFixed(const int theActionId) const
641 bool isEnabledFixed = false;
642 if (theActionId == XGUI_ActionsMgr::AcceptAll &&
643 mySketchReentrantMgr->isInternalEditActive())
644 isEnabledFixed = true;
645 return isEnabledFixed;
648 //******************************************************
649 QString PartSet_Module::getFeatureError(const FeaturePtr& theFeature)
651 QString anError = ModuleBase_IModule::getFeatureError(theFeature);
652 if (anError.isEmpty())
653 anError = sketchMgr()->getFeatureError(theFeature);
658 //******************************************************
659 void PartSet_Module::grantedOperationIds(ModuleBase_Operation* theOperation,
660 QStringList& theIds) const
662 myMenuMgr->grantedOperationIds(theOperation, theIds);
664 if (PartSet_SketcherMgr::isSketchOperation(theOperation)) {
665 XGUI_Workshop* aWorkshop = getWorkshop();
666 theIds.append(aWorkshop->contextMenuMgr()->action("DELETE_CMD")->text());
670 //******************************************************
671 void PartSet_Module::activeSelectionModes(QIntList& theModes)
673 if (mySketchMgr->activeSketch().get())
674 PartSet_SketcherMgr::sketchSelectionModes(mySketchMgr->activeSketch(), theModes);
676 theModes = XGUI_Tools::workshop(myWorkshop)->viewerSelectionModes();
679 //******************************************************
680 void PartSet_Module::moduleSelectionModes(int theModesType, QIntList& theModes)
682 customSubShapesSelectionModes(theModes);
683 //theModes.append(XGUI_Tools::workshop(myWorkshop)->viewerSelectionModes());
684 //myWorkshop->module()->activeSelectionModes(theModes);
687 //******************************************************
688 void PartSet_Module::moduleSelectionFilters(const QIntList& theFilterTypes,
689 SelectMgr_ListOfFilter& theSelectionFilters)
691 bool isSketchActive = mySketchMgr->activeSketch().get();
693 std::map<ModuleBase_SelectionFilterType, Handle(SelectMgr_Filter)>::const_iterator aFiltersIt =
694 mySelectionFilters.begin();
695 for (; aFiltersIt != mySelectionFilters.end(); aFiltersIt++) {
696 int aFilterType = aFiltersIt->first;
697 // do not add not participating filters in given parameters
698 if (!theFilterTypes.contains(aFilterType))
701 // using sketch filters only if sketch operation is active
702 if (!isSketchActive &&
703 mySketchMgr->sketchSelectionFilter((ModuleBase_SelectionFilterType)aFilterType))
706 // using filtering of construction results only from faces panel
707 if (aFilterType == SF_ResultGroupNameFilter)
710 theSelectionFilters.Append(aFiltersIt->second);
714 //******************************************************
715 void PartSet_Module::customSubShapesSelectionModes(QIntList& theModes)
717 if (theModes.contains(TopAbs_FACE))
718 theModes.append(SketcherPrs_Tools::Sel_Sketch_Face);
719 if (theModes.contains(TopAbs_WIRE))
720 theModes.append(SketcherPrs_Tools::Sel_Sketch_Wire);
722 if (mySketchMgr->activeSketch().get())
723 PartSet_SketcherMgr::sketchSelectionModes(mySketchMgr->activeSketch(), theModes);
726 //******************************************************
727 void PartSet_Module::getGeomSelection(const std::shared_ptr<ModuleBase_ViewerPrs>& theSelected,
728 ObjectPtr& theObject, AttributePtr& theAttribute)
730 ObjectPtr anObject = theSelected->object();
731 GeomShapePtr aShape = theSelected->shape();
733 theAttribute = findAttribute(anObject, aShape);
734 // TODO: try to create result if object is an external object
735 theObject = anObject;
738 //******************************************************
739 bool PartSet_Module::isMouseOverWindow()
741 return mySketchMgr->isMouseOverWindow();
744 //******************************************************
745 bool PartSet_Module::isSketchNeutralPointActivated() const
747 bool isNeutralPoint = true;
748 if (sketchReentranceMgr()->isInternalEditActive())
749 isNeutralPoint = false;
750 if (myIsOperationIsLaunched)
751 isNeutralPoint = false;
753 return isNeutralPoint;
756 //******************************************************
757 void PartSet_Module::closeDocument()
759 myActivePartIndex = QModelIndex();
760 SketcherPrs_PositionMgr::get()->clearAll();
763 //******************************************************
764 void PartSet_Module::clearViewer()
766 myCustomPrs->clearPrs();
768 XGUI_Workshop* aWorkshop = getWorkshop();
769 XGUI_Displayer* aDisplayer = aWorkshop->displayer();
770 aDisplayer->deactivateSelectionFilters(false);
773 //******************************************************
774 void PartSet_Module::propertyPanelDefined(ModuleBase_Operation* theOperation)
776 ModuleBase_OperationFeature* aFOperation =
777 dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
781 ModuleBase_IPropertyPanel* aPanel = aFOperation->propertyPanel();
782 // we have to manually activate the sketch label in edit mode
783 if (PartSet_SketcherMgr::isSketchOperation(aFOperation) && (aFOperation->isEditOperation()))
784 aPanel->activateWidget(aPanel->modelWidgets().first());
787 //******************************************************
788 bool PartSet_Module::createWidgets(const FeaturePtr& theFeature, const QString& theXmlRepr,
789 QList<ModuleBase_ModelWidget*>& theWidgets) const
791 bool aProcessed = false;
793 XGUI_Workshop* aWorkshop = getWorkshop();
794 XGUI_PropertyPanel* aPropertyPanel = aWorkshop->propertyPanel();
795 if (mySketchMgr->activeSketch().get() && aPropertyPanel) {
796 ModuleBase_ISelection* aSelection = workshop()->selection();
797 // click on a point in sketch leads here with the point is highlighted, not yet selected
798 QList<ModuleBase_ViewerPrsPtr> aPreselection = aSelection->getHighlighted();
799 if (aPreselection.size() == 1) {
800 ModuleBase_ViewerPrsPtr aSelectedPrs = aPreselection[0];
801 ObjectPtr anObject = aSelectedPrs->object();
803 FeaturePtr aFeature = ModelAPI_Feature::feature(anObject);
804 GeomShapePtr aShape = aSelectedPrs->shape();
805 // click on the digit of dimension constrain comes here
806 // with an empty shape, so we need the check
807 if (aFeature == theFeature && aShape.get() && !aShape->isNull()) {
808 // if feature has only one result and shape of result is equal to selected shape
809 // this attribute is not processed. It is a case of Sketch Point.
810 if (aFeature->results().size() == 1) {
811 ResultPtr aResult = aFeature->results().front();
812 if (aResult.get() && aResult->shape()->isEqual(aShape))
815 const TopoDS_Shape& aTDShape = aShape->impl<TopoDS_Shape>();
816 std::pair<AttributePtr, int> anAttribute =
817 PartSet_Tools::findAttributeBy2dPoint(anObject, aTDShape, mySketchMgr->activeSketch());
818 if (anAttribute.first.get()) {
819 ModuleBase_WidgetFactory aFactory(theXmlRepr.toStdString(), workshop());
821 const std::string anAttributeId = anAttribute.first->id();
822 aFactory.createWidget(aPropertyPanel->contentWidget(), anAttributeId);
824 theWidgets = aFactory.getModelWidgets();
825 // it is possible that the point does not present in XML definition,
826 // in this case, we assume that it is not processed by this module
827 // e.g. "Intersection point" feature
828 aProcessed = !theWidgets.isEmpty();
836 //******************************************************
837 void PartSet_Module::onSelectionChanged()
839 ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
843 bool isSketcherOp = false;
844 // An edit operation is enable only if the current opeation is the sketch operation
845 if (mySketchMgr->activeSketch()) {
846 if (PartSet_Tools::sketchPlane(mySketchMgr->activeSketch()))
847 isSketcherOp = PartSet_SketcherMgr::isSketchOperation(aOperation);
850 // Editing of constraints can be done on selection
851 ModuleBase_ISelection* aSelect = myWorkshop->selection();
852 QList<ModuleBase_ViewerPrsPtr> aSelected = aSelect->getSelected();
853 if (aSelected.size() == 1) {
854 ModuleBase_ViewerPrsPtr aPrs = aSelected.first();
855 ObjectPtr aObject = aPrs->object();
856 FeaturePtr aFeature = ModelAPI_Feature::feature(aObject);
858 std::string aId = aFeature->getKind();
859 if ((aId == SketchPlugin_ConstraintRadius::ID()) ||
860 (aId == SketchPlugin_ConstraintLength::ID()) ||
861 (aId == SketchPlugin_ConstraintDistance::ID()) ||
862 (aId == SketchPlugin_ConstraintAngle::ID())) {
863 editFeature(aFeature);
870 //******************************************************
871 void PartSet_Module::onKeyRelease(ModuleBase_IViewWindow* theWnd, QKeyEvent* theEvent)
873 XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
874 XGUI_OperationMgr* anOpMgr = aConnector->workshop()->operationMgr();
875 anOpMgr->onKeyReleased(theWnd->viewPort(), theEvent);
878 //******************************************************
879 ModuleBase_ModelWidget* PartSet_Module::createWidgetByType(const std::string& theType,
881 Config_WidgetAPI* theWidgetApi)
883 ModuleBase_IWorkshop* aWorkshop = workshop();
884 XGUI_Workshop* aXUIWorkshop = getWorkshop();
885 ModuleBase_ModelWidget* aWgt = NULL;
886 if (theType == "sketch-start-label") {
887 PartSet_WidgetSketchLabel* aLabelWgt = new PartSet_WidgetSketchLabel(theParent, aWorkshop,
888 theWidgetApi, myHasConstraintShown);
889 connect(aLabelWgt, SIGNAL(planeSelected(const std::shared_ptr<GeomAPI_Pln>&)),
890 mySketchMgr, SLOT(onPlaneSelected(const std::shared_ptr<GeomAPI_Pln>&)));
891 connect(aLabelWgt, SIGNAL(showConstraintToggled(int, bool)),
892 mySketchMgr, SLOT(onShowConstraintsToggle(int, bool)));
893 connect(aLabelWgt, SIGNAL(showFreePoints(bool)), mySketchMgr, SLOT(onShowPoints(bool)));
894 connect(aLabelWgt, SIGNAL(autoConstraints(bool)),
895 sketchReentranceMgr(), SLOT(onAutoConstraints(bool)));
896 aLabelWgt->setShowPointsState(mySketchMgr->isShowFreePointsShown());
898 } else if (theType == "sketch-2dpoint_selector") {
899 PartSet_WidgetPoint2D* aPointWgt = new PartSet_WidgetPoint2D(theParent, aWorkshop,
901 aPointWgt->setSketch(mySketchMgr->activeSketch());
902 connect(aPointWgt, SIGNAL(vertexSelected()), sketchReentranceMgr(), SLOT(onVertexSelected()));
904 }else if (theType == "sketch-2dpoint_flyout_selector") {
905 PartSet_WidgetPoint2DFlyout* aPointWgt = new PartSet_WidgetPoint2DFlyout(theParent, aWorkshop,
907 aPointWgt->setSketch(mySketchMgr->activeSketch());
908 connect(aPointWgt, SIGNAL(vertexSelected()), sketchReentranceMgr(), SLOT(onVertexSelected()));
910 } else if (theType == "sketch_shape_selector") {
911 PartSet_WidgetShapeSelector* aShapeSelectorWgt =
912 new PartSet_WidgetShapeSelector(theParent, aWorkshop, theWidgetApi);
913 aShapeSelectorWgt->setSketcher(mySketchMgr->activeSketch());
914 aWgt = aShapeSelectorWgt;
915 } else if (theType == "sketch_multi_selector") {
916 PartSet_WidgetMultiSelector* aShapeSelectorWgt =
917 new PartSet_WidgetMultiSelector(theParent, aWorkshop, theWidgetApi);
918 aShapeSelectorWgt->setSketcher(mySketchMgr->activeSketch());
919 aWgt = aShapeSelectorWgt;
921 else if (theType == "sketch_feature_point_selector") {
922 PartSet_WidgetFeaturePointSelector* aPointSelectorWgt =
923 new PartSet_WidgetFeaturePointSelector(theParent, aWorkshop, theWidgetApi);
924 aPointSelectorWgt->setSketcher(mySketchMgr->activeSketch());
925 aWgt = aPointSelectorWgt;
927 else if (theType == "sketch-bspline_selector") {
928 PartSet_WidgetBSplinePoints* aBSplineWgt =
929 new PartSet_WidgetBSplinePoints(theParent, aWorkshop, theWidgetApi);
930 aBSplineWgt->setSketch(mySketchMgr->activeSketch());
933 else if (theType == WDG_DOUBLEVALUE_EDITOR) {
934 aWgt = new PartSet_WidgetEditor(theParent, aWorkshop, theWidgetApi);
935 } else if (theType == "export_file_selector") {
936 aWgt = new PartSet_WidgetFileSelector(theParent, aWorkshop, theWidgetApi);
937 } else if (theType == "sketch_launcher") {
938 aWgt = new PartSet_WidgetSketchCreator(theParent, this, theWidgetApi);
940 else if (theType == "module_choice") {
941 aWgt = new ModuleBase_WidgetChoice(theParent, theWidgetApi);
942 connect(aWgt, SIGNAL(itemSelected(ModuleBase_ModelWidget*, int)),
943 this, SLOT(onChoiceChanged(ModuleBase_ModelWidget*, int)));
944 } else if (theType == "bspline-panel") {
945 PartSet_BSplineWidget* aPanel = new PartSet_BSplineWidget(theParent, theWidgetApi);
946 //aPanel->setFeature(theFeature);
952 //******************************************************
953 ModuleBase_ModelWidget* PartSet_Module::activeWidget() const
955 ModuleBase_ModelWidget* anActiveWidget = 0;
957 ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
959 return anActiveWidget;
961 ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
963 return anActiveWidget;
965 return aPanel->activeWidget(true);
968 //******************************************************
969 bool PartSet_Module::deleteObjects()
971 bool isProcessed = false;
973 XGUI_Workshop* aWorkshop = getWorkshop();
974 XGUI_OperationMgr* anOpMgr = aWorkshop->operationMgr();
976 //SessionPtr aMgr = ModelAPI_Session::get();
977 // 1. check whether the delete should be processed in the module
978 ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
979 bool isSketchOp = PartSet_SketcherMgr::isSketchOperation(anOperation),
980 isNestedOp = sketchMgr()->isNestedSketchOperation(anOperation);
981 if (isSketchOp || isNestedOp) {
983 // 2. find selected presentations
984 // selected objects should be collected before the current operation abort because
985 // the abort leads to selection lost on constraint objects. It can be corrected after #386 issue
986 ModuleBase_ISelection* aSel = workshop()->selection();
987 QObjectPtrList aSelectedObj = aSel->selectedPresentations();
988 // if there are no selected objects in the viewer, that means that the selection in another
989 // place cased this method. It is necessary to return the false value to understande in above
990 // method that delete is not processed
991 if (aSelectedObj.count() == 0)
994 // avoid delete of the objects, which are not belong to the current sketch
995 // in order to do not delete results of other sketches
996 QObjectPtrList aSketchObjects;
997 QObjectPtrList::const_iterator anIt = aSelectedObj.begin(), aLast = aSelectedObj.end();
998 for ( ; anIt != aLast; anIt++) {
999 ObjectPtr anObject = *anIt;
1000 if (mySketchMgr->isObjectOfSketch(anObject)) {
1001 // sketch feature should be used in this list because workshop deletes features only
1002 // results are skipped
1003 FeaturePtr aSketchFeature = ModelAPI_Feature::feature(anObject);
1004 aSketchObjects.append(aSketchFeature);
1007 // if the selection contains only local selected presentations from other sketches,
1008 // the Delete operation should not be done at all
1009 if (aSketchObjects.size() == 0)
1012 // 3. start operation
1013 QString aDescription = aWorkshop->contextMenuMgr()->action("DELETE_CMD")->text();
1014 ModuleBase_Operation* anOpAction = new ModuleBase_Operation(aDescription, this);
1016 // the active nested sketch operation should be aborted unconditionally
1017 // the Delete action should be additionally granted for the Sketch operation
1018 // in order to do not abort/commit it
1020 if (!anOpMgr->canStartOperation(anOpAction->id(), isCommitted))
1021 return true; // the objects are processed but can not be deleted
1023 anOpMgr->startOperation(anOpAction);
1025 // WORKAROUND, should be done to avoid viewer highlight update after deletetion of objects
1026 // the problem is in AIS Dimensions recompute
1027 // if a line and the dim are removed, line is the first
1028 // it causes the AIS recompute, where the base line is null,
1029 // the result is empty AIS in the viewer
1030 XGUI_Tools::workshop(myWorkshop)->selector()->clearSelection();
1032 // 4. delete features
1033 // sketch feature should be skipped, only sub-features can be removed
1034 // when sketch operation is active
1035 aWorkshop->deleteFeatures(aSketchObjects);
1036 // 5. stop operation
1037 anOpMgr->commitOperation();
1042 //******************************************************
1043 void PartSet_Module::editFeature(FeaturePtr theFeature)
1045 storeConstraintsState(theFeature->getKind());
1046 ModuleBase_IModule::editFeature(theFeature);
1049 //******************************************************
1050 bool PartSet_Module::canCommitOperation() const
1055 //******************************************************
1056 void PartSet_Module::launchOperation(const QString& theCmdId, const bool& isStartAfterCommitOnly)
1058 myIsOperationIsLaunched = true;
1059 storeConstraintsState(theCmdId.toStdString());
1060 updateConstraintsState(theCmdId.toStdString());
1062 ModuleBase_IModule::launchOperation(theCmdId, isStartAfterCommitOnly);
1064 myIsOperationIsLaunched = false;
1067 //******************************************************
1068 void PartSet_Module::storeConstraintsState(const std::string& theFeatureKind)
1070 if (myWorkshop->currentOperation() &&
1071 myWorkshop->currentOperation()->id().toStdString() == SketchPlugin_Sketch::ID()) {
1072 const QMap<PartSet_Tools::ConstraintVisibleState, bool>& aShownStates =
1073 mySketchMgr->showConstraintStates();
1074 myHasConstraintShown = aShownStates;
1078 //******************************************************
1079 void PartSet_Module::updateConstraintsState(const std::string& theFeatureKind)
1081 if (PartSet_SketcherMgr::constraintsIdList().contains(theFeatureKind.c_str()) ||
1082 PartSet_SketcherMgr::replicationsIdList().contains(theFeatureKind.c_str())) {
1083 // Show constraints if a constraint was anOperation
1084 mySketchMgr->updateBySketchParameters(PartSet_Tools::Geometrical, true);
1085 mySketchMgr->updateBySketchParameters(PartSet_Tools::Dimensional, true);
1086 mySketchMgr->updateBySketchParameters(PartSet_Tools::Expressions,
1087 myHasConstraintShown[PartSet_Tools::Expressions]);
1091 //******************************************************
1092 void PartSet_Module::onObjectDisplayed(ObjectPtr theObject, AISObjectPtr theAIS)
1094 Handle(AIS_InteractiveObject) anAIS = theAIS->impl<Handle(AIS_InteractiveObject)>();
1095 if (!anAIS.IsNull()) {
1096 FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
1097 if (aFeature.get()) {
1098 bool aToUseZLayer = false;
1099 if (PartSet_Tools::findRefsToMeFeature(aFeature,SketchPlugin_Projection::ID()))
1100 aToUseZLayer = true;
1102 CompositeFeaturePtr aParent = ModelAPI_Tools::compositeOwner(aFeature);
1103 aToUseZLayer = (aParent.get() && (aParent->getKind() == SketchPlugin_Sketch::ID()));
1106 Handle(AIS_InteractiveContext) aCtx = anAIS->GetContext();
1107 if (aFeature->getKind() == SketchPlugin_ConstraintCoincidence::ID())
1108 aCtx->SetZLayer(anAIS, Graphic3d_ZLayerId_Top);
1110 aCtx->SetZLayer(anAIS, myVisualLayerId);
1116 //******************************************************
1117 void PartSet_Module::onBeforeObjectErase(ObjectPtr theObject, AISObjectPtr theAIS)
1120 // it should be recomputed in order to disappear in the viewer if the corresponded object
1122 //if (myCustomPrs->isActive())
1123 // myCustomPrs->redisplay(theObject, false);
1126 //******************************************************
1127 void PartSet_Module::onViewTransformed(int theTrsfType)
1129 // Set length of arrows constant in pixel size
1130 // if the operation is panning or rotate or panglobal then do nothing
1131 if ((theTrsfType == 1) || (theTrsfType == 3) || (theTrsfType == 4))
1133 ModuleBase_IViewer* aViewer = myWorkshop->viewer();
1134 Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
1135 if (aContext.IsNull())
1138 //Handle(V3d_View) aView = aViewer->activeView();
1140 XGUI_Workshop* aWorkshop = getWorkshop();
1141 XGUI_Displayer* aDisplayer = aWorkshop->displayer();
1142 Handle(V3d_Viewer) aV3dViewer = aContext->CurrentViewer();
1143 Handle(V3d_View) aView;
1145 for (aV3dViewer->InitDefinedViews();
1146 aV3dViewer->MoreDefinedViews();
1147 aV3dViewer->NextDefinedViews()) {
1148 Handle(V3d_View) aV = aV3dViewer->DefinedView();
1149 double aS = aV->Scale();
1158 bool isModified = false;
1159 ModuleBase_Operation* aCurrentOperation = myWorkshop->currentOperation();
1160 if (aCurrentOperation &&
1161 (PartSet_SketcherMgr::isSketchOperation(aCurrentOperation) ||
1162 sketchMgr()->isNestedSketchOperation(aCurrentOperation) ||
1163 (aCurrentOperation->id() == "Measurement")))
1165 double aLen = aView->Convert(SketcherPrs_Tools::getConfigArrowSize());
1167 double aPrevLen = SketcherPrs_Tools::getArrowSize();
1168 SketcherPrs_Tools::setArrowSize(aLen);
1169 const double aCurScale = aViewer->activeView()->Camera()->Scale();
1170 aViewer->SetScale(aViewer->activeView(), aCurScale);
1172 QList<Handle(AIS_InteractiveObject)> aPrsList = aDisplayer->displayedPresentations();
1173 foreach(Handle(AIS_InteractiveObject) aAisObj, aPrsList) {
1175 QList<AISObjectPtr> aPrsList = aDisplayer->displayedPresentations();
1176 foreach(AISObjectPtr aAIS, aPrsList) {
1177 Handle(AIS_InteractiveObject) aAisObj = aAIS->impl<Handle(AIS_InteractiveObject)>();
1179 Handle(AIS_Dimension) aDim = Handle(AIS_Dimension)::DownCast(aAisObj);
1180 if (!aDim.IsNull()) {
1181 aDim->DimensionAspect()->ArrowAspect()->SetLength(aLen);
1182 aContext->Redisplay(aDim, false);
1187 aDisplayer->updateViewer();
1192 //******************************************************
1193 bool PartSet_Module::isCustomPrsActivated(const ModuleBase_CustomizeFlag& theFlag) const
1195 return myCustomPrs->isActive(theFlag);
1198 //******************************************************
1199 void PartSet_Module::activateCustomPrs(const FeaturePtr& theFeature,
1200 const ModuleBase_CustomizeFlag& theFlag,
1201 const bool theUpdateViewer)
1203 myCustomPrs->activate(theFeature, theFlag, theUpdateViewer);
1206 //******************************************************
1207 void PartSet_Module::deactivateCustomPrs(const ModuleBase_CustomizeFlag& theFlag,
1208 const bool theUpdateViewer)
1210 myCustomPrs->deactivate(theFlag, theUpdateViewer);
1213 //******************************************************
1214 //bool PartSet_Module::customisePresentation(ResultPtr theResult, AISObjectPtr thePrs,
1215 // std::shared_ptr<GeomAPI_ICustomPrs> theCustomPrs)
1217 // bool aCustomized = false;
1219 // XGUI_Workshop* aWorkshop = getWorkshop();
1220 // XGUI_Displayer* aDisplayer = aWorkshop->displayer();
1221 // ObjectPtr anObject = aDisplayer->getObject(thePrs);
1223 // return aCustomized;
1225 // if (!theResult.get()) {
1226 // std::vector<int> aColor;
1227 // XGUI_CustomPrs::getDefaultColor(anObject, true, aColor);
1228 // if (!aColor.empty()) {
1229 // aCustomized = thePrs->setColor(aColor[0], aColor[1], aColor[2]);
1232 // // customize dimentional constrains
1233 // sketchMgr()->customisePresentation(anObject);
1235 // return aCustomized;
1238 ////******************************************************
1239 //bool PartSet_Module::afterCustomisePresentation(std::shared_ptr<ModelAPI_Result> theResult,
1240 // AISObjectPtr thePrs,
1241 // GeomCustomPrsPtr theCustomPrs)
1243 // bool aCustomized = false;
1245 // XGUI_Workshop* aWorkshop = getWorkshop();
1246 // XGUI_Displayer* aDisplayer = aWorkshop->displayer();
1247 // ObjectPtr anObject = aDisplayer->getObject(thePrs);
1249 // return aCustomized;
1251 // std::vector<int> aColor;
1252 // bool aUseCustomColor = true;
1253 // if (aUseCustomColor)
1254 // myOverconstraintListener->getCustomColor(anObject, aColor);
1255 // // customize sketch symbol presentation
1256 // Handle(AIS_InteractiveObject) anAISIO = thePrs->impl<Handle(AIS_InteractiveObject)>();
1257 // if (!anAISIO.IsNull()) {
1258 // if (!Handle(SketcherPrs_SymbolPrs)::DownCast(anAISIO).IsNull()) {
1259 // Handle(SketcherPrs_SymbolPrs) aPrs = Handle(SketcherPrs_SymbolPrs)::DownCast(anAISIO);
1260 // if (!aPrs.IsNull()) {
1261 // aPrs->SetCustomColor(aColor);
1262 // aCustomized = true;
1264 // } else if (!Handle(SketcherPrs_Coincident)::DownCast(anAISIO).IsNull()) {
1265 // Handle(SketcherPrs_Coincident) aPrs = Handle(SketcherPrs_Coincident)::DownCast(anAISIO);
1266 // if (!aPrs.IsNull()) {
1267 // aPrs->SetCustomColor(aColor);
1268 // aCustomized = true;
1272 // // customize sketch dimension constraint presentation
1273 // if (!aCustomized) {
1274 // if (!aColor.empty()) { // otherwise presentation has the default color
1275 // aCustomized = thePrs->setColor(aColor[0], aColor[1], aColor[2]);
1278 // return aCustomized;
1281 //******************************************************
1282 bool PartSet_Module::customizeFeature(ObjectPtr theObject, const ModuleBase_CustomizeFlag& theFlag,
1283 const bool theUpdateViewer)
1285 bool isRedisplayed = false;
1286 if (myCustomPrs->isActive(theFlag))
1287 isRedisplayed = myCustomPrs->redisplay(theObject, theFlag, theUpdateViewer);
1289 return isRedisplayed;
1292 //******************************************************
1293 void PartSet_Module::customizeObjectBrowser(QWidget* theObjectBrowser)
1295 XGUI_ObjectsBrowser* aOB = dynamic_cast<XGUI_ObjectsBrowser*>(theObjectBrowser);
1297 QLabel* aLabel = aOB->activeDocLabel();
1298 aLabel->installEventFilter(myMenuMgr);
1299 connect(aLabel, SIGNAL(customContextMenuRequested(const QPoint&)),
1300 SLOT(onActiveDocPopup(const QPoint&)));
1301 aOB->treeView()->setExpandsOnDoubleClick(false);
1302 connect(aOB->treeView(), SIGNAL(doubleClicked(const QModelIndex&)),
1303 SLOT(onTreeViewDoubleClick(const QModelIndex&)));
1305 Events_Loop* aLoop = Events_Loop::loop();
1306 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_CREATED));
1310 //******************************************************
1311 void PartSet_Module::onActiveDocPopup(const QPoint& thePnt)
1313 SessionPtr aMgr = ModelAPI_Session::get();
1314 QAction* aActivatePartAction = myMenuMgr->action("ACTIVATE_PARTSET_CMD");
1316 XGUI_Workshop* aWorkshop = getWorkshop();
1317 QLabel* aHeader = aWorkshop->objectBrowser()->activeDocLabel();
1319 aActivatePartAction->setEnabled((aMgr->activeDocument() != aMgr->moduleDocument()));
1322 aMenu.addAction(aActivatePartAction);
1325 if (aMgr->activeDocument() == aMgr->moduleDocument()) {
1326 DocumentPtr aDoc = aMgr->moduleDocument();
1327 int aNbParts = aDoc->size(ModelAPI_ResultPart::group());
1328 bool aHaveToActivate = false;
1329 for (int i = 0; i < aNbParts; i++) {
1330 ObjectPtr aObj = aDoc->object(ModelAPI_ResultPart::group(), i);
1331 ResultPartPtr aPartRes = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
1332 if (!aPartRes->partDoc().get()) {
1333 aHaveToActivate = true;
1337 if (aHaveToActivate) {
1338 QAction* aActivateAllPartAction = myMenuMgr->action("ACTIVATE_ALL_PARTS_CMD");
1339 aMenu.addAction(aActivateAllPartAction);
1344 aMenu.exec(aHeader->mapToGlobal(thePnt));
1347 //******************************************************
1348 AISObjectPtr PartSet_Module::createPresentation(const ObjectPtr& theObject)
1350 Handle(AIS_InteractiveObject) anAISPrs = mySketchMgr->createPresentation(theObject);
1351 if (anAISPrs.IsNull()) {
1352 ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
1353 if (aResult.get()) {
1354 std::shared_ptr<GeomAPI_Shape> aShapePtr = ModelAPI_Tools::shape(aResult);
1355 if (aShapePtr.get() != NULL)
1356 anAISPrs = new ModuleBase_ResultPrs(aResult);
1359 FieldStepPtr aStep =
1360 std::dynamic_pointer_cast<ModelAPI_ResultField::ModelAPI_FieldStep>(theObject);
1362 anAISPrs = new PartSet_FieldStepPrs(aStep);
1367 if (!anAISPrs.IsNull()) {
1368 Handle(AIS_Shape) aShapePrs = Handle(AIS_Shape)::DownCast(anAISPrs);
1369 if (!aShapePrs.IsNull())
1370 ModuleBase_Tools::setPointBallHighlighting((AIS_Shape*)aShapePrs.get());
1372 anAIS = AISObjectPtr(new GeomAPI_AISObject());
1373 anAIS->setImpl(new Handle(AIS_InteractiveObject)(anAISPrs));
1374 customizePresentation(theObject, anAIS);
1379 //******************************************************
1380 void getResultColor(const ResultPtr& theResult, std::vector<int>& theColor)
1382 ModelAPI_Tools::getColor(theResult, theColor);
1383 if (theColor.empty())
1384 PartSet_Tools::getDefaultColor(theResult, false, theColor);
1387 //******************************************************
1388 double getResultDeflection(const ResultPtr& theResult)
1390 double aDeflection = ModelAPI_Tools::getDeflection(theResult);
1391 if (aDeflection < 0)
1392 aDeflection = PartSet_Tools::getDefaultDeflection(theResult);
1396 //******************************************************
1397 double getResultTransparency(const ResultPtr& theResult)
1399 double aTransparency = ModelAPI_Tools::getTransparency(theResult);
1400 if (aTransparency < 0)
1401 aTransparency = PartSet_Tools::getDefaultTransparency();
1402 return aTransparency;
1406 //******************************************************
1407 void PartSet_Module::customizePresentation(const ObjectPtr& theObject,
1408 const AISObjectPtr& thePrs) const
1410 if (mySketchMgr->isObjectOfSketch(theObject)) {
1411 mySketchMgr->customizeSketchPresentation(theObject, thePrs);
1414 ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
1415 if (aResult.get()) {
1416 std::vector<int> aColor;
1417 getResultColor(aResult, aColor);
1419 SessionPtr aMgr = ModelAPI_Session::get();
1420 if (aMgr->activeDocument() != aResult->document()) {
1421 QColor aQColor(aColor[0], aColor[1], aColor[2]);
1423 QColor::fromHsvF(aQColor.hueF(), aQColor.saturationF() / 3., aQColor.valueF());
1424 aColor[0] = aNewColor.red();
1425 aColor[1] = aNewColor.green();
1426 aColor[2] = aNewColor.blue();
1428 thePrs->setColor(aColor[0], aColor[1], aColor[2]);
1430 thePrs->setDeflection(getResultDeflection(aResult));
1432 thePrs->setTransparency(getResultTransparency(aResult));
1434 FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
1435 if (aFeature.get()) {
1436 if (aFeature->getKind() == SketchPlugin_Sketch::ID())
1437 thePrs->setWidth(2);
1443 //******************************************************
1444 ObjectPtr PartSet_Module::findPresentedObject(const AISObjectPtr& theAIS) const
1447 ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
1449 /// If last line finished on vertex the lines creation sequence has to be break
1450 ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
1452 ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
1453 // if there is an active widget, find the presented object in it
1454 if (!anActiveWidget)
1455 anActiveWidget = aPanel->preselectionWidget();
1457 ModuleBase_WidgetValidated* aWidgetValidated = dynamic_cast<ModuleBase_WidgetValidated*>
1459 if (aWidgetValidated)
1460 anObject = aWidgetValidated->findPresentedObject(theAIS);
1466 //******************************************************
1467 bool PartSet_Module::canBeShaded(Handle(AIS_InteractiveObject) theAIS) const
1469 bool aCanBeShaged = true;
1471 Handle(PartSet_ResultSketchPrs) aPrs = Handle(PartSet_ResultSketchPrs)::DownCast(theAIS);
1473 aCanBeShaged = false;
1475 return aCanBeShaged;
1478 //******************************************************
1479 void PartSet_Module::addObjectBrowserMenu(QMenu* theMenu) const
1481 QObjectPtrList aObjects = myWorkshop->selection()->selectedObjects();
1482 int aSelected = aObjects.size();
1483 SessionPtr aMgr = ModelAPI_Session::get();
1484 QAction* aActivatePartAction = myMenuMgr->action("ACTIVATE_PART_CMD");
1486 bool hasResult = false;
1487 bool hasFeature = false;
1488 bool hasParameter = false;
1489 bool hasCompositeOwner = false;
1490 bool hasResultInHistory = false;
1491 bool hasFolder = false;
1492 ModuleBase_Tools::checkObjects(aObjects, hasResult, hasFeature, hasParameter,
1493 hasCompositeOwner, hasResultInHistory, hasFolder);
1495 ModuleBase_Operation* aCurrentOp = myWorkshop->currentOperation();
1496 if (aSelected == 1) {
1497 ObjectPtr aObject = aObjects.first();
1499 ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObject);
1500 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObject);
1501 bool isPart = aPart.get() ||
1502 (aFeature.get() && (aFeature->getKind() == PartSetPlugin_Part::ID()));
1504 DocumentPtr aPartDoc;
1506 aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aFeature->firstResult());
1508 if (aPart.get()) // this may be null is Part feature is disabled
1509 aPartDoc = aPart->partDoc();
1511 theMenu->addAction(aActivatePartAction);
1512 aActivatePartAction->setEnabled((aMgr->activeDocument() != aPartDoc));
1514 } else if (aObject->document() == aMgr->activeDocument()) {
1515 if (hasParameter || hasFeature) {
1516 myMenuMgr->action("EDIT_CMD")->setEnabled(true);
1517 theMenu->addAction(myMenuMgr->action("EDIT_CMD"));
1518 if (aCurrentOp && aFeature.get()) {
1519 if (aCurrentOp->id().toStdString() == aFeature->getKind())
1520 myMenuMgr->action("EDIT_CMD")->setEnabled(false);
1527 myMenuMgr->action("EDIT_CMD")->setEnabled(aCurrentOp == 0);
1528 theMenu->addAction(myMenuMgr->action("EDIT_CMD"));
1529 theMenu->addSeparator();
1532 bool aNotDeactivate = (aCurrentOp == 0);
1533 if (!aNotDeactivate) {
1534 aActivatePartAction->setEnabled(false);
1538 //******************************************************
1539 #define EXPAND_PARENT(OBJ) \
1540 QModelIndex aObjIndex = aDataModel->objectIndex(OBJ); \
1541 if (aObjIndex.isValid()) { \
1542 QModelIndex aParent = aObjIndex.parent(); \
1543 int aCount = aDataModel->rowCount(aParent); \
1545 aTreeView->setExpanded(aParent, true); \
1548 //******************************************************
1549 void PartSet_Module::processEvent(const std::shared_ptr<Events_Message>& theMessage)
1551 if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_DOCUMENT_CHANGED)) {
1552 // Do not change activation of parts if an operation active
1553 static QStringList aAllowActivationList;
1554 if (aAllowActivationList.isEmpty())
1555 aAllowActivationList <<
1556 QString(PartSetPlugin_Part::ID().c_str()) <<
1557 QString(PartSetPlugin_Duplicate::ID().c_str()) <<
1558 QString(PartSetPlugin_Remove::ID().c_str());
1559 if (myWorkshop->currentOperation() &&
1560 (!aAllowActivationList.contains(myWorkshop->currentOperation()->id())))
1562 XGUI_Workshop* aWorkshop = getWorkshop();
1563 XGUI_DataTree* aTreeView = aWorkshop->objectBrowser()->treeView();
1564 QLabel* aLabel = aWorkshop->objectBrowser()->activeDocLabel();
1565 QPalette aPalet = aLabel->palette();
1567 SessionPtr aMgr = ModelAPI_Session::get();
1568 DocumentPtr aActiveDoc = aMgr->activeDocument();
1570 // Clear active part index if there is no Part documents
1571 // It could be not null if document was closed and opened a new
1572 // without closeDocument call
1573 if (aMgr->allOpenedDocuments().size() <= 1)
1574 myActivePartIndex = QModelIndex();
1576 XGUI_DataModel* aDataModel = aWorkshop->objectBrowser()->dataModel();
1577 QModelIndex aOldActive = myActivePartIndex;
1578 myActivePartIndex = aDataModel->documentRootIndex(aActiveDoc, 0);
1579 bool needUpdate = false;
1580 if (myActivePartIndex.isValid()) {
1581 needUpdate = aTreeView->isExpanded(myActivePartIndex);
1583 aTreeView->setExpanded(myActivePartIndex, true);
1585 if ((aOldActive != myActivePartIndex) && (aOldActive.isValid()))
1586 aTreeView->setExpanded(aOldActive, false);
1588 aLabel->setPalette(aPalet);
1589 aWorkshop->updateCommandStatus();
1591 // Update displayed objects in order to update active color
1592 XGUI_Displayer* aDisplayer = aWorkshop->displayer();
1593 QObjectPtrList aObjects = aDisplayer->displayedObjects();
1595 foreach(ObjectPtr aObj, aObjects) {
1596 aHidden = !aObj->data() || !aObj->data()->isValid() ||
1597 aObj->isDisabled() || (!aObj->isDisplayed());
1599 aDisplayer->redisplay(aObj, false);
1602 aDisplayer->updateViewer();
1603 // Update tree items if they are expanded
1605 aTreeView->viewport()->update(aTreeView->viewport()->rect());
1607 } else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_CREATED)) {
1608 std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aUpdMsg =
1609 std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
1610 std::set<ObjectPtr> aObjects = aUpdMsg->objects();
1612 ObjectPtr aConstrObj;
1613 ObjectPtr aResultObj;
1614 std::set<ObjectPtr>::const_iterator aIt;
1615 DocumentPtr aRootDoc = ModelAPI_Session::get()->moduleDocument();
1616 for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
1617 ObjectPtr aObject = (*aIt);
1618 if ((!aResultObj.get()) && (aObject->groupName() == ModelAPI_ResultBody::group())
1619 && (aObject->document() != aRootDoc))
1620 aResultObj = aObject;
1621 if ((!aConstrObj.get()) && (aObject->groupName() == ModelAPI_ResultConstruction::group())
1622 && (aObject->document() != aRootDoc))
1623 aConstrObj = aObject;
1624 if (aResultObj.get() && aConstrObj.get())
1628 if (aResultObj.get() || aConstrObj.get()) {
1629 XGUI_Workshop* aWorkshop = getWorkshop();
1630 XGUI_DataTree* aTreeView = aWorkshop->objectBrowser()->treeView();
1631 XGUI_DataModel* aDataModel = aWorkshop->objectBrowser()->dataModel();
1633 if (aResultObj.get()) {
1634 EXPAND_PARENT(aResultObj)
1636 if (aConstrObj.get()) {
1637 EXPAND_PARENT(aConstrObj)
1641 else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY)) {
1642 CompositeFeaturePtr aSketch = mySketchMgr->activeSketch();
1643 if (aSketch.get()) {
1644 ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
1645 if (PartSet_SketcherMgr::isSketchOperation(anOperation))
1646 mySketchMgr->previewSketchPlane()->createSketchPlane(aSketch, myWorkshop);
1651 //******************************************************
1652 void PartSet_Module::onTreeViewDoubleClick(const QModelIndex& theIndex)
1654 if (myWorkshop->currentOperation()) // Do not change activation of parts if an operation active
1656 SessionPtr aMgr = ModelAPI_Session::get();
1657 if (!theIndex.isValid()) {
1658 // It seems that this code is obsolete
1659 //aMgr->setActiveDocument(aMgr->moduleDocument());
1662 if (theIndex.column() != 1) // Use only first column
1665 XGUI_Workshop* aWorkshop = getWorkshop();
1666 XGUI_DataModel* aDataModel = aWorkshop->objectBrowser()->dataModel();
1667 // De not use non editable Indexes
1668 if ((aDataModel->flags(theIndex) & Qt::ItemIsSelectable) == 0)
1670 ObjectPtr aObj = aDataModel->object(theIndex);
1672 ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
1673 if (!aPart.get()) { // Probably this is Feature
1674 FeaturePtr aPartFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
1675 if (aPartFeature.get() && (aPartFeature->getKind() == PartSetPlugin_Part::ID())) {
1676 aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aPartFeature->firstResult());
1679 if (aPart.get()) { // if this is a part
1680 if (aPart->partDoc() == aMgr->activeDocument()) {
1681 myMenuMgr->activatePartSet();
1683 myMenuMgr->activatePart(aPart);
1688 //******************************************************
1689 void PartSet_Module::onViewCreated(ModuleBase_IViewWindow*)
1691 // z layer is created for all started operations in order to visualize operation AIS presentation
1693 Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext();
1694 if (aContext.IsNull())
1697 Handle(V3d_Viewer) aViewer = aContext->CurrentViewer();
1698 if (myVisualLayerId == 0) {
1699 if (myVisualLayerId == 0)
1700 aViewer->AddZLayer(myVisualLayerId);
1702 TColStd_SequenceOfInteger aZList;
1703 aViewer->GetAllZLayers(aZList);
1704 bool aFound = false;
1705 for (int i = 1; i <= aZList.Length(); i++) {
1706 if (aZList(i) == myVisualLayerId) {
1712 aViewer->AddZLayer(myVisualLayerId);
1714 // if there is an active operation with validated widget,
1715 // the filters of this widget should be activated in the created view
1716 myWorkshop->selectionActivate()->updateSelectionFilters();
1717 myWorkshop->selectionActivate()->updateSelectionModes();
1720 //******************************************************
1721 void PartSet_Module::widgetStateChanged(int thePreviousState)
1723 mySketchMgr->widgetStateChanged(thePreviousState);
1726 //******************************************************
1727 bool PartSet_Module::processEnter(const std::string& thePreviousAttributeID)
1729 return mySketchReentrantMgr->processEnter(thePreviousAttributeID);
1732 //******************************************************
1733 void PartSet_Module::beforeOperationStopped(ModuleBase_Operation* theOperation)
1735 if (PartSet_SketcherMgr::isSketchOperation(theOperation)) {
1736 mySketchMgr->stopSketch(theOperation);
1740 //******************************************************
1741 GeomShapePtr PartSet_Module::findShape(const AttributePtr& theAttribute)
1743 GeomShapePtr aGeomShape;
1745 ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
1746 if (anOperation && sketchMgr()->isNestedSketchOperation(anOperation)) {
1747 aGeomShape = PartSet_Tools::findShapeBy2DPoint(theAttribute, myWorkshop);
1752 //******************************************************
1753 AttributePtr PartSet_Module::findAttribute(const ObjectPtr& theObject,
1754 const GeomShapePtr& theGeomShape)
1756 AttributePtr anAttribute;
1757 GeomShapePtr aGeomShape = theGeomShape;
1758 if (!aGeomShape.get()) {
1759 // processing shape of result, e.g. sketch circle center is selected, this is a result
1760 // the geom shape is empty, the shape of result should be used
1761 ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
1762 if (aResult.get()) {
1763 aGeomShape = aResult->shape();
1767 if (aGeomShape.get()) {
1768 TopoDS_Shape aTDSShape = aGeomShape->impl<TopoDS_Shape>();
1769 std::pair<AttributePtr, int> anAttrAndIndex =
1770 PartSet_Tools::findAttributeBy2dPoint(theObject, aTDSShape, mySketchMgr->activeSketch());
1771 return anAttrAndIndex.first;
1776 //******************************************************
1777 std::shared_ptr<Events_Message> PartSet_Module::reentrantMessage()
1779 return sketchReentranceMgr()->reentrantMessage();
1782 //******************************************************
1783 void PartSet_Module::setReentrantPreSelection(const std::shared_ptr<Events_Message>& theMessage)
1785 sketchReentranceMgr()->setReentrantPreSelection(theMessage);
1788 //******************************************************
1789 void PartSet_Module::onChoiceChanged(ModuleBase_ModelWidget* theWidget,
1792 ModuleBase_WidgetChoice* aChoiceWidget = dynamic_cast<ModuleBase_WidgetChoice*>(theWidget);
1796 QString aChoiceTitle = aChoiceWidget->getPropertyPanelTitle(theIndex);
1797 if (!aChoiceTitle.isEmpty()) {
1798 ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
1801 ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
1803 aPanel->setWindowTitle(aChoiceTitle);
1807 //******************************************************
1808 XGUI_Workshop* PartSet_Module::getWorkshop() const
1810 XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(workshop());
1811 return aConnector->workshop();
1814 void PartSet_Module::setDefaultConstraintShown()
1816 myHasConstraintShown[PartSet_Tools::Geometrical] = true;
1817 myHasConstraintShown[PartSet_Tools::Dimensional] = true;
1818 myHasConstraintShown[PartSet_Tools::Expressions] = false;
1821 //******************************************************
1822 ModuleBase_ITreeNode* PartSet_Module::rootNode() const
1827 //******************************************************
1828 void PartSet_Module::disableCustomMode(ModuleBase_CustomizeFlag theMode) {
1829 myCustomPrs->disableCustomMode(theMode);
1832 //******************************************************
1833 void PartSet_Module::enableCustomModes() {
1834 myCustomPrs->enableCustomModes();