Salome HOME
8d113e9d1eec0a1e2efa070116aa0c794d3aa5a1
[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
20 #include <AppElements_Workbench.h>
21 #include <AppElements_Viewer.h>
22 #include <AppElements_Command.h>
23 #include <AppElements_MainMenu.h>
24 #include <AppElements_MainWindow.h>
25 #include <AppElements_MenuGroupPanel.h>
26
27 #include <ModuleBase_IModule.h>
28 #include <ModuleBase_Preferences.h>
29
30 #include <ModelAPI_Events.h>
31 #include <ModelAPI_Session.h>
32 #include <ModelAPI_Feature.h>
33 #include <ModelAPI_Data.h>
34 #include <ModelAPI_AttributeDocRef.h>
35 #include <ModelAPI_Object.h>
36 #include <ModelAPI_Validator.h>
37 #include <ModelAPI_ResultConstruction.h>
38 #include <ModelAPI_ResultBody.h>
39
40 //#include <PartSetPlugin_Part.h>
41
42 #include <Events_Loop.h>
43 #include <Events_Error.h>
44 #include <Events_LongOp.h>
45
46 #include <ModuleBase_Operation.h>
47 #include <ModuleBase_Operation.h>
48 #include <ModuleBase_OperationDescription.h>
49 #include <ModuleBase_SelectionValidator.h>
50 #include <ModuleBase_WidgetFactory.h>
51 #include <ModuleBase_Tools.h>
52 #include <ModuleBase_IViewer.h>
53 #include<ModuleBase_FilterFactory.h>
54
55 #include <Config_Common.h>
56 #include <Config_FeatureMessage.h>
57 #include <Config_PointerMessage.h>
58 #include <Config_ModuleReader.h>
59 #include <Config_PropManager.h>
60 #include <Config_SelectionFilterMessage.h>
61
62 #include <QApplication>
63 #include <QFileDialog>
64 #include <QMessageBox>
65 #include <QMdiSubWindow>
66 #include <QPushButton>
67 #include <QDockWidget>
68 #include <QLayout>
69 #include <QThread>
70 #include <QObject>
71
72 #ifdef _DEBUG
73 #include <QDebug>
74 #include <iostream>
75 #endif
76
77 #ifdef WIN32
78 #include <windows.h>
79 #else
80 #include <dlfcn.h>
81 #endif
82
83 QMap<QString, QString> XGUI_Workshop::myIcons;
84
85
86 QIcon XGUI_Workshop::featureIcon(const FeaturePtr& theFeature)
87 {
88   QIcon anIcon;
89
90   std::string aKind = theFeature->getKind();
91   QString aId(aKind.c_str());
92   if (!myIcons.contains(aId))
93     return anIcon;
94
95   QString anIconString = myIcons[aId];
96
97   ModelAPI_ExecState aState = theFeature->data()->execState();
98   switch(aState) {
99     case ModelAPI_StateDone:
100     case ModelAPI_StateNothing: {
101       anIcon = QIcon(anIconString);
102     }
103     break;
104     case ModelAPI_StateMustBeUpdated: {
105       anIcon = ModuleBase_Tools::lighter(anIconString);
106     }
107     break;
108     case ModelAPI_StateExecFailed: {
109       anIcon = ModuleBase_Tools::composite(":pictures/exec_state_failed.png", anIconString);
110     }
111     break;
112     case ModelAPI_StateInvalidArgument: {
113       anIcon = ModuleBase_Tools::composite(":pictures/exec_state_invalid_parameters.png",
114                                            anIconString);
115     }
116     break;
117     default: break;  
118   }
119   return anIcon;  
120 }
121
122 XGUI_Workshop::XGUI_Workshop(XGUI_SalomeConnector* theConnector)
123     : QObject(),
124       myCurrentDir(QString()),
125       myModule(NULL),
126       mySalomeConnector(theConnector),
127       myPropertyPanel(0),
128       myObjectBrowser(0),
129       myDisplayer(0),
130       myUpdatePrefs(false),
131       myPartActivating(false)
132 {
133   myMainWindow = mySalomeConnector ? 0 : new AppElements_MainWindow();
134
135   myDisplayer = new XGUI_Displayer(this);
136
137   mySelector = new XGUI_SelectionMgr(this);
138   //connect(mySelector, SIGNAL(selectionChanged()), this, SLOT(updateModuleCommands()));
139
140   myOperationMgr = new XGUI_OperationMgr(this);
141   myActionsMgr = new XGUI_ActionsMgr(this);
142   myErrorDlg = new XGUI_ErrorDialog(myMainWindow);
143   myContextMenuMgr = new XGUI_ContextMenuMgr(this);
144   connect(myContextMenuMgr, SIGNAL(actionTriggered(const QString&, bool)), this,
145           SLOT(onContextMenuCommand(const QString&, bool)));
146
147   myViewerProxy = new XGUI_ViewerProxy(this);
148   connect(myViewerProxy, SIGNAL(selectionChanged()),
149           myActionsMgr,  SLOT(updateOnViewSelection()));
150
151   myModuleConnector = new XGUI_ModuleConnector(this);
152
153   connect(myOperationMgr, SIGNAL(operationStarted(ModuleBase_Operation*)), 
154           SLOT(onOperationStarted(ModuleBase_Operation*)));
155   connect(myOperationMgr, SIGNAL(operationResumed(ModuleBase_Operation*)),
156           SLOT(onOperationResumed(ModuleBase_Operation*)));
157   connect(myOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)),
158           SLOT(onOperationStopped(ModuleBase_Operation*)));
159   connect(myOperationMgr, SIGNAL(operationCommitted(ModuleBase_Operation*)), 
160           SLOT(onOperationCommitted(ModuleBase_Operation*)));
161   connect(myOperationMgr, SIGNAL(operationAborted(ModuleBase_Operation*)), 
162           SLOT(onOperationAborted(ModuleBase_Operation*)));
163   connect(myMainWindow, SIGNAL(exitKeySequence()), SLOT(onExit()));
164   connect(this, SIGNAL(errorOccurred(const QString&)), myErrorDlg, SLOT(addError(const QString&)));
165 }
166
167 //******************************************************
168 XGUI_Workshop::~XGUI_Workshop(void)
169 {
170   delete myDisplayer;
171 }
172
173 //******************************************************
174 void XGUI_Workshop::startApplication()
175 {
176   initMenu();
177
178   Config_PropManager::registerProp("Plugins", "default_path", "Default Path",
179                                    Config_Prop::Directory, "");
180
181   //Initialize event listening
182   Events_Loop* aLoop = Events_Loop::loop();
183   aLoop->registerListener(this, Events_Error::errorID());  //!< Listening application errors.
184   aLoop->registerListener(this, Events_Loop::eventByName(Config_FeatureMessage::GUI_EVENT()));
185   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OPERATION_LAUNCHED));
186   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
187   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_CREATED));
188   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
189   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_DELETED));
190   aLoop->registerListener(this, Events_Loop::eventByName("LongOperation"));
191   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_PLUGIN_LOADED));
192   aLoop->registerListener(this, Events_Loop::eventByName("CurrentDocumentChanged"));
193   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_TOSHOW));
194   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_TOHIDE));
195   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_SELFILTER_LOADED));
196
197   registerValidators();
198
199   // Calling of  loadCustomProps before activating module is required
200   // by Config_PropManger to restore user-defined path to plugins
201   ModuleBase_Preferences::loadCustomProps();
202   activateModule();
203   if (myMainWindow) {
204     myMainWindow->show();
205     updateCommandStatus();
206   }
207   
208   onNew();
209 }
210
211 //******************************************************
212 void XGUI_Workshop::initMenu()
213 {
214   myContextMenuMgr->createActions();
215
216   if (isSalomeMode()) {
217     // Create only Undo, Redo commands
218     QAction* aAction = salomeConnector()->addDesktopCommand("UNDO_CMD", tr("Undo"),
219                                                          tr("Undo last command"),
220                                                          QIcon(":pictures/undo.png"),
221                                                          QKeySequence::Undo, false, "MEN_DESK_EDIT");
222     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onUndo()));
223     aAction = salomeConnector()->addDesktopCommand("REDO_CMD", tr("Redo"), tr("Redo last command"),
224                                                 QIcon(":pictures/redo.png"), QKeySequence::Redo,
225                                                 false, "MEN_DESK_EDIT");
226     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onRedo()));
227     salomeConnector()->addDesktopMenuSeparator("MEN_DESK_EDIT");
228     aAction = salomeConnector()->addDesktopCommand("REBUILD_CMD", tr("Rebuild"), tr("Rebuild data objects"),
229                                                 QIcon(":pictures/rebuild.png"), QKeySequence(),
230                                                 false, "MEN_DESK_EDIT");
231     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onRebuild()));
232     salomeConnector()->addDesktopMenuSeparator("MEN_DESK_EDIT");
233
234     aAction = salomeConnector()->addDesktopCommand("SAVEAS_CMD", tr("Export NewGeom..."), tr("Export the current document into a NewGeom file"),
235                                                 QIcon(), QKeySequence(),
236                                                 false, "MEN_DESK_FILE");
237     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onSaveAs()));
238
239     aAction = salomeConnector()->addDesktopCommand("OPEN_CMD", tr("Import NewGeom..."), tr("Import a NewGeom file"),
240                                                 QIcon(), QKeySequence(),
241                                                 false, "MEN_DESK_FILE");
242     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onOpen()));
243     salomeConnector()->addDesktopMenuSeparator("MEN_DESK_FILE");
244
245     return;
246   }
247   // File commands group
248   AppElements_MenuGroupPanel* aGroup = myMainWindow->menuObject()->generalPage();
249
250   AppElements_Command* aCommand;
251
252   aCommand = aGroup->addFeature("SAVE_CMD", tr("Save..."), tr("Save the document"),
253                                 QIcon(":pictures/save.png"), QKeySequence::Save);
254   aCommand->connectTo(this, SLOT(onSave()));
255   //aCommand->disable();
256
257   aCommand = aGroup->addFeature("UNDO_CMD", tr("Undo"), tr("Undo last command"),
258                                 QIcon(":pictures/undo.png"), QKeySequence::Undo);
259   aCommand->connectTo(this, SLOT(onUndo()));
260
261   aCommand = aGroup->addFeature("REDO_CMD", tr("Redo"), tr("Redo last command"),
262                                 QIcon(":pictures/redo.png"), QKeySequence::Redo);
263   aCommand->connectTo(this, SLOT(onRedo()));
264
265   aCommand = aGroup->addFeature("REBUILD_CMD", tr("Rebuild"), tr("Rebuild data objects"),
266     QIcon(":pictures/rebuild.png"), QKeySequence());
267   aCommand->connectTo(this, SLOT(onRebuild()));
268
269   aCommand = aGroup->addFeature("SAVEAS_CMD", tr("Save as..."), tr("Save the document into a file"),
270                                 QIcon(":pictures/save.png"), QKeySequence());
271   aCommand->connectTo(this, SLOT(onSaveAs()));
272   //aCommand->disable();
273
274   aCommand = aGroup->addFeature("OPEN_CMD", tr("Open..."), tr("Open a new document"),
275                                 QIcon(":pictures/open.png"), QKeySequence::Open);
276   aCommand->connectTo(this, SLOT(onOpen()));
277
278   //aCommand = aGroup->addFeature("NEW_CMD", tr("New"), tr("Create a new document"),
279   //                              QIcon(":pictures/new.png"), QKeySequence::New);
280   //aCommand->connectTo(this, SLOT(onNew()));
281
282   aCommand = aGroup->addFeature("PREF_CMD", tr("Preferences"), tr("Edit preferences"),
283                                 QIcon(":pictures/preferences.png"), QKeySequence::Preferences);
284   aCommand->connectTo(this, SLOT(onPreferences()));
285
286   aCommand = aGroup->addFeature("EXIT_CMD", tr("Exit"), tr("Exit application"),
287                                 QIcon(":pictures/close.png"), QKeySequence::Close);
288   aCommand->connectTo(this, SLOT(onExit()));
289   //FIXME: SBH's test action. Can be used for some GUI tests.
290 //  #ifdef _DEBUG
291 //    aCommand = aGroup->addFeature("TEST_CMD", "Test!", "Private debug button",
292 //                                  QIcon(":pictures/close.png"), QKeySequence(), true);
293 //    aCommand->connectTo(myMainWindow, SLOT(dockPythonConsole()));
294 //  #endif
295 }
296
297 //******************************************************
298 AppElements_Workbench* XGUI_Workshop::addWorkbench(const QString& theName)
299 {
300   AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
301   return aMenuBar->addWorkbench(theName);
302 }
303
304 //******************************************************
305 void XGUI_Workshop::processEvent(const std::shared_ptr<Events_Message>& theMessage)
306 {
307   if (QApplication::instance()->thread() != QThread::currentThread()) {
308     #ifdef _DEBUG
309     std::cout << "XGUI_Workshop::processEvent: " << "Working in another thread." << std::endl;
310     #endif
311     SessionPtr aMgr = ModelAPI_Session::get();
312     PostponeMessageQtEvent* aPostponeEvent = new PostponeMessageQtEvent(theMessage);
313     QApplication::postEvent(this, aPostponeEvent);
314     return;
315   }
316
317   //A message to start feature creation received.
318   if (theMessage->eventID() == Events_Loop::loop()->eventByName(Config_FeatureMessage::GUI_EVENT())) {
319     std::shared_ptr<Config_FeatureMessage> aFeatureMsg =
320        std::dynamic_pointer_cast<Config_FeatureMessage>(theMessage);
321     if (!aFeatureMsg->isInternal()) {
322       addFeature(aFeatureMsg);
323     }
324   }
325
326   // Process creation of Part
327   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_CREATED)) {
328     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aUpdMsg =
329         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
330     onFeatureCreatedMsg(aUpdMsg);
331     if (myUpdatePrefs) {
332       if (mySalomeConnector)
333         mySalomeConnector->createPreferences();
334       myUpdatePrefs = false;
335     }
336   }
337   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_PLUGIN_LOADED)) {
338     myUpdatePrefs = true;
339   }
340
341   // Redisplay feature
342   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY)) {
343     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aUpdMsg =
344         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
345     onFeatureRedisplayMsg(aUpdMsg);
346   }
347
348   //Update property panel on corresponding message. If there is no current operation (no
349   //property panel), or received message has different feature to the current - do nothing.
350   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_UPDATED)) {
351     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> anUpdateMsg =
352         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
353     onFeatureUpdatedMsg(anUpdateMsg);
354   }
355
356   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_DELETED)) {
357     std::shared_ptr<ModelAPI_ObjectDeletedMessage> aDelMsg =
358         std::dynamic_pointer_cast<ModelAPI_ObjectDeletedMessage>(theMessage);
359     onObjectDeletedMsg(aDelMsg);
360   }
361
362   else if (theMessage->eventID() == Events_LongOp::eventID()) {
363     if (Events_LongOp::isPerformed())
364       QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
365     else
366       QApplication::restoreOverrideCursor();
367   }
368
369   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_TOSHOW)) {
370     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> anUpdateMsg =
371         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
372     const std::set<ObjectPtr>& aObjList = anUpdateMsg->objects();
373     QObjectPtrList aList;
374     std::set<ObjectPtr>::const_iterator aIt;
375     for (aIt = aObjList.cbegin(); aIt != aObjList.cend(); ++aIt)
376       aList.append(*aIt);
377     showObjects(aList, true);
378   }
379
380   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_TOHIDE)) {
381     std::shared_ptr<ModelAPI_ObjectUpdatedMessage> anUpdateMsg =
382         std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
383     const std::set<ObjectPtr>& aObjList = anUpdateMsg->objects();
384     QObjectPtrList aList;
385     std::set<ObjectPtr>::const_iterator aIt;
386     for (aIt = aObjList.cbegin(); aIt != aObjList.cend(); ++aIt)
387       aList.append(*aIt);
388     showObjects(aList, false);
389   }
390
391   //An operation passed by message. Start it, process and commit.
392   else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OPERATION_LAUNCHED)) {
393     std::shared_ptr<Config_PointerMessage> aPartSetMsg =
394         std::dynamic_pointer_cast<Config_PointerMessage>(theMessage);
395     //myPropertyPanel->cleanContent();
396     ModuleBase_Operation* anOperation = (ModuleBase_Operation*) aPartSetMsg->pointer();
397
398     if (myOperationMgr->startOperation(anOperation)) {
399       myPropertyPanel->updateContentWidget(anOperation->feature());
400       if (!anOperation->getDescription()->hasXmlRepresentation()) {
401         if (anOperation->commit())
402           updateCommandStatus();
403       }
404     }
405   }
406   else if (theMessage->eventID() == Events_Loop::loop()->eventByName("CurrentDocumentChanged")) {
407     myActionsMgr->update();
408     // Find and Activate active part
409     if (myPartActivating)
410       return;
411     SessionPtr aMgr = ModelAPI_Session::get();
412     DocumentPtr aActiveDoc = aMgr->activeDocument();
413     DocumentPtr aDoc = aMgr->moduleDocument();
414     if (aActiveDoc == aDoc) {
415       activatePart(ResultPartPtr()); 
416       return;
417     }
418     std::string aGrpName = ModelAPI_ResultPart::group();
419     for (int i = 0; i < aDoc->size(aGrpName); i++) {
420       ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aDoc->object(aGrpName, i));
421       if (aPart->partDoc() == aActiveDoc) {
422         activatePart(aPart); // Activate a part which corresponds to active Doc
423         return;
424       }
425     }
426     // If not found then activate global document
427     activatePart(ResultPartPtr()); 
428
429   }
430   else if (theMessage->eventID() == Events_Loop::eventByName(EVENT_SELFILTER_LOADED)) {
431     std::shared_ptr<Config_SelectionFilterMessage> aMsg = 
432       std::dynamic_pointer_cast<Config_SelectionFilterMessage>(theMessage);
433     if (aMsg) {
434       ModuleBase_FilterFactory* aFactory = moduleConnector()->selectionFilters();
435       if (!aMsg->attributeId().empty()) {
436         aFactory->assignFilter(aMsg->selectionFilterId(), aMsg->featureId(), aMsg->attributeId(),
437                                aMsg->parameters());
438       }
439     }
440   }
441
442   
443   else {
444     //Show error dialog if error message received.
445     std::shared_ptr<Events_Error> anAppError = std::dynamic_pointer_cast<Events_Error>(theMessage);
446     if (anAppError) {
447       emit errorOccurred(QString::fromLatin1(anAppError->description()));
448     }
449   }
450   if (!isSalomeMode()) {
451     SessionPtr aMgr = ModelAPI_Session::get();
452     if (aMgr->isModified() != myMainWindow->isModifiedState())
453       myMainWindow->setModifiedState(aMgr->isModified());
454   }
455 }
456
457
458 //******************************************************
459 void XGUI_Workshop::onStartWaiting()
460 {
461   if (Events_LongOp::isPerformed()) {
462     QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
463   }
464 }
465
466 //******************************************************
467 void XGUI_Workshop::onFeatureUpdatedMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& theMsg)
468 {
469   std::set<ObjectPtr> aFeatures = theMsg->objects();
470   if (myOperationMgr->hasOperation()) {
471     FeaturePtr aCurrentFeature = myOperationMgr->currentOperation()->feature();
472     std::set<ObjectPtr>::const_iterator aIt;
473     for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) {
474       ObjectPtr aNewFeature = (*aIt);
475       if (aNewFeature == aCurrentFeature) {
476         myPropertyPanel->updateContentWidget(aCurrentFeature);
477         break;
478       }
479     }
480   }
481   myOperationMgr->onValidateOperation();
482   if (myObjectBrowser)
483     myObjectBrowser->processEvent(theMsg);
484 }
485
486 //******************************************************
487 void XGUI_Workshop::onFeatureRedisplayMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& theMsg)
488 {
489   std::set<ObjectPtr> aObjects = theMsg->objects();
490   std::set<ObjectPtr>::const_iterator aIt;
491   for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
492     ObjectPtr aObj = (*aIt);
493     bool aHide = !aObj->data() || !aObj->data()->isValid();
494     if (!aHide) { // check that this is not hidden result
495       ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
496       aHide = aRes && aRes->isConcealed();
497     }
498     if (aHide)
499       myDisplayer->erase(aObj, false);
500     else {
501       if (myDisplayer->isVisible(aObj))  {
502         myDisplayer->display(aObj, false);  // In order to update presentation
503         if (myOperationMgr->hasOperation()) {
504           ModuleBase_Operation* aOperation = myOperationMgr->currentOperation();
505           if (aOperation->hasObject(aObj) && myDisplayer->isActive(aObj))
506             myDisplayer->deactivate(aObj);
507         }
508       } else {
509         if (myOperationMgr->hasOperation()) {
510           ModuleBase_Operation* aOperation = myOperationMgr->currentOperation();
511           // Display only current operation results if operation has preview
512           if (aOperation->hasObject(aObj)/* && aOperation->hasPreview()*/) {
513             myDisplayer->display(aObj, false);
514             // Deactivate object of current operation from selection
515             if (myDisplayer->isActive(aObj))
516               myDisplayer->deactivate(aObj);
517           }
518         }
519       }
520     }
521   }
522   myDisplayer->updateViewer();
523 }
524
525 //******************************************************
526 void XGUI_Workshop::onFeatureCreatedMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& theMsg)
527 {
528   std::set<ObjectPtr> aObjects = theMsg->objects();
529
530   std::set<ObjectPtr>::const_iterator aIt;
531   bool aHasPart = false;
532   bool isDisplayed = false;
533   for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
534     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(*aIt);
535     if (aPart) {
536       aHasPart = true;
537       // If a feature is created from the aplication's python console  
538       // it doesn't stored in the operation mgr and doesn't displayed
539     } else if (myOperationMgr->hasOperation()) {
540       ModuleBase_Operation* aOperation = myOperationMgr->currentOperation();
541       if (aOperation->hasObject(*aIt)) {  // Display only current operation results
542         myDisplayer->display(*aIt, false);
543         isDisplayed = true;
544       }
545     }
546   }
547   if (myObjectBrowser)
548     myObjectBrowser->processEvent(theMsg);
549   if (isDisplayed)
550     myDisplayer->updateViewer();
551   //if (aHasPart) { // TODO: Avoid activate last part on loading of document
552   //  activateLastPart();
553   //}
554 }
555
556 //******************************************************
557 void XGUI_Workshop::onObjectDeletedMsg(const std::shared_ptr<ModelAPI_ObjectDeletedMessage>& theMsg)
558 {
559   if (myObjectBrowser)
560     myObjectBrowser->processEvent(theMsg);
561   //std::set<ObjectPtr> aFeatures = theMsg->objects();
562 }
563
564 //******************************************************
565 void XGUI_Workshop::onOperationStarted(ModuleBase_Operation* theOperation)
566 {
567   setNestedFeatures(theOperation);
568
569   if (theOperation->getDescription()->hasXmlRepresentation()) {  //!< No need for property panel
570     connectWithOperation(theOperation);
571     setPropertyPanel(theOperation);
572   }
573   updateCommandStatus();
574
575   myModule->operationStarted(theOperation);
576 }
577
578 //******************************************************
579 void XGUI_Workshop::onOperationResumed(ModuleBase_Operation* theOperation)
580 {
581   setNestedFeatures(theOperation);
582
583   if (theOperation->getDescription()->hasXmlRepresentation()) {  //!< No need for property panel
584     connectWithOperation(theOperation);
585     setPropertyPanel(theOperation);
586   }
587   updateCommandStatus();
588
589   myModule->operationResumed(theOperation);
590 }
591
592
593 //******************************************************
594 void XGUI_Workshop::onOperationStopped(ModuleBase_Operation* theOperation)
595 {
596   ModuleBase_ISelection* aSel = mySelector->selection();
597   QObjectPtrList aObj = aSel->selectedPresentations();
598   //!< No need for property panel
599   updateCommandStatus();
600   hidePropertyPanel();
601   myPropertyPanel->cleanContent();
602
603   // Activate objects created by current operation
604   //FeaturePtr aFeature = theOperation->feature();
605   //myDisplayer->activate(aFeature);
606   //const std::list<ResultPtr>& aResults = aFeature->results();
607   //std::list<ResultPtr>::const_iterator aIt;
608   //for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt) {
609   //  myDisplayer->activate(*aIt);
610   //}
611   myModule->operationStopped(theOperation);
612 }
613
614
615 void XGUI_Workshop::onOperationCommitted(ModuleBase_Operation* theOperation)
616 {
617   myModule->operationCommitted(theOperation);
618 }
619
620 void XGUI_Workshop::onOperationAborted(ModuleBase_Operation* theOperation)
621 {
622   myModule->operationAborted(theOperation);
623 }
624
625 void XGUI_Workshop::setNestedFeatures(ModuleBase_Operation* theOperation)
626 {
627   if (this->isSalomeMode()) 
628     theOperation->setNestedFeatures(mySalomeConnector->nestedActions(theOperation->id()));
629   else 
630     theOperation->setNestedFeatures(myActionsMgr->nestedCommands(theOperation->id()));
631 }
632
633 void XGUI_Workshop::setPropertyPanel(ModuleBase_Operation* theOperation)
634 {
635   showPropertyPanel();
636   QString aXmlRepr = theOperation->getDescription()->xmlRepresentation();
637   ModuleBase_WidgetFactory aFactory = ModuleBase_WidgetFactory(aXmlRepr.toStdString(),
638                                                                 myModuleConnector);
639
640   myPropertyPanel->cleanContent();
641   aFactory.createWidget(myPropertyPanel->contentWidget());
642   ModuleBase_Tools::zeroMargins(myPropertyPanel->contentWidget());
643
644   QList<ModuleBase_ModelWidget*> aWidgets = aFactory.getModelWidgets();
645   foreach (ModuleBase_ModelWidget* aWidget, aWidgets) {
646     aWidget->setFeature(theOperation->feature());
647     aWidget->enableFocusProcessing();
648     QObject::connect(aWidget, SIGNAL(valuesChanged()), this, SLOT(onWidgetValuesChanged()));
649     // Init default values
650     if (!theOperation->isEditOperation() && !aWidget->isComputedDefault()) {
651       aWidget->storeValue();
652     }
653   }
654   
655   myPropertyPanel->setModelWidgets(aWidgets);
656   theOperation->setPropertyPanel(myPropertyPanel);
657
658   myModule->propertyPanelDefined(theOperation);
659
660   myPropertyPanel->setWindowTitle(theOperation->getDescription()->description());
661 }
662
663 bool XGUI_Workshop::event(QEvent * theEvent)
664 {
665   PostponeMessageQtEvent* aPostponedEv = dynamic_cast<PostponeMessageQtEvent*>(theEvent);
666   if (aPostponedEv) {
667     std::shared_ptr<Events_Message> aEventPtr = aPostponedEv->postponedMessage();
668     processEvent(aEventPtr);
669     return true;
670   }
671   return false;
672 }
673
674 /*
675  *
676  */
677 void XGUI_Workshop::addFeature(const std::shared_ptr<Config_FeatureMessage>& theMessage)
678 {
679   if (!theMessage) {
680 #ifdef _DEBUG
681     qDebug() << "XGUI_Workshop::addFeature: NULL message.";
682 #endif
683     return;
684   }
685   // Remember features icons
686   myIcons[QString::fromStdString(theMessage->id())] = QString::fromStdString(theMessage->icon());
687
688   //Find or create Workbench
689   QString aWchName = QString::fromStdString(theMessage->workbenchId());
690   QString aNestedFeatures = QString::fromStdString(theMessage->nestedFeatures());
691   bool isUsePropPanel = theMessage->isUseInput();
692   QString aFeatureId = QString::fromStdString(theMessage->id());
693   if (isSalomeMode()) {
694     QAction* aAction = salomeConnector()->addFeature(aWchName, aFeatureId,
695                                                      QString::fromStdString(theMessage->text()),
696                                                      QString::fromStdString(theMessage->tooltip()),
697                                                      QIcon(theMessage->icon().c_str()),
698                                                      QKeySequence(),
699                                                      isUsePropPanel);
700     salomeConnector()->setNestedActions(aFeatureId, aNestedFeatures.split(" ", QString::SkipEmptyParts));
701     salomeConnector()->setDocumentKind(aFeatureId, QString::fromStdString(theMessage->documentKind()));
702
703     myActionsMgr->addCommand(aAction);
704     myModule->actionCreated(aAction);
705   } else {
706
707     AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
708     AppElements_Workbench* aPage = aMenuBar->findWorkbench(aWchName);
709     if (!aPage) {
710       aPage = addWorkbench(aWchName);
711     }
712     //Find or create Group
713     QString aGroupName = QString::fromStdString(theMessage->groupId());
714     AppElements_MenuGroupPanel* aGroup = aPage->findGroup(aGroupName);
715     if (!aGroup) {
716       aGroup = aPage->addGroup(aGroupName);
717     }
718     QString aDocKind = QString::fromStdString(theMessage->documentKind());
719     // Check if hotkey sequence is already defined:
720     QKeySequence aHotKey = myActionsMgr->registerShortcut(
721         QString::fromStdString(theMessage->keysequence()));
722     // Create feature...
723     AppElements_Command* aCommand = aGroup->addFeature(aFeatureId,
724                                                 QString::fromStdString(theMessage->text()),
725                                                 QString::fromStdString(theMessage->tooltip()),
726                                                 QIcon(theMessage->icon().c_str()),
727                                                 aDocKind,
728                                                 aHotKey,
729                                                 isUsePropPanel);
730     aCommand->setNestedCommands(aNestedFeatures.split(" ", QString::SkipEmptyParts));
731     myActionsMgr->addCommand(aCommand);
732     myModule->actionCreated(aCommand);
733   }
734 }
735
736 /*
737  * Makes a signal/slot connections between Property Panel
738  * and given operation. The given operation becomes a
739  * current operation and previous operation if exists
740  */
741 void XGUI_Workshop::connectWithOperation(ModuleBase_Operation* theOperation)
742 {
743   QAction* aCommand = 0;
744   if (isSalomeMode()) {
745     aCommand = salomeConnector()->command(theOperation->getDescription()->operationId());
746   } else {
747     AppElements_MainMenu* aMenu = myMainWindow->menuObject();
748     FeaturePtr aFeature = theOperation->feature();
749     if(aFeature)
750       aCommand = aMenu->feature(QString::fromStdString(aFeature->getKind()));
751   }
752   //Abort operation on uncheck the command
753   if (aCommand) {
754     connect(aCommand, SIGNAL(triggered(bool)), theOperation, SLOT(setRunning(bool)));
755   }
756 }
757
758 /*
759  * Saves document with given name.
760  */
761 void XGUI_Workshop::saveDocument(const QString& theName, std::list<std::string>& theFileNames)
762 {
763   QApplication::restoreOverrideCursor();
764   SessionPtr aMgr = ModelAPI_Session::get();
765   aMgr->save(theName.toLatin1().constData(), theFileNames);
766   QApplication::restoreOverrideCursor();
767 }
768
769 bool XGUI_Workshop::isActiveOperationAborted()
770 {
771   return myOperationMgr->abortAllOperations();
772 }
773
774 //******************************************************
775 void XGUI_Workshop::onExit()
776 {
777   SessionPtr aMgr = ModelAPI_Session::get();
778   if (aMgr->isModified()) {
779     int anAnswer = QMessageBox::question(
780         myMainWindow, tr("Save current file"), tr("The document is modified, save before exit?"),
781         QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
782     if (anAnswer == QMessageBox::Save) {
783       bool saved = onSave();
784       if (!saved) {
785         return;
786       }
787     } else if (anAnswer == QMessageBox::Cancel) {
788       return;
789     }
790   }
791   qApp->exit();
792 }
793
794 //******************************************************
795 void XGUI_Workshop::onNew()
796 {
797   QApplication::setOverrideCursor(Qt::WaitCursor);
798   if (objectBrowser() == 0) {
799     createDockWidgets();
800     mySelector->connectViewers();
801   }
802   myViewerProxy->connectToViewer();
803   showObjectBrowser();
804   if (!isSalomeMode()) {
805     myMainWindow->showPythonConsole();
806     QMdiSubWindow* aWnd = myMainWindow->viewer()->createView();
807     aWnd->showMaximized();
808     updateCommandStatus();
809   }
810   myContextMenuMgr->connectViewer();
811   QApplication::restoreOverrideCursor();
812 }
813
814 //******************************************************
815 void XGUI_Workshop::onOpen()
816 {
817   if(!isActiveOperationAborted())
818     return;
819   //save current file before close if modified
820   SessionPtr aSession = ModelAPI_Session::get();
821   if (aSession->isModified()) {
822     //TODO(sbh): re-launch the app?
823     int anAnswer = QMessageBox::question(
824         myMainWindow, tr("Save current file"),
825         tr("The document is modified, save before opening another?"),
826         QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
827     if (anAnswer == QMessageBox::Save) {
828       onSave();
829     } else if (anAnswer == QMessageBox::Cancel) {
830       return;
831     }
832     aSession->closeAll();
833     myCurrentDir = "";
834   }
835
836   //show file dialog, check if readable and open
837   myCurrentDir = QFileDialog::getExistingDirectory(mainWindow());
838   if (myCurrentDir.isEmpty())
839     return;
840   QFileInfo aFileInfo(myCurrentDir);
841   if (!aFileInfo.exists() || !aFileInfo.isReadable()) {
842     QMessageBox::critical(myMainWindow, tr("Warning"), tr("Unable to open the file."));
843     myCurrentDir = "";
844     return;
845   }
846   QApplication::setOverrideCursor(Qt::WaitCursor);
847   aSession->load(myCurrentDir.toLatin1().constData());
848   myObjectBrowser->rebuildDataTree();
849   displayAllResults();
850   updateCommandStatus();
851   QApplication::restoreOverrideCursor();
852 }
853
854 //******************************************************
855 bool XGUI_Workshop::onSave()
856 {
857   if(!isActiveOperationAborted())
858     return false;
859   if (myCurrentDir.isEmpty()) {
860     return onSaveAs();
861   }
862   std::list<std::string> aFiles;
863   saveDocument(myCurrentDir, aFiles);
864   updateCommandStatus();
865   if (!isSalomeMode())
866     myMainWindow->setModifiedState(false);
867   return true;
868 }
869
870 //******************************************************
871 bool XGUI_Workshop::onSaveAs()
872 {
873   if(!isActiveOperationAborted())
874     return false;
875   QFileDialog dialog(mainWindow());
876   dialog.setWindowTitle(tr("Select directory to save files..."));
877   dialog.setFileMode(QFileDialog::Directory);
878   dialog.setFilter(tr("Folders (*)"));
879   dialog.setOptions(QFileDialog::HideNameFilterDetails | QFileDialog::ShowDirsOnly);
880   dialog.setViewMode(QFileDialog::Detail);
881
882   if (!dialog.exec()) {
883     return false;
884   }
885   QString aTempDir = dialog.selectedFiles().first();
886   QDir aDir(aTempDir);
887   if (aDir.exists() && !aDir.entryInfoList(QDir::NoDotAndDotDot | QDir::AllEntries).isEmpty()) {
888     int answer = QMessageBox::question(
889         myMainWindow,
890         //: Title of the dialog which asks user if he wants to save study in existing non-empty folder
891         tr("Save"),
892         tr("The folder already contains some files, save anyway?"),
893         QMessageBox::Save | QMessageBox::Cancel);
894     if (answer == QMessageBox::Cancel) {
895       return false;
896     }
897   }
898   myCurrentDir = aTempDir;
899   if (!isSalomeMode()) {
900     myMainWindow->setCurrentDir(myCurrentDir, false);
901     myMainWindow->setModifiedState(false);
902   }
903   return onSave();
904 }
905
906 //******************************************************
907 void XGUI_Workshop::onUndo()
908 {
909   objectBrowser()->treeView()->setCurrentIndex(QModelIndex());
910   SessionPtr aMgr = ModelAPI_Session::get();
911   if (aMgr->isOperation())
912     operationMgr()->onAbortOperation();
913   aMgr->undo();
914   updateCommandStatus();
915 }
916
917 //******************************************************
918 void XGUI_Workshop::onRedo()
919 {
920   objectBrowser()->treeView()->setCurrentIndex(QModelIndex());
921   SessionPtr aMgr = ModelAPI_Session::get();
922   if (aMgr->isOperation())
923     operationMgr()->onAbortOperation();
924   aMgr->redo();
925   updateCommandStatus();
926 }
927
928 //******************************************************
929 void XGUI_Workshop::onRebuild()
930 {
931   SessionPtr aMgr = ModelAPI_Session::get();
932   bool aWasOperation = aMgr->isOperation(); // keep this value
933   if (!aWasOperation) {
934     aMgr->startOperation();
935   }
936   static const Events_ID aRebuildEvent = Events_Loop::loop()->eventByName("Rebuild");
937   Events_Loop::loop()->send(std::shared_ptr<Events_Message>(
938     new Events_Message(aRebuildEvent, this)));
939   if (!aWasOperation) {
940     aMgr->finishOperation();
941   }
942 }
943
944 //******************************************************
945 void XGUI_Workshop::onPreferences()
946 {
947   ModuleBase_Prefs aModif;
948   ModuleBase_Preferences::editPreferences(aModif);
949   if (aModif.size() > 0) {
950     QString aSection;
951     foreach (ModuleBase_Pref aPref, aModif)
952     {
953       aSection = aPref.first;
954       if (aSection == ModuleBase_Preferences::VIEWER_SECTION) {
955         if (!isSalomeMode())
956           myMainWindow->viewer()->updateFromResources();
957       } else if (aSection == ModuleBase_Preferences::MENU_SECTION) {
958         if (!isSalomeMode())
959           myMainWindow->menuObject()->updateFromResources();
960       }
961     }
962   }
963 }
964
965 //******************************************************
966 ModuleBase_IModule* XGUI_Workshop::loadModule(const QString& theModule)
967 {
968   QString libName = QString::fromStdString(library(theModule.toStdString()));
969   if (libName.isEmpty()) {
970     qWarning(qPrintable(tr("Information about module \"%1\" doesn't exist.").arg(theModule)));
971     return 0;
972   }
973
974   QString err;
975   CREATE_FUNC crtInst = 0;
976
977 #ifdef WIN32
978   HINSTANCE modLib = ::LoadLibrary((LPTSTR) qPrintable(libName));
979   if (!modLib) {
980     LPVOID lpMsgBuf;
981     ::FormatMessage(
982         FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
983         0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
984     QString aMsg((char*) &lpMsgBuf);
985     err = QString("Failed to load  %1. %2").arg(libName).arg(aMsg);
986     ::LocalFree(lpMsgBuf);
987   } else {
988     crtInst = (CREATE_FUNC) ::GetProcAddress(modLib, CREATE_MODULE);
989     if (!crtInst) {
990       LPVOID lpMsgBuf;
991       ::FormatMessage(
992           FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM
993               | FORMAT_MESSAGE_IGNORE_INSERTS,
994           0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
995       QString aMsg((char*) &lpMsgBuf);
996       err = QString("Failed to find  %1 function. %2").arg( CREATE_MODULE).arg(aMsg);
997       ::LocalFree(lpMsgBuf);
998     }
999   }
1000 #else
1001   void* modLib = dlopen( libName.toLatin1(), RTLD_LAZY | RTLD_GLOBAL );
1002   if ( !modLib ) {
1003     err = QString( "Can not load library %1. %2" ).arg( libName ).arg( dlerror() );
1004   } else {
1005     crtInst = (CREATE_FUNC)dlsym( modLib, CREATE_MODULE );
1006     if ( !crtInst ) {
1007       err = QString( "Failed to find function %1. %2" ).arg( CREATE_MODULE ).arg( dlerror() );
1008     }
1009   }
1010 #endif
1011
1012   ModuleBase_IModule* aModule = crtInst ? crtInst(myModuleConnector) : 0;
1013
1014   if (!err.isEmpty()) {
1015     if (mainWindow()) {
1016       Events_Error::send(err.toStdString());
1017     } else {
1018       qWarning(qPrintable(err));
1019     }
1020   }
1021   return aModule;
1022 }
1023
1024 //******************************************************
1025 bool XGUI_Workshop::activateModule()
1026 {
1027   Config_ModuleReader aModuleReader;
1028   QString moduleName = QString::fromStdString(aModuleReader.getModuleName());
1029   myModule = loadModule(moduleName);
1030   if (!myModule)
1031     return false;
1032   myModule->createFeatures();
1033   myActionsMgr->update();
1034   return true;
1035 }
1036
1037 //******************************************************
1038 void XGUI_Workshop::updateCommandStatus()
1039 {
1040   QList<QAction*> aCommands;
1041   if (isSalomeMode()) {  // update commands in SALOME mode
1042     aCommands = salomeConnector()->commandList();
1043   } else {
1044     AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
1045     foreach (AppElements_Command* aCmd, aMenuBar->features())
1046       aCommands.append(aCmd);
1047   }
1048   SessionPtr aMgr = ModelAPI_Session::get();
1049   if (aMgr->hasModuleDocument()) {
1050     QAction *aUndoCmd, *aRedoCmd;
1051     foreach(QAction* aCmd, aCommands) {
1052       QString aId = aCmd->data().toString();
1053       if (aId == "UNDO_CMD")
1054         aUndoCmd = aCmd;
1055       else if (aId == "REDO_CMD")
1056         aRedoCmd = aCmd;
1057       else
1058         // Enable all commands
1059         aCmd->setEnabled(true);
1060     }
1061     aUndoCmd->setEnabled(aMgr->canUndo() && !aMgr->isOperation());
1062     aRedoCmd->setEnabled(aMgr->canRedo() && !aMgr->isOperation());
1063   } else {
1064     foreach(QAction* aCmd, aCommands) {
1065       QString aId = aCmd->data().toString();
1066       if (aId == "NEW_CMD")
1067         aCmd->setEnabled(true);
1068       else if (aId == "EXIT_CMD")
1069         aCmd->setEnabled(true);
1070       else
1071         aCmd->setEnabled(false);
1072     }
1073   }
1074   myActionsMgr->update();
1075   emit commandStatusUpdated();
1076 }
1077
1078 //******************************************************
1079 QDockWidget* XGUI_Workshop::createObjectBrowser(QWidget* theParent)
1080 {
1081   QDockWidget* aObjDock = new QDockWidget(theParent);
1082   aObjDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea | Qt::BottomDockWidgetArea);
1083   aObjDock->setWindowTitle(tr("Object browser"));
1084   aObjDock->setStyleSheet(
1085       "::title { position: relative; padding-left: 5px; text-align: left center }");
1086   myObjectBrowser = new XGUI_ObjectsBrowser(aObjDock);
1087   connect(myObjectBrowser, SIGNAL(activePartChanged(ObjectPtr)), this,
1088           SLOT(changeCurrentDocument(ObjectPtr)));
1089   aObjDock->setWidget(myObjectBrowser);
1090
1091   myContextMenuMgr->connectObjectBrowser();
1092   return aObjDock;
1093 }
1094
1095 //******************************************************
1096 /*
1097  * Creates dock widgets, places them in corresponding area
1098  * and tabifies if necessary.
1099  */
1100 void XGUI_Workshop::createDockWidgets()
1101 {
1102   QMainWindow* aDesktop = isSalomeMode() ? salomeConnector()->desktop() : myMainWindow;
1103   QDockWidget* aObjDock = createObjectBrowser(aDesktop);
1104   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, aObjDock);
1105   myPropertyPanel = new XGUI_PropertyPanel(aDesktop);
1106   myPropertyPanel->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea | Qt::BottomDockWidgetArea);
1107
1108   connect(myPropertyPanel, SIGNAL(noMoreWidgets()), myModule, SLOT(onNoMoreWidgets()));
1109
1110   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, myPropertyPanel);
1111   hidePropertyPanel();  //<! Invisible by default
1112   hideObjectBrowser();
1113   aDesktop->tabifyDockWidget(aObjDock, myPropertyPanel);
1114   myPropertyPanel->installEventFilter(myOperationMgr);
1115
1116   QPushButton* aOkBtn = myPropertyPanel->findChild<QPushButton*>(PROP_PANEL_OK);
1117   connect(aOkBtn, SIGNAL(clicked()), myOperationMgr, SLOT(onCommitOperation()));
1118   QPushButton* aCancelBtn = myPropertyPanel->findChild<QPushButton*>(PROP_PANEL_CANCEL);
1119   connect(aCancelBtn, SIGNAL(clicked()), myOperationMgr, SLOT(onAbortOperation()));
1120   connect(myPropertyPanel, SIGNAL(keyReleased(QKeyEvent*)), myOperationMgr,
1121           SLOT(onKeyReleased(QKeyEvent*)));
1122   connect(myOperationMgr, SIGNAL(operationValidated(bool)), myPropertyPanel,
1123           SLOT(setAcceptEnabled(bool)));
1124
1125 }
1126
1127 //******************************************************
1128 void XGUI_Workshop::showPropertyPanel()
1129 {
1130   QAction* aViewAct = myPropertyPanel->toggleViewAction();
1131   //<! Restore ability to close panel from the window's menu
1132   aViewAct->setEnabled(true);
1133   myPropertyPanel->show();
1134   myPropertyPanel->raise();
1135 }
1136
1137 //******************************************************
1138 void XGUI_Workshop::hidePropertyPanel()
1139 {
1140   QAction* aViewAct = myPropertyPanel->toggleViewAction();
1141   //<! Do not allow to show empty property panel
1142   aViewAct->setEnabled(false);
1143   myPropertyPanel->hide();
1144 }
1145
1146 //******************************************************
1147 void XGUI_Workshop::showObjectBrowser()
1148 {
1149   myObjectBrowser->parentWidget()->show();
1150 }
1151
1152 //******************************************************
1153 void XGUI_Workshop::hideObjectBrowser()
1154 {
1155   myObjectBrowser->parentWidget()->hide();
1156 }
1157
1158 //******************************************************
1159 void XGUI_Workshop::onFeatureTriggered()
1160 {
1161   QAction* aCmd = dynamic_cast<QAction*>(sender());
1162   if (aCmd) {
1163     QString aId = salomeConnector()->commandId(aCmd);
1164     if (!aId.isNull())
1165       myModule->launchOperation(aId);
1166   }
1167 }
1168
1169 //******************************************************
1170 void XGUI_Workshop::changeCurrentDocument(ObjectPtr theObj)
1171 {
1172   SessionPtr aMgr = ModelAPI_Session::get();
1173   if (theObj) {
1174     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(theObj);
1175     if (aPart) {
1176       DocumentPtr aPartDoc = aPart->partDoc();
1177       if (aPartDoc) {
1178         aMgr->setActiveDocument(aPartDoc);
1179         return;
1180       }
1181     }
1182   }
1183   aMgr->setActiveDocument(aMgr->moduleDocument());
1184 }
1185
1186 //******************************************************
1187 void XGUI_Workshop::salomeViewerSelectionChanged()
1188 {
1189   emit salomeViewerSelection();
1190 }
1191
1192 //**************************************************************
1193 ModuleBase_IViewer* XGUI_Workshop::salomeViewer() const
1194 {
1195   return mySalomeConnector->viewer();
1196 }
1197
1198 //**************************************************************
1199 void XGUI_Workshop::onContextMenuCommand(const QString& theId, bool isChecked)
1200 {
1201   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1202   if ((theId == "ACTIVATE_PART_CMD") && (aObjects.size() > 0)) {
1203     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObjects.first());
1204     activatePart(aPart);
1205   } else if (theId == "DEACTIVATE_PART_CMD")
1206     activatePart(ResultPartPtr());
1207   else if (theId == "DELETE_CMD")
1208     deleteObjects(aObjects);
1209   else if (theId == "SHOW_CMD")
1210     showObjects(aObjects, true);
1211   else if (theId == "HIDE_CMD")
1212     showObjects(aObjects, false);
1213   else if (theId == "SHOW_ONLY_CMD")
1214     showOnlyObjects(aObjects);
1215   else if (theId == "SHADING_CMD")
1216     setDisplayMode(aObjects, XGUI_Displayer::Shading);
1217   else if (theId == "WIREFRAME_CMD")
1218     setDisplayMode(aObjects, XGUI_Displayer::Wireframe);
1219   else if (theId == "HIDEALL_CMD")
1220     myDisplayer->eraseAll();
1221   else if (theId == "EDIT_CMD") {
1222     FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObjects.first());
1223     if (aFeature)
1224       myModule->editFeature(aFeature);
1225   }
1226 }
1227
1228 //**************************************************************
1229 void XGUI_Workshop::onWidgetValuesChanged()
1230 {
1231   ModuleBase_Operation* anOperation = myOperationMgr->currentOperation();
1232   FeaturePtr aFeature = anOperation->feature();
1233
1234   ModuleBase_ModelWidget* aSenderWidget = dynamic_cast<ModuleBase_ModelWidget*>(sender());
1235
1236   const QList<ModuleBase_ModelWidget*>& aWidgets = myPropertyPanel->modelWidgets();
1237   QList<ModuleBase_ModelWidget*>::const_iterator anIt = aWidgets.begin(), aLast = aWidgets.end();
1238   for (; anIt != aLast; anIt++) {
1239     ModuleBase_ModelWidget* aCustom = *anIt;
1240     if (aCustom && (aCustom == aSenderWidget)) {
1241       aCustom->storeValue();
1242     }
1243   }
1244 }
1245
1246 //**************************************************************
1247 void XGUI_Workshop::activatePart(ResultPartPtr theFeature)
1248 {
1249   if (!myPartActivating) {
1250     myPartActivating = true;
1251     if (theFeature)
1252       theFeature->activate();
1253     changeCurrentDocument(theFeature);
1254     myObjectBrowser->activatePart(theFeature);
1255     myPartActivating = false;
1256   }
1257 }
1258
1259 //**************************************************************
1260 void XGUI_Workshop::activateLastPart()
1261 {
1262   SessionPtr aMgr = ModelAPI_Session::get();
1263   DocumentPtr aDoc = aMgr->moduleDocument();
1264   std::string aGrpName = ModelAPI_ResultPart::group();
1265   ObjectPtr aLastPart = aDoc->object(aGrpName, aDoc->size(aGrpName) - 1);
1266   ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aLastPart);
1267   if (aPart) {
1268     activatePart(aPart);
1269   }
1270 }
1271
1272 //**************************************************************
1273 void XGUI_Workshop::deleteObjects(const QObjectPtrList& theList)
1274 {
1275   QMainWindow* aDesktop = isSalomeMode() ? salomeConnector()->desktop() : myMainWindow;
1276   QMessageBox::StandardButton aRes = QMessageBox::warning(
1277       aDesktop, tr("Delete features"), tr("Seleted features will be deleted. Continue?"),
1278       QMessageBox::No | QMessageBox::Yes, QMessageBox::No);
1279   // ToDo: definbe deleting method
1280   if (aRes == QMessageBox::Yes) {
1281     SessionPtr aMgr = ModelAPI_Session::get();
1282     aMgr->startOperation();
1283     foreach (ObjectPtr aObj, theList)
1284     {
1285       ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
1286       if (aPart) {
1287         DocumentPtr aDoc = aPart->document();
1288         if (aDoc == aMgr->activeDocument()) {
1289           aDoc->close();
1290         }
1291         //aMgr->moduleDocument()->removeFeature(aPart->owner());
1292       } else {
1293         FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
1294         if (aFeature)
1295           aObj->document()->removeFeature(aFeature);
1296       }
1297     }
1298     myDisplayer->updateViewer();
1299     aMgr->finishOperation();
1300   }
1301 }
1302
1303 //**************************************************************
1304 void XGUI_Workshop::showObjects(const QObjectPtrList& theList, bool isVisible)
1305 {
1306   foreach (ObjectPtr aObj, theList)
1307   {
1308     if (isVisible) {
1309       myDisplayer->display(aObj, false);
1310     } else {
1311       myDisplayer->erase(aObj, false);
1312     }
1313   }
1314   myDisplayer->updateViewer();
1315 }
1316
1317 //**************************************************************
1318 void XGUI_Workshop::showOnlyObjects(const QObjectPtrList& theList)
1319 {
1320   myDisplayer->showOnly(theList);
1321 }
1322
1323
1324 //**************************************************************
1325 void XGUI_Workshop::registerValidators() const
1326 {
1327   SessionPtr aMgr = ModelAPI_Session::get();
1328   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
1329 }
1330
1331 //**************************************************************
1332 void XGUI_Workshop::displayAllResults()
1333 {
1334   SessionPtr aMgr = ModelAPI_Session::get();
1335   DocumentPtr aRootDoc = aMgr->moduleDocument();
1336   displayDocumentResults(aRootDoc);
1337   for (int i = 0; i < aRootDoc->size(ModelAPI_ResultPart::group()); i++) {
1338     ObjectPtr aObject = aRootDoc->object(ModelAPI_ResultPart::group(), i);
1339     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObject);
1340     displayDocumentResults(aPart->partDoc());
1341   }
1342   myDisplayer->updateViewer();
1343 }
1344
1345 //**************************************************************
1346 void XGUI_Workshop::displayDocumentResults(DocumentPtr theDoc)
1347 {
1348   if (!theDoc)
1349     return;
1350   displayGroupResults(theDoc, ModelAPI_ResultConstruction::group());
1351   displayGroupResults(theDoc, ModelAPI_ResultBody::group());
1352 }
1353
1354 //**************************************************************
1355 void XGUI_Workshop::displayGroupResults(DocumentPtr theDoc, std::string theGroup)
1356 {
1357   for (int i = 0; i < theDoc->size(theGroup); i++)
1358     myDisplayer->display(theDoc->object(theGroup, i), false);
1359 }
1360
1361 //**************************************************************
1362 void XGUI_Workshop::setDisplayMode(const QObjectPtrList& theList, int theMode)
1363 {
1364   foreach(ObjectPtr aObj, theList) {
1365     myDisplayer->setDisplayMode(aObj, (XGUI_Displayer::DisplayMode)theMode, false);
1366   }
1367   if (theList.size() > 0)
1368     myDisplayer->updateViewer();
1369 }
1370
1371 //**************************************************************
1372 void XGUI_Workshop::closeDocument()
1373 {
1374   myDisplayer->closeLocalContexts();
1375   myDisplayer->eraseAll();
1376   objectBrowser()->clearContent();
1377
1378   SessionPtr aMgr = ModelAPI_Session::get();
1379   aMgr->closeAll();
1380   objectBrowser()->clearContent();
1381 }