]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_SketcherReetntrantMgr.cpp
Salome HOME
af2723111d3e85872fccf2dbe9691df9deeb02ef
[modules/shaper.git] / src / PartSet / PartSet_SketcherReetntrantMgr.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 #include "PartSet_SketcherReetntrantMgr.h"
4 #include "PartSet_Module.h"
5 #include "PartSet_SketcherMgr.h"
6 #include "PartSet_WidgetPoint2D.h"
7
8 #include "ModelAPI_Session.h"
9
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>
15
16 #include <SketchPlugin_Feature.h>
17 #include <SketchPlugin_Line.h>
18
19 #include <XGUI_Workshop.h>
20 #include <XGUI_ModuleConnector.h>
21 #include <XGUI_OperationMgr.h>
22
23 PartSet_SketcherReetntrantMgr::PartSet_SketcherReetntrantMgr(ModuleBase_IWorkshop* theWorkshop)
24 : QObject(theWorkshop),
25   myWorkshop(theWorkshop),
26   myRestartingMode(RM_None),
27   myIsFlagsBlocked(false),
28   myIsInternalEditOperation(false)
29 {
30 }
31
32 PartSet_SketcherReetntrantMgr::~PartSet_SketcherReetntrantMgr()
33 {
34 }
35
36 ModuleBase_ModelWidget* PartSet_SketcherReetntrantMgr::internalActiveWidget() const
37 {
38   ModuleBase_ModelWidget* aWidget = 0;
39   if (!isActiveMgr())
40     return aWidget;
41
42   ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
43   if (aOperation) {
44     ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
45     ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
46     if (myIsInternalEditOperation && (!anActiveWidget || !anActiveWidget->isViewerSelector())) {
47       // finds the first widget which can accept a value
48       QList<ModuleBase_ModelWidget*> aWidgets = aPanel->modelWidgets();
49       ModuleBase_ModelWidget* aFirstWidget = 0;
50       ModuleBase_ModelWidget* aWgt;
51       QList<ModuleBase_ModelWidget*>::const_iterator aWIt;
52       for (aWIt = aWidgets.begin(); aWIt != aWidgets.end() && !aFirstWidget; ++aWIt) {
53         aWgt = (*aWIt);
54         if (aWgt->canSetValue())
55           aFirstWidget = aWgt;
56       }
57       if (aFirstWidget)
58         aWidget = aFirstWidget;
59     }
60   }
61   return aWidget;
62 }
63
64 bool PartSet_SketcherReetntrantMgr::operationCommitted(ModuleBase_Operation* theOperation)
65 {
66   bool aProcessed = false;
67   if (!isActiveMgr())
68     return aProcessed;
69
70   aProcessed = myIsInternalEditOperation;
71   resetFlags();
72
73   return aProcessed;
74 }
75
76 void PartSet_SketcherReetntrantMgr::operationStarted(ModuleBase_Operation* theOperation)
77 {
78   if (!isActiveMgr())
79     return;
80
81   resetFlags();
82 }
83
84 void PartSet_SketcherReetntrantMgr::operationAborted(ModuleBase_Operation* theOperation)
85 {
86   if (!isActiveMgr())
87     return;
88
89   resetFlags();
90 }
91
92 bool PartSet_SketcherReetntrantMgr::processMouseMoved(ModuleBase_IViewWindow* /* theWnd*/,
93                                                       QMouseEvent* /* theEvent*/)
94 {
95   bool aProcessed = false;
96   if (!isActiveMgr())
97     return aProcessed;
98
99   if  (myIsInternalEditOperation) {
100     PartSet_WidgetPoint2D* aPoint2DWdg = dynamic_cast<PartSet_WidgetPoint2D*>(module()->activeWidget());
101     if (aPoint2DWdg && aPoint2DWdg->canBeActivatedByMove()) {
102       ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
103                                                          (myWorkshop->currentOperation());
104       FeaturePtr aLastFeature = myRestartingMode == RM_LastFeatureUsed ? aFOperation->feature() : FeaturePtr();
105       restartOperation();
106       aProcessed = true;
107
108       if (aLastFeature) {
109         ModuleBase_IPropertyPanel* aPanel = myWorkshop->currentOperation()->propertyPanel();
110         PartSet_WidgetPoint2D* aPoint2DWdg = dynamic_cast<PartSet_WidgetPoint2D*>(aPanel->activeWidget());
111         if (aPoint2DWdg && aPoint2DWdg->canBeActivatedByMove()) {
112           QList<ModuleBase_ViewerPrs> aSelection;
113           aSelection.append(ModuleBase_ViewerPrs(aLastFeature, TopoDS_Shape(), NULL));
114           if (aPoint2DWdg->setSelection(aSelection, true))
115             aPanel->activateNextWidget(aPoint2DWdg);
116         }
117       }
118     }
119   }
120   return aProcessed;
121 }
122
123 bool PartSet_SketcherReetntrantMgr::processMousePressed(ModuleBase_IViewWindow* /* theWnd*/,
124                                                         QMouseEvent* /* theEvent*/)
125 {
126   return isActiveMgr() && myIsInternalEditOperation;
127 }
128
129 bool PartSet_SketcherReetntrantMgr::processMouseReleased(ModuleBase_IViewWindow* theWnd,
130                                                          QMouseEvent* theEvent)
131 {
132   bool aProcessed = false;
133   if (!isActiveMgr())
134     return aProcessed;
135
136   if (myIsInternalEditOperation) {
137     ModuleBase_Operation* anOperation = myWorkshop->currentOperation();
138
139     ModuleBase_ModelWidget* anActiveWidget = anOperation->propertyPanel()->activeWidget();
140     if (!anActiveWidget || !anActiveWidget->isViewerSelector()) {
141       restartOperation();
142       aProcessed = true;
143
144       // fill the widget by the mouse event point
145       PartSet_WidgetPoint2D* aPoint2DWdg = dynamic_cast<PartSet_WidgetPoint2D*>(module()->activeWidget());
146       if (aPoint2DWdg) {
147         aPoint2DWdg->onMouseRelease(theWnd, theEvent);
148       }
149     }
150   }
151
152   return aProcessed;
153 }
154
155 void PartSet_SketcherReetntrantMgr::onWidgetActivated()
156 {
157   if (!isActiveMgr())
158     return;
159   if (!myIsInternalEditOperation)
160     return;
161
162   PartSet_Module* aModule = module();
163   ModuleBase_ModelWidget* aFirstWidget = aModule->activeWidget();
164   ModuleBase_IPropertyPanel* aPanel = aModule->currentOperation()->propertyPanel();
165   if (aFirstWidget != aPanel->activeWidget()) {
166     ModuleBase_WidgetSelector* aWSelector = dynamic_cast<ModuleBase_WidgetSelector*>(aFirstWidget);
167     if (aWSelector)
168       aWSelector->activateSelectionAndFilters(true);
169   }
170 }
171
172 void PartSet_SketcherReetntrantMgr::onNoMoreWidgets(const std::string& thePreviousAttributeID)
173 {
174   if (!isActiveMgr())
175     return;
176   XGUI_OperationMgr* anOpMgr = workshop()->operationMgr();
177   if (!anOpMgr->isApplyEnabled())
178     return;
179
180   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
181                                                        (myWorkshop->currentOperation());
182   if (aFOperation) {
183     if (PartSet_SketcherMgr::isNestedSketchOperation(aFOperation)) {
184       XGUI_OperationMgr* anOpMgr = workshop()->operationMgr();
185       if (myRestartingMode != RM_Forbided) {
186         myRestartingMode = RM_LastFeatureUsed;
187         startInternalEdit(thePreviousAttributeID);
188       }
189       else
190         aFOperation->commit();
191     }
192   }
193 }
194
195 void PartSet_SketcherReetntrantMgr::onVertexSelected()
196 {
197   if (!isActiveMgr())
198     return;
199
200   ModuleBase_Operation* aOperation = myWorkshop->currentOperation();
201   if (aOperation->id().toStdString() == SketchPlugin_Line::ID()) {
202     /// If last line finished on vertex the lines creation sequence has to be break
203     ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
204     ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
205     const QList<ModuleBase_ModelWidget*>& aWidgets = aPanel->modelWidgets();
206     QList<ModuleBase_ModelWidget*>::const_iterator anIt = aWidgets.begin(), aLast = aWidgets.end();
207     bool aFoundWidget = false;
208     bool aFoundObligatory = false;
209     for (; anIt != aLast && !aFoundObligatory; anIt++) {
210       if (!aFoundWidget)
211         aFoundWidget = *anIt == anActiveWidget;
212       else
213         aFoundObligatory = (*anIt)->isObligatory();
214     }
215     if (!aFoundObligatory)
216       myRestartingMode = RM_Forbided;
217   }
218 }
219
220 void PartSet_SketcherReetntrantMgr::onEnterReleased()
221 {
222   if (!isActiveMgr())
223     return;
224
225   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
226                                                       (myWorkshop->currentOperation());
227   if (myIsInternalEditOperation)
228     myRestartingMode = RM_EmptyFeatureUsed;
229 }
230
231 bool PartSet_SketcherReetntrantMgr::canBeCommittedByPreselection()
232 {
233   return !isActiveMgr() || myRestartingMode == RM_None;
234 }
235
236 bool PartSet_SketcherReetntrantMgr::isActiveMgr() const
237 {
238   PartSet_SketcherMgr* aSketcherMgr = module()->sketchMgr();
239   ModuleBase_Operation* aCurrentOperation = myWorkshop->currentOperation();
240   return PartSet_SketcherMgr::isSketchOperation(aCurrentOperation) ||
241          PartSet_SketcherMgr::isNestedSketchOperation(aCurrentOperation);
242 }
243
244 void PartSet_SketcherReetntrantMgr::startInternalEdit(const std::string& thePreviousAttributeID)
245 {
246   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
247                                                      (myWorkshop->currentOperation());
248
249   aFOperation->setEditOperation();
250   FeaturePtr anOperationFeature = aFOperation->feature();
251   if (anOperationFeature.get() != NULL) {
252
253     myIsInternalEditOperation = true;
254     // activate selection filters of the first widget in the viewer
255     onWidgetActivated();
256
257     // activate the last active widget in the Property Panel
258     if (!thePreviousAttributeID.empty()) {
259       ModuleBase_Operation* anEditOperation = module()->currentOperation();
260       if (anEditOperation) {
261         ModuleBase_IPropertyPanel* aPanel = aFOperation->propertyPanel();
262         ModuleBase_ModelWidget* aPreviousAttributeWidget = 0;
263         QList<ModuleBase_ModelWidget*> aWidgets = aPanel->modelWidgets();
264         for (int i = 0, aNb = aWidgets.size(); i < aNb && !aPreviousAttributeWidget; i++) {
265           if (aWidgets[i]->attributeID() == thePreviousAttributeID)
266             aPreviousAttributeWidget = aWidgets[i];
267         }
268         // If the current widget is a selector, do nothing, it processes the mouse press
269         if (aPreviousAttributeWidget && !aPreviousAttributeWidget->isViewerSelector())
270           aPreviousAttributeWidget->focusTo();
271       }
272     }
273   }
274 }
275
276 void PartSet_SketcherReetntrantMgr::restartOperation()
277 {
278   if (myIsInternalEditOperation) {
279     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>(
280                                                                   myWorkshop->currentOperation());
281     if (aFOperation) {
282       myIsFlagsBlocked = true;
283       aFOperation->commit();
284       module()->launchOperation(aFOperation->id());
285       myIsFlagsBlocked = false;
286       resetFlags();
287     }
288   }
289 }
290
291 void PartSet_SketcherReetntrantMgr::resetFlags()
292 {
293   if (!myIsFlagsBlocked) {
294     myIsInternalEditOperation = false;
295     myRestartingMode = RM_None;
296   }
297 }
298
299 XGUI_Workshop* PartSet_SketcherReetntrantMgr::workshop() const
300 {
301   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myWorkshop);
302   return aConnector->workshop();
303 }
304
305 PartSet_Module* PartSet_SketcherReetntrantMgr::module() const
306 {
307   return dynamic_cast<PartSet_Module*>(myWorkshop->module());
308 }