]> SALOME platform Git repositories - modules/shaper.git/blob - src/XGUI/XGUI_Workshop.cpp
Salome HOME
6a2bb4f1351910562d560f91089b20432b4beaea
[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 "XGUI_WidgetFactory.h"
12 #include "XGUI_SelectionMgr.h"
13 #include "XGUI_ObjectsBrowser.h"
14 #include "XGUI_Displayer.h"
15 #include "XGUI_OperationMgr.h"
16
17 #include <ModelAPI_PluginManager.h>
18 #include <ModelAPI_Feature.h>
19 #include <ModelAPI_Data.h>
20 #include <ModelAPI_AttributeDocRef.h>
21
22 #include <Event_Loop.h>
23 #include <ModuleBase_PropPanelOperation.h>
24 #include <ModuleBase_Operation.h>
25 #include <Config_FeatureMessage.h>
26 #include <Config_PointerMessage.h>
27
28 #include <QApplication>
29 #include <QFileDialog>
30 #include <QMessageBox>
31 #include <QMdiSubWindow>
32 #include <QPushButton>
33 #include <QDockWidget>
34
35 #ifdef _DEBUG
36 #include <QDebug>
37 #endif
38
39 #ifdef WIN32
40 #include <windows.h>
41 #else
42 #include <dlfcn.h>
43 #endif
44
45 XGUI_Workshop::XGUI_Workshop()
46   : QObject(), 
47   myPartSetModule(NULL)
48 {
49   myMainWindow = new XGUI_MainWindow();
50   mySelector = new XGUI_SelectionMgr(this);
51   myDisplayer = new XGUI_Displayer(myMainWindow->viewer());
52   myOperationMgr = new XGUI_OperationMgr(this);
53   connect(myOperationMgr, SIGNAL(operationStarted()),  this, SLOT(onOperationStarted()));
54   connect(myOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)),
55           this, SLOT(onOperationStopped(ModuleBase_Operation*)));
56 }
57
58 //******************************************************
59 XGUI_Workshop::~XGUI_Workshop(void)
60 {
61 }
62
63 //******************************************************
64 void XGUI_Workshop::startApplication()
65 {
66   initMenu();
67   //Initialize event listening
68   Event_Loop* aLoop = Event_Loop::loop();
69   //TODO(sbh): Implement static method to extract event id [SEID]
70   Event_ID aFeatureId = aLoop->eventByName("FeatureEvent");
71   aLoop->registerListener(this, aFeatureId);
72   Event_ID aPartSetId = aLoop->eventByName("PartSetModuleEvent");
73   aLoop->registerListener(this, aPartSetId);
74   activateModule();
75   myMainWindow->show();
76
77   updateCommandStatus();
78   onNew();
79   // Testing of document creation
80   //boost::shared_ptr<ModelAPI_PluginManager> aMgr = ModelAPI_PluginManager::get();
81   //boost::shared_ptr<ModelAPI_Feature> aPoint1 = aMgr->rootDocument()->addFeature("Point");
82   //boost::shared_ptr<ModelAPI_Feature> aPart = aMgr->rootDocument()->addFeature("Part");
83   //aPart->execute();
84   //aMgr->setCurrentDocument(aPart->data()->docRef("PartDocument")->value());
85   //boost::shared_ptr<ModelAPI_Feature> aPoint2 = aMgr->rootDocument()->addFeature("Point");
86   //aPoint2 = aMgr->rootDocument()->addFeature("Point");
87
88   //aPart = aMgr->rootDocument()->addFeature("Part");
89   //aPart->execute();
90 }
91
92 //******************************************************
93 void XGUI_Workshop::initMenu()
94 {
95   XGUI_Workbench* aPage = myMainWindow->menuObject()->generalPage();
96
97   // File commands group
98   XGUI_MenuGroupPanel* aGroup = aPage->addGroup("Default");
99
100   XGUI_Command* aCommand;
101
102   aCommand = aGroup->addFeature("SAVE_CMD", tr("Save..."), tr("Save the document"),
103                                 QIcon(":pictures/save.png"), QKeySequence::Save);
104   aCommand->connectTo(this, SLOT(onSave()));
105   //aCommand->disable();
106
107   aCommand = aGroup->addFeature("UNDO_CMD", tr("Undo"), tr("Undo last command"),
108                                 QIcon(":pictures/undo.png"), QKeySequence::Undo);
109   aCommand->connectTo(this, SLOT(onUndo()));
110
111   aCommand = aGroup->addFeature("REDO_CMD", tr("Redo"), tr("Redo last command"),
112                                 QIcon(":pictures/redo.png"), QKeySequence::Redo);
113   aCommand->connectTo(this, SLOT(onRedo()));
114
115   aCommand = aGroup->addFeature("REBUILD_CMD", tr("Rebuild"), tr("Rebuild data objects"),
116                                 QIcon(":pictures/rebuild.png"));
117
118   aCommand = aGroup->addFeature("SAVEAS_CMD", tr("Save as..."), tr("Save the document into a file"),
119                                 QIcon(":pictures/save.png"));
120   aCommand->connectTo(this, SLOT(onSaveAs()));
121   //aCommand->disable();
122
123   aCommand = aGroup->addFeature("OPEN_CMD", tr("Open..."), tr("Open a new document"),
124                                 QIcon(":pictures/open.png"), QKeySequence::Open);
125   aCommand->connectTo(this, SLOT(onOpen()));
126
127   //aCommand = aGroup->addFeature("NEW_CMD", tr("New"), tr("Create a new document"),
128   //                              QIcon(":pictures/new.png"), QKeySequence::New);
129   //aCommand->connectTo(this, SLOT(onNew()));
130
131   aCommand = aGroup->addFeature("EXIT_CMD", tr("Exit"), tr("Exit application"),
132                                 QIcon(":pictures/close.png"), QKeySequence::Close);
133   aCommand->connectTo(this, SLOT(onExit()));
134
135 }
136
137 //******************************************************
138 XGUI_Workbench* XGUI_Workshop::addWorkbench(const QString& theName)
139 {
140   XGUI_MainMenu* aMenuBar = myMainWindow->menuObject();
141   return aMenuBar->addWorkbench(theName);
142 }
143
144 //******************************************************
145 void XGUI_Workshop::processEvent(const Event_Message* theMessage)
146 {
147   static Event_ID aFeatureId = Event_Loop::loop()->eventByName("FeatureEvent");
148   if (theMessage->eventID() == aFeatureId) {
149     const Config_FeatureMessage* aFeatureMsg =
150         dynamic_cast<const Config_FeatureMessage*>(theMessage);
151     addFeature(aFeatureMsg);
152     return;
153   }
154   const Config_PointerMessage* aPartSetMsg =
155       dynamic_cast<const Config_PointerMessage*>(theMessage);
156   if (aPartSetMsg) {
157     ModuleBase_PropPanelOperation* anOperation =
158         (ModuleBase_PropPanelOperation*)(aPartSetMsg->pointer());
159
160     if (myOperationMgr->startOperation(anOperation)) {
161       if (anOperation->isPerformedImmediately()) {
162         myOperationMgr->commitCurrentOperation();
163         updateCommandStatus();
164       }
165     }
166     return;
167   }
168
169 #ifdef _DEBUG
170   qDebug() << "XGUI_Workshop::ProcessEvent: "
171   << "Catch message, but it can not be processed.";
172 #endif
173
174 }
175
176 void XGUI_Workshop::onOperationStarted()
177 {
178   ModuleBase_PropPanelOperation* aOperation =
179         (ModuleBase_PropPanelOperation*)(myOperationMgr->currentOperation());
180
181   if(aOperation->xmlRepresentation().isEmpty()) { //!< No need for property panel
182   } else {
183     connectWithOperation(aOperation);
184     QWidget* aPropWidget = myMainWindow->findChild<QWidget*>(XGUI::PROP_PANEL_WDG);
185     qDeleteAll(aPropWidget->children());
186
187     myMainWindow->showPropertyPanel();
188
189     XGUI_WidgetFactory aFactory = XGUI_WidgetFactory(aOperation);
190     aFactory.createWidget(aPropWidget);
191     myMainWindow->setPropertyPannelTitle(aOperation->description());
192   }
193 }
194
195 /**
196  *
197  */
198 void XGUI_Workshop::onOperationStopped(ModuleBase_Operation* theOperation)
199 {
200   myMainWindow->hidePropertyPanel();
201   updateCommandStatus();
202
203   XGUI_MainMenu* aMenu = myMainWindow->menuObject();
204   aMenu->restoreCommandState();
205 }
206
207 /*
208  *
209  */
210 void XGUI_Workshop::addFeature(const Config_FeatureMessage* theMessage)
211 {
212   if (!theMessage) {
213 #ifdef _DEBUG
214     qDebug() << "XGUI_Workshop::addFeature: NULL message.";
215 #endif
216     return;
217   }
218   //Find or create Workbench
219   XGUI_MainMenu* aMenuBar = myMainWindow->menuObject();
220   QString aWchName = QString::fromStdString(theMessage->workbenchId());
221   XGUI_Workbench* aPage = aMenuBar->findWorkbench(aWchName);
222   if (!aPage) {
223     aPage = addWorkbench(aWchName);
224   }
225   //Find or create Group
226   QString aGroupName = QString::fromStdString(theMessage->groupId());
227   XGUI_MenuGroupPanel* aGroup = aPage->findGroup(aGroupName);
228   if (!aGroup) {
229     aGroup = aPage->addGroup(aGroupName);
230   }
231   bool isUsePropPanel = theMessage->isUseInput();
232   //Create feature...
233   XGUI_Command* aCommand = aGroup->addFeature(QString::fromStdString(theMessage->id()),
234                                               QString::fromStdString(theMessage->text()),
235                                               QString::fromStdString(theMessage->tooltip()),
236                                               QIcon(theMessage->icon().c_str()),
237                                               QKeySequence(), isUsePropPanel);
238   
239   connect(aCommand,                   SIGNAL(toggled(bool)),
240           myMainWindow->menuObject(), SLOT(onFeatureChecked(bool)));
241   myPartSetModule->featureCreated(aCommand);
242 }
243
244 /*
245  * Makes a signal/slot connections between Property Panel
246  * and given operation. The given operation becomes a
247  * current operation and previous operation if exists
248  */
249 void XGUI_Workshop::connectWithOperation(ModuleBase_Operation* theOperation)
250 {
251   QDockWidget* aPanel = myMainWindow->findChild<QDockWidget*>(XGUI::PROP_PANEL);
252   QPushButton* aOkBtn = aPanel->findChild<QPushButton*>(XGUI::PROP_PANEL_OK);
253   connect(aOkBtn, SIGNAL(clicked()), theOperation, SLOT(commit()));
254   QPushButton* aCancelBtn = aPanel->findChild<QPushButton*>(XGUI::PROP_PANEL_CANCEL);
255   connect(aCancelBtn, SIGNAL(clicked()), theOperation, SLOT(abort()));
256
257   XGUI_MainMenu* aMenu = myMainWindow->menuObject();
258   XGUI_Command* aCommand = aMenu->feature(theOperation->operationId());
259   //Abort operation on uncheck the command
260   connect(aCommand, SIGNAL(toggled(bool)), theOperation, SLOT(setRunning(bool)));
261
262 }
263
264 //******************************************************
265 void XGUI_Workshop::onExit()
266 {
267   qApp->exit();
268 }
269
270 //******************************************************
271 void XGUI_Workshop::onNew()
272 {
273   QApplication::setOverrideCursor(Qt::WaitCursor);
274   if (myMainWindow->objectBrowser() == 0) {
275     myMainWindow->createDockWidgets();
276     mySelector->connectObjectBrowser(myMainWindow->objectBrowser());
277   }
278   myMainWindow->showObjectBrowser();
279   myMainWindow->showPythonConsole();
280   QMdiSubWindow* aWnd = myMainWindow->viewer()->createView();
281   aWnd->showMaximized();
282   updateCommandStatus();
283   QApplication::restoreOverrideCursor();
284 }
285
286 //******************************************************
287 void XGUI_Workshop::onOpen()
288 {
289   //QString aFileName = QFileDialog::getOpenFileName(mainWindow());
290   updateCommandStatus();
291 }
292
293 //******************************************************
294 void XGUI_Workshop::onSave()
295 {
296   updateCommandStatus();
297 }
298
299 //******************************************************
300 void XGUI_Workshop::onSaveAs()
301 {
302   //QString aFileName = QFileDialog::getSaveFileName(mainWindow());
303   updateCommandStatus();
304 }
305
306 //******************************************************
307 void XGUI_Workshop::onUndo()
308 {
309   myMainWindow->objectBrowser()->setCurrentIndex(QModelIndex());
310   boost::shared_ptr<ModelAPI_PluginManager> aMgr = ModelAPI_PluginManager::get();
311   boost::shared_ptr<ModelAPI_Document> aDoc = aMgr->rootDocument();
312   aDoc->undo();
313   updateCommandStatus();
314 }
315
316 //******************************************************
317 void XGUI_Workshop::onRedo()
318 {
319   myMainWindow->objectBrowser()->setCurrentIndex(QModelIndex());
320   boost::shared_ptr<ModelAPI_PluginManager> aMgr = ModelAPI_PluginManager::get();
321   boost::shared_ptr<ModelAPI_Document> aDoc = aMgr->rootDocument();
322   aDoc->redo();
323   updateCommandStatus();
324 }
325
326 //******************************************************
327 XGUI_Module* XGUI_Workshop::loadModule(const QString& theModule)
328 {
329   QString libName = library(theModule);
330   if (libName.isEmpty()) {
331     qWarning(
332     qPrintable( tr( "Information about module \"%1\" doesn't exist." ).arg( theModule ) ));
333     return 0;
334   }
335
336   QString err;
337   CREATE_FUNC crtInst = 0;
338
339 #ifdef WIN32
340
341   HINSTANCE modLib = ::LoadLibrary((LPTSTR) qPrintable(libName));
342   if (!modLib) {
343     LPVOID lpMsgBuf;
344     ::FormatMessage(
345         FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
346         0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
347     QString aMsg((char*) &lpMsgBuf);
348     err = QString("Failed to load  %1. %2").arg(libName).arg(aMsg);
349     ::LocalFree(lpMsgBuf);
350   } else {
351     crtInst = (CREATE_FUNC) ::GetProcAddress(modLib, CREATE_MODULE);
352     if (!crtInst) {
353       LPVOID lpMsgBuf;
354       ::FormatMessage(
355           FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM
356               | FORMAT_MESSAGE_IGNORE_INSERTS,
357           0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
358       QString aMsg((char*) &lpMsgBuf);
359       err = QString("Failed to find  %1 function. %2").arg( CREATE_MODULE).arg(aMsg);
360       ::LocalFree(lpMsgBuf);
361     }
362   }
363 #else
364   void* modLib = dlopen( libName.toLatin1(), RTLD_LAZY );
365   if ( !modLib )
366   err = QString( "Can not load library %1. %2" ).arg( libName ).arg( dlerror() );
367   else
368   {
369     crtInst = (CREATE_FUNC)dlsym( modLib, CREATE_MODULE );
370     if ( !crtInst )
371     err = QString( "Failed to find function %1. %2" ).arg( CREATE_MODULE ).arg( dlerror() );
372   }
373 #endif
374
375   XGUI_Module* aModule = crtInst ? crtInst(this) : 0;
376
377   if (!err.isEmpty()) {
378     if (mainWindow() && mainWindow()->isVisible())
379       QMessageBox::warning(mainWindow(), tr("Error"), err);
380     else
381       qWarning( qPrintable( err ));
382   }
383   return aModule;
384 }
385
386 //******************************************************
387 bool XGUI_Workshop::activateModule()
388 {
389   myPartSetModule = loadModule("PartSet");
390   if (!myPartSetModule)
391     return false;
392   myPartSetModule->createFeatures();
393   return true;
394 }
395
396 //******************************************************
397 void XGUI_Workshop::updateCommandStatus()
398 {
399   XGUI_MainMenu* aMenuBar = myMainWindow->menuObject();
400
401   QList<XGUI_Command*> aCommands = aMenuBar->features();
402   QList<XGUI_Command*>::const_iterator aIt;
403
404   boost::shared_ptr<ModelAPI_PluginManager> aMgr = ModelAPI_PluginManager::get();
405   if (aMgr->hasRootDocument()) {
406     XGUI_Command* aUndoCmd;
407     XGUI_Command* aRedoCmd;
408     for (aIt = aCommands.constBegin(); aIt != aCommands.constEnd(); ++aIt) {
409       if ((*aIt)->id() == "UNDO_CMD")
410         aUndoCmd = (*aIt);
411       else if ((*aIt)->id() == "REDO_CMD")
412         aRedoCmd = (*aIt);
413       else // Enable all commands
414         (*aIt)->enable();
415     }
416     boost::shared_ptr<ModelAPI_Document> aDoc = aMgr->rootDocument();
417     aUndoCmd->setEnabled(aDoc->canUndo());
418     aRedoCmd->setEnabled(aDoc->canRedo());
419   } else {
420     for (aIt = aCommands.constBegin(); aIt != aCommands.constEnd(); ++aIt) {
421       if ((*aIt)->id() == "NEW_CMD")
422         (*aIt)->enable();
423       else if ((*aIt)->id() == "EXIT_CMD")
424         (*aIt)->enable();
425       else 
426         (*aIt)->disable();
427     }
428   }
429 }