Salome HOME
#1189 Tab - Cancel - Enter validate not cancel: In case of disabled Apply button...
[modules/shaper.git] / src / XGUI / XGUI_WorkshopListener.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 #include "XGUI_WorkshopListener.h"
4 #include "XGUI_Workshop.h"
5 #include "XGUI_Displayer.h"
6 #include "XGUI_ErrorMgr.h"
7 #include "XGUI_OperationMgr.h"
8 #include "XGUI_SalomeConnector.h"
9 #include "XGUI_ActionsMgr.h"
10 #include "XGUI_PropertyPanel.h"
11 #include "XGUI_ModuleConnector.h"
12 #include "XGUI_QtEvents.h"
13
14 #ifndef HAVE_SALOME
15 #include <AppElements_Workbench.h>
16 #include <AppElements_Command.h>
17 #include <AppElements_MainMenu.h>
18 #include <AppElements_MainWindow.h>
19 #include <AppElements_MenuGroupPanel.h>
20 #include <AppElements_Button.h>
21 #endif
22
23 #include <ModuleBase_IModule.h>
24
25 #include <ModelAPI_Object.h>
26 #include <ModelAPI_Events.h>
27 #include <ModelAPI_Session.h>
28 #include <ModelAPI_Result.h>
29 #include <ModelAPI_Feature.h>
30 #include <ModelAPI_Data.h>
31 #include <ModelAPI_ResultBody.h>
32 #include <ModelAPI_ResultCompSolid.h>
33 #include <ModelAPI_Tools.h>
34
35 #include <Events_Loop.h>
36 #include <Events_Error.h>
37 #include <Events_LongOp.h>
38
39 #include <ModuleBase_IWorkshop.h>
40
41 #include <ModuleBase_Operation.h>
42 #include <ModuleBase_OperationDescription.h>
43 #include <ModuleBase_OperationFeature.h>
44 #include <ModuleBase_Tools.h>
45 #include <ModuleBase_IViewer.h>
46 #include <ModuleBase_FilterFactory.h>
47
48 #include <Config_FeatureMessage.h>
49 #include <Config_PointerMessage.h>
50 #include <Config_SelectionFilterMessage.h>
51 #include <Config_Keywords.h>
52
53 #include <QApplication>
54 #include <QMainWindow>
55 #include <QThread>
56 #include <QAction>
57
58 #ifdef _DEBUG
59 #include <QDebug>
60 #include <iostream>
61 #endif
62
63 //#define DEBUG_FEATURE_CREATED
64 //#define DEBUG_FEATURE_REDISPLAY
65 //#define DEBUG_FEATURE_UPDATED
66 //#define DEBUG_RESULT_COMPSOLID
67
68 #ifdef DEBUG_FEATURE_REDISPLAY
69 const std::string DebugFeatureKind = "Extrusion";
70 #endif
71
72 XGUI_WorkshopListener::XGUI_WorkshopListener(ModuleBase_IWorkshop* theWorkshop)
73   : myWorkshop(theWorkshop),
74     myUpdatePrefs(false)
75 {
76   XGUI_OperationMgr* anOperationMgr = workshop()->operationMgr();
77 }
78
79 //******************************************************
80 XGUI_WorkshopListener::~XGUI_WorkshopListener(void)
81 {
82 }
83
84 //******************************************************
85 void XGUI_WorkshopListener::initializeEventListening()
86 {
87   //Initialize event listening
88   Events_Loop* aLoop = Events_Loop::loop();
89   aLoop->registerListener(this, Events_Error::errorID());  //!< Listening application errors.
90   aLoop->registerListener(this, Events_Loop::eventByName(Config_FeatureMessage::GUI_EVENT()));
91   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OPERATION_LAUNCHED));
92   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
93   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_CREATED));
94   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
95   aLoop->registerListener(this, Events_LongOp::eventID());
96   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_PLUGIN_LOADED));
97   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_SELFILTER_LOADED));
98   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_ERROR_CHANGED));
99
100   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_UPDATE_VIEWER_BLOCKED));
101   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_UPDATE_VIEWER_UNBLOCKED));
102 }
103
104 //******************************************************
105 void XGUI_WorkshopListener::processEvent(const std::shared_ptr<Events_Message>& theMessage)
106 {
107   if (QApplication::instance()->thread() != QThread::currentThread()) {
108     #ifdef _DEBUG
109     std::cout << "XGUI_Workshop::processEvent: " << "Working in another thread." << std::endl;
110     #endif
111     SessionPtr aMgr = ModelAPI_Session::get();
112     PostponeMessageQtEvent* aPostponeEvent = new PostponeMessageQtEvent(theMessage);
113     QApplication::postEvent(this, aPostponeEvent);
114     return;
115   }
116
117   //A message to start feature creation received.
118   if (theMessage->eventID() == Events_Loop::loop()->eventByName(Config_FeatureMessage::GUI_EVENT())) {
119     std::shared_ptr<Config_FeatureMessage> aFeatureMsg =
120        std::dynamic_pointer_cast<Config_FeatureMessage>(theMessage);
121     if (!aFeatureMsg->isInternal()) {
122       addFeature(aFeatureMsg);
123     }
124   }
125   // Process creation of Part
126   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_CREATED)) {
127     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aUpdMsg =
128         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
129     onFeatureCreatedMsg(aUpdMsg);
130     if (myUpdatePrefs) {
131       XGUI_SalomeConnector* aSalomeConnector = workshop()->salomeConnector();
132       if (aSalomeConnector)
133         aSalomeConnector->createPreferences();
134       myUpdatePrefs = false;
135     }
136   }
137   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_PLUGIN_LOADED)) {
138     myUpdatePrefs = true;
139   }
140   // Redisplay feature
141   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY)) {
142     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aUpdMsg =
143         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
144     onFeatureRedisplayMsg(aUpdMsg);
145   }
146   //Update property panel on corresponding message. If there is no current operation (no
147   //property panel), or received message has different feature to the current - do nothing.
148   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_UPDATED)) {
149     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> anUpdateMsg =
150         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
151     onFeatureUpdatedMsg(anUpdateMsg);
152   } else if (theMessage->eventID() == Events_LongOp::eventID()) {
153     if (Events_LongOp::isPerformed()) {
154       QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
155     } else {
156       QApplication::restoreOverrideCursor();
157     }
158   }
159   //An operation passed by message. Start it, process and commit.
160   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OPERATION_LAUNCHED)) {
161     std::shared_ptr<Config_PointerMessage> aPartSetMsg =
162         std::dynamic_pointer_cast<Config_PointerMessage>(theMessage);
163     //myPropertyPanel->cleanContent();
164     ModuleBase_Operation* anOperation = (ModuleBase_Operation*) aPartSetMsg->pointer();
165     XGUI_OperationMgr* anOperationMgr = workshop()->operationMgr();
166
167     if (anOperationMgr->startOperation(anOperation)) {
168       ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>(anOperation);
169       if (aFOperation)
170         workshop()->propertyPanel()->updateContentWidget(aFOperation->feature());
171       if (!anOperation->getDescription()->hasXmlRepresentation()) {
172         if (anOperation->commit())
173           workshop()->updateCommandStatus();
174       }
175     }
176   } 
177   else if (theMessage->eventID() == Events_Loop::eventByName(EVENT_SELFILTER_LOADED)) {
178     std::shared_ptr<Config_SelectionFilterMessage> aMsg = 
179       std::dynamic_pointer_cast<Config_SelectionFilterMessage>(theMessage);
180     if (aMsg) {
181       ModuleBase_FilterFactory* aFactory = myWorkshop->selectionFilters();
182       if (!aMsg->attributeId().empty()) {
183         aFactory->assignFilter(aMsg->selectionFilterId(), aMsg->featureId(), aMsg->attributeId(),
184                                aMsg->parameters());
185       }
186     }
187   } else if (theMessage->eventID() == Events_Loop::eventByName(EVENT_UPDATE_VIEWER_BLOCKED)) {
188     // the viewer's update context will not happens until viewer updated is emitted
189       workshop()->displayer()->enableUpdateViewer(false);
190   } else if (theMessage->eventID() == Events_Loop::eventByName(EVENT_UPDATE_VIEWER_UNBLOCKED)) {
191     // the viewer's update context is unblocked, the viewer's update works
192     XGUI_Displayer* aDisplayer = workshop()->displayer();
193     aDisplayer->enableUpdateViewer(true);
194   } else if (theMessage->eventID() == Events_Loop::eventByName(EVENT_OBJECT_ERROR_CHANGED)) {
195     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aUpdMsg =
196         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
197     std::set<ObjectPtr> aObjects = aUpdMsg->objects();
198
199     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
200                                               (workshop()->operationMgr()->currentOperation());
201     bool aFeatureChanged = false;
202     if(aFOperation ) {
203       FeaturePtr aFeature = aFOperation->feature();
204       if (aFeature.get()) {
205         std::set<ObjectPtr>::const_iterator aIt;
206         for (aIt = aObjects.begin(); aIt != aObjects.end() && !aFeatureChanged; ++aIt) {
207           aFeatureChanged = ModelAPI_Feature::feature(*aIt) == aFeature;
208         }
209       }
210       if (aFeatureChanged)
211         workshop()->operationMgr()->onValidateOperation();
212     }
213   } else {
214     //Show error dialog if error message received.
215     std::shared_ptr<Events_Error> anAppError = std::dynamic_pointer_cast<Events_Error>(theMessage);
216     if (anAppError) {
217       emit errorOccurred(QString::fromLatin1(anAppError->description()));
218     }
219     return;
220   }
221 #ifndef HAVE_SALOME
222     SessionPtr aMgr = ModelAPI_Session::get();
223     AppElements_MainWindow* aMainWindow = workshop()->mainWindow();
224     if (aMgr->isModified() != aMainWindow->isModifiedState())
225       aMainWindow->setModifiedState(aMgr->isModified());
226 #endif
227 }
228
229 //******************************************************
230 void XGUI_WorkshopListener::onFeatureUpdatedMsg(
231                                      const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& theMsg)
232 {
233 #ifdef DEBUG_FEATURE_UPDATED
234   std::set<ObjectPtr> aObjects = theMsg->objects();
235   std::set<ObjectPtr>::const_iterator aIt;
236   QStringList anInfo;
237   for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
238     anInfo.append(ModuleBase_Tools::objectInfo((*aIt)));
239   }
240   QString anInfoStr = anInfo.join(";\t");
241   qDebug(QString("onFeatureUpdatedMsg: %1, %2").arg(aObjects.size()).arg(anInfoStr).toStdString().c_str());
242 #endif
243   std::set<ObjectPtr> aFeatures = theMsg->objects();
244   XGUI_OperationMgr* anOperationMgr = workshop()->operationMgr();
245   if (anOperationMgr->hasOperation()) {
246     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
247                                                       (anOperationMgr->currentOperation());
248     if (aFOperation) {
249       FeaturePtr aCurrentFeature = aFOperation->feature();
250       std::set<ObjectPtr>::const_iterator aIt;
251       for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) {
252         ObjectPtr aNewFeature = (*aIt);
253         if (aNewFeature == aCurrentFeature) {
254           workshop()->propertyPanel()->updateContentWidget(aCurrentFeature);
255           break;
256         }
257       }
258     }
259   }
260   //anOperationMgr->onValidateOperation();
261
262   //if (myObjectBrowser)
263   //  myObjectBrowser->processEvent(theMsg);
264 }
265
266 //******************************************************
267 void XGUI_WorkshopListener::onFeatureRedisplayMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& theMsg)
268 {
269   std::set<ObjectPtr> aObjects = theMsg->objects();
270   std::set<ObjectPtr>::const_iterator aIt;
271
272 #ifdef DEBUG_FEATURE_REDISPLAY
273   QStringList anInfo;
274   for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
275     anInfo.append(ModuleBase_Tools::objectInfo((*aIt)));
276   }
277   QString anInfoStr = anInfo.join(";\t");
278   qDebug(QString("onFeatureRedisplayMsg: %1, %2").arg(aObjects.size()).arg(anInfoStr).toStdString().c_str());
279 #endif
280
281   XGUI_Workshop* aWorkshop = workshop();
282   XGUI_Displayer* aDisplayer = aWorkshop->displayer();
283   bool aFirstVisualizedBody = false;
284
285   bool aRedisplayed = false;
286   for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
287     ObjectPtr aObj = (*aIt);
288
289     // Hide the object if it is invalid or concealed one
290     bool aHide = !aObj->data() || !aObj->data()->isValid() || 
291       aObj->isDisabled() || (!aObj->isDisplayed());
292     if (!aHide) { // check that this is not hidden result
293       ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
294       aHide = aRes && aRes->isConcealed();
295     }
296 #ifdef DEBUG_RESULT_COMPSOLID
297     ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
298     if (aRes.get()) {
299       ResultCompSolidPtr aCompSolidRes = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(aRes);
300       if (aCompSolidRes.get()) {
301           qDebug(QString("COMPSOLID, numberOfSubs = %1").arg(aCompSolidRes->numberOfSubs()).toStdString().c_str());
302       }
303       if (ModelAPI_Tools::compSolidOwner(aRes))
304         qDebug("COMPSOLID sub-object");
305     }
306 #endif
307     #ifdef DEBUG_FEATURE_REDISPLAY
308       QString anObjInfo = ModuleBase_Tools::objectInfo((aObj));
309       FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
310       if (aFeature.get()) {
311         std::string aKind = aFeature->getKind();
312         if (aKind == DebugFeatureKind) {
313           qDebug(QString("visible=%1, hide=%2 : display= %2").arg(aDisplayer->isVisible(aObj))
314                                             .arg(aHide).arg(anObjInfo).toStdString().c_str());
315         }
316       }
317     #endif
318     if (aHide) {
319       aRedisplayed = aDisplayer->erase(aObj, false) || aRedisplayed;
320       #ifdef DEBUG_FEATURE_REDISPLAY
321         // Redisplay the visible object or the object of the current operation
322         bool isVisibleObject = aDisplayer->isVisible(aObj);
323
324         QString anObjInfo = ModuleBase_Tools::objectInfo((aObj));
325         //qDebug(QString("visible=%1 : erase  = %2").arg(isVisibleObject).arg(anObjInfo).toStdString().c_str());
326       #endif
327     }
328     else {
329       // Redisplay the visible object or the object of the current operation
330       bool isVisibleObject = aDisplayer->isVisible(aObj);
331       #ifdef DEBUG_FEATURE_REDISPLAY
332         QString anObjInfo = ModuleBase_Tools::objectInfo((aObj));
333         //qDebug(QString("visible=%1 : display= %2").arg(isVisibleObject).arg(anObjInfo).toStdString().c_str());
334       #endif
335
336       if (isVisibleObject)  { // redisplay visible object
337         //displayObject(aObj);  // In order to update presentation
338         // in order to avoid the check whether the object can be redisplayed, the exact method
339         // of redisplay is called. This modification is made in order to have the line is updated
340         // by creation of a horizontal constraint on the line by preselection
341         if (ModelAPI_Tools::hasSubResults(std::dynamic_pointer_cast<ModelAPI_Result>(aObj))) {
342           aRedisplayed = aDisplayer->erase(aObj, false) || aRedisplayed;
343         }
344         else {
345           aRedisplayed = aDisplayer->redisplay(aObj, false) || aRedisplayed;
346           // Deactivate object of current operation from selection
347           aWorkshop->deactivateActiveObject(aObj, false);
348         }
349       } else { // display object if the current operation has it
350         if (displayObject(aObj, aFirstVisualizedBody)) {
351           aRedisplayed = true;
352           // Deactivate object of current operation from selection
353           aWorkshop->deactivateActiveObject(aObj, false);
354         }
355       }
356     }
357   }
358   if (aRedisplayed) {
359     customizeCurrentObject();
360     //VSV FitAll updated viewer by it self
361     if (aFirstVisualizedBody)
362       myWorkshop->viewer()->fitAll();
363     else 
364       aDisplayer->updateViewer();
365   }
366 }
367 //******************************************************
368 void XGUI_WorkshopListener::onFeatureCreatedMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& theMsg)
369 {
370   std::set<ObjectPtr> aObjects = theMsg->objects();
371   std::set<ObjectPtr>::const_iterator aIt;
372 #ifdef DEBUG_FEATURE_CREATED
373   QStringList anInfo;
374   for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
375     anInfo.append(ModuleBase_Tools::objectInfo((*aIt)));
376   }
377   QString anInfoStr = anInfo.join(";\t");
378   qDebug(QString("onFeatureCreatedMsg: %1, %2").arg(aObjects.size()).arg(anInfoStr).toStdString().c_str());
379 #endif
380
381   bool aFirstVisualizedBody = false;
382
383   //bool aHasPart = false;
384   bool aDisplayed = false;
385   for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
386     ObjectPtr anObject = *aIt;
387
388 #ifdef DEBUG_RESULT_COMPSOLID
389     ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
390     if (aRes.get()) {
391       ResultCompSolidPtr aCompSolidRes = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(aRes);
392       if (aCompSolidRes.get()) {
393           qDebug(QString("COMPSOLID, numberOfSubs = %1").arg(aCompSolidRes->numberOfSubs()).toStdString().c_str());
394       }
395       if (ModelAPI_Tools::compSolidOwner(aRes))
396         qDebug("COMPSOLID sub-object");
397     }
398 #endif
399     // the validity of the data should be checked here in order to avoid display of the objects,
400     // which were created, then deleted, but flush for the creation event happens after that
401     // we should not display disabled objects
402     bool aHide = !anObject->data()->isValid() || 
403                  anObject->isDisabled() ||
404                  !anObject->isDisplayed();
405     if (!aHide) {
406       // setDisplayed has to be called in order to synchronize internal state of the object 
407       // with list of displayed objects
408       if (myWorkshop->module()->canDisplayObject(anObject)) {
409         anObject->setDisplayed(true);
410         aDisplayed = displayObject(*aIt, aFirstVisualizedBody);
411       } else 
412         anObject->setDisplayed(false);
413     }
414   }
415
416   //if (myObjectBrowser)
417   //  myObjectBrowser->processEvent(theMsg);
418   if (aDisplayed) {
419     customizeCurrentObject();
420     //VSV FitAll updated viewer by it self
421     if (aFirstVisualizedBody)
422       myWorkshop->viewer()->fitAll();
423     else
424       workshop()->displayer()->updateViewer();
425   }
426   //if (aHasPart) { // TODO: Avoid activate last part on loading of document
427   //  activateLastPart();
428   //}
429 }
430
431 bool XGUI_WorkshopListener::event(QEvent * theEvent)
432 {
433   PostponeMessageQtEvent* aPostponedEv = dynamic_cast<PostponeMessageQtEvent*>(theEvent);
434   if (aPostponedEv) {
435     std::shared_ptr<Events_Message> aEventPtr = aPostponedEv->postponedMessage();
436     processEvent(aEventPtr);
437     return true;
438   }
439   return false;
440 }
441
442 void XGUI_WorkshopListener::addFeature(const std::shared_ptr<Config_FeatureMessage>& theMessage)
443 {
444   if (!theMessage) {
445 #ifdef _DEBUG
446     qDebug() << "XGUI_WorkshopListener::addFeature: NULL message.";
447 #endif
448     return;
449   }
450   ActionInfo aFeatureInfo;
451   aFeatureInfo.initFrom(theMessage);
452
453   XGUI_Workshop* aWorkshop = workshop();
454
455   QString aWchName = QString::fromStdString(theMessage->workbenchId());
456   QStringList aNestedFeatures =
457       QString::fromStdString(theMessage->nestedFeatures()).split(" ", QString::SkipEmptyParts);
458   QString aDocKind = QString::fromStdString(theMessage->documentKind());
459   QList<QAction*> aNestedActList;
460   bool isColumnButton = !aNestedFeatures.isEmpty();
461   if (isColumnButton) {
462     QString aNestedActions = QString::fromStdString(theMessage->actionsWhenNested());
463     XGUI_OperationMgr* anOperationMgr = aWorkshop->operationMgr();
464     XGUI_ActionsMgr* anActionsMgr = aWorkshop->actionsMgr();
465     if (aNestedActions.contains(FEATURE_WHEN_NESTED_ACCEPT)) {
466       QAction* anAction = anActionsMgr->operationStateAction(XGUI_ActionsMgr::AcceptAll, NULL);
467       connect(anAction, SIGNAL(triggered()), anOperationMgr, SLOT(commitAllOperations()));
468       aNestedActList << anAction;
469     }
470     if (aNestedActions.contains(FEATURE_WHEN_NESTED_ABORT)) {
471       QAction* anAction = anActionsMgr->operationStateAction(XGUI_ActionsMgr::AbortAll, NULL);
472       connect(anAction, SIGNAL(triggered()), anOperationMgr, SLOT(abortAllOperations()));
473       aNestedActList << anAction;
474     }
475   }
476
477 #ifdef HAVE_SALOME
478   XGUI_SalomeConnector* aSalomeConnector = aWorkshop->salomeConnector();
479   QAction* aAction;
480   if (isColumnButton) {
481     aAction = aSalomeConnector->addFeatureOfNested(aWchName, aFeatureInfo, aNestedActList);
482   } else {
483     //Issue #650: in the SALOME mode the tooltip should be same as text
484     aFeatureInfo.toolTip = aFeatureInfo.text;
485     aAction = aSalomeConnector->addFeature(aWchName, aFeatureInfo);
486   }
487   aSalomeConnector->setNestedActions(aFeatureInfo.id, aNestedFeatures);
488   aSalomeConnector->setDocumentKind(aFeatureInfo.id, aDocKind);
489
490   aWorkshop->actionsMgr()->addCommand(aAction);
491   aWorkshop->module()->actionCreated(aAction);
492 #else 
493   //Find or create Workbench
494   AppElements_MainMenu* aMenuBar = aWorkshop->mainWindow()->menuObject();
495   AppElements_Workbench* aPage = aMenuBar->findWorkbench(aWchName);
496   if (!aPage) {
497     aPage = aWorkshop->addWorkbench(aWchName);
498   }
499   //Find or create Group
500   QString aGroupName = QString::fromStdString(theMessage->groupId());
501   AppElements_MenuGroupPanel* aGroup = aPage->findGroup(aGroupName);
502   if (!aGroup) {
503     aGroup = aPage->addGroup(aGroupName);
504   }
505   // Check if hotkey sequence is already defined:
506   XGUI_ActionsMgr* anActionsMgr = aWorkshop->actionsMgr();
507   QKeySequence aHotKey = anActionsMgr->registerShortcut(aFeatureInfo.shortcut);
508   if(aHotKey != aFeatureInfo.shortcut) {
509     aFeatureInfo.shortcut = aHotKey;
510   }
511   // Create feature...
512   AppElements_Command* aCommand = aGroup->addFeature(aFeatureInfo,
513                                                       aDocKind,
514                                                       aNestedFeatures);
515   // Enrich created button with accept/abort buttons if necessary
516   AppElements_Button* aButton = aCommand->button();
517   if (aButton->isColumnButton()) {
518     aButton->setAdditionalButtons(aNestedActList);
519   }
520   aWorkshop->actionsMgr()->addCommand(aCommand);
521   aWorkshop->module()->actionCreated(aCommand);
522 #endif
523 }
524
525
526 //**************************************************************
527 bool XGUI_WorkshopListener::displayObject(ObjectPtr theObj, bool& theFirstVisualizedBody)
528 {
529 #ifdef DEBUG_RESULT_COMPSOLID
530   ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(theObj);
531   if (aRes.get() && (ModelAPI_Tools::hasSubResults(aRes) || ModelAPI_Tools::compSolidOwner(aRes))) {
532     ResultCompSolidPtr aCompSolidRes = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(aRes);
533     if (aCompSolidRes.get()) {
534       qDebug("COMPSOLID: displayObject");
535     }
536   }
537 #endif
538
539   bool aDisplayed = false;
540   XGUI_Workshop* aWorkshop = workshop();
541   // do not display the object if it has sub objects. They should be displayed separately.
542   if (!aWorkshop->module()->canDisplayObject(theObj) ||
543       ModelAPI_Tools::hasSubResults(std::dynamic_pointer_cast<ModelAPI_Result>(theObj)))
544     return aDisplayed;
545
546   XGUI_Displayer* aDisplayer = aWorkshop->displayer();
547   ResultBodyPtr aBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(theObj);
548   if (aBody.get() != NULL) {
549     int aNb = aDisplayer->objectsCount();
550     aDisplayed = aDisplayer->display(theObj, false);
551     if (aNb == 0)
552       theFirstVisualizedBody = true;
553   } else 
554     aDisplayed = aDisplayer->display(theObj, false);
555
556   return aDisplayed;
557 }
558
559 bool XGUI_WorkshopListener::customizeCurrentObject()
560 {
561   bool aCustomized = false;
562   XGUI_OperationMgr* anOperationMgr = workshop()->operationMgr();
563   if (anOperationMgr->hasOperation()) {
564     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
565                                                       (anOperationMgr->currentOperation());
566     if (aFOperation) {
567       FeaturePtr aCurrentFeature = aFOperation->feature();
568       if (aCurrentFeature.get())
569         aCustomized = myWorkshop->module()->customizeObject(aCurrentFeature, false);
570     }
571   }
572   return aCustomized;
573 }
574
575 XGUI_Workshop* XGUI_WorkshopListener::workshop() const
576 {
577   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myWorkshop);
578   return aConnector->workshop();
579 }