]> SALOME platform Git repositories - modules/shaper.git/blob - src/XGUI/XGUI_Workshop.cpp
Salome HOME
8ac845aaa1c8effe5d6fb8b6b6b4b812732f949e
[modules/shaper.git] / src / XGUI / XGUI_Workshop.cpp
1 #include "XGUI_Module.h"
2 #include "XGUI_Constants.h"
3 #include "XGUI_Command.h"
4 #include "XGUI_MainMenu.h"
5 #include "XGUI_MainWindow.h"
6 #include "XGUI_MenuGroupPanel.h"
7 #include "XGUI_Tools.h"
8 #include "XGUI_Workbench.h"
9 #include "XGUI_Workshop.h"
10 #include "XGUI_Viewer.h"
11 #include "ModuleBase_WidgetFactory.h"
12 #include "XGUI_SelectionMgr.h"
13 #include "XGUI_ObjectsBrowser.h"
14 #include "XGUI_Displayer.h"
15 #include "XGUI_OperationMgr.h"
16 #include "XGUI_SalomeConnector.h"
17 #include "XGUI_SalomeViewer.h"
18 #include "XGUI_ActionsMgr.h"
19 #include "XGUI_ErrorDialog.h"
20 #include "XGUI_ViewerProxy.h"
21 #include "XGUI_PropertyPanel.h"
22 #include "XGUI_ContextMenuMgr.h"
23 #include "XGUI_ModuleConnector.h"
24
25 #include <Model_Events.h>
26 #include <ModelAPI_PluginManager.h>
27 #include <ModelAPI_Feature.h>
28 #include <ModelAPI_Data.h>
29 #include <ModelAPI_AttributeDocRef.h>
30 #include <ModelAPI_Object.h>
31
32 #include <PartSetPlugin_Part.h>
33
34 #include <Events_Loop.h>
35 #include <Events_Error.h>
36 #include <ModuleBase_Operation.h>
37 #include <ModuleBase_Operation.h>
38 #include <ModuleBase_OperationDescription.h>
39 #include <Config_Common.h>
40 #include <Config_FeatureMessage.h>
41 #include <Config_PointerMessage.h>
42 #include <Config_ModuleReader.h>
43
44 #include <QApplication>
45 #include <QFileDialog>
46 #include <QMessageBox>
47 #include <QMdiSubWindow>
48 #include <QPushButton>
49 #include <QDockWidget>
50 #include <QLayout>
51 #include <QTimer>
52
53 #ifdef _DEBUG
54 #include <QDebug>
55 #endif
56
57 #ifdef WIN32
58 #include <windows.h>
59 #else
60 #include <dlfcn.h>
61 #endif
62
63
64 QMap<QString, QString> XGUI_Workshop::myIcons;
65
66 QString XGUI_Workshop::featureIcon(const std::string& theId)
67 {
68   QString aId(theId.c_str());
69   if (myIcons.contains(aId))
70     return myIcons[aId];
71   return QString();
72 }
73
74 XGUI_Workshop::XGUI_Workshop(XGUI_SalomeConnector* theConnector)
75   : QObject(),
76   myCurrentDir(QString()),
77   myPartSetModule(NULL),
78   mySalomeConnector(theConnector),
79   myPropertyPanel(0),
80   myObjectBrowser(0),
81   myDisplayer(0)
82 {
83   myMainWindow = mySalomeConnector? 0 : new XGUI_MainWindow();
84
85   myDisplayer = new XGUI_Displayer(this);
86
87   mySelector = new XGUI_SelectionMgr(this);
88
89   myOperationMgr = new XGUI_OperationMgr(this);
90   myActionsMgr = new XGUI_ActionsMgr(this);
91   myErrorDlg = new XGUI_ErrorDialog(myMainWindow);
92   myContextMenuMgr = new XGUI_ContextMenuMgr(this);
93   connect(myContextMenuMgr, SIGNAL(actionTriggered(const QString&, bool)), 
94           this, SLOT(onContextMenuCommand(const QString&, bool)));
95
96   myViewerProxy = new XGUI_ViewerProxy(this);
97   
98   myModuleConnector = new XGUI_ModuleConnector(this);
99
100   connect(myOperationMgr, SIGNAL(operationStarted()), SLOT(onOperationStarted()));
101   connect(myOperationMgr, SIGNAL(operationResumed()), SLOT(onOperationStarted()));
102   connect(myOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)), SLOT(onOperationStopped(ModuleBase_Operation*)));
103   connect(myMainWindow, SIGNAL(exitKeySequence()), SLOT(onExit()));
104   connect(myOperationMgr, SIGNAL(operationStarted()), myActionsMgr, SLOT(update()));
105   connect(myOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)), myActionsMgr, SLOT(update()));
106   connect(this, SIGNAL(errorOccurred(const QString&)), myErrorDlg, SLOT(addError(const QString&)));
107 }
108
109 //******************************************************
110 XGUI_Workshop::~XGUI_Workshop(void)
111 {
112 }
113
114 //******************************************************
115 void XGUI_Workshop::startApplication()
116 {
117   initMenu();
118   //Initialize event listening
119   Events_Loop* aLoop = Events_Loop::loop();
120   aLoop->registerListener(this, Events_Error::errorID()); //!< Listening application errors.
121   //TODO(sbh): Implement static method to extract event id [SEID]
122   Events_ID aFeatureId = aLoop->eventByName(EVENT_FEATURE_LOADED);
123   aLoop->registerListener(this, aFeatureId);
124   Events_ID aPartSetId = aLoop->eventByName("PartSetModuleEvent");
125   aLoop->registerListener(this, aPartSetId);
126   Events_ID aFeatureUpdatedId = aLoop->eventByName(EVENT_FEATURE_UPDATED);
127   aLoop->registerListener(this, aFeatureUpdatedId);
128   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_FEATURE_CREATED));
129
130   activateModule();
131   if (myMainWindow) {
132     myMainWindow->show();
133     updateCommandStatus();
134   }
135   onNew();
136 }
137
138 //******************************************************
139 void XGUI_Workshop::initMenu()
140 {
141   myContextMenuMgr->createActions();
142
143   if (isSalomeMode()) {
144     // Create only Undo, Redo commands
145     QAction* aAction = salomeConnector()->addEditCommand("UNDO_CMD", 
146                                       tr("Undo"), tr("Undo last command"),
147                                       QIcon(":pictures/undo.png"), 
148                                       QKeySequence::Undo, false);
149     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onUndo()));
150     aAction = salomeConnector()->addEditCommand("REDO_CMD", 
151                                       tr("Redo"), tr("Redo last command"),
152                                       QIcon(":pictures/redo.png"), 
153                                       QKeySequence::Redo, false);
154     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onRedo()));
155     salomeConnector()->addEditMenuSeparator();
156     return;
157   }
158   XGUI_Workbench* aPage = myMainWindow->menuObject()->generalPage();
159
160   // File commands group
161   XGUI_MenuGroupPanel* aGroup = aPage->addGroup("Default");
162
163   XGUI_Command* aCommand;
164
165   aCommand = aGroup->addFeature("SAVE_CMD", tr("Save..."), tr("Save the document"),
166                                 QIcon(":pictures/save.png"), QKeySequence::Save);
167   aCommand->connectTo(this, SLOT(onSave()));
168   //aCommand->disable();
169
170   aCommand = aGroup->addFeature("UNDO_CMD", tr("Undo"), tr("Undo last command"),
171                                 QIcon(":pictures/undo.png"), QKeySequence::Undo);
172   aCommand->connectTo(this, SLOT(onUndo()));
173
174   aCommand = aGroup->addFeature("REDO_CMD", tr("Redo"), tr("Redo last command"),
175                                 QIcon(":pictures/redo.png"), QKeySequence::Redo);
176   aCommand->connectTo(this, SLOT(onRedo()));
177
178   aCommand = aGroup->addFeature("REBUILD_CMD", tr("Rebuild"), tr("Rebuild data objects"),
179                                 QIcon(":pictures/rebuild.png"));
180
181   aCommand = aGroup->addFeature("SAVEAS_CMD", tr("Save as..."), tr("Save the document into a file"),
182                                 QIcon(":pictures/save.png"));
183   aCommand->connectTo(this, SLOT(onSaveAs()));
184   //aCommand->disable();
185
186   aCommand = aGroup->addFeature("OPEN_CMD", tr("Open..."), tr("Open a new document"),
187                                 QIcon(":pictures/open.png"), QKeySequence::Open);
188   aCommand->connectTo(this, SLOT(onOpen()));
189
190   //aCommand = aGroup->addFeature("NEW_CMD", tr("New"), tr("Create a new document"),
191   //                              QIcon(":pictures/new.png"), QKeySequence::New);
192   //aCommand->connectTo(this, SLOT(onNew()));
193
194   aCommand = aGroup->addFeature("EXIT_CMD", tr("Exit"), tr("Exit application"),
195                                 QIcon(":pictures/close.png"), QKeySequence::Close);
196   aCommand->connectTo(this, SLOT(onExit()));
197   //FIXME: SBH's test action. Can be used for some GUI tests.
198   //#ifdef _DEBUG
199   //  aCommand = aGroup->addFeature("TEST_CMD", "Test!", "Private debug button",
200   //                                QIcon(":pictures/close.png"));
201   //  aCommand->connectTo(myActionsMgr, SLOT(update()));
202   //#endif
203 }
204
205 //******************************************************
206 XGUI_Workbench* XGUI_Workshop::addWorkbench(const QString& theName)
207 {
208   XGUI_MainMenu* aMenuBar = myMainWindow->menuObject();
209   return aMenuBar->addWorkbench(theName);
210 }
211
212 //******************************************************
213 void XGUI_Workshop::processEvent(const Events_Message* theMessage)
214 {
215   //A message to start feature creation received.
216   static Events_ID aFeatureLoadedId = Events_Loop::loop()->eventByName(EVENT_FEATURE_LOADED);
217   if (theMessage->eventID() == aFeatureLoadedId) {
218     const Config_FeatureMessage* aFeatureMsg = dynamic_cast<const Config_FeatureMessage*>(theMessage);
219     if(!aFeatureMsg->isInternal()) {
220       addFeature(aFeatureMsg);
221     }
222     return;
223   }
224   // Process creation of Part
225   if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_FEATURE_CREATED)) {
226     const Model_FeatureUpdatedMessage* aUpdMsg = dynamic_cast<const Model_FeatureUpdatedMessage*>(theMessage);
227     std::set<FeaturePtr> aFeatures = aUpdMsg->features();
228
229     std::set<FeaturePtr>::const_iterator aIt;
230     bool aHasPart = false;
231     for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) {
232       FeaturePtr aFeature = (*aIt);
233       if (aFeature->getKind() == PARTSET_PART_KIND) {
234         aHasPart = true;
235         break;
236       }
237     }
238     if (aHasPart) {
239       //The created part will be created in Object Browser later and we have to activate it
240       // only when it is created everywere
241       QTimer::singleShot(50, this, SLOT(activateLastPart()));
242     }
243   }
244
245   //Update property panel on corresponding message. If there is no current operation (no
246   //property panel), or received message has different feature to the current - do nothing.
247   static Events_ID aFeatureUpdatedId = Events_Loop::loop()->eventByName(EVENT_FEATURE_UPDATED);
248   if (theMessage->eventID() == aFeatureUpdatedId && myOperationMgr->hasOperation())
249   {
250     const Model_FeatureUpdatedMessage* anUpdateMsg =
251         dynamic_cast<const Model_FeatureUpdatedMessage*>(theMessage);
252     std::set<FeaturePtr> aFeatures = anUpdateMsg->features();
253
254     FeaturePtr aCurrentFeature = myOperationMgr->currentOperation()->feature();
255     std::set<FeaturePtr>::const_iterator aIt;
256     for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) {
257       FeaturePtr aNewFeature = (*aIt);
258       if(aNewFeature == aCurrentFeature) {
259         myPropertyPanel->updateContentWidget(aCurrentFeature);
260         break;
261       } 
262     }
263   }
264   //An operation passed by message. Start it, process and commit.
265   const Config_PointerMessage* aPartSetMsg = dynamic_cast<const Config_PointerMessage*>(theMessage);
266   if (aPartSetMsg) {
267     // Clear previous content
268     myPropertyPanel->cleanContent();
269     ModuleBase_Operation* anOperation =
270         (ModuleBase_Operation*)(aPartSetMsg->pointer());
271
272     if (myOperationMgr->startOperation(anOperation)) {
273       myPropertyPanel->updateContentWidget(anOperation->feature());
274       if (anOperation->getDescription()->xmlRepresentation().isEmpty()) {
275         anOperation->commit();
276         updateCommandStatus();
277       }
278     }
279     return;
280   }
281   //Show error dialog if error message received.
282   const Events_Error* anAppError = dynamic_cast<const Events_Error*>(theMessage);
283   if (anAppError) {
284     emit errorOccurred(QString::fromLatin1(anAppError->description()));
285   }
286
287 }
288
289 //******************************************************
290 void XGUI_Workshop::onOperationStarted()
291 {
292   ModuleBase_Operation* aOperation = myOperationMgr->currentOperation();
293
294   if(!aOperation->getDescription()->xmlRepresentation().isEmpty()) { //!< No need for property panel
295     connectWithOperation(aOperation);
296
297     showPropertyPanel();
298
299     ModuleBase_WidgetFactory aFactory = ModuleBase_WidgetFactory(aOperation, myModuleConnector);
300     QWidget* aContent = myPropertyPanel->contentWidget();
301     qDeleteAll(aContent->children());
302     aFactory.createWidget(aContent);
303     myPropertyPanel->setModelWidgets(aFactory.getModelWidgets());
304     myPropertyPanel->setWindowTitle(aOperation->getDescription()->description());
305   }
306   updateCommandStatus();
307 }
308
309 //******************************************************
310 void XGUI_Workshop::onOperationStopped(ModuleBase_Operation* theOperation)
311 {
312   //!< No need for property panel
313   updateCommandStatus();
314   hidePropertyPanel();
315 }
316
317 /*
318  *
319  */
320 void XGUI_Workshop::addFeature(const Config_FeatureMessage* theMessage)
321 {
322   if (!theMessage) {
323 #ifdef _DEBUG
324     qDebug() << "XGUI_Workshop::addFeature: NULL message.";
325 #endif
326     return;
327   }
328   // Remember features icons
329   myIcons[QString::fromStdString(theMessage->id())] = QString::fromStdString(theMessage->icon());
330
331   //Find or create Workbench
332   QString aWchName = QString::fromStdString(theMessage->workbenchId());
333   QString aNestedFeatures = QString::fromStdString(theMessage->nestedFeatures());
334   bool isUsePropPanel = theMessage->isUseInput();
335   QString aId = QString::fromStdString(theMessage->id());
336   if (isSalomeMode()) {
337     QAction* aAction = salomeConnector()->addFeature(aWchName,
338                               aId,
339                               QString::fromStdString(theMessage->text()),
340                               QString::fromStdString(theMessage->tooltip()),
341                               QIcon(theMessage->icon().c_str()),
342                               QKeySequence(), isUsePropPanel);
343     salomeConnector()->setNestedActions(aId, aNestedFeatures.split(" "));
344     myActionsMgr->addCommand(aAction);
345     myPartSetModule->featureCreated(aAction);
346   } else {
347
348     XGUI_MainMenu* aMenuBar = myMainWindow->menuObject();
349     XGUI_Workbench* aPage = aMenuBar->findWorkbench(aWchName);
350     if (!aPage) {
351       aPage = addWorkbench(aWchName);
352     }
353     //Find or create Group
354     QString aGroupName = QString::fromStdString(theMessage->groupId());
355     XGUI_MenuGroupPanel* aGroup = aPage->findGroup(aGroupName);
356     if (!aGroup) {
357       aGroup = aPage->addGroup(aGroupName);
358     }
359     //Create feature...
360     XGUI_Command* aCommand = aGroup->addFeature(aId,
361                                                 QString::fromStdString(theMessage->text()),
362                                                 QString::fromStdString(theMessage->tooltip()),
363                                                 QIcon(theMessage->icon().c_str()),
364                                                 QKeySequence(), isUsePropPanel);
365     aCommand->setNestedCommands(aNestedFeatures.split(" ", QString::SkipEmptyParts));
366     myActionsMgr->addCommand(aCommand);
367     myPartSetModule->featureCreated(aCommand);
368   }
369 }
370
371 /*
372  * Makes a signal/slot connections between Property Panel
373  * and given operation. The given operation becomes a
374  * current operation and previous operation if exists
375  */
376 void XGUI_Workshop::connectWithOperation(ModuleBase_Operation* theOperation)
377 {
378   QAction* aCommand = 0;
379   if (isSalomeMode()) {
380     aCommand = salomeConnector()->command(theOperation->getDescription()->operationId());
381   } else {
382     XGUI_MainMenu* aMenu = myMainWindow->menuObject();
383     aCommand = aMenu->feature(theOperation->getDescription()->operationId());
384   }
385   //Abort operation on uncheck the command
386   connect(aCommand, SIGNAL(triggered(bool)), theOperation, SLOT(setRunning(bool)));
387 }
388
389 /*
390  * Saves document with given name.
391  */
392 void XGUI_Workshop::saveDocument(QString theName)
393 {
394   QApplication::restoreOverrideCursor();
395   PluginManagerPtr aMgr = ModelAPI_PluginManager::get();
396   DocumentPtr aDoc = aMgr->rootDocument();
397   aDoc->save(theName.toLatin1().constData());
398   QApplication::restoreOverrideCursor();
399 }
400
401 //******************************************************
402 void XGUI_Workshop::onExit()
403 {
404   PluginManagerPtr aMgr = ModelAPI_PluginManager::get();
405   DocumentPtr aDoc = aMgr->rootDocument();
406   if(aDoc->isModified()) {
407     int anAnswer = QMessageBox::question(
408         myMainWindow, tr("Save current file"),
409         tr("The document is modified, save before exit?"),
410         QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
411     if(anAnswer == QMessageBox::Save) {
412       bool saved = onSave();
413       if(!saved) {
414         return;
415       }
416     } else if (anAnswer == QMessageBox::Cancel) {
417       return;
418     }
419   }
420   qApp->exit();
421 }
422
423 //******************************************************
424 void XGUI_Workshop::onNew()
425 {
426   QApplication::setOverrideCursor(Qt::WaitCursor);
427   if (objectBrowser() == 0) {
428     createDockWidgets();
429     mySelector->connectViewers();
430   }
431   myViewerProxy->connectToViewer();
432   showObjectBrowser();
433   if (!isSalomeMode()) {
434     myMainWindow->showPythonConsole();
435     QMdiSubWindow* aWnd = myMainWindow->viewer()->createView();
436     aWnd->showMaximized();
437     updateCommandStatus();
438   }
439   QApplication::restoreOverrideCursor();
440 }
441
442 //******************************************************
443 void XGUI_Workshop::onOpen()
444 {
445   //save current file before close if modified
446   PluginManagerPtr aMgr = ModelAPI_PluginManager::get();
447   DocumentPtr aDoc = aMgr->rootDocument();
448   if(aDoc->isModified()) {
449     //TODO(sbh): re-launch the app?
450     int anAnswer = QMessageBox::question(
451         myMainWindow, tr("Save current file"),
452         tr("The document is modified, save before opening another?"),
453         QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
454     if(anAnswer == QMessageBox::Save) {
455       onSave();
456     } else if (anAnswer == QMessageBox::Cancel) {
457       return;
458     }
459     aDoc->close();
460     myCurrentDir = "";
461   }
462
463   //show file dialog, check if readable and open
464   myCurrentDir = QFileDialog::getExistingDirectory(mainWindow());
465   if(myCurrentDir.isEmpty())
466     return;
467   QFileInfo aFileInfo(myCurrentDir);
468   if(!aFileInfo.exists() || !aFileInfo.isReadable()) {
469     QMessageBox::critical(myMainWindow, tr("Warning"), tr("Unable to open the file."));
470     myCurrentDir = "";
471     return;
472   }
473   QApplication::setOverrideCursor(Qt::WaitCursor);
474   aDoc->load(myCurrentDir.toLatin1().constData());
475   updateCommandStatus();
476   myObjectBrowser->rebuildDataTree();
477   QApplication::restoreOverrideCursor();
478 }
479
480 //******************************************************
481 bool XGUI_Workshop::onSave()
482 {
483   if(myCurrentDir.isEmpty()) {
484     return onSaveAs();
485   }
486   saveDocument(myCurrentDir);
487   updateCommandStatus();
488   return true;
489 }
490
491 //******************************************************
492 bool XGUI_Workshop::onSaveAs()
493 {
494   QFileDialog dialog(mainWindow());
495   dialog.setWindowTitle(tr("Select directory to save files..."));
496   dialog.setFileMode(QFileDialog::Directory);
497   dialog.setFilter(tr("Folders (*)"));
498   dialog.setOptions(QFileDialog::HideNameFilterDetails | QFileDialog::ShowDirsOnly);
499   dialog.setViewMode(QFileDialog::Detail);
500
501   if(!dialog.exec()) {
502     return false;
503   }
504   QString aTempDir = dialog.selectedFiles().first();
505   QDir aDir(aTempDir);
506   if(aDir.exists() && !aDir.entryInfoList(QDir::NoDotAndDotDot|QDir::AllEntries).isEmpty()) {
507     int answer = QMessageBox::question(myMainWindow,
508                                        //: Title of the dialog which asks user if he wants to save study in existing non-empty folder
509                                        tr("Save"),
510                                        tr("The folder already contains some files, save anyway?"),
511                                        QMessageBox::Save|QMessageBox::Cancel);
512     if(answer == QMessageBox::Cancel) {
513       return false;
514     }
515   }
516   myCurrentDir = aTempDir;
517   return onSave();
518 }
519
520 //******************************************************
521 void XGUI_Workshop::onUndo()
522 {
523   objectBrowser()->treeView()->setCurrentIndex(QModelIndex());
524   PluginManagerPtr aMgr = ModelAPI_PluginManager::get();
525   DocumentPtr aDoc = aMgr->rootDocument();
526   if (aDoc->isOperation())
527     operationMgr()->abortOperation();
528   aDoc->undo();
529   updateCommandStatus();
530 }
531
532 //******************************************************
533 void XGUI_Workshop::onRedo()
534 {
535   objectBrowser()->treeView()->setCurrentIndex(QModelIndex());
536   PluginManagerPtr aMgr = ModelAPI_PluginManager::get();
537   DocumentPtr aDoc = aMgr->rootDocument();
538   if (aDoc->isOperation())
539     operationMgr()->abortOperation();
540   aDoc->redo();
541   updateCommandStatus();
542 }
543
544 //******************************************************
545 XGUI_Module* XGUI_Workshop::loadModule(const QString& theModule)
546 {
547   QString libName =
548       QString::fromStdString(library(theModule.toStdString()));
549   if (libName.isEmpty()) {
550     qWarning(
551     qPrintable( tr( "Information about module \"%1\" doesn't exist." ).arg( theModule ) ));
552     return 0;
553   }
554
555   QString err;
556   CREATE_FUNC crtInst = 0;
557
558 #ifdef WIN32
559   HINSTANCE modLib = ::LoadLibrary((LPTSTR) qPrintable(libName));
560   if (!modLib) {
561     LPVOID lpMsgBuf;
562     ::FormatMessage(
563         FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
564         0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
565     QString aMsg((char*) &lpMsgBuf);
566     err = QString("Failed to load  %1. %2").arg(libName).arg(aMsg);
567     ::LocalFree(lpMsgBuf);
568   } else {
569     crtInst = (CREATE_FUNC) ::GetProcAddress(modLib, CREATE_MODULE);
570     if (!crtInst) {
571       LPVOID lpMsgBuf;
572       ::FormatMessage(
573           FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM
574               | FORMAT_MESSAGE_IGNORE_INSERTS,
575           0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
576       QString aMsg((char*) &lpMsgBuf);
577       err = QString("Failed to find  %1 function. %2").arg( CREATE_MODULE).arg(aMsg);
578       ::LocalFree(lpMsgBuf);
579     }
580   }
581 #else
582   void* modLib = dlopen( libName.toLatin1(), RTLD_LAZY | RTLD_GLOBAL );
583   if ( !modLib ) {
584     err = QString( "Can not load library %1. %2" ).arg( libName ).arg( dlerror() );
585   } else {
586     crtInst = (CREATE_FUNC)dlsym( modLib, CREATE_MODULE );
587     if ( !crtInst ) {
588       err = QString( "Failed to find function %1. %2" ).arg( CREATE_MODULE ).arg( dlerror() );
589     }
590   }
591 #endif
592
593   XGUI_Module* aModule = crtInst ? crtInst(this) : 0;
594
595   if (!err.isEmpty()) {
596     if (mainWindow()) {
597       QMessageBox::warning(mainWindow(), tr("Error"), err);
598     } else {
599       qWarning( qPrintable( err ));
600     }
601   }
602   return aModule;
603 }
604
605 //******************************************************
606 bool XGUI_Workshop::activateModule()
607 {
608   Config_ModuleReader aModuleReader;
609   QString moduleName = QString::fromStdString(aModuleReader.getModuleName());
610   myPartSetModule = loadModule(moduleName);
611   if (!myPartSetModule)
612     return false;
613   myPartSetModule->createFeatures();
614   myActionsMgr->update();
615   return true;
616 }
617
618 //******************************************************
619 void XGUI_Workshop::updateCommandStatus()
620 {
621   QList<QAction*> aCommands;
622   if (isSalomeMode()) { // update commands in SALOME mode
623     aCommands = salomeConnector()->commandList();
624   } else {
625     XGUI_MainMenu* aMenuBar = myMainWindow->menuObject();
626     foreach (XGUI_Command* aCmd, aMenuBar->features())
627       aCommands.append(aCmd);
628   }
629   PluginManagerPtr aMgr = ModelAPI_PluginManager::get();
630   if (aMgr->hasRootDocument()) {
631     QAction* aUndoCmd;
632     QAction* aRedoCmd;
633     foreach(QAction* aCmd, aCommands) {
634       QString aId = aCmd->data().toString();
635       if (aId == "UNDO_CMD")
636         aUndoCmd = aCmd;
637       else if (aId == "REDO_CMD")
638         aRedoCmd = aCmd;
639       else // Enable all commands
640         aCmd->setEnabled(true);
641     }
642     DocumentPtr aDoc = aMgr->rootDocument();
643     aUndoCmd->setEnabled(aDoc->canUndo());
644     aRedoCmd->setEnabled(aDoc->canRedo());
645   } else {
646     foreach(QAction* aCmd, aCommands) {
647       QString aId = aCmd->data().toString();
648       if (aId == "NEW_CMD")
649         aCmd->setEnabled(true);
650       else if (aId == "EXIT_CMD")
651         aCmd->setEnabled(true);
652       else 
653         aCmd->setEnabled(false);
654     }
655   }
656   myActionsMgr->update();
657 }
658
659 //******************************************************
660 QDockWidget* XGUI_Workshop::createObjectBrowser(QWidget* theParent)
661 {
662   QDockWidget* aObjDock = new QDockWidget(theParent);
663   aObjDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
664   aObjDock->setWindowTitle(tr("Object browser"));
665   aObjDock->setStyleSheet("::title { position: relative; padding-left: 5px; text-align: left center }");
666   myObjectBrowser = new XGUI_ObjectsBrowser(aObjDock);
667   connect(myObjectBrowser, SIGNAL(activePartChanged(FeaturePtr)), this, SLOT(changeCurrentDocument(FeaturePtr)));
668   aObjDock->setWidget(myObjectBrowser);
669
670   myContextMenuMgr->connectObjectBrowser();
671   return aObjDock;
672 }
673
674 //******************************************************
675 /*
676  * Creates dock widgets, places them in corresponding area
677  * and tabifies if necessary.
678  */
679 void XGUI_Workshop::createDockWidgets()
680 {
681   QMainWindow* aDesktop = isSalomeMode()? salomeConnector()->desktop() :
682                                           myMainWindow;
683   QDockWidget* aObjDock = createObjectBrowser(aDesktop);
684   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, aObjDock);
685   myPropertyPanel = new XGUI_PropertyPanel(aDesktop);
686   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, myPropertyPanel);
687   hidePropertyPanel(); //<! Invisible by default
688   hideObjectBrowser();
689   aDesktop->tabifyDockWidget(aObjDock, myPropertyPanel);
690
691   QPushButton* aOkBtn = myPropertyPanel->findChild<QPushButton*>(XGUI::PROP_PANEL_OK);
692   connect(aOkBtn, SIGNAL(clicked()), myOperationMgr, SLOT(onCommitOperation()));
693   QPushButton* aCancelBtn = myPropertyPanel->findChild<QPushButton*>(XGUI::PROP_PANEL_CANCEL);
694   connect(aCancelBtn, SIGNAL(clicked()), myOperationMgr, SLOT(onAbortOperation()));
695
696   connect(myPropertyPanel, SIGNAL(keyReleased(const std::string&, QKeyEvent*)),
697           myOperationMgr, SLOT(onKeyReleased(const std::string&, QKeyEvent*)));
698 }
699
700 //******************************************************
701 void XGUI_Workshop::showPropertyPanel()
702 {
703   QAction* aViewAct = myPropertyPanel->toggleViewAction();
704   //<! Restore ability to close panel from the window's menu
705   aViewAct->setEnabled(true);
706   myPropertyPanel->show();
707   myPropertyPanel->raise();
708 }
709
710 //******************************************************
711 void XGUI_Workshop::hidePropertyPanel()
712 {
713   QAction* aViewAct = myPropertyPanel->toggleViewAction();
714   //<! Do not allow to show empty property panel
715   aViewAct->setEnabled(false);
716   myPropertyPanel->hide();
717 }
718
719 //******************************************************
720 void XGUI_Workshop::showObjectBrowser()
721 {
722   myObjectBrowser->parentWidget()->show();
723 }
724
725 //******************************************************
726 void XGUI_Workshop::hideObjectBrowser()
727 {
728   myObjectBrowser->parentWidget()->hide();
729 }
730
731 //******************************************************
732 void XGUI_Workshop::onFeatureTriggered()
733 {
734   QAction* aCmd = dynamic_cast<QAction*>(sender());
735   if (aCmd) {
736     QString aId = salomeConnector()->commandId(aCmd);
737     if (!aId.isNull())
738       myPartSetModule->launchOperation(aId);
739   }
740 }
741
742 //******************************************************
743 void XGUI_Workshop::changeCurrentDocument(FeaturePtr thePart)
744 {
745   PluginManagerPtr aMgr = ModelAPI_PluginManager::get();
746   if (thePart) {
747     DocumentPtr aFeaDoc;
748     if (!XGUI_Tools::isModelObject(thePart)) {
749       aFeaDoc = thePart->data()->docRef("PartDocument")->value();
750     } else {
751       ObjectPtr aObject = boost::dynamic_pointer_cast<ModelAPI_Object>(thePart);
752       aFeaDoc = aObject->featureRef()->data()->docRef("PartDocument")->value();
753     }
754     if (aFeaDoc)
755       aMgr->setCurrentDocument(aFeaDoc);
756   } else {
757     aMgr->setCurrentDocument(aMgr->rootDocument());
758   }
759 }
760
761 //******************************************************
762 void XGUI_Workshop::salomeViewerSelectionChanged()
763 {
764   emit salomeViewerSelection();
765 }
766
767
768 //**************************************************************
769 XGUI_SalomeViewer* XGUI_Workshop::salomeViewer() const 
770
771   return mySalomeConnector->viewer(); 
772 }
773
774 //**************************************************************
775 void XGUI_Workshop::onContextMenuCommand(const QString& theId, bool isChecked)
776 {
777   QFeatureList aFeatures = mySelector->selectedFeatures();
778   if ((theId == "ACTIVATE_PART_CMD") && (aFeatures.size() > 0))
779     activatePart(aFeatures.first());
780   else if (theId == "DEACTIVATE_PART_CMD") 
781     activatePart(FeaturePtr());
782   else if (theId == "DELETE_CMD")
783     deleteFeatures(aFeatures);
784   else if (theId == "SHOW_CMD")
785     showFeatures(aFeatures, true);
786   else if (theId == "HIDE_CMD")
787     showFeatures(aFeatures, false);
788 }
789
790 //**************************************************************
791 void XGUI_Workshop::activatePart(FeaturePtr theFeature)
792 {
793   changeCurrentDocument(theFeature);
794   myObjectBrowser->activatePart(theFeature);
795 }
796
797 //**************************************************************
798 void XGUI_Workshop::activateLastPart()
799 {
800   PluginManagerPtr aMgr = ModelAPI_PluginManager::get();
801   DocumentPtr aDoc = aMgr->rootDocument();
802   FeaturePtr aLastPart = aDoc->feature(PARTS_GROUP, aDoc->size(PARTS_GROUP) - 1, true);
803   activatePart(aLastPart);
804 }
805
806 //**************************************************************
807 void XGUI_Workshop::deleteFeatures(QFeatureList theList)
808 {
809   QMainWindow* aDesktop = isSalomeMode()? salomeConnector()->desktop() : myMainWindow;
810   QMessageBox::StandardButton aRes = QMessageBox::warning(aDesktop, tr("Delete features"), 
811                                                           tr("Seleted features will be deleted. Continue?"), 
812                                                           QMessageBox::No | QMessageBox::Yes, QMessageBox::No);
813   if (aRes == QMessageBox::Yes) {
814     PluginManagerPtr aMgr = ModelAPI_PluginManager::get();
815     aMgr->rootDocument()->startOperation();
816     foreach (FeaturePtr aFeature, theList) {
817       if (aFeature->getKind() == PARTSET_PART_KIND) {
818         DocumentPtr aDoc;
819         if (!XGUI_Tools::isModelObject(aFeature)) {
820           aDoc = aFeature->data()->docRef("PartDocument")->value();
821         } else {
822           ObjectPtr aObject = boost::dynamic_pointer_cast<ModelAPI_Object>(aFeature);
823           aDoc = aObject->featureRef()->data()->docRef("PartDocument")->value();
824           aFeature = aObject->featureRef();
825         }
826         if (aDoc == aMgr->currentDocument()) {
827           aDoc->close();
828         }
829       } else {
830         if (XGUI_Tools::isModelObject(aFeature)) {
831           ObjectPtr aObject = boost::dynamic_pointer_cast<ModelAPI_Object>(aFeature);
832           aFeature = aObject->featureRef();
833         }
834       }
835       aFeature->document()->removeFeature(aFeature);
836     }
837     aMgr->rootDocument()->finishOperation();
838   }
839 }
840
841 //**************************************************************
842 void XGUI_Workshop::showFeatures(QFeatureList theList, bool isVisible)
843 {
844 //  foreach (FeaturePtr aFeature, theList) {
845 //  }
846 }