]> SALOME platform Git repositories - modules/shaper.git/blob - src/XGUI/XGUI_Workshop.cpp
Salome HOME
Merge branch 'master' of newgeom:newgeom
[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_ActionsMgr.h"
18
19 #include <ModelAPI_PluginManager.h>
20 #include <ModelAPI_Feature.h>
21 #include <ModelAPI_Data.h>
22 #include <ModelAPI_AttributeDocRef.h>
23
24 #include <Events_Loop.h>
25 #include <ModuleBase_PropPanelOperation.h>
26 #include <ModuleBase_Operation.h>
27 #include <Config_FeatureMessage.h>
28 #include <Config_PointerMessage.h>
29
30 #include <QApplication>
31 #include <QFileDialog>
32 #include <QMessageBox>
33 #include <QMdiSubWindow>
34 #include <QPushButton>
35 #include <QDockWidget>
36 #include <QLayout>
37
38 #ifdef _DEBUG
39 #include <QDebug>
40 #endif
41
42 #ifdef WIN32
43 #include <windows.h>
44 #else
45 #include <dlfcn.h>
46 #endif
47
48 XGUI_Workshop::XGUI_Workshop(XGUI_SalomeConnector* theConnector)
49   : QObject(), 
50   myPartSetModule(NULL),
51   mySalomeConnector(theConnector),
52   myPropertyPanelDock(0),
53   myObjectBrowser(0),
54   myDisplayer(0)
55 {
56   myMainWindow = mySalomeConnector? 0 : new XGUI_MainWindow();
57
58   // In SALOME viewer is accessible only when module is initialized
59   // and in SALOME mode myDisplayer object has to be created later
60   // So, displayer will be created on demand.
61
62   mySelector = new XGUI_SelectionMgr(this);
63   connect(mySelector, SIGNAL(selectionChanged()), this, SLOT(changeCurrentDocument()));
64   myOperationMgr = new XGUI_OperationMgr(this);
65   myActionsMgr = new XGUI_ActionsMgr(this);
66   connect(myOperationMgr, SIGNAL(operationStarted()),  this, SLOT(onOperationStarted()));
67   connect(myOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)),
68           this, SLOT(onOperationStopped(ModuleBase_Operation*)));
69 }
70
71 //******************************************************
72 XGUI_Workshop::~XGUI_Workshop(void)
73 {
74 }
75
76 //******************************************************
77 void XGUI_Workshop::startApplication()
78 {
79   initMenu();
80   //Initialize event listening
81   Events_Loop* aLoop = Events_Loop::loop();
82   //TODO(sbh): Implement static method to extract event id [SEID]
83   Events_ID aFeatureId = aLoop->eventByName("FeatureEvent");
84   aLoop->registerListener(this, aFeatureId);
85   Events_ID aPartSetId = aLoop->eventByName("PartSetModuleEvent");
86   aLoop->registerListener(this, aPartSetId);
87   activateModule();
88   if (myMainWindow) {
89     myMainWindow->show();
90     updateCommandStatus();
91   }
92   onNew();
93   // Testing of document creation
94   //boost::shared_ptr<ModelAPI_PluginManager> aMgr = ModelAPI_PluginManager::get();
95   //boost::shared_ptr<ModelAPI_Feature> aPoint1 = aMgr->rootDocument()->addFeature("Point");
96   //boost::shared_ptr<ModelAPI_Feature> aPart = aMgr->rootDocument()->addFeature("Part");
97   //aPart->execute();
98   //aMgr->setCurrentDocument(aPart->data()->docRef("PartDocument")->value());
99   //boost::shared_ptr<ModelAPI_Feature> aPoint2 = aMgr->rootDocument()->addFeature("Point");
100   //aPoint2 = aMgr->rootDocument()->addFeature("Point");
101
102   //aPart = aMgr->rootDocument()->addFeature("Part");
103   //aPart->execute();
104 }
105
106 //******************************************************
107 void XGUI_Workshop::initMenu()
108 {
109   if (isSalomeMode()) {
110     // Create only Undo, Redo commands
111     salomeConnector()->addEditCommand("UNDO_CMD", 
112                                       tr("Undo"), tr("Undo last command"),
113                                       QIcon(":pictures/undo.png"), 
114                                       false, this, SLOT(onUndo()),
115                                       QKeySequence::Undo);
116     salomeConnector()->addEditCommand("REDO_CMD", 
117                                       tr("Redo"), tr("Redo last command"),
118                                       QIcon(":pictures/redo.png"), 
119                                       false, this, SLOT(onRedo()),
120                                       QKeySequence::Redo);
121     salomeConnector()->addEditMenuSeparator();
122     return;
123   }
124   XGUI_Workbench* aPage = myMainWindow->menuObject()->generalPage();
125
126   // File commands group
127   XGUI_MenuGroupPanel* aGroup = aPage->addGroup("Default");
128
129   XGUI_Command* aCommand;
130
131   aCommand = aGroup->addFeature("SAVE_CMD", tr("Save..."), tr("Save the document"),
132                                 QIcon(":pictures/save.png"), QKeySequence::Save);
133   aCommand->connectTo(this, SLOT(onSave()));
134   //aCommand->disable();
135
136   aCommand = aGroup->addFeature("UNDO_CMD", tr("Undo"), tr("Undo last command"),
137                                 QIcon(":pictures/undo.png"), QKeySequence::Undo);
138   aCommand->connectTo(this, SLOT(onUndo()));
139
140   aCommand = aGroup->addFeature("REDO_CMD", tr("Redo"), tr("Redo last command"),
141                                 QIcon(":pictures/redo.png"), QKeySequence::Redo);
142   aCommand->connectTo(this, SLOT(onRedo()));
143
144   aCommand = aGroup->addFeature("REBUILD_CMD", tr("Rebuild"), tr("Rebuild data objects"),
145                                 QIcon(":pictures/rebuild.png"));
146
147   aCommand = aGroup->addFeature("SAVEAS_CMD", tr("Save as..."), tr("Save the document into a file"),
148                                 QIcon(":pictures/save.png"));
149   aCommand->connectTo(this, SLOT(onSaveAs()));
150   //aCommand->disable();
151
152   aCommand = aGroup->addFeature("OPEN_CMD", tr("Open..."), tr("Open a new document"),
153                                 QIcon(":pictures/open.png"), QKeySequence::Open);
154   aCommand->connectTo(this, SLOT(onOpen()));
155
156   //aCommand = aGroup->addFeature("NEW_CMD", tr("New"), tr("Create a new document"),
157   //                              QIcon(":pictures/new.png"), QKeySequence::New);
158   //aCommand->connectTo(this, SLOT(onNew()));
159
160   aCommand = aGroup->addFeature("EXIT_CMD", tr("Exit"), tr("Exit application"),
161                                 QIcon(":pictures/close.png"), QKeySequence::Close);
162   aCommand->connectTo(this, SLOT(onExit()));
163
164 }
165
166 //******************************************************
167 XGUI_Workbench* XGUI_Workshop::addWorkbench(const QString& theName)
168 {
169   XGUI_MainMenu* aMenuBar = myMainWindow->menuObject();
170   return aMenuBar->addWorkbench(theName);
171 }
172
173 //******************************************************
174 void XGUI_Workshop::processEvent(const Events_Message* theMessage)
175 {
176   static Events_ID aFeatureId = Events_Loop::loop()->eventByName("FeatureEvent");
177   if (theMessage->eventID() == aFeatureId) {
178     const Config_FeatureMessage* aFeatureMsg =
179         dynamic_cast<const Config_FeatureMessage*>(theMessage);
180     addFeature(aFeatureMsg);
181     return;
182   }
183   const Config_PointerMessage* aPartSetMsg =
184       dynamic_cast<const Config_PointerMessage*>(theMessage);
185   if (aPartSetMsg) {
186     ModuleBase_PropPanelOperation* anOperation =
187         (ModuleBase_PropPanelOperation*)(aPartSetMsg->pointer());
188
189     if (myOperationMgr->startOperation(anOperation)) {
190       if (anOperation->xmlRepresentation().isEmpty()) {
191         anOperation->commit();
192         updateCommandStatus();
193       }
194     }
195     return;
196   }
197
198 #ifdef _DEBUG
199   qDebug() << "XGUI_Workshop::ProcessEvent: "
200   << "Catch message, but it can not be processed.";
201 #endif
202
203 }
204
205 //******************************************************
206 void XGUI_Workshop::onOperationStarted()
207 {
208   ModuleBase_PropPanelOperation* aOperation =
209         (ModuleBase_PropPanelOperation*)(myOperationMgr->currentOperation());
210
211   if(!aOperation->xmlRepresentation().isEmpty()) { //!< No need for property panel
212     connectWithOperation(aOperation);
213     QWidget* aPropWidget = myPropertyPanelDock->findChild<QWidget*>(XGUI::PROP_PANEL_WDG);
214     qDeleteAll(aPropWidget->children());
215
216     showPropertyPanel();
217
218     ModuleBase_WidgetFactory aFactory = ModuleBase_WidgetFactory(aOperation);
219     aFactory.createWidget(aPropWidget);
220     setPropertyPannelTitle(aOperation->description());
221   }
222 }
223
224 //******************************************************
225 void XGUI_Workshop::onOperationStopped(ModuleBase_Operation* theOperation)
226 {
227   ModuleBase_PropPanelOperation* aOperation =
228         (ModuleBase_PropPanelOperation*)(myOperationMgr->currentOperation());
229
230   if(aOperation->xmlRepresentation().isEmpty()) { //!< No need for property panel
231     updateCommandStatus();
232   } else {
233     hidePropertyPanel();
234     updateCommandStatus();
235
236     if (myMainWindow) {
237       myActionsMgr->restoreCommandState();
238     }
239   }
240 }
241
242 /*
243  *
244  */
245 void XGUI_Workshop::addFeature(const Config_FeatureMessage* theMessage)
246 {
247   if (!theMessage) {
248 #ifdef _DEBUG
249     qDebug() << "XGUI_Workshop::addFeature: NULL message.";
250 #endif
251     return;
252   }
253   //Find or create Workbench
254   QString aWchName = QString::fromStdString(theMessage->workbenchId());
255   if (isSalomeMode()) {
256     salomeConnector()->addFeature(aWchName,
257                                   QString::fromStdString(theMessage->id()),
258                                   QString::fromStdString(theMessage->text()),
259                                   QString::fromStdString(theMessage->tooltip()),
260                                   QIcon(theMessage->icon().c_str()),
261                                   false, this, 
262                                   SLOT(onFeatureTriggered()), QKeySequence());
263   } else {
264     XGUI_MainMenu* aMenuBar = myMainWindow->menuObject();
265     XGUI_Workbench* aPage = aMenuBar->findWorkbench(aWchName);
266     if (!aPage) {
267       aPage = addWorkbench(aWchName);
268     }
269     //Find or create Group
270     QString aGroupName = QString::fromStdString(theMessage->groupId());
271     XGUI_MenuGroupPanel* aGroup = aPage->findGroup(aGroupName);
272     if (!aGroup) {
273       aGroup = aPage->addGroup(aGroupName);
274     }
275     bool isUsePropPanel = theMessage->isUseInput();
276     //Create feature...
277     XGUI_Command* aCommand = aGroup->addFeature(QString::fromStdString(theMessage->id()),
278                                                 QString::fromStdString(theMessage->text()),
279                                                 QString::fromStdString(theMessage->tooltip()),
280                                                 QIcon(theMessage->icon().c_str()),
281                                                 QKeySequence(), isUsePropPanel);
282     myActionsMgr->addCommand(aCommand);
283     myPartSetModule->featureCreated(aCommand);
284   }
285 }
286
287 /*
288  * Makes a signal/slot connections between Property Panel
289  * and given operation. The given operation becomes a
290  * current operation and previous operation if exists
291  */
292 void XGUI_Workshop::connectWithOperation(ModuleBase_Operation* theOperation)
293 {
294   QPushButton* aOkBtn = myPropertyPanelDock->findChild<QPushButton*>(XGUI::PROP_PANEL_OK);
295   connect(aOkBtn, SIGNAL(clicked()), theOperation, SLOT(commit()));
296   QPushButton* aCancelBtn = myPropertyPanelDock->findChild<QPushButton*>(XGUI::PROP_PANEL_CANCEL);
297   connect(aCancelBtn, SIGNAL(clicked()), theOperation, SLOT(abort()));
298
299   QAction* aCommand = 0;
300   if (isSalomeMode()) {
301     aCommand = salomeConnector()->command(theOperation->operationId());
302   } else {
303     XGUI_MainMenu* aMenu = myMainWindow->menuObject();
304     aCommand = aMenu->feature(theOperation->operationId());
305   }
306   //Abort operation on uncheck the command
307   connect(aCommand, SIGNAL(triggered(bool)), theOperation, SLOT(setRunning(bool)));
308 }
309
310 //******************************************************
311 void XGUI_Workshop::onExit()
312 {
313   qApp->exit();
314 }
315
316 //******************************************************
317 void XGUI_Workshop::onNew()
318 {
319   QApplication::setOverrideCursor(Qt::WaitCursor);
320   if (objectBrowser() == 0) {
321     createDockWidgets();
322     mySelector->connectViewers();
323   }
324   showObjectBrowser();
325   if (!isSalomeMode()) {
326     myMainWindow->showPythonConsole();
327     QMdiSubWindow* aWnd = myMainWindow->viewer()->createView();
328     aWnd->showMaximized();
329     updateCommandStatus();
330   }
331   QApplication::restoreOverrideCursor();
332 }
333
334 //******************************************************
335 void XGUI_Workshop::onOpen()
336 {
337   //QString aFileName = QFileDialog::getOpenFileName(mainWindow());
338   updateCommandStatus();
339 }
340
341 //******************************************************
342 void XGUI_Workshop::onSave()
343 {
344   updateCommandStatus();
345 }
346
347 //******************************************************
348 void XGUI_Workshop::onSaveAs()
349 {
350   //QString aFileName = QFileDialog::getSaveFileName(mainWindow());
351   updateCommandStatus();
352 }
353
354 //******************************************************
355 void XGUI_Workshop::onUndo()
356 {
357   objectBrowser()->setCurrentIndex(QModelIndex());
358   boost::shared_ptr<ModelAPI_PluginManager> aMgr = ModelAPI_PluginManager::get();
359   boost::shared_ptr<ModelAPI_Document> aDoc = aMgr->rootDocument();
360   aDoc->undo();
361   updateCommandStatus();
362 }
363
364 //******************************************************
365 void XGUI_Workshop::onRedo()
366 {
367   objectBrowser()->setCurrentIndex(QModelIndex());
368   boost::shared_ptr<ModelAPI_PluginManager> aMgr = ModelAPI_PluginManager::get();
369   boost::shared_ptr<ModelAPI_Document> aDoc = aMgr->rootDocument();
370   aDoc->redo();
371   updateCommandStatus();
372 }
373
374 //******************************************************
375 XGUI_Module* XGUI_Workshop::loadModule(const QString& theModule)
376 {
377   QString libName = library(theModule);
378   if (libName.isEmpty()) {
379     qWarning(
380     qPrintable( tr( "Information about module \"%1\" doesn't exist." ).arg( theModule ) ));
381     return 0;
382   }
383
384   QString err;
385   CREATE_FUNC crtInst = 0;
386
387 #ifdef WIN32
388
389   HINSTANCE modLib = ::LoadLibrary((LPTSTR) qPrintable(libName));
390   if (!modLib) {
391     LPVOID lpMsgBuf;
392     ::FormatMessage(
393         FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
394         0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
395     QString aMsg((char*) &lpMsgBuf);
396     err = QString("Failed to load  %1. %2").arg(libName).arg(aMsg);
397     ::LocalFree(lpMsgBuf);
398   } else {
399     crtInst = (CREATE_FUNC) ::GetProcAddress(modLib, CREATE_MODULE);
400     if (!crtInst) {
401       LPVOID lpMsgBuf;
402       ::FormatMessage(
403           FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM
404               | FORMAT_MESSAGE_IGNORE_INSERTS,
405           0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
406       QString aMsg((char*) &lpMsgBuf);
407       err = QString("Failed to find  %1 function. %2").arg( CREATE_MODULE).arg(aMsg);
408       ::LocalFree(lpMsgBuf);
409     }
410   }
411 #else
412   void* modLib = dlopen( libName.toLatin1(), RTLD_LAZY );
413   if ( !modLib )
414   err = QString( "Can not load library %1. %2" ).arg( libName ).arg( dlerror() );
415   else
416   {
417     crtInst = (CREATE_FUNC)dlsym( modLib, CREATE_MODULE );
418     if ( !crtInst )
419     err = QString( "Failed to find function %1. %2" ).arg( CREATE_MODULE ).arg( dlerror() );
420   }
421 #endif
422
423   XGUI_Module* aModule = crtInst ? crtInst(this) : 0;
424
425   if (!err.isEmpty()) {
426     if (mainWindow() && mainWindow()->isVisible())
427       QMessageBox::warning(mainWindow(), tr("Error"), err);
428     else
429       qWarning( qPrintable( err ));
430   }
431   return aModule;
432 }
433
434 //******************************************************
435 bool XGUI_Workshop::activateModule()
436 {
437   myPartSetModule = loadModule("PartSet");
438   if (!myPartSetModule)
439     return false;
440   myPartSetModule->createFeatures();
441   return true;
442 }
443
444 //******************************************************
445 void XGUI_Workshop::updateCommandStatus()
446 {
447   if (isSalomeMode()) // TODO: update commands in SALOME
448     return;
449   XGUI_MainMenu* aMenuBar = myMainWindow->menuObject();
450
451   QList<XGUI_Command*> aCommands = aMenuBar->features();
452   QList<XGUI_Command*>::const_iterator aIt;
453
454   boost::shared_ptr<ModelAPI_PluginManager> aMgr = ModelAPI_PluginManager::get();
455   if (aMgr->hasRootDocument()) {
456     XGUI_Command* aUndoCmd;
457     XGUI_Command* aRedoCmd;
458     for (aIt = aCommands.constBegin(); aIt != aCommands.constEnd(); ++aIt) {
459       if ((*aIt)->id() == "UNDO_CMD")
460         aUndoCmd = (*aIt);
461       else if ((*aIt)->id() == "REDO_CMD")
462         aRedoCmd = (*aIt);
463       else // Enable all commands
464         (*aIt)->enable();
465     }
466     boost::shared_ptr<ModelAPI_Document> aDoc = aMgr->rootDocument();
467     aUndoCmd->setEnabled(aDoc->canUndo());
468     aRedoCmd->setEnabled(aDoc->canRedo());
469   } else {
470     for (aIt = aCommands.constBegin(); aIt != aCommands.constEnd(); ++aIt) {
471       if ((*aIt)->id() == "NEW_CMD")
472         (*aIt)->enable();
473       else if ((*aIt)->id() == "EXIT_CMD")
474         (*aIt)->enable();
475       else 
476         (*aIt)->disable();
477     }
478   }
479 }
480
481 //******************************************************
482 QDockWidget* XGUI_Workshop::createObjectBrowser(QWidget* theParent)
483 {
484   QDockWidget* aObjDock = new QDockWidget(theParent);
485   aObjDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
486   aObjDock->setWindowTitle(tr("Object browser"));
487   myObjectBrowser = new XGUI_ObjectsBrowser(aObjDock);
488   aObjDock->setWidget(myObjectBrowser);
489   return aObjDock;
490 }
491
492 //******************************************************
493 QDockWidget* XGUI_Workshop::createPropertyPanel(QWidget* theParent)
494 {
495   QDockWidget* aPropPanel = new QDockWidget(theParent);
496   aPropPanel->setWindowTitle(tr("Property Panel"));
497   QAction* aViewAct = aPropPanel->toggleViewAction();
498   aPropPanel->setObjectName(XGUI::PROP_PANEL);
499
500   QWidget* aContent = new QWidget(aPropPanel);
501   QVBoxLayout* aMainLay = new QVBoxLayout(aContent);
502   aMainLay->setContentsMargins(3, 3, 3, 3);
503   aPropPanel->setWidget(aContent);
504
505   QFrame* aFrm = new QFrame(aContent);
506   aFrm->setFrameStyle(QFrame::Sunken);
507   aFrm->setFrameShape(QFrame::Panel);
508   QHBoxLayout* aBtnLay = new QHBoxLayout(aFrm);
509   aBtnLay->setContentsMargins(0, 0, 0, 0);
510   aMainLay->addWidget(aFrm);
511
512   QPushButton* aBtn = new QPushButton(QIcon(":pictures/button_help.png"), "", aFrm);
513   aBtn->setFlat(true);
514   aBtnLay->addWidget(aBtn);
515   aBtnLay->addStretch(1);
516   aBtn = new QPushButton(QIcon(":pictures/button_ok.png"), "", aFrm);
517   aBtn->setObjectName(XGUI::PROP_PANEL_OK);
518   aBtn->setFlat(true);
519   aBtnLay->addWidget(aBtn);
520   aBtn = new QPushButton(QIcon(":pictures/button_cancel.png"), "", aFrm);
521   aBtn->setObjectName(XGUI::PROP_PANEL_CANCEL);
522   aBtn->setFlat(true);
523   aBtnLay->addWidget(aBtn);
524
525   QWidget* aCustomWidget = new QWidget(aContent);
526   aCustomWidget->setObjectName(XGUI::PROP_PANEL_WDG);
527   aMainLay->addWidget(aCustomWidget);
528   aMainLay->addStretch(1);
529
530   return aPropPanel;
531 }
532
533 //******************************************************
534 void XGUI_Workshop::setPropertyPannelTitle(const QString& theTitle)
535 {
536   myPropertyPanelDock->setWindowTitle(theTitle);
537 }
538
539 //******************************************************
540 /*
541  * Creates dock widgets, places them in corresponding area
542  * and tabifies if necessary.
543  */
544 void XGUI_Workshop::createDockWidgets()
545 {
546   QMainWindow* aDesktop = isSalomeMode()? salomeConnector()->desktop() :
547                                           myMainWindow;
548   QDockWidget* aObjDock = createObjectBrowser(aDesktop);
549   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, aObjDock);
550   myPropertyPanelDock = createPropertyPanel(aDesktop);
551   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, myPropertyPanelDock);
552   hidePropertyPanel(); //<! Invisible by default
553   hideObjectBrowser();
554   aDesktop->tabifyDockWidget(aObjDock, myPropertyPanelDock);
555 }
556
557 //******************************************************
558 void XGUI_Workshop::showPropertyPanel()
559 {
560   QAction* aViewAct = myPropertyPanelDock->toggleViewAction();
561   //<! Restore ability to close panel from the window's menu
562   aViewAct->setEnabled(true);
563   myPropertyPanelDock->show();
564   myPropertyPanelDock->raise();
565 }
566
567 //******************************************************
568 void XGUI_Workshop::hidePropertyPanel()
569 {
570   QAction* aViewAct = myPropertyPanelDock->toggleViewAction();
571   //<! Do not allow to show empty property panel
572   aViewAct->setEnabled(false);
573   myPropertyPanelDock->hide();
574 }
575
576 //******************************************************
577 void XGUI_Workshop::showObjectBrowser()
578 {
579   myObjectBrowser->parentWidget()->show();
580 }
581
582 //******************************************************
583 void XGUI_Workshop::hideObjectBrowser()
584 {
585   myObjectBrowser->parentWidget()->hide();
586 }
587
588 //******************************************************
589 void XGUI_Workshop::onFeatureTriggered()
590 {
591   QAction* aCmd = dynamic_cast<QAction*>(sender());
592   if (aCmd) {
593     QString aId = salomeConnector()->commandId(aCmd);
594     if (!aId.isNull())
595       myPartSetModule->launchOperation(aId);
596   }
597 }
598
599 //******************************************************
600 XGUI_Displayer* XGUI_Workshop::displayer() const
601 {
602   // In SALOME viewer is accessible only when module is initialized
603   // and in SALOME mode myDisplayer object has to be created later (on demand)
604   if (!myDisplayer) {
605     XGUI_Workshop* that = (XGUI_Workshop*)this;
606     that->myDisplayer = isSalomeMode() ?
607       new XGUI_Displayer(salomeConnector()->AISContext()):
608       new XGUI_Displayer(myMainWindow->viewer()->AISContext());
609   }
610   return myDisplayer;
611 }
612
613 //******************************************************
614 void XGUI_Workshop::changeCurrentDocument()
615 {
616   QFeatureList aFeatures = objectBrowser()->selectedFeatures();
617   
618   // Set current document
619   if (aFeatures.size() > 0) {
620     FeaturePtr aFeature = aFeatures.first();
621
622     boost::shared_ptr<ModelAPI_PluginManager> aMgr = ModelAPI_PluginManager::get();
623     boost::shared_ptr<ModelAPI_AttributeDocRef> aDocRef = aFeature->data()->docRef("PartDocument");
624     if (aDocRef)
625       aMgr->setCurrentDocument(aDocRef->value());
626   }
627 }
628
629 //******************************************************
630 void XGUI_Workshop::salomeViewerSelectionChanged()
631 {
632   emit salomeViewerSelection();
633 }