Salome HOME
Merge branch 'Dev_1.1.0' of newgeom:newgeom.git into Dev_1.1.0
[modules/shaper.git] / src / XGUI / XGUI_Workshop.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 //#include "XGUI_Constants.h"
4 #include "XGUI_Tools.h"
5 #include "XGUI_Workshop.h"
6 #include "XGUI_SelectionMgr.h"
7 #include "XGUI_Selection.h"
8 #include "XGUI_ObjectsBrowser.h"
9 #include "XGUI_Displayer.h"
10 #include "XGUI_OperationMgr.h"
11 #include "XGUI_SalomeConnector.h"
12 #include "XGUI_ActionsMgr.h"
13 #include "XGUI_ErrorDialog.h"
14 #include "XGUI_ViewerProxy.h"
15 #include "XGUI_PropertyPanel.h"
16 #include "XGUI_ContextMenuMgr.h"
17 #include "XGUI_ModuleConnector.h"
18 #include <XGUI_QtEvents.h>
19 #include <XGUI_HistoryMenu.h>
20
21 #include <AppElements_Workbench.h>
22 #include <AppElements_Viewer.h>
23 #include <AppElements_Command.h>
24 #include <AppElements_MainMenu.h>
25 #include <AppElements_MainWindow.h>
26 #include <AppElements_MenuGroupPanel.h>
27 #include <AppElements_Button.h>
28
29 #include <ModuleBase_IModule.h>
30 #include <ModuleBase_Preferences.h>
31
32 #include <ModelAPI_Events.h>
33 #include <ModelAPI_Session.h>
34 #include <ModelAPI_Feature.h>
35 #include <ModelAPI_Data.h>
36 #include <ModelAPI_AttributeDocRef.h>
37 #include <ModelAPI_Object.h>
38 #include <ModelAPI_Validator.h>
39 #include <ModelAPI_ResultGroup.h>
40 #include <ModelAPI_ResultConstruction.h>
41 #include <ModelAPI_ResultBody.h>
42 #include <ModelAPI_AttributeIntArray.h>
43 #include <ModelAPI_ResultParameter.h>
44
45 //#include <PartSetPlugin_Part.h>
46
47 #include <Events_Loop.h>
48 #include <Events_Error.h>
49 #include <Events_LongOp.h>
50
51 #include <ModuleBase_Operation.h>
52 #include <ModuleBase_Operation.h>
53 #include <ModuleBase_OperationDescription.h>
54 #include <ModuleBase_SelectionValidator.h>
55 #include <ModuleBase_WidgetFactory.h>
56 #include <ModuleBase_Tools.h>
57 #include <ModuleBase_IViewer.h>
58 #include <ModuleBase_FilterFactory.h>
59 #include <ModuleBase_PageBase.h>
60 #include <ModuleBase_Tools.h>
61
62 #include <Config_Common.h>
63 #include <Config_FeatureMessage.h>
64 #include <Config_PointerMessage.h>
65 #include <Config_ModuleReader.h>
66 #include <Config_PropManager.h>
67 #include <Config_SelectionFilterMessage.h>
68
69 #include <QApplication>
70 #include <QFileDialog>
71 #include <QMessageBox>
72 #include <QMdiSubWindow>
73 #include <QPushButton>
74 #include <QDockWidget>
75 #include <QLayout>
76 #include <QThread>
77 #include <QObject>
78 #include <QMenu>
79 #include <QToolButton>
80 #include <QAction>
81 #include <QDialog>
82 #include <QDialogButtonBox>
83 #include <QHBoxLayout>
84 #include <QtxColorButton.h>
85
86 #ifdef _DEBUG
87 #include <QDebug>
88 #include <iostream>
89 #endif
90
91 #ifdef WIN32
92 #include <windows.h>
93 #else
94 #include <dlfcn.h>
95 #endif
96
97 //#define DEBUG_FEATURE_CREATED
98 //#define DEBUG_FEATURE_REDISPLAY
99
100 QMap<QString, QString> XGUI_Workshop::myIcons;
101
102
103 QIcon XGUI_Workshop::featureIcon(const FeaturePtr& theFeature)
104 {
105   QIcon anIcon;
106
107   std::string aKind = theFeature->getKind();
108   QString aId(aKind.c_str());
109   if (!myIcons.contains(aId))
110     return anIcon;
111
112   QString anIconString = myIcons[aId];
113
114   ModelAPI_ExecState aState = theFeature->data()->execState();
115   switch(aState) {
116     case ModelAPI_StateDone:
117     case ModelAPI_StateNothing: {
118       anIcon = QIcon(anIconString);
119     }
120     break;
121     case ModelAPI_StateMustBeUpdated: {
122       anIcon = ModuleBase_Tools::lighter(anIconString);
123     }
124     break;
125     case ModelAPI_StateExecFailed: {
126       anIcon = ModuleBase_Tools::composite(":pictures/exec_state_failed.png", anIconString);
127     }
128     break;
129     case ModelAPI_StateInvalidArgument: {
130       anIcon = ModuleBase_Tools::composite(":pictures/exec_state_invalid_parameters.png",
131                                            anIconString);
132     }
133     break;
134     default: break;  
135   }
136   return anIcon;  
137 }
138
139 XGUI_Workshop::XGUI_Workshop(XGUI_SalomeConnector* theConnector)
140     : QObject(),
141       myCurrentDir(QString()),
142       myModule(NULL),
143       mySalomeConnector(theConnector),
144       myPropertyPanel(0),
145       myObjectBrowser(0),
146       myDisplayer(0),
147       myUpdatePrefs(false),
148       myPartActivating(false),
149       myIsLoadingData(false)
150 {
151   myMainWindow = mySalomeConnector ? 0 : new AppElements_MainWindow();
152
153   myDisplayer = new XGUI_Displayer(this);
154
155   mySelector = new XGUI_SelectionMgr(this);
156   //connect(mySelector, SIGNAL(selectionChanged()), this, SLOT(updateModuleCommands()));
157
158   myOperationMgr = new XGUI_OperationMgr(this);
159   myActionsMgr = new XGUI_ActionsMgr(this);
160   myErrorDlg = new XGUI_ErrorDialog(myMainWindow);
161   myContextMenuMgr = new XGUI_ContextMenuMgr(this);
162   connect(myContextMenuMgr, SIGNAL(actionTriggered(const QString&, bool)), this,
163           SLOT(onContextMenuCommand(const QString&, bool)));
164
165   myViewerProxy = new XGUI_ViewerProxy(this);
166   connect(myViewerProxy, SIGNAL(selectionChanged()),
167           myActionsMgr,  SLOT(updateOnViewSelection()));
168
169   myModuleConnector = new XGUI_ModuleConnector(this);
170
171   connect(myOperationMgr, SIGNAL(operationStarted(ModuleBase_Operation*)), 
172           SLOT(onOperationStarted(ModuleBase_Operation*)));
173   connect(myOperationMgr, SIGNAL(operationResumed(ModuleBase_Operation*)),
174           SLOT(onOperationResumed(ModuleBase_Operation*)));
175   connect(myOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)),
176           SLOT(onOperationStopped(ModuleBase_Operation*)));
177   connect(myOperationMgr, SIGNAL(operationCommitted(ModuleBase_Operation*)), 
178           SLOT(onOperationCommitted(ModuleBase_Operation*)));
179   connect(myOperationMgr, SIGNAL(operationAborted(ModuleBase_Operation*)), 
180           SLOT(onOperationAborted(ModuleBase_Operation*)));
181   connect(myMainWindow, SIGNAL(exitKeySequence()), SLOT(onExit()));
182   connect(this, SIGNAL(errorOccurred(const QString&)), myErrorDlg, SLOT(addError(const QString&)));
183 }
184
185 //******************************************************
186 XGUI_Workshop::~XGUI_Workshop(void)
187 {
188   delete myDisplayer;
189 }
190
191 //******************************************************
192 void XGUI_Workshop::startApplication()
193 {
194   initMenu();
195
196   Config_PropManager::registerProp("Plugins", "default_path", "Default Path",
197                                    Config_Prop::Directory, "");
198
199   //Initialize event listening
200   Events_Loop* aLoop = Events_Loop::loop();
201   aLoop->registerListener(this, Events_Error::errorID());  //!< Listening application errors.
202   aLoop->registerListener(this, Events_Loop::eventByName(Config_FeatureMessage::GUI_EVENT()));
203   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OPERATION_LAUNCHED));
204   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
205   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_CREATED));
206   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
207   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_DELETED));
208   aLoop->registerListener(this, Events_LongOp::eventID());
209   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_PLUGIN_LOADED));
210   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_DOCUMENT_CHANGED));
211   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_TOSHOW));
212   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_TOHIDE));
213   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_SELFILTER_LOADED));
214
215   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_UPDATE_VIEWER_BLOCKED));
216   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_UPDATE_VIEWER_UNBLOCKED));
217
218   registerValidators();
219
220   // Calling of  loadCustomProps before activating module is required
221   // by Config_PropManger to restore user-defined path to plugins
222   ModuleBase_Preferences::loadCustomProps();
223   activateModule();
224   if (myMainWindow) {
225     myMainWindow->show();
226     updateCommandStatus();
227   }
228   
229   onNew();
230
231   emit applicationStarted();
232 }
233
234 //******************************************************
235 void XGUI_Workshop::initMenu()
236 {
237   myContextMenuMgr->createActions();
238
239   if (isSalomeMode()) {
240     // Create only Undo, Redo commands
241     QAction* aAction = salomeConnector()->addDesktopCommand("UNDO_CMD", tr("Undo"),
242                                                          tr("Undo last command"),
243                                                          QIcon(":pictures/undo.png"),
244                                                          QKeySequence::Undo, false, "MEN_DESK_EDIT");
245     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onUndo()));
246     addHistoryMenu(aAction, SIGNAL(updateUndoHistory(const QList<ActionInfo>&)), SLOT(onUndo(int)));
247
248     aAction = salomeConnector()->addDesktopCommand("REDO_CMD", tr("Redo"), tr("Redo last command"),
249                                                 QIcon(":pictures/redo.png"), QKeySequence::Redo,
250                                                 false, "MEN_DESK_EDIT");
251     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onRedo()));
252     addHistoryMenu(aAction, SIGNAL(updateRedoHistory(const QList<ActionInfo>&)), SLOT(onRedo(int)));
253
254     salomeConnector()->addDesktopMenuSeparator("MEN_DESK_EDIT");
255     aAction = salomeConnector()->addDesktopCommand("REBUILD_CMD", tr("Rebuild"), tr("Rebuild data objects"),
256                                                 QIcon(":pictures/rebuild.png"), QKeySequence(),
257                                                 false, "MEN_DESK_EDIT");
258     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onRebuild()));
259     salomeConnector()->addDesktopMenuSeparator("MEN_DESK_EDIT");
260
261     aAction = salomeConnector()->addDesktopCommand("SAVEAS_CMD", tr("Export NewGeom..."), tr("Export the current document into a NewGeom file"),
262                                                 QIcon(), QKeySequence(),
263                                                 false, "MEN_DESK_FILE");
264     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onSaveAs()));
265
266     aAction = salomeConnector()->addDesktopCommand("OPEN_CMD", tr("Import NewGeom..."), tr("Import a NewGeom file"),
267                                                 QIcon(), QKeySequence(),
268                                                 false, "MEN_DESK_FILE");
269     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onOpen()));
270     salomeConnector()->addDesktopMenuSeparator("MEN_DESK_FILE");
271
272     return;
273   }
274   // File commands group
275   AppElements_MenuGroupPanel* aGroup = myMainWindow->menuObject()->generalPage();
276
277   AppElements_Command* aCommand;
278
279   aCommand = aGroup->addFeature("SAVE_CMD", tr("Save..."), tr("Save the document"),
280                                 QIcon(":pictures/save.png"), QKeySequence::Save);
281   aCommand->connectTo(this, SLOT(onSave()));
282   //aCommand->disable();
283
284   QString aUndoId = "UNDO_CMD";
285   aCommand = aGroup->addFeature(aUndoId, tr("Undo"), tr("Undo last command"),
286                                 QIcon(":pictures/undo.png"), QKeySequence::Undo);
287   aCommand->connectTo(this, SLOT(onUndo()));
288   AppElements_Button* aUndoButton = qobject_cast<AppElements_Button*>(aGroup->widget(aUndoId));
289   addHistoryMenu(aUndoButton,
290                  SIGNAL(updateUndoHistory(const QList<ActionInfo>&)),
291                  SLOT(onUndo(int)));
292
293   QString aRedoId = "REDO_CMD";
294   aCommand = aGroup->addFeature(aRedoId, tr("Redo"), tr("Redo last command"),
295                                 QIcon(":pictures/redo.png"), QKeySequence::Redo);
296   aCommand->connectTo(this, SLOT(onRedo()));
297   AppElements_Button* aRedoButton = qobject_cast<AppElements_Button*>(aGroup->widget(aRedoId));
298   addHistoryMenu(aRedoButton,
299                  SIGNAL(updateRedoHistory(const QList<ActionInfo>&)),
300                  SLOT(onRedo(int)));
301
302   aCommand = aGroup->addFeature("REBUILD_CMD", tr("Rebuild"), tr("Rebuild data objects"),
303     QIcon(":pictures/rebuild.png"), QKeySequence());
304   aCommand->connectTo(this, SLOT(onRebuild()));
305
306   aCommand = aGroup->addFeature("SAVEAS_CMD", tr("Save as..."), tr("Save the document into a file"),
307                                 QIcon(":pictures/save.png"), QKeySequence());
308   aCommand->connectTo(this, SLOT(onSaveAs()));
309   //aCommand->disable();
310
311   aCommand = aGroup->addFeature("OPEN_CMD", tr("Open..."), tr("Open a new document"),
312                                 QIcon(":pictures/open.png"), QKeySequence::Open);
313   aCommand->connectTo(this, SLOT(onOpen()));
314
315   //aCommand = aGroup->addFeature("NEW_CMD", tr("New"), tr("Create a new document"),
316   //                              QIcon(":pictures/new.png"), QKeySequence::New);
317   //aCommand->connectTo(this, SLOT(onNew()));
318
319   aCommand = aGroup->addFeature("PREF_CMD", tr("Preferences"), tr("Edit preferences"),
320                                 QIcon(":pictures/preferences.png"), QKeySequence::Preferences);
321   aCommand->connectTo(this, SLOT(onPreferences()));
322
323   aCommand = aGroup->addFeature("EXIT_CMD", tr("Exit"), tr("Exit application"),
324                                 QIcon(":pictures/close.png"), QKeySequence::Close);
325   aCommand->connectTo(this, SLOT(onExit()));
326   //FIXME: SBH's test action. Can be used for some GUI tests.
327 //  #ifdef _DEBUG
328 //    aCommand = aGroup->addFeature("TEST_CMD", "Test!", "Private debug button",
329 //                                  QIcon(":pictures/close.png"), QKeySequence(), true);
330 //    aCommand->connectTo(myMainWindow, SLOT(dockPythonConsole()));
331 //  #endif
332 }
333
334 //******************************************************
335 AppElements_Workbench* XGUI_Workshop::addWorkbench(const QString& theName)
336 {
337   AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
338   return aMenuBar->addWorkbench(theName);
339 }
340
341 //******************************************************
342 void XGUI_Workshop::processEvent(const std::shared_ptr<Events_Message>& theMessage)
343 {
344   if (QApplication::instance()->thread() != QThread::currentThread()) {
345     #ifdef _DEBUG
346     std::cout << "XGUI_Workshop::processEvent: " << "Working in another thread." << std::endl;
347     #endif
348     SessionPtr aMgr = ModelAPI_Session::get();
349     PostponeMessageQtEvent* aPostponeEvent = new PostponeMessageQtEvent(theMessage);
350     QApplication::postEvent(this, aPostponeEvent);
351     return;
352   }
353
354   //A message to start feature creation received.
355   if (theMessage->eventID() == Events_Loop::loop()->eventByName(Config_FeatureMessage::GUI_EVENT())) {
356     std::shared_ptr<Config_FeatureMessage> aFeatureMsg =
357        std::dynamic_pointer_cast<Config_FeatureMessage>(theMessage);
358     if (!aFeatureMsg->isInternal()) {
359       addFeature(aFeatureMsg);
360     }
361   }
362   // Process creation of Part
363   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_CREATED)) {
364     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aUpdMsg =
365         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
366     onFeatureCreatedMsg(aUpdMsg);
367     if (myUpdatePrefs) {
368       if (mySalomeConnector)
369         mySalomeConnector->createPreferences();
370       myUpdatePrefs = false;
371     }
372   }
373   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_PLUGIN_LOADED)) {
374     myUpdatePrefs = true;
375   }
376   // Redisplay feature
377   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY)) {
378     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aUpdMsg =
379         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
380     onFeatureRedisplayMsg(aUpdMsg);
381   }
382   //Update property panel on corresponding message. If there is no current operation (no
383   //property panel), or received message has different feature to the current - do nothing.
384   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_UPDATED)) {
385     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> anUpdateMsg =
386         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
387     onFeatureUpdatedMsg(anUpdateMsg);
388   } else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_DELETED)) {
389     std::shared_ptr<ModelAPI_ObjectDeletedMessage> aDelMsg =
390         std::dynamic_pointer_cast<ModelAPI_ObjectDeletedMessage>(theMessage);
391     onObjectDeletedMsg(aDelMsg);
392   } else if (theMessage->eventID() == Events_LongOp::eventID()) {
393     if (Events_LongOp::isPerformed()) {
394       QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
395     } else {
396       QApplication::restoreOverrideCursor();
397     }
398   } else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_TOSHOW)) {
399     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> anUpdateMsg =
400         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
401     const std::set<ObjectPtr>& aObjList = anUpdateMsg->objects();
402     QObjectPtrList aList;
403     std::set<ObjectPtr>::const_iterator aIt;
404     for (aIt = aObjList.cbegin(); aIt != aObjList.cend(); ++aIt)
405       aList.append(*aIt);
406     showObjects(aList, true);
407   } else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_TOHIDE)) {
408     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> anUpdateMsg =
409         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
410     const std::set<ObjectPtr>& aObjList = anUpdateMsg->objects();
411     QObjectPtrList aList;
412     std::set<ObjectPtr>::const_iterator aIt;
413     for (aIt = aObjList.cbegin(); aIt != aObjList.cend(); ++aIt)
414       aList.append(*aIt);
415     showObjects(aList, false);
416   }
417   //An operation passed by message. Start it, process and commit.
418   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OPERATION_LAUNCHED)) {
419     std::shared_ptr<Config_PointerMessage> aPartSetMsg =
420         std::dynamic_pointer_cast<Config_PointerMessage>(theMessage);
421     //myPropertyPanel->cleanContent();
422     ModuleBase_Operation* anOperation = (ModuleBase_Operation*) aPartSetMsg->pointer();
423
424     if (myOperationMgr->startOperation(anOperation)) {
425       myPropertyPanel->updateContentWidget(anOperation->feature());
426       if (!anOperation->getDescription()->hasXmlRepresentation()) {
427         if (anOperation->commit())
428           updateCommandStatus();
429       }
430     }
431   } else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_DOCUMENT_CHANGED)) {
432     myActionsMgr->update();
433     // Find and Activate active part
434     if (myPartActivating)
435       return;
436     SessionPtr aMgr = ModelAPI_Session::get();
437     DocumentPtr aActiveDoc = aMgr->activeDocument();
438     DocumentPtr aDoc = aMgr->moduleDocument();
439     if (aActiveDoc == aDoc) {
440       activatePart(ResultPartPtr()); 
441       return;
442     }
443     std::string aGrpName = ModelAPI_ResultPart::group();
444     for (int i = 0; i < aDoc->size(aGrpName); i++) {
445       ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aDoc->object(aGrpName, i));
446       if (aPart->partDoc() == aActiveDoc) {
447         activatePart(aPart); // Activate a part which corresponds to active Doc
448         return;
449       }
450     }
451     // If not found then activate global document
452     activatePart(ResultPartPtr()); 
453
454   }
455   else if (theMessage->eventID() == Events_Loop::eventByName(EVENT_SELFILTER_LOADED)) {
456     std::shared_ptr<Config_SelectionFilterMessage> aMsg = 
457       std::dynamic_pointer_cast<Config_SelectionFilterMessage>(theMessage);
458     if (aMsg) {
459       ModuleBase_FilterFactory* aFactory = moduleConnector()->selectionFilters();
460       if (!aMsg->attributeId().empty()) {
461         aFactory->assignFilter(aMsg->selectionFilterId(), aMsg->featureId(), aMsg->attributeId(),
462                                aMsg->parameters());
463       }
464     }
465   } else if (theMessage->eventID() == Events_Loop::eventByName(EVENT_UPDATE_VIEWER_BLOCKED)) {
466     // the viewer's update context will not happens until viewer updated is emitted
467     myDisplayer->enableUpdateViewer(false);
468   } else if (theMessage->eventID() == Events_Loop::eventByName(EVENT_UPDATE_VIEWER_UNBLOCKED)) {
469     // the viewer's update context is unblocked, the viewer's update works
470     myDisplayer->enableUpdateViewer(true);
471   } else {
472     //Show error dialog if error message received.
473     std::shared_ptr<Events_Error> anAppError = std::dynamic_pointer_cast<Events_Error>(theMessage);
474     if (anAppError) {
475       emit errorOccurred(QString::fromLatin1(anAppError->description()));
476     }
477     return;
478   }
479   if (!isSalomeMode()) {
480     SessionPtr aMgr = ModelAPI_Session::get();
481     if (aMgr->isModified() != myMainWindow->isModifiedState())
482       myMainWindow->setModifiedState(aMgr->isModified());
483   }
484 }
485
486 //******************************************************
487 QMainWindow* XGUI_Workshop::desktop() const
488 {
489   return isSalomeMode() ? salomeConnector()->desktop() : myMainWindow;
490 }
491
492 //******************************************************
493 void XGUI_Workshop::onStartWaiting()
494 {
495   if (Events_LongOp::isPerformed()) {
496     QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
497   }
498 }
499
500 //******************************************************
501 void XGUI_Workshop::onFeatureUpdatedMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& theMsg)
502 {
503   std::set<ObjectPtr> aFeatures = theMsg->objects();
504   if (myOperationMgr->hasOperation()) {
505     FeaturePtr aCurrentFeature = myOperationMgr->currentOperation()->feature();
506     std::set<ObjectPtr>::const_iterator aIt;
507     for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) {
508       ObjectPtr aNewFeature = (*aIt);
509       if (aNewFeature == aCurrentFeature) {
510         myPropertyPanel->updateContentWidget(aCurrentFeature);
511         break;
512       }
513     }
514   }
515   myOperationMgr->onValidateOperation();
516   if (myObjectBrowser)
517     myObjectBrowser->processEvent(theMsg);
518 }
519
520 //******************************************************
521 void XGUI_Workshop::onFeatureRedisplayMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& theMsg)
522 {
523   std::set<ObjectPtr> aObjects = theMsg->objects();
524   std::set<ObjectPtr>::const_iterator aIt;
525
526 #ifdef DEBUG_FEATURE_REDISPLAY
527   QStringList anInfo;
528   for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
529     anInfo.append(ModuleBase_Tools::objectInfo((*aIt)));
530   }
531   QString anInfoStr = anInfo.join(", ");
532   qDebug(QString("onFeatureRedisplayMsg: %1, %2").arg(aObjects.size()).arg(anInfoStr).toStdString().c_str());
533 #endif
534
535   for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
536     ObjectPtr aObj = (*aIt);
537
538     // Hide the object if it is invalid or concealed one
539     bool aHide = !aObj->data() || !aObj->data()->isValid();
540     if (!aHide) { // check that this is not hidden result
541       ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
542       aHide = aRes && aRes->isConcealed();
543     }
544     if (aHide)
545       myDisplayer->erase(aObj, false);
546     else {
547       // Redisplay the visible object or the object of the current operation
548       bool isVisibleObject = myDisplayer->isVisible(aObj);
549       #ifdef DEBUG_FEATURE_REDISPLAY
550       //QString anObjInfo = ModuleBase_Tools::objectInfo((aObj));
551       //qDebug(QString("visible=%1 : display= %2").arg(isVisibleObject).arg(anObjInfo).toStdString().c_str());
552       #endif
553
554       if (isVisibleObject)  { // redisplay visible object
555         //displayObject(aObj);  // In order to update presentation
556         // in order to avoid the check whether the object can be redisplayed, the exact method
557         // of redisplay is called. This modification is made in order to have the line is updated
558         // by creation of a horizontal constraint on the line by preselection
559         myDisplayer->redisplay(aObj, false);
560         if (myOperationMgr->hasOperation()) {
561           ModuleBase_Operation* aOperation = myOperationMgr->currentOperation();
562           if (!aOperation->isEditOperation() &&
563               aOperation->hasObject(aObj) && myDisplayer->isActive(aObj))
564             myDisplayer->deactivate(aObj);
565         }
566       } else { // display object if the current operation has it
567         ModuleBase_Operation* aOperation = myOperationMgr->currentOperation();
568         if (aOperation && aOperation->hasObject(aObj)) {
569           ModuleBase_Operation* aOperation = myOperationMgr->currentOperation();
570           #ifdef DEBUG_FEATURE_REDISPLAY
571             QString anObjInfo = ModuleBase_Tools::objectInfo((aObj));
572             qDebug(QString("  display object = %1").arg(anObjInfo).toStdString().c_str());
573           #endif
574           if (displayObject(aObj)) {
575             // Deactivate object of current operation from selection
576             if (myDisplayer->isActive(aObj))
577               myDisplayer->deactivate(aObj);
578           }
579         }
580       }
581     }
582   }
583   myDisplayer->updateViewer();
584 }
585
586 //******************************************************
587 void XGUI_Workshop::onFeatureCreatedMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& theMsg)
588 {
589   std::set<ObjectPtr> aObjects = theMsg->objects();
590   std::set<ObjectPtr>::const_iterator aIt;
591 #ifdef DEBUG_FEATURE_CREATED
592   QStringList anInfo;
593   for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
594     anInfo.append(ModuleBase_Tools::objectInfo((*aIt)));
595   }
596   QString anInfoStr = anInfo.join(", ");
597   qDebug(QString("onFeatureCreatedMsg: %1, %2").arg(aObjects.size()).arg(anInfoStr).toStdString().c_str());
598 #endif
599
600   //bool aHasPart = false;
601   bool isDisplayed = false;
602   for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
603     ObjectPtr anObject = *aIt;
604     // the validity of the data should be checked here in order to avoid display of the objects,
605     // which were created, then deleted, but flush for the creation event happens after that
606     if (!anObject->data() || !anObject->data()->isValid())
607       continue;
608     //ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(*aIt);
609     //if (aPart) {
610       //aHasPart = true;
611       // If a feature is created from the aplication's python console  
612       // it doesn't stored in the operation mgr and doesn't displayed
613     //} else {
614     isDisplayed = displayObject(*aIt);
615     //}
616   }
617   if (myObjectBrowser)
618     myObjectBrowser->processEvent(theMsg);
619   if (isDisplayed)
620     myDisplayer->updateViewer();
621   //if (aHasPart) { // TODO: Avoid activate last part on loading of document
622   //  activateLastPart();
623   //}
624 }
625
626 //******************************************************
627 void XGUI_Workshop::onObjectDeletedMsg(const std::shared_ptr<ModelAPI_ObjectDeletedMessage>& theMsg)
628 {
629   if (myObjectBrowser)
630     myObjectBrowser->processEvent(theMsg);
631   //std::set<ObjectPtr> aFeatures = theMsg->objects();
632 }
633
634 //******************************************************
635 void XGUI_Workshop::onOperationStarted(ModuleBase_Operation* theOperation)
636 {
637   setNestedFeatures(theOperation);
638
639   if (theOperation->getDescription()->hasXmlRepresentation()) {  //!< No need for property panel
640     connectWithOperation(theOperation);
641     setPropertyPanel(theOperation);
642   }
643   updateCommandStatus();
644
645   myModule->operationStarted(theOperation);
646 }
647
648 //******************************************************
649 void XGUI_Workshop::onOperationResumed(ModuleBase_Operation* theOperation)
650 {
651   setNestedFeatures(theOperation);
652
653   if (theOperation->getDescription()->hasXmlRepresentation()) {  //!< No need for property panel
654     // connectWithOperation(theOperation); already connected
655     setPropertyPanel(theOperation);
656   }
657   updateCommandStatus();
658
659   myModule->operationResumed(theOperation);
660 }
661
662
663 //******************************************************
664 void XGUI_Workshop::onOperationStopped(ModuleBase_Operation* theOperation)
665 {
666   ModuleBase_ISelection* aSel = mySelector->selection();
667   QObjectPtrList aObj = aSel->selectedPresentations();
668   //!< No need for property panel
669   updateCommandStatus();
670   hidePropertyPanel();
671   myPropertyPanel->cleanContent();
672
673   // Activate objects created by current operation 
674   // in order to clean selection modes
675   // the deactivation should be pefromed in the same place, where the mode is activated,
676   // e.g. activation in the current widget activation, deactivation - in the widget's deactivation
677   //QIntList aModes;
678   //myDisplayer->activateObjects(aModes);
679   myModule->operationStopped(theOperation);
680
681   if (myOperationMgr->operationsCount() == 0) {
682     // Activate selection mode for all objects
683     QIntList aModes;
684     myDisplayer->activateObjects(aModes);
685   }
686 }
687
688
689 void XGUI_Workshop::onOperationCommitted(ModuleBase_Operation* theOperation)
690 {
691   myModule->operationCommitted(theOperation);
692 }
693
694 void XGUI_Workshop::onOperationAborted(ModuleBase_Operation* theOperation)
695 {
696   myModule->operationAborted(theOperation);
697 }
698
699 void XGUI_Workshop::setNestedFeatures(ModuleBase_Operation* theOperation)
700 {
701   if (this->isSalomeMode()) 
702     theOperation->setNestedFeatures(mySalomeConnector->nestedActions(theOperation->id()));
703   else 
704     theOperation->setNestedFeatures(myActionsMgr->nestedCommands(theOperation->id()));
705 }
706
707 void XGUI_Workshop::setPropertyPanel(ModuleBase_Operation* theOperation)
708 {
709   showPropertyPanel();
710   QString aXmlRepr = theOperation->getDescription()->xmlRepresentation();
711   ModuleBase_WidgetFactory aFactory = ModuleBase_WidgetFactory(aXmlRepr.toStdString(),
712                                                                 myModuleConnector);
713
714   myPropertyPanel->cleanContent();
715   aFactory.createWidget(myPropertyPanel->contentWidget());
716
717   QList<ModuleBase_ModelWidget*> aWidgets = aFactory.getModelWidgets();
718   foreach (ModuleBase_ModelWidget* aWidget, aWidgets) {
719     bool isStoreValue = !theOperation->isEditOperation() &&
720                         !aWidget->getDefaultValue().empty() &&
721                         !aWidget->isComputedDefault();
722     aWidget->setFeature(theOperation->feature(), isStoreValue);
723     aWidget->enableFocusProcessing();
724   }
725   
726   myPropertyPanel->setModelWidgets(aWidgets);
727   theOperation->setPropertyPanel(myPropertyPanel);
728
729   myModule->propertyPanelDefined(theOperation);
730
731   myPropertyPanel->setWindowTitle(theOperation->getDescription()->description());
732 }
733
734 bool XGUI_Workshop::event(QEvent * theEvent)
735 {
736   PostponeMessageQtEvent* aPostponedEv = dynamic_cast<PostponeMessageQtEvent*>(theEvent);
737   if (aPostponedEv) {
738     std::shared_ptr<Events_Message> aEventPtr = aPostponedEv->postponedMessage();
739     processEvent(aEventPtr);
740     return true;
741   }
742   return false;
743 }
744
745 /*
746  *
747  */
748 void XGUI_Workshop::addFeature(const std::shared_ptr<Config_FeatureMessage>& theMessage)
749 {
750   if (!theMessage) {
751 #ifdef _DEBUG
752     qDebug() << "XGUI_Workshop::addFeature: NULL message.";
753 #endif
754     return;
755   }
756   ActionInfo aFeatureInfo;
757   aFeatureInfo.initFrom(theMessage);
758   // Remember features icons
759   myIcons[QString::fromStdString(theMessage->id())] = aFeatureInfo.iconFile;
760
761   QString aWchName = QString::fromStdString(theMessage->workbenchId());
762   QStringList aNestedFeatures =
763       QString::fromStdString(theMessage->nestedFeatures()).split(" ", QString::SkipEmptyParts);
764   QString aDocKind = QString::fromStdString(theMessage->documentKind());
765   if (isSalomeMode()) {
766     QAction* aAction = salomeConnector()->addFeature(aWchName, aFeatureInfo);
767     salomeConnector()->setNestedActions(aFeatureInfo.id, aNestedFeatures);
768     salomeConnector()->setDocumentKind(aFeatureInfo.id, aDocKind);
769
770     myActionsMgr->addCommand(aAction);
771     myModule->actionCreated(aAction);
772   } else {
773     //Find or create Workbench
774     AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
775     AppElements_Workbench* aPage = aMenuBar->findWorkbench(aWchName);
776     if (!aPage) {
777       aPage = addWorkbench(aWchName);
778     }
779     //Find or create Group
780     QString aGroupName = QString::fromStdString(theMessage->groupId());
781     AppElements_MenuGroupPanel* aGroup = aPage->findGroup(aGroupName);
782     if (!aGroup) {
783       aGroup = aPage->addGroup(aGroupName);
784     }
785     // Check if hotkey sequence is already defined:
786     QKeySequence aHotKey = myActionsMgr->registerShortcut(aFeatureInfo.shortcut);
787     if(aHotKey != aFeatureInfo.shortcut) {
788       aFeatureInfo.shortcut = aHotKey;
789     }
790     // Create feature...
791     AppElements_Command* aCommand = aGroup->addFeature(aFeatureInfo,
792                                                        aDocKind,
793                                                        aNestedFeatures);
794     // Enrich created button with accept/abort buttons if necessary
795     AppElements_Button* aButton = aCommand->button();
796     if (aButton->isColumnButton()) {
797       QString aNestedActions = QString::fromStdString(theMessage->actionsWhenNested());
798       QList<QAction*> anActList;
799       if (aNestedActions.contains("accept")) {
800         QAction* anAction = myActionsMgr->operationStateAction(XGUI_ActionsMgr::AcceptAll, aButton);
801         connect(anAction, SIGNAL(triggered()), myOperationMgr, SLOT(commitAllOperations()));
802         anActList << anAction;
803       }
804       if (aNestedActions.contains("abort")) {
805         QAction* anAction = myActionsMgr->operationStateAction(XGUI_ActionsMgr::AbortAll, aButton);
806         connect(anAction, SIGNAL(triggered()), myOperationMgr, SLOT(abortAllOperations()));
807         anActList << anAction;
808       }
809       aButton->setAdditionalButtons(anActList);
810     }
811     myActionsMgr->addCommand(aCommand);
812     myModule->actionCreated(aCommand);
813   }
814 }
815
816 /*
817  * Makes a signal/slot connections between Property Panel
818  * and given operation. The given operation becomes a
819  * current operation and previous operation if exists
820  */
821 void XGUI_Workshop::connectWithOperation(ModuleBase_Operation* theOperation)
822 {
823   QAction* aCommand = 0;
824   if (isSalomeMode()) {
825     aCommand = salomeConnector()->command(theOperation->getDescription()->operationId());
826   } else {
827     AppElements_MainMenu* aMenu = myMainWindow->menuObject();
828     FeaturePtr aFeature = theOperation->feature();
829     if(aFeature)
830       aCommand = aMenu->feature(QString::fromStdString(aFeature->getKind()));
831   }
832   //Abort operation on uncheck the command
833   if (aCommand) {
834     connect(aCommand, SIGNAL(triggered(bool)), theOperation, SLOT(setRunning(bool)));
835   }
836 }
837
838 /*
839  * Saves document with given name.
840  */
841 void XGUI_Workshop::saveDocument(const QString& theName, std::list<std::string>& theFileNames)
842 {
843   QApplication::restoreOverrideCursor();
844   SessionPtr aMgr = ModelAPI_Session::get();
845   aMgr->save(theName.toLatin1().constData(), theFileNames);
846   QApplication::restoreOverrideCursor();
847 }
848
849 bool XGUI_Workshop::isActiveOperationAborted()
850 {
851   return myOperationMgr->abortAllOperations();
852 }
853
854 //******************************************************
855 void XGUI_Workshop::onExit()
856 {
857   SessionPtr aMgr = ModelAPI_Session::get();
858   if (aMgr->isModified()) {
859     int anAnswer = QMessageBox::question(
860         myMainWindow, tr("Save current file"), tr("The document is modified, save before exit?"),
861         QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
862     if (anAnswer == QMessageBox::Save) {
863       bool saved = onSave();
864       if (!saved) {
865         return;
866       }
867     } else if (anAnswer == QMessageBox::Cancel) {
868       return;
869     }
870   }
871   qApp->exit();
872 }
873
874 //******************************************************
875 void XGUI_Workshop::onNew()
876 {
877   QApplication::setOverrideCursor(Qt::WaitCursor);
878   if (objectBrowser() == 0) {
879     createDockWidgets();
880     mySelector->connectViewers();
881   }
882   myViewerProxy->connectToViewer();
883   showObjectBrowser();
884   if (!isSalomeMode()) {
885     myMainWindow->showPythonConsole();
886     QMdiSubWindow* aWnd = myMainWindow->viewer()->createView();
887     aWnd->showMaximized();
888     updateCommandStatus();
889   }
890   myContextMenuMgr->connectViewer();
891   QApplication::restoreOverrideCursor();
892 }
893
894 //******************************************************
895 void XGUI_Workshop::onOpen()
896 {
897   if(!isActiveOperationAborted())
898     return;
899   //save current file before close if modified
900   SessionPtr aSession = ModelAPI_Session::get();
901   if (aSession->isModified()) {
902     //TODO(sbh): re-launch the app?
903     int anAnswer = QMessageBox::question(
904         myMainWindow, tr("Save current file"),
905         tr("The document is modified, save before opening another?"),
906         QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
907     if (anAnswer == QMessageBox::Save) {
908       onSave();
909     } else if (anAnswer == QMessageBox::Cancel) {
910       return;
911     }
912     aSession->closeAll();
913     myCurrentDir = "";
914   }
915
916   //show file dialog, check if readable and open
917   myCurrentDir = QFileDialog::getExistingDirectory(mainWindow());
918   if (myCurrentDir.isEmpty())
919     return;
920   QFileInfo aFileInfo(myCurrentDir);
921   if (!aFileInfo.exists() || !aFileInfo.isReadable()) {
922     QMessageBox::critical(myMainWindow, tr("Warning"), tr("Unable to open the file."));
923     myCurrentDir = "";
924     return;
925   }
926   QApplication::setOverrideCursor(Qt::WaitCursor);
927   myIsLoadingData = true;
928   aSession->load(myCurrentDir.toLatin1().constData());
929   myObjectBrowser->rebuildDataTree();
930   displayAllResults();
931   updateCommandStatus();
932   myIsLoadingData = false;
933   QApplication::restoreOverrideCursor();
934 }
935
936 //******************************************************
937 bool XGUI_Workshop::onSave()
938 {
939   if(!isActiveOperationAborted())
940     return false;
941   if (myCurrentDir.isEmpty()) {
942     return onSaveAs();
943   }
944   std::list<std::string> aFiles;
945   saveDocument(myCurrentDir, aFiles);
946   updateCommandStatus();
947   if (!isSalomeMode())
948     myMainWindow->setModifiedState(false);
949   return true;
950 }
951
952 //******************************************************
953 bool XGUI_Workshop::onSaveAs()
954 {
955   if(!isActiveOperationAborted())
956     return false;
957   QFileDialog dialog(mainWindow());
958   dialog.setWindowTitle(tr("Select directory to save files..."));
959   dialog.setFileMode(QFileDialog::Directory);
960   dialog.setFilter(tr("Folders (*)"));
961   dialog.setOptions(QFileDialog::HideNameFilterDetails | QFileDialog::ShowDirsOnly);
962   dialog.setViewMode(QFileDialog::Detail);
963
964   if (!dialog.exec()) {
965     return false;
966   }
967   QString aTempDir = dialog.selectedFiles().first();
968   QDir aDir(aTempDir);
969   if (aDir.exists() && !aDir.entryInfoList(QDir::NoDotAndDotDot | QDir::AllEntries).isEmpty()) {
970     int answer = QMessageBox::question(
971         myMainWindow,
972         //: Title of the dialog which asks user if he wants to save study in existing non-empty folder
973         tr("Save"),
974         tr("The folder already contains some files, save anyway?"),
975         QMessageBox::Save | QMessageBox::Cancel);
976     if (answer == QMessageBox::Cancel) {
977       return false;
978     }
979   }
980   myCurrentDir = aTempDir;
981   if (!isSalomeMode()) {
982     myMainWindow->setCurrentDir(myCurrentDir, false);
983     myMainWindow->setModifiedState(false);
984   }
985   return onSave();
986 }
987
988 //******************************************************
989 void XGUI_Workshop::onUndo(int theTimes)
990 {
991   objectBrowser()->treeView()->setCurrentIndex(QModelIndex());
992   SessionPtr aMgr = ModelAPI_Session::get();
993   if (aMgr->isOperation())
994     operationMgr()->onAbortOperation();
995   for (int i = 0; i < theTimes; ++i) {
996     aMgr->undo();
997   }
998   updateCommandStatus();
999 }
1000
1001 //******************************************************
1002 void XGUI_Workshop::onRedo(int theTimes)
1003 {
1004   // the viewer update should be blocked in order to avoid the features blinking. For the created
1005   // feature a results are created, the flush of the created signal caused the viewer redisplay for
1006   // each created result. After a redisplay signal is flushed. So, the viewer update is blocked until
1007   // redo of all possible objects happens
1008   bool isUpdateEnabled = myDisplayer->enableUpdateViewer(false);
1009
1010   objectBrowser()->treeView()->setCurrentIndex(QModelIndex());
1011   SessionPtr aMgr = ModelAPI_Session::get();
1012   if (aMgr->isOperation())
1013     operationMgr()->onAbortOperation();
1014   for (int i = 0; i < theTimes; ++i) {
1015     aMgr->redo();
1016   }
1017   updateCommandStatus();
1018
1019   // unblock the viewer update functionality and make update on purpose
1020   myDisplayer->enableUpdateViewer(isUpdateEnabled);
1021   myDisplayer->updateViewer();
1022 }
1023
1024 //******************************************************
1025 void XGUI_Workshop::onRebuild()
1026 {
1027   SessionPtr aMgr = ModelAPI_Session::get();
1028   bool aWasOperation = aMgr->isOperation(); // keep this value
1029   if (!aWasOperation) {
1030     aMgr->startOperation("Rebuild");
1031   }
1032   static const Events_ID aRebuildEvent = Events_Loop::loop()->eventByName("Rebuild");
1033   Events_Loop::loop()->send(std::shared_ptr<Events_Message>(
1034     new Events_Message(aRebuildEvent, this)));
1035   if (!aWasOperation) {
1036     aMgr->finishOperation();
1037   }
1038 }
1039
1040 //******************************************************
1041 void XGUI_Workshop::onPreferences()
1042 {
1043   ModuleBase_Prefs aModif;
1044   ModuleBase_Preferences::editPreferences(aModif);
1045   if (aModif.size() > 0) {
1046     QString aSection;
1047     foreach (ModuleBase_Pref aPref, aModif)
1048     {
1049       aSection = aPref.first;
1050       if (aSection == ModuleBase_Preferences::VIEWER_SECTION) {
1051         if (!isSalomeMode())
1052           myMainWindow->viewer()->updateFromResources();
1053       } else if (aSection == ModuleBase_Preferences::MENU_SECTION) {
1054         if (!isSalomeMode())
1055           myMainWindow->menuObject()->updateFromResources();
1056       }
1057     }
1058   }
1059 }
1060
1061 //******************************************************
1062 ModuleBase_IModule* XGUI_Workshop::loadModule(const QString& theModule)
1063 {
1064   QString libName = QString::fromStdString(library(theModule.toStdString()));
1065   if (libName.isEmpty()) {
1066     qWarning(qPrintable(tr("Information about module \"%1\" doesn't exist.").arg(theModule)));
1067     return 0;
1068   }
1069
1070   QString err;
1071   CREATE_FUNC crtInst = 0;
1072
1073 #ifdef WIN32
1074   HINSTANCE modLib = ::LoadLibrary((LPTSTR) qPrintable(libName));
1075   if (!modLib) {
1076     LPVOID lpMsgBuf;
1077     ::FormatMessage(
1078         FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
1079         0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
1080     QString aMsg((char*) &lpMsgBuf);
1081     err = QString("Failed to load  %1. %2").arg(libName).arg(aMsg);
1082     ::LocalFree(lpMsgBuf);
1083   } else {
1084     crtInst = (CREATE_FUNC) ::GetProcAddress(modLib, CREATE_MODULE);
1085     if (!crtInst) {
1086       LPVOID lpMsgBuf;
1087       ::FormatMessage(
1088           FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM
1089               | FORMAT_MESSAGE_IGNORE_INSERTS,
1090           0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
1091       QString aMsg((char*) &lpMsgBuf);
1092       err = QString("Failed to find  %1 function. %2").arg( CREATE_MODULE).arg(aMsg);
1093       ::LocalFree(lpMsgBuf);
1094     }
1095   }
1096 #else
1097   void* modLib = dlopen( libName.toLatin1(), RTLD_LAZY | RTLD_GLOBAL );
1098   if ( !modLib ) {
1099     err = QString( "Can not load library %1. %2" ).arg( libName ).arg( dlerror() );
1100   } else {
1101     crtInst = (CREATE_FUNC)dlsym( modLib, CREATE_MODULE );
1102     if ( !crtInst ) {
1103       err = QString( "Failed to find function %1. %2" ).arg( CREATE_MODULE ).arg( dlerror() );
1104     }
1105   }
1106 #endif
1107
1108   ModuleBase_IModule* aModule = crtInst ? crtInst(myModuleConnector) : 0;
1109
1110   if (!err.isEmpty()) {
1111     if (mainWindow()) {
1112       Events_Error::send(err.toStdString());
1113     } else {
1114       qWarning(qPrintable(err));
1115     }
1116   }
1117   return aModule;
1118 }
1119
1120 //******************************************************
1121 bool XGUI_Workshop::activateModule()
1122 {
1123   Config_ModuleReader aModuleReader;
1124   QString moduleName = QString::fromStdString(aModuleReader.getModuleName());
1125   myModule = loadModule(moduleName);
1126   if (!myModule)
1127     return false;
1128
1129   connect(myDisplayer, SIGNAL(objectDisplayed(ObjectPtr, AISObjectPtr)),
1130     myModule, SLOT(onObjectDisplayed(ObjectPtr, AISObjectPtr)));
1131   connect(myDisplayer, SIGNAL(beforeObjectErase(ObjectPtr, AISObjectPtr)),
1132     myModule, SLOT(onBeforeObjectErase(ObjectPtr, AISObjectPtr)));
1133
1134   myModule->createFeatures();
1135   myActionsMgr->update();
1136   return true;
1137 }
1138
1139 //******************************************************
1140 void XGUI_Workshop::updateCommandStatus()
1141 {
1142   QList<QAction*> aCommands;
1143   if (isSalomeMode()) {  // update commands in SALOME mode
1144     aCommands = salomeConnector()->commandList();
1145   } else {
1146     AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
1147     foreach (AppElements_Command* aCmd, aMenuBar->features())
1148       aCommands.append(aCmd);
1149   }
1150   SessionPtr aMgr = ModelAPI_Session::get();
1151   if (aMgr->hasModuleDocument()) {
1152     QAction *aUndoCmd, *aRedoCmd;
1153     foreach(QAction* aCmd, aCommands) {
1154       QString aId = aCmd->data().toString();
1155       if (aId == "UNDO_CMD")
1156         aUndoCmd = aCmd;
1157       else if (aId == "REDO_CMD")
1158         aRedoCmd = aCmd;
1159       else
1160         // Enable all commands
1161         aCmd->setEnabled(true);
1162     }
1163
1164     aUndoCmd->setEnabled(myModule->canUndo());
1165     aRedoCmd->setEnabled(myModule->canRedo());
1166     updateHistory();
1167   } else {
1168     foreach(QAction* aCmd, aCommands) {
1169       QString aId = aCmd->data().toString();
1170       if (aId == "NEW_CMD")
1171         aCmd->setEnabled(true);
1172       else if (aId == "EXIT_CMD")
1173         aCmd->setEnabled(true);
1174       else
1175         aCmd->setEnabled(false);
1176     }
1177   }
1178   myActionsMgr->update();
1179   emit commandStatusUpdated();
1180 }
1181
1182 void XGUI_Workshop::updateHistory()
1183 {
1184   std::list<std::string> aUndoList = ModelAPI_Session::get()->undoList();
1185   QList<ActionInfo> aUndoRes = processHistoryList(aUndoList);
1186   emit updateUndoHistory(aUndoRes);
1187
1188   std::list<std::string> aRedoList = ModelAPI_Session::get()->redoList();
1189   QList<ActionInfo> aRedoRes = processHistoryList(aRedoList);
1190   emit updateRedoHistory(aRedoRes);
1191 }
1192
1193 //******************************************************
1194 QDockWidget* XGUI_Workshop::createObjectBrowser(QWidget* theParent)
1195 {
1196   QDockWidget* aObjDock = new QDockWidget(theParent);
1197   aObjDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea | Qt::BottomDockWidgetArea);
1198   aObjDock->setWindowTitle(tr("Object browser"));
1199   aObjDock->setStyleSheet(
1200       "::title { position: relative; padding-left: 5px; text-align: left center }");
1201   myObjectBrowser = new XGUI_ObjectsBrowser(aObjDock);
1202   connect(myObjectBrowser, SIGNAL(activePartChanged(ObjectPtr)), this,
1203           SLOT(changeCurrentDocument(ObjectPtr)));
1204   aObjDock->setWidget(myObjectBrowser);
1205
1206   myContextMenuMgr->connectObjectBrowser();
1207   return aObjDock;
1208 }
1209
1210 //******************************************************
1211 /*
1212  * Creates dock widgets, places them in corresponding area
1213  * and tabifies if necessary.
1214  */
1215 void XGUI_Workshop::createDockWidgets()
1216 {
1217   QMainWindow* aDesktop = isSalomeMode() ? salomeConnector()->desktop() : myMainWindow;
1218   QDockWidget* aObjDock = createObjectBrowser(aDesktop);
1219   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, aObjDock);
1220   myPropertyPanel = new XGUI_PropertyPanel(aDesktop);
1221   myPropertyPanel->setupActions(myActionsMgr);
1222   myPropertyPanel->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea | Qt::BottomDockWidgetArea);
1223   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, myPropertyPanel);
1224   hidePropertyPanel();  ///<! Invisible by default
1225   hideObjectBrowser();
1226   aDesktop->tabifyDockWidget(aObjDock, myPropertyPanel);
1227   myPropertyPanel->installEventFilter(myOperationMgr);
1228
1229   QAction* aOkAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Accept);
1230   connect(aOkAct, SIGNAL(triggered()), myOperationMgr, SLOT(onCommitOperation()));
1231   QAction* aCancelAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Abort);
1232   connect(aCancelAct, SIGNAL(triggered()), myOperationMgr, SLOT(onAbortOperation()));
1233   connect(myPropertyPanel, SIGNAL(noMoreWidgets()), myModule, SLOT(onNoMoreWidgets()));
1234   connect(myPropertyPanel, SIGNAL(keyReleased(QKeyEvent*)),
1235           myOperationMgr,  SLOT(onKeyReleased(QKeyEvent*)));
1236   connect(myOperationMgr,  SIGNAL(validationStateChanged(bool)),
1237           aOkAct,          SLOT(setEnabled(bool)));
1238   QAction* aAcceptAllAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::AcceptAll);
1239   connect(myOperationMgr,  SIGNAL(nestedStateChanged(bool)),
1240           aAcceptAllAct,   SLOT(setEnabled(bool)));
1241
1242 }
1243
1244 //******************************************************
1245 void XGUI_Workshop::showPropertyPanel()
1246 {
1247   QAction* aViewAct = myPropertyPanel->toggleViewAction();
1248   ///<! Restore ability to close panel from the window's menu
1249   aViewAct->setEnabled(true);
1250   myPropertyPanel->show();
1251   myPropertyPanel->raise();
1252 }
1253
1254 //******************************************************
1255 void XGUI_Workshop::hidePropertyPanel()
1256 {
1257   QAction* aViewAct = myPropertyPanel->toggleViewAction();
1258   ///<! Do not allow to show empty property panel
1259   aViewAct->setEnabled(false);
1260   myPropertyPanel->hide();
1261 }
1262
1263 //******************************************************
1264 void XGUI_Workshop::showObjectBrowser()
1265 {
1266   myObjectBrowser->parentWidget()->show();
1267 }
1268
1269 //******************************************************
1270 void XGUI_Workshop::hideObjectBrowser()
1271 {
1272   myObjectBrowser->parentWidget()->hide();
1273 }
1274
1275 //******************************************************
1276 void XGUI_Workshop::onFeatureTriggered()
1277 {
1278   QAction* aCmd = dynamic_cast<QAction*>(sender());
1279   if (aCmd) {
1280     QString aId = salomeConnector()->commandId(aCmd);
1281     if (!aId.isNull())
1282       myModule->launchOperation(aId);
1283   }
1284 }
1285
1286 //******************************************************
1287 void XGUI_Workshop::changeCurrentDocument(ObjectPtr theObj)
1288 {
1289   SessionPtr aMgr = ModelAPI_Session::get();
1290   if (theObj) {
1291     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(theObj);
1292     if (aPart) {
1293       DocumentPtr aPartDoc = aPart->partDoc();
1294       if (aPartDoc) {
1295         aMgr->setActiveDocument(aPartDoc);
1296         return;
1297       }
1298     }
1299   }
1300   aMgr->setActiveDocument(aMgr->moduleDocument());
1301 }
1302
1303 //******************************************************
1304 void XGUI_Workshop::salomeViewerSelectionChanged()
1305 {
1306   emit salomeViewerSelection();
1307 }
1308
1309 //**************************************************************
1310 ModuleBase_IViewer* XGUI_Workshop::salomeViewer() const
1311 {
1312   return mySalomeConnector->viewer();
1313 }
1314
1315 //**************************************************************
1316 void XGUI_Workshop::onContextMenuCommand(const QString& theId, bool isChecked)
1317 {
1318   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1319   if ((theId == "ACTIVATE_PART_CMD") && (aObjects.size() > 0)) {
1320     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObjects.first());
1321     activatePart(aPart);
1322   } else if (theId == "DEACTIVATE_PART_CMD")
1323     activatePart(ResultPartPtr());
1324   else if (theId == "DELETE_CMD")
1325     deleteObjects();
1326   else if (theId == "COLOR_CMD")
1327     changeColor(aObjects);
1328   else if (theId == "SHOW_CMD")
1329     showObjects(aObjects, true);
1330   else if (theId == "HIDE_CMD")
1331     showObjects(aObjects, false);
1332   else if (theId == "SHOW_ONLY_CMD")
1333     showOnlyObjects(aObjects);
1334   else if (theId == "SHADING_CMD")
1335     setDisplayMode(aObjects, XGUI_Displayer::Shading);
1336   else if (theId == "WIREFRAME_CMD")
1337     setDisplayMode(aObjects, XGUI_Displayer::Wireframe);
1338   else if (theId == "HIDEALL_CMD")
1339     myDisplayer->eraseAll();
1340   else if (theId == "EDIT_CMD") {
1341     FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObjects.first());
1342     if (aFeature == NULL) {
1343       ResultParameterPtr aParam = 
1344         std::dynamic_pointer_cast<ModelAPI_ResultParameter>(aObjects.first());
1345       if (aParam.get() != NULL) {
1346         aFeature = ModelAPI_Feature::feature(aParam);
1347       }
1348     }
1349     if (aFeature.get() != NULL)
1350       myModule->editFeature(aFeature);
1351   }
1352 }
1353
1354 //**************************************************************
1355 void XGUI_Workshop::activatePart(ResultPartPtr theFeature)
1356 {
1357   if (!myPartActivating) {
1358     myPartActivating = true;
1359     if (theFeature)
1360       theFeature->activate();
1361     changeCurrentDocument(theFeature);
1362     myObjectBrowser->activatePart(theFeature);
1363     myPartActivating = false;
1364   }
1365   updateCommandStatus();
1366 }
1367
1368 //**************************************************************
1369 //void XGUI_Workshop::activateLastPart()
1370 //{
1371 //  SessionPtr aMgr = ModelAPI_Session::get();
1372 //  DocumentPtr aDoc = aMgr->moduleDocument();
1373 //  std::string aGrpName = ModelAPI_ResultPart::group();
1374 //  ObjectPtr aLastPart = aDoc->object(aGrpName, aDoc->size(aGrpName) - 1);
1375 //  ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aLastPart);
1376 //  if (aPart) {
1377 //    activatePart(aPart);
1378 //  }
1379 //}
1380
1381 //**************************************************************
1382 void XGUI_Workshop::deleteObjects()
1383 {
1384   ModuleBase_IModule* aModule = module();
1385   // 1. allow the module to delete objects, do nothing if it has succeed
1386   if (aModule->deleteObjects()) {
1387     updateCommandStatus();
1388     return;
1389   }
1390
1391   if (!isActiveOperationAborted())
1392     return;
1393   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1394   bool hasResult = false;
1395   bool hasFeature = false;
1396   bool hasParameter = false;
1397   XGUI_Tools::checkObjects(anObjects, hasResult, hasFeature, hasParameter);
1398   if (!(hasFeature || hasParameter))
1399     return;
1400
1401   // 1. start operation
1402   QString aDescription = contextMenuMgr()->action("DELETE_CMD")->text();
1403   aDescription += tr(" %1");
1404   QStringList aObjectNames;
1405   foreach (ObjectPtr aObj, anObjects) {
1406     if (!aObj->data().get())
1407       continue;
1408     aObjectNames << QString::fromStdString(aObj->data()->name());
1409   }
1410   aDescription = aDescription.arg(aObjectNames.join(", "));
1411
1412   SessionPtr aMgr = ModelAPI_Session::get();
1413   aMgr->startOperation(aDescription.toStdString());
1414   // 2. close the documents of the removed parts if the result part is in a list of selected objects
1415   foreach (ObjectPtr aObj, anObjects)
1416   {
1417     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
1418     if (aPart) {
1419       DocumentPtr aDoc = aObj->document();
1420       if (aDoc == aMgr->activeDocument()) {
1421         aDoc->close();
1422       }
1423     }
1424   }
1425   // 3. delete objects
1426   QMainWindow* aDesktop = isSalomeMode() ? salomeConnector()->desktop() : myMainWindow;
1427   std::set<FeaturePtr> anIgnoredFeatures;
1428   if (deleteFeatures(anObjects, anIgnoredFeatures, aDesktop, true)) {
1429     myDisplayer->updateViewer();
1430     aMgr->finishOperation();
1431     updateCommandStatus();
1432   }
1433   else {
1434     aMgr->abortOperation();
1435   }
1436 }
1437
1438 //**************************************************************
1439 bool XGUI_Workshop::deleteFeatures(const QObjectPtrList& theList,
1440                                    std::set<FeaturePtr> theIgnoredFeatures,
1441                                    QWidget* theParent,
1442                                    const bool theAskAboutDeleteReferences)
1443 {
1444   // 1. find all referenced features
1445   std::set<FeaturePtr> aRefFeatures;
1446   foreach (ObjectPtr aObj, theList) {
1447     FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
1448     if (aFeature.get() != NULL) {
1449       aObj->document()->refsToFeature(aFeature, aRefFeatures, false);
1450     }
1451   }
1452   // 2. warn about the references remove, break the delete operation if the user chose it
1453   if (theAskAboutDeleteReferences && !aRefFeatures.empty()) {
1454     QStringList aRefNames;
1455     std::set<FeaturePtr>::const_iterator anIt = aRefFeatures.begin(),
1456                                          aLast = aRefFeatures.end();
1457     for (; anIt != aLast; anIt++) {
1458       aRefNames.append((*anIt)->name().c_str());
1459     }
1460     QString aNames = aRefNames.join(", ");
1461
1462     QMessageBox::StandardButton aRes = QMessageBox::warning(
1463         theParent, tr("Delete features"),
1464         QString(tr("Selected features are used in the following features: %1.\
1465 These features will be deleted also. Would you like to continue?")).arg(aNames),
1466         QMessageBox::No | QMessageBox::Yes, QMessageBox::No);
1467     if (aRes != QMessageBox::Yes)
1468       return false;
1469   }
1470
1471   // 3. remove referenced features
1472   std::set<FeaturePtr>::const_iterator anIt = aRefFeatures.begin(),
1473                                        aLast = aRefFeatures.end();
1474   for (; anIt != aLast; anIt++) {
1475     FeaturePtr aFeature = (*anIt);
1476     DocumentPtr aDoc = aFeature->document();
1477     if (theIgnoredFeatures.find(aFeature) == theIgnoredFeatures.end())
1478       aDoc->removeFeature(aFeature);
1479   }
1480
1481   // 4. remove the parameter features
1482   foreach (ObjectPtr aObj, theList) {
1483     FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
1484     if (aFeature) {
1485       DocumentPtr aDoc = aObj->document();
1486       if (theIgnoredFeatures.find(aFeature) == theIgnoredFeatures.end())
1487         aDoc->removeFeature(aFeature);
1488     }
1489   }
1490   return true;
1491 }
1492
1493 bool hasResults(QObjectPtrList theObjects, const std::set<std::string>& theTypes)
1494 {
1495   bool isFoundResultType = false;
1496   foreach(ObjectPtr anObj, theObjects)
1497   {
1498     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
1499     if (aResult.get() == NULL)
1500       continue;
1501
1502     isFoundResultType = theTypes.find(aResult->groupName()) != theTypes.end();
1503     if (isFoundResultType)
1504       break;
1505   }
1506   return isFoundResultType;
1507 }
1508
1509 //**************************************************************
1510 bool XGUI_Workshop::canChangeColor() const
1511 {
1512   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1513
1514   std::set<std::string> aTypes;
1515   aTypes.insert(ModelAPI_ResultGroup::group());
1516   aTypes.insert(ModelAPI_ResultConstruction::group());
1517   aTypes.insert(ModelAPI_ResultBody::group());
1518   return hasResults(aObjects, aTypes);
1519 }
1520
1521 //**************************************************************
1522 void XGUI_Workshop::changeColor(const QObjectPtrList& theObjects)
1523 {
1524   std::vector<int> aColor;
1525   foreach(ObjectPtr anObject, theObjects) {
1526
1527     AISObjectPtr anAISObj = myDisplayer->getAISObject(anObject);
1528     aColor.resize(3);
1529     anAISObj->getColor(aColor[0], aColor[1], aColor[2]);
1530     if (!aColor.empty())
1531       break;
1532   }
1533   if (aColor.size() != 3)
1534     return;
1535
1536   // 2. show the dialog to change the value
1537   QDialog* aDlg = new QDialog();
1538   QVBoxLayout* aLay = new QVBoxLayout(aDlg);
1539
1540   QtxColorButton* aColorBtn = new QtxColorButton(aDlg);
1541   aColorBtn->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
1542
1543   aLay->addWidget(aColorBtn);
1544   aColorBtn->setColor(QColor(aColor[0], aColor[1], aColor[2]));
1545
1546   QDialogButtonBox* aButtons = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel,
1547                                                     Qt::Horizontal, aDlg);
1548   connect(aButtons, SIGNAL(accepted()), aDlg, SLOT(accept()));
1549   connect(aButtons, SIGNAL(rejected()), aDlg, SLOT(reject()));
1550   aLay->addWidget(aButtons);
1551
1552   aDlg->move(QCursor::pos());
1553   bool isDone = aDlg->exec() == QDialog::Accepted;
1554   if (!isDone)
1555     return;
1556
1557   QColor aColorResult = aColorBtn->color();
1558   int aRedResult = aColorResult.red(),
1559       aGreenResult = aColorResult.green(),
1560       aBlueResult = aColorResult.blue();
1561
1562   if (aRedResult == aColor[0] && aGreenResult == aColor[1] && aBlueResult == aColor[2])
1563     return;
1564
1565   // 3. abort the previous operation and start a new one
1566   SessionPtr aMgr = ModelAPI_Session::get();
1567   bool aWasOperation = aMgr->isOperation(); // keep this value
1568   if (!aWasOperation) {
1569     QString aDescription = contextMenuMgr()->action("DELETE_CMD")->text();
1570     aMgr->startOperation(aDescription.toStdString());
1571   }
1572
1573   // 4. set the value to all results
1574   AttributeIntArrayPtr aColorAttr;
1575   foreach(ObjectPtr anObj, theObjects) {
1576     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
1577     if (aResult.get() != NULL) {
1578       aColorAttr = aResult->data()->intArray(ModelAPI_Result::COLOR_ID());
1579       if (aColorAttr.get() != NULL) {
1580         if (!aColorAttr->size()) {
1581           aColorAttr->setSize(3);
1582         }
1583         aColorAttr->setValue(0, aRedResult);
1584         aColorAttr->setValue(1, aGreenResult);
1585         aColorAttr->setValue(2, aBlueResult);
1586       }
1587     }
1588   }
1589   if (!aWasOperation)
1590     aMgr->finishOperation();
1591   updateCommandStatus();
1592 }
1593
1594 //**************************************************************
1595 void XGUI_Workshop::showObjects(const QObjectPtrList& theList, bool isVisible)
1596 {
1597   foreach (ObjectPtr aObj, theList)
1598   {
1599     if (isVisible) {
1600       displayObject(aObj);
1601     } else {
1602       myDisplayer->erase(aObj, false);
1603     }
1604   }
1605   myDisplayer->updateViewer();
1606 }
1607
1608 //**************************************************************
1609 void XGUI_Workshop::showOnlyObjects(const QObjectPtrList& theList)
1610 {
1611   myDisplayer->showOnly(theList);
1612 }
1613
1614
1615 //**************************************************************
1616 void XGUI_Workshop::registerValidators() const
1617 {
1618   SessionPtr aMgr = ModelAPI_Session::get();
1619   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
1620 }
1621
1622 //**************************************************************
1623 void XGUI_Workshop::displayAllResults()
1624 {
1625   SessionPtr aMgr = ModelAPI_Session::get();
1626   DocumentPtr aRootDoc = aMgr->moduleDocument();
1627   displayDocumentResults(aRootDoc);
1628   for (int i = 0; i < aRootDoc->size(ModelAPI_ResultPart::group()); i++) {
1629     ObjectPtr aObject = aRootDoc->object(ModelAPI_ResultPart::group(), i);
1630     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObject);
1631     displayDocumentResults(aPart->partDoc());
1632   }
1633   myDisplayer->updateViewer();
1634 }
1635
1636 //**************************************************************
1637 void XGUI_Workshop::displayDocumentResults(DocumentPtr theDoc)
1638 {
1639   if (!theDoc)
1640     return;
1641   displayGroupResults(theDoc, ModelAPI_ResultConstruction::group());
1642   displayGroupResults(theDoc, ModelAPI_ResultBody::group());
1643 }
1644
1645 //**************************************************************
1646 void XGUI_Workshop::displayGroupResults(DocumentPtr theDoc, std::string theGroup)
1647 {
1648   for (int i = 0; i < theDoc->size(theGroup); i++)
1649     displayObject(theDoc->object(theGroup, i));
1650 }
1651
1652 //**************************************************************
1653 void XGUI_Workshop::setDisplayMode(const QObjectPtrList& theList, int theMode)
1654 {
1655   foreach(ObjectPtr aObj, theList) {
1656     myDisplayer->setDisplayMode(aObj, (XGUI_Displayer::DisplayMode)theMode, false);
1657   }
1658   if (theList.size() > 0)
1659     myDisplayer->updateViewer();
1660 }
1661
1662 //**************************************************************
1663 void XGUI_Workshop::closeDocument()
1664 {
1665   ModuleBase_Operation* anOperation = operationMgr()->currentOperation();
1666   while (anOperation) {
1667     anOperation->abort();
1668     anOperation = operationMgr()->currentOperation();
1669   }
1670   myDisplayer->closeLocalContexts();
1671   myDisplayer->eraseAll();
1672   objectBrowser()->clearContent();
1673
1674   SessionPtr aMgr = ModelAPI_Session::get();
1675   aMgr->closeAll();
1676   objectBrowser()->clearContent();
1677 }
1678
1679 //**************************************************************
1680 bool XGUI_Workshop::displayObject(ObjectPtr theObj)
1681 {
1682   if (!myModule->canDisplayObject(theObj))
1683     return false;
1684
1685   ResultBodyPtr aBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(theObj);
1686   if (aBody.get() != NULL) {
1687     int aNb = myDisplayer->objectsCount();
1688     myDisplayer->display(theObj, false);
1689     if (aNb == 0)
1690       viewer()->fitAll();
1691   } else if (!(myIsLoadingData || myPartActivating))
1692     myDisplayer->display(theObj, false);
1693
1694   return true;
1695 }
1696
1697 void XGUI_Workshop::addHistoryMenu(QObject* theObject, const char* theSignal, const char* theSlot)
1698 {
1699   XGUI_HistoryMenu* aMenu = NULL;
1700   if (isSalomeMode()) {
1701     QAction* anAction = qobject_cast<QAction*>(theObject);
1702     if (!anAction)
1703       return;
1704     aMenu = new XGUI_HistoryMenu(anAction);
1705   } else {
1706     QToolButton* aButton =  qobject_cast<QToolButton*>(theObject);
1707     aMenu = new XGUI_HistoryMenu(aButton);
1708   }
1709   connect(this, theSignal, aMenu, SLOT(setHistory(const QList<ActionInfo>&)));
1710   connect(aMenu, SIGNAL(actionSelected(int)), this, theSlot);
1711 }
1712
1713 QList<ActionInfo> XGUI_Workshop::processHistoryList(const std::list<std::string>& theList) const
1714 {
1715   QList<ActionInfo> aResult;
1716   std::list<std::string>::const_iterator it = theList.cbegin();
1717   for (; it != theList.cend(); it++) {
1718     QString anId = QString::fromStdString(*it);
1719     bool isEditing = anId.endsWith(ModuleBase_Operation::EditSuffix());
1720     if (isEditing) {
1721       anId.chop(ModuleBase_Operation::EditSuffix().size());
1722     }
1723     ActionInfo anInfo;
1724     QAction* aContextMenuAct = myContextMenuMgr->actionByName(anId);
1725     if (aContextMenuAct) {
1726       anInfo.initFrom(aContextMenuAct);
1727     } else {
1728       anInfo = myActionsMgr->actionInfoById(anId);
1729     }
1730     if (isEditing) {
1731       anInfo.text = anInfo.text.prepend("Modify ");
1732     }
1733     aResult << anInfo;
1734   }
1735   return aResult;
1736 }