1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 #include "PartSet_SketcherReetntrantMgr.h"
4 #include "PartSet_Module.h"
5 #include "PartSet_SketcherMgr.h"
6 #include "PartSet_WidgetPoint2D.h"
8 #include "ModelAPI_Session.h"
10 #include <ModuleBase_IPropertyPanel.h>
11 #include <ModuleBase_OperationFeature.h>
12 #include <ModuleBase_ModelWidget.h>
13 #include <ModuleBase_ViewerPrs.h>
14 #include <ModuleBase_WidgetSelector.h>
16 #include <SketchPlugin_Feature.h>
17 #include <SketchPlugin_Line.h>
19 #include <XGUI_Workshop.h>
20 #include <XGUI_ModuleConnector.h>
21 #include <XGUI_OperationMgr.h>
23 PartSet_SketcherReetntrantMgr::PartSet_SketcherReetntrantMgr(ModuleBase_IWorkshop* theWorkshop)
24 : QObject(theWorkshop),
25 myWorkshop(theWorkshop),
26 myIsInternalEditOperation(false),
27 myLastOperationId(""),
28 myPreviousAttributeID(""),
29 myRestartingMode(RM_None)
33 PartSet_SketcherReetntrantMgr::~PartSet_SketcherReetntrantMgr()
37 ModuleBase_ModelWidget* PartSet_SketcherReetntrantMgr::activeWidget() const
39 ModuleBase_ModelWidget* aWidget = 0;
43 ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
45 ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
46 ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
47 if (myIsInternalEditOperation && (!anActiveWidget || !anActiveWidget->isViewerSelector())) {
48 // finds the first widget which can accept a value
49 QList<ModuleBase_ModelWidget*> aWidgets = aPanel->modelWidgets();
50 ModuleBase_ModelWidget* aFirstWidget = 0;
51 ModuleBase_ModelWidget* aWgt;
52 QList<ModuleBase_ModelWidget*>::const_iterator aWIt;
53 for (aWIt = aWidgets.begin(); aWIt != aWidgets.end() && !aFirstWidget; ++aWIt) {
55 if (aWgt->canSetValue())
59 aWidget = aFirstWidget;
65 bool PartSet_SketcherReetntrantMgr::operationCommitted(ModuleBase_Operation* theOperation)
67 bool aProcessed = false;
71 ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
75 FeaturePtr aFeature = aFOperation->feature();
76 std::shared_ptr<SketchPlugin_Feature> aSPFeature =
77 std::dynamic_pointer_cast<SketchPlugin_Feature>(aFeature);
78 if (aSPFeature && (myRestartingMode == RM_LastFeatureUsed ||
79 myRestartingMode == RM_EmptyFeatureUsed)) {
80 myLastOperationId = aFOperation->id().toStdString();
81 myLastFeature = myRestartingMode == RM_LastFeatureUsed ? aFOperation->feature() : FeaturePtr();
82 PartSet_Module* aModule = module();
83 if (!aModule->sketchMgr()->sketchSolverError()) {
84 if (!aFOperation->isEditOperation()) {
85 FeaturePtr anOperationFeature = aFOperation->feature();
86 if (anOperationFeature.get() != NULL) {
87 aModule->editFeature(anOperationFeature);
90 myIsInternalEditOperation = true;
91 // activate selection filters of the first widget in the viewer
92 onInternalActivateFirstWidgetSelection();
94 // activate the last active widget in the Property Panel
95 if (!myPreviousAttributeID.empty()) {
96 ModuleBase_Operation* anEditOperation = aModule->currentOperation();
97 if (anEditOperation) {
98 ModuleBase_IPropertyPanel* aPanel = aFOperation->propertyPanel();
99 ModuleBase_ModelWidget* aPreviousAttributeWidget = 0;
100 QList<ModuleBase_ModelWidget*> aWidgets = aPanel->modelWidgets();
101 for (int i = 0, aNb = aWidgets.size(); i < aNb && !aPreviousAttributeWidget; i++) {
102 if (aWidgets[i]->attributeID() == myPreviousAttributeID)
103 aPreviousAttributeWidget = aWidgets[i];
105 // If the current widget is a selector, do nothing, it processes the mouse press
106 if (aPreviousAttributeWidget && !aPreviousAttributeWidget->isViewerSelector())
107 aPreviousAttributeWidget->focusTo();
113 // the flag should be reset before start to do not react to the widget deactivate
114 myIsInternalEditOperation = false;
115 aModule->launchOperation(myLastOperationId.c_str());
116 breakOperationSequence();
123 breakOperationSequence();
128 void PartSet_SketcherReetntrantMgr::operationAborted(ModuleBase_Operation* theOperation)
133 if (myIsInternalEditOperation) {
134 // abort the created feature, which is currently edited
135 SessionPtr aMgr = ModelAPI_Session::get();
136 if (aMgr->hasModuleDocument() && aMgr->canUndo()) {
140 myIsInternalEditOperation = false;
141 breakOperationSequence();
144 bool PartSet_SketcherReetntrantMgr::processMouseMoved()
146 bool aProcessed = false;
150 if (myIsInternalEditOperation) {
151 PartSet_WidgetPoint2D* aPoint2DWdg = dynamic_cast<PartSet_WidgetPoint2D*>(module()->activeWidget());
152 if (aPoint2DWdg && aPoint2DWdg->canBeActivatedByMove()) {
153 ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
154 //if (operationMgr()->isApplyEnabled())
155 anOperation->commit();
162 bool PartSet_SketcherReetntrantMgr::processMousePressed()
164 return isActiveMgr() && myIsInternalEditOperation;
167 bool PartSet_SketcherReetntrantMgr::processMouseReleased()
169 bool aProcessed = false;
173 if (myIsInternalEditOperation) {
174 ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
175 //if (operationMgr()->isApplyEnabled())
176 anOperation->commit();
182 void PartSet_SketcherReetntrantMgr::propertyPanelDefined(ModuleBase_Operation* theOperation)
186 ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
190 ModuleBase_IPropertyPanel* aPanel = aFOperation->propertyPanel();
191 if (PartSet_SketcherMgr::isSketchOperation(aFOperation) && (aFOperation->isEditOperation())) {
192 // we have to manually activate the sketch label in edit mode
193 aPanel->activateWidget(aPanel->modelWidgets().first());
195 else if ((aFOperation->id() == myLastOperationId.c_str()) && myLastFeature) {
196 // Restart last operation type
197 ModuleBase_ModelWidget* aWgt = aPanel->activeWidget();
198 PartSet_WidgetPoint2D* aPoint2DWdg = dynamic_cast<PartSet_WidgetPoint2D*>(module()->activeWidget());
199 if (aPoint2DWdg && aPoint2DWdg->canBeActivatedByMove()) {
200 QList<ModuleBase_ViewerPrs> aSelection;
201 aSelection.append(ModuleBase_ViewerPrs(myLastFeature, TopoDS_Shape(), NULL));
202 if (aPoint2DWdg->setSelection(aSelection, true))
203 aPanel->activateNextWidget(aPoint2DWdg);
208 void PartSet_SketcherReetntrantMgr::noMoreWidgets(const std::string& thePreviousAttributeID)
213 ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
215 if (PartSet_SketcherMgr::isNestedSketchOperation(anOperation)) {
216 if (myRestartingMode != RM_Forbided) {
217 myRestartingMode = RM_LastFeatureUsed;
218 myPreviousAttributeID = thePreviousAttributeID;
220 XGUI_Workshop* aWorkshop = workshop();
221 XGUI_OperationMgr* anOpMgr = aWorkshop->operationMgr();
222 // do nothing if the feature can not be applyed
223 if (anOpMgr->isApplyEnabled())
224 anOperation->commit();
229 void PartSet_SketcherReetntrantMgr::vertexSelected()
234 ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
235 if (aOperation->id().toStdString() == SketchPlugin_Line::ID()) {
236 /// If last line finished on vertex the lines creation sequence has to be break
237 ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
238 ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
239 const QList<ModuleBase_ModelWidget*>& aWidgets = aPanel->modelWidgets();
240 QList<ModuleBase_ModelWidget*>::const_iterator anIt = aWidgets.begin(), aLast = aWidgets.end();
241 bool aFoundWidget = false;
242 bool aFoundObligatory = false;
243 for (; anIt != aLast && !aFoundObligatory; anIt++) {
245 aFoundWidget = *anIt == anActiveWidget;
247 aFoundObligatory = (*anIt)->isObligatory();
249 if (!aFoundObligatory)
250 myRestartingMode = RM_Forbided;
254 void PartSet_SketcherReetntrantMgr::enterReleased()
259 ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
260 (myWorkshop->currentOperation());
261 if (/*!aFOperation->isEditOperation() || */myIsInternalEditOperation)
262 myRestartingMode = RM_EmptyFeatureUsed;
265 bool PartSet_SketcherReetntrantMgr::canBeCommittedByPreselection()
267 return !isActiveMgr() || myRestartingMode == RM_None;
270 void PartSet_SketcherReetntrantMgr::onInternalActivateFirstWidgetSelection()
275 if (!myIsInternalEditOperation)
278 PartSet_Module* aModule = module();
279 ModuleBase_ModelWidget* aFirstWidget = aModule->activeWidget();
280 ModuleBase_IPropertyPanel* aPanel = aModule->currentOperation()->propertyPanel();
281 if (aFirstWidget != aPanel->activeWidget()) {
282 ModuleBase_WidgetSelector* aWSelector = dynamic_cast<ModuleBase_WidgetSelector*>(aFirstWidget);
284 aWSelector->activateSelectionAndFilters(true);
288 bool PartSet_SketcherReetntrantMgr::isActiveMgr() const
290 PartSet_SketcherMgr* aSketcherMgr = module()->sketchMgr();
291 ModuleBase_Operation* aCurrentOperation = myWorkshop->currentOperation();
292 return PartSet_SketcherMgr::isSketchOperation(aCurrentOperation) ||
293 PartSet_SketcherMgr::isNestedSketchOperation(aCurrentOperation);
296 void PartSet_SketcherReetntrantMgr::breakOperationSequence()
298 myLastOperationId = "";
299 myLastFeature = FeaturePtr();
300 myRestartingMode = RM_None;
303 XGUI_Workshop* PartSet_SketcherReetntrantMgr::workshop() const
305 XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myWorkshop);
306 return aConnector->workshop();
309 PartSet_Module* PartSet_SketcherReetntrantMgr::module() const
311 return dynamic_cast<PartSet_Module*>(myWorkshop->module());