1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
3 //#include "XGUI_Constants.h"
4 #include "XGUI_Tools.h"
5 #include "XGUI_Workshop.h"
6 #include "XGUI_SelectionMgr.h"
7 #include "XGUI_Selection.h"
8 #include "XGUI_ObjectsBrowser.h"
9 #include "XGUI_Displayer.h"
10 #include "XGUI_OperationMgr.h"
11 #include "XGUI_SalomeConnector.h"
12 #include "XGUI_ActionsMgr.h"
13 #include "XGUI_ErrorDialog.h"
14 #include "XGUI_ViewerProxy.h"
15 #include "XGUI_PropertyPanel.h"
16 #include "XGUI_ContextMenuMgr.h"
17 #include "XGUI_ModuleConnector.h"
18 #include <XGUI_QtEvents.h>
19 #include <XGUI_HistoryMenu.h>
21 #include <AppElements_Workbench.h>
22 #include <AppElements_Viewer.h>
23 #include <AppElements_Command.h>
24 #include <AppElements_MainMenu.h>
25 #include <AppElements_MainWindow.h>
26 #include <AppElements_MenuGroupPanel.h>
27 #include <AppElements_Button.h>
29 #include <ModuleBase_IModule.h>
30 #include <ModuleBase_Preferences.h>
32 #include <ModelAPI_Events.h>
33 #include <ModelAPI_Session.h>
34 #include <ModelAPI_Feature.h>
35 #include <ModelAPI_Data.h>
36 #include <ModelAPI_AttributeDocRef.h>
37 #include <ModelAPI_Object.h>
38 #include <ModelAPI_Validator.h>
39 #include <ModelAPI_ResultGroup.h>
40 #include <ModelAPI_ResultConstruction.h>
41 #include <ModelAPI_ResultBody.h>
42 #include <ModelAPI_AttributeIntArray.h>
43 #include <ModelAPI_ResultParameter.h>
45 //#include <PartSetPlugin_Part.h>
47 #include <Events_Loop.h>
48 #include <Events_Error.h>
49 #include <Events_LongOp.h>
51 #include <ModuleBase_Operation.h>
52 #include <ModuleBase_Operation.h>
53 #include <ModuleBase_OperationDescription.h>
54 #include <ModuleBase_SelectionValidator.h>
55 #include <ModuleBase_WidgetFactory.h>
56 #include <ModuleBase_Tools.h>
57 #include <ModuleBase_IViewer.h>
58 #include <ModuleBase_FilterFactory.h>
59 #include <ModuleBase_PageBase.h>
60 #include <ModuleBase_Tools.h>
62 #include <Config_Common.h>
63 #include <Config_FeatureMessage.h>
64 #include <Config_PointerMessage.h>
65 #include <Config_ModuleReader.h>
66 #include <Config_PropManager.h>
67 #include <Config_SelectionFilterMessage.h>
69 #include <QApplication>
70 #include <QFileDialog>
71 #include <QMessageBox>
72 #include <QMdiSubWindow>
73 #include <QPushButton>
74 #include <QDockWidget>
79 #include <QToolButton>
82 #include <QDialogButtonBox>
83 #include <QHBoxLayout>
84 #include <QtxColorButton.h>
97 //#define DEBUG_FEATURE_CREATED
98 //#define DEBUG_FEATURE_REDISPLAY
100 QMap<QString, QString> XGUI_Workshop::myIcons;
103 QIcon XGUI_Workshop::featureIcon(const FeaturePtr& theFeature)
107 std::string aKind = theFeature->getKind();
108 QString aId(aKind.c_str());
109 if (!myIcons.contains(aId))
112 QString anIconString = myIcons[aId];
114 ModelAPI_ExecState aState = theFeature->data()->execState();
116 case ModelAPI_StateDone:
117 case ModelAPI_StateNothing: {
118 anIcon = QIcon(anIconString);
121 case ModelAPI_StateMustBeUpdated: {
122 anIcon = ModuleBase_Tools::lighter(anIconString);
125 case ModelAPI_StateExecFailed: {
126 anIcon = ModuleBase_Tools::composite(":pictures/exec_state_failed.png", anIconString);
129 case ModelAPI_StateInvalidArgument: {
130 anIcon = ModuleBase_Tools::composite(":pictures/exec_state_invalid_parameters.png",
139 XGUI_Workshop::XGUI_Workshop(XGUI_SalomeConnector* theConnector)
141 myCurrentDir(QString()),
143 mySalomeConnector(theConnector),
147 myUpdatePrefs(false),
148 myPartActivating(false),
149 myIsLoadingData(false)
151 myMainWindow = mySalomeConnector ? 0 : new AppElements_MainWindow();
153 myDisplayer = new XGUI_Displayer(this);
155 mySelector = new XGUI_SelectionMgr(this);
156 //connect(mySelector, SIGNAL(selectionChanged()), this, SLOT(updateModuleCommands()));
158 myOperationMgr = new XGUI_OperationMgr(this);
159 myActionsMgr = new XGUI_ActionsMgr(this);
160 myErrorDlg = new XGUI_ErrorDialog(myMainWindow);
161 myContextMenuMgr = new XGUI_ContextMenuMgr(this);
162 connect(myContextMenuMgr, SIGNAL(actionTriggered(const QString&, bool)), this,
163 SLOT(onContextMenuCommand(const QString&, bool)));
165 myViewerProxy = new XGUI_ViewerProxy(this);
166 connect(myViewerProxy, SIGNAL(selectionChanged()),
167 myActionsMgr, SLOT(updateOnViewSelection()));
169 myModuleConnector = new XGUI_ModuleConnector(this);
171 connect(myOperationMgr, SIGNAL(operationStarted(ModuleBase_Operation*)),
172 SLOT(onOperationStarted(ModuleBase_Operation*)));
173 connect(myOperationMgr, SIGNAL(operationResumed(ModuleBase_Operation*)),
174 SLOT(onOperationResumed(ModuleBase_Operation*)));
175 connect(myOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)),
176 SLOT(onOperationStopped(ModuleBase_Operation*)));
177 connect(myOperationMgr, SIGNAL(operationCommitted(ModuleBase_Operation*)),
178 SLOT(onOperationCommitted(ModuleBase_Operation*)));
179 connect(myOperationMgr, SIGNAL(operationAborted(ModuleBase_Operation*)),
180 SLOT(onOperationAborted(ModuleBase_Operation*)));
181 connect(myMainWindow, SIGNAL(exitKeySequence()), SLOT(onExit()));
182 connect(this, SIGNAL(errorOccurred(const QString&)), myErrorDlg, SLOT(addError(const QString&)));
185 //******************************************************
186 XGUI_Workshop::~XGUI_Workshop(void)
191 //******************************************************
192 void XGUI_Workshop::startApplication()
196 Config_PropManager::registerProp("Plugins", "default_path", "Default Path",
197 Config_Prop::Directory, "");
199 //Initialize event listening
200 Events_Loop* aLoop = Events_Loop::loop();
201 aLoop->registerListener(this, Events_Error::errorID()); //!< Listening application errors.
202 aLoop->registerListener(this, Events_Loop::eventByName(Config_FeatureMessage::GUI_EVENT()));
203 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OPERATION_LAUNCHED));
204 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
205 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_CREATED));
206 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
207 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_DELETED));
208 aLoop->registerListener(this, Events_LongOp::eventID());
209 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_PLUGIN_LOADED));
210 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_DOCUMENT_CHANGED));
211 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_TOSHOW));
212 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_TOHIDE));
213 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_SELFILTER_LOADED));
215 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_UPDATE_VIEWER_BLOCKED));
216 aLoop->registerListener(this, Events_Loop::eventByName(EVENT_UPDATE_VIEWER_UNBLOCKED));
218 registerValidators();
220 // Calling of loadCustomProps before activating module is required
221 // by Config_PropManger to restore user-defined path to plugins
222 ModuleBase_Preferences::loadCustomProps();
225 myMainWindow->show();
226 updateCommandStatus();
231 emit applicationStarted();
234 //******************************************************
235 void XGUI_Workshop::initMenu()
237 myContextMenuMgr->createActions();
239 if (isSalomeMode()) {
240 // Create only Undo, Redo commands
241 QAction* aAction = salomeConnector()->addDesktopCommand("UNDO_CMD", tr("Undo"),
242 tr("Undo last command"),
243 QIcon(":pictures/undo.png"),
244 QKeySequence::Undo, false, "MEN_DESK_EDIT");
245 connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onUndo()));
246 addHistoryMenu(aAction, SIGNAL(updateUndoHistory(const QList<ActionInfo>&)), SLOT(onUndo(int)));
248 aAction = salomeConnector()->addDesktopCommand("REDO_CMD", tr("Redo"), tr("Redo last command"),
249 QIcon(":pictures/redo.png"), QKeySequence::Redo,
250 false, "MEN_DESK_EDIT");
251 connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onRedo()));
252 addHistoryMenu(aAction, SIGNAL(updateRedoHistory(const QList<ActionInfo>&)), SLOT(onRedo(int)));
254 salomeConnector()->addDesktopMenuSeparator("MEN_DESK_EDIT");
255 aAction = salomeConnector()->addDesktopCommand("REBUILD_CMD", tr("Rebuild"), tr("Rebuild data objects"),
256 QIcon(":pictures/rebuild.png"), QKeySequence(),
257 false, "MEN_DESK_EDIT");
258 connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onRebuild()));
259 salomeConnector()->addDesktopMenuSeparator("MEN_DESK_EDIT");
261 aAction = salomeConnector()->addDesktopCommand("SAVEAS_CMD", tr("Export NewGeom..."), tr("Export the current document into a NewGeom file"),
262 QIcon(), QKeySequence(),
263 false, "MEN_DESK_FILE");
264 connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onSaveAs()));
266 aAction = salomeConnector()->addDesktopCommand("OPEN_CMD", tr("Import NewGeom..."), tr("Import a NewGeom file"),
267 QIcon(), QKeySequence(),
268 false, "MEN_DESK_FILE");
269 connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onOpen()));
270 salomeConnector()->addDesktopMenuSeparator("MEN_DESK_FILE");
274 // File commands group
275 AppElements_MenuGroupPanel* aGroup = myMainWindow->menuObject()->generalPage();
277 AppElements_Command* aCommand;
279 aCommand = aGroup->addFeature("SAVE_CMD", tr("Save..."), tr("Save the document"),
280 QIcon(":pictures/save.png"), QKeySequence::Save);
281 aCommand->connectTo(this, SLOT(onSave()));
282 //aCommand->disable();
284 QString aUndoId = "UNDO_CMD";
285 aCommand = aGroup->addFeature(aUndoId, tr("Undo"), tr("Undo last command"),
286 QIcon(":pictures/undo.png"), QKeySequence::Undo);
287 aCommand->connectTo(this, SLOT(onUndo()));
288 AppElements_Button* aUndoButton = qobject_cast<AppElements_Button*>(aGroup->widget(aUndoId));
289 addHistoryMenu(aUndoButton,
290 SIGNAL(updateUndoHistory(const QList<ActionInfo>&)),
293 QString aRedoId = "REDO_CMD";
294 aCommand = aGroup->addFeature(aRedoId, tr("Redo"), tr("Redo last command"),
295 QIcon(":pictures/redo.png"), QKeySequence::Redo);
296 aCommand->connectTo(this, SLOT(onRedo()));
297 AppElements_Button* aRedoButton = qobject_cast<AppElements_Button*>(aGroup->widget(aRedoId));
298 addHistoryMenu(aRedoButton,
299 SIGNAL(updateRedoHistory(const QList<ActionInfo>&)),
302 aCommand = aGroup->addFeature("REBUILD_CMD", tr("Rebuild"), tr("Rebuild data objects"),
303 QIcon(":pictures/rebuild.png"), QKeySequence());
304 aCommand->connectTo(this, SLOT(onRebuild()));
306 aCommand = aGroup->addFeature("SAVEAS_CMD", tr("Save as..."), tr("Save the document into a file"),
307 QIcon(":pictures/save.png"), QKeySequence());
308 aCommand->connectTo(this, SLOT(onSaveAs()));
309 //aCommand->disable();
311 aCommand = aGroup->addFeature("OPEN_CMD", tr("Open..."), tr("Open a new document"),
312 QIcon(":pictures/open.png"), QKeySequence::Open);
313 aCommand->connectTo(this, SLOT(onOpen()));
315 //aCommand = aGroup->addFeature("NEW_CMD", tr("New"), tr("Create a new document"),
316 // QIcon(":pictures/new.png"), QKeySequence::New);
317 //aCommand->connectTo(this, SLOT(onNew()));
319 aCommand = aGroup->addFeature("PREF_CMD", tr("Preferences"), tr("Edit preferences"),
320 QIcon(":pictures/preferences.png"), QKeySequence::Preferences);
321 aCommand->connectTo(this, SLOT(onPreferences()));
323 aCommand = aGroup->addFeature("EXIT_CMD", tr("Exit"), tr("Exit application"),
324 QIcon(":pictures/close.png"), QKeySequence::Close);
325 aCommand->connectTo(this, SLOT(onExit()));
326 //FIXME: SBH's test action. Can be used for some GUI tests.
328 // aCommand = aGroup->addFeature("TEST_CMD", "Test!", "Private debug button",
329 // QIcon(":pictures/close.png"), QKeySequence(), true);
330 // aCommand->connectTo(myMainWindow, SLOT(dockPythonConsole()));
334 //******************************************************
335 AppElements_Workbench* XGUI_Workshop::addWorkbench(const QString& theName)
337 AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
338 return aMenuBar->addWorkbench(theName);
341 //******************************************************
342 void XGUI_Workshop::processEvent(const std::shared_ptr<Events_Message>& theMessage)
344 if (QApplication::instance()->thread() != QThread::currentThread()) {
346 std::cout << "XGUI_Workshop::processEvent: " << "Working in another thread." << std::endl;
348 SessionPtr aMgr = ModelAPI_Session::get();
349 PostponeMessageQtEvent* aPostponeEvent = new PostponeMessageQtEvent(theMessage);
350 QApplication::postEvent(this, aPostponeEvent);
354 //A message to start feature creation received.
355 if (theMessage->eventID() == Events_Loop::loop()->eventByName(Config_FeatureMessage::GUI_EVENT())) {
356 std::shared_ptr<Config_FeatureMessage> aFeatureMsg =
357 std::dynamic_pointer_cast<Config_FeatureMessage>(theMessage);
358 if (!aFeatureMsg->isInternal()) {
359 addFeature(aFeatureMsg);
362 // Process creation of Part
363 else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_CREATED)) {
364 std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aUpdMsg =
365 std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
366 onFeatureCreatedMsg(aUpdMsg);
368 if (mySalomeConnector)
369 mySalomeConnector->createPreferences();
370 myUpdatePrefs = false;
373 else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_PLUGIN_LOADED)) {
374 myUpdatePrefs = true;
377 else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY)) {
378 std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aUpdMsg =
379 std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
380 onFeatureRedisplayMsg(aUpdMsg);
382 //Update property panel on corresponding message. If there is no current operation (no
383 //property panel), or received message has different feature to the current - do nothing.
384 else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_UPDATED)) {
385 std::shared_ptr<ModelAPI_ObjectUpdatedMessage> anUpdateMsg =
386 std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
387 onFeatureUpdatedMsg(anUpdateMsg);
388 } else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_DELETED)) {
389 std::shared_ptr<ModelAPI_ObjectDeletedMessage> aDelMsg =
390 std::dynamic_pointer_cast<ModelAPI_ObjectDeletedMessage>(theMessage);
391 onObjectDeletedMsg(aDelMsg);
392 } else if (theMessage->eventID() == Events_LongOp::eventID()) {
393 if (Events_LongOp::isPerformed()) {
394 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
396 QApplication::restoreOverrideCursor();
398 } else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_TOSHOW)) {
399 std::shared_ptr<ModelAPI_ObjectUpdatedMessage> anUpdateMsg =
400 std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
401 const std::set<ObjectPtr>& aObjList = anUpdateMsg->objects();
402 QObjectPtrList aList;
403 std::set<ObjectPtr>::const_iterator aIt;
404 for (aIt = aObjList.cbegin(); aIt != aObjList.cend(); ++aIt)
406 showObjects(aList, true);
407 } else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_TOHIDE)) {
408 std::shared_ptr<ModelAPI_ObjectUpdatedMessage> anUpdateMsg =
409 std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
410 const std::set<ObjectPtr>& aObjList = anUpdateMsg->objects();
411 QObjectPtrList aList;
412 std::set<ObjectPtr>::const_iterator aIt;
413 for (aIt = aObjList.cbegin(); aIt != aObjList.cend(); ++aIt)
415 showObjects(aList, false);
417 //An operation passed by message. Start it, process and commit.
418 else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OPERATION_LAUNCHED)) {
419 std::shared_ptr<Config_PointerMessage> aPartSetMsg =
420 std::dynamic_pointer_cast<Config_PointerMessage>(theMessage);
421 //myPropertyPanel->cleanContent();
422 ModuleBase_Operation* anOperation = (ModuleBase_Operation*) aPartSetMsg->pointer();
424 if (myOperationMgr->startOperation(anOperation)) {
425 myPropertyPanel->updateContentWidget(anOperation->feature());
426 if (!anOperation->getDescription()->hasXmlRepresentation()) {
427 if (anOperation->commit())
428 updateCommandStatus();
431 } else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_DOCUMENT_CHANGED)) {
432 myActionsMgr->update();
433 // Find and Activate active part
434 if (myPartActivating)
436 SessionPtr aMgr = ModelAPI_Session::get();
437 DocumentPtr aActiveDoc = aMgr->activeDocument();
438 DocumentPtr aDoc = aMgr->moduleDocument();
439 if (aActiveDoc == aDoc) {
440 activatePart(ResultPartPtr());
443 std::string aGrpName = ModelAPI_ResultPart::group();
444 for (int i = 0; i < aDoc->size(aGrpName); i++) {
445 ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aDoc->object(aGrpName, i));
446 if (aPart->partDoc() == aActiveDoc) {
447 activatePart(aPart); // Activate a part which corresponds to active Doc
451 // If not found then activate global document
452 activatePart(ResultPartPtr());
455 else if (theMessage->eventID() == Events_Loop::eventByName(EVENT_SELFILTER_LOADED)) {
456 std::shared_ptr<Config_SelectionFilterMessage> aMsg =
457 std::dynamic_pointer_cast<Config_SelectionFilterMessage>(theMessage);
459 ModuleBase_FilterFactory* aFactory = moduleConnector()->selectionFilters();
460 if (!aMsg->attributeId().empty()) {
461 aFactory->assignFilter(aMsg->selectionFilterId(), aMsg->featureId(), aMsg->attributeId(),
465 } else if (theMessage->eventID() == Events_Loop::eventByName(EVENT_UPDATE_VIEWER_BLOCKED)) {
466 // the viewer's update context will not happens until viewer updated is emitted
467 myDisplayer->enableUpdateViewer(false);
468 } else if (theMessage->eventID() == Events_Loop::eventByName(EVENT_UPDATE_VIEWER_UNBLOCKED)) {
469 // the viewer's update context is unblocked, the viewer's update works
470 myDisplayer->enableUpdateViewer(true);
472 //Show error dialog if error message received.
473 std::shared_ptr<Events_Error> anAppError = std::dynamic_pointer_cast<Events_Error>(theMessage);
475 emit errorOccurred(QString::fromLatin1(anAppError->description()));
479 if (!isSalomeMode()) {
480 SessionPtr aMgr = ModelAPI_Session::get();
481 if (aMgr->isModified() != myMainWindow->isModifiedState())
482 myMainWindow->setModifiedState(aMgr->isModified());
486 //******************************************************
487 QMainWindow* XGUI_Workshop::desktop() const
489 return isSalomeMode() ? salomeConnector()->desktop() : myMainWindow;
492 //******************************************************
493 void XGUI_Workshop::onStartWaiting()
495 if (Events_LongOp::isPerformed()) {
496 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
500 //******************************************************
501 void XGUI_Workshop::onFeatureUpdatedMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& theMsg)
503 std::set<ObjectPtr> aFeatures = theMsg->objects();
504 if (myOperationMgr->hasOperation()) {
505 FeaturePtr aCurrentFeature = myOperationMgr->currentOperation()->feature();
506 std::set<ObjectPtr>::const_iterator aIt;
507 for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) {
508 ObjectPtr aNewFeature = (*aIt);
509 if (aNewFeature == aCurrentFeature) {
510 myPropertyPanel->updateContentWidget(aCurrentFeature);
515 myOperationMgr->onValidateOperation();
517 myObjectBrowser->processEvent(theMsg);
520 //******************************************************
521 void XGUI_Workshop::onFeatureRedisplayMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& theMsg)
523 std::set<ObjectPtr> aObjects = theMsg->objects();
524 std::set<ObjectPtr>::const_iterator aIt;
526 #ifdef DEBUG_FEATURE_REDISPLAY
528 for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
529 anInfo.append(ModuleBase_Tools::objectInfo((*aIt)));
531 QString anInfoStr = anInfo.join(", ");
532 qDebug(QString("onFeatureRedisplayMsg: %1, %2").arg(aObjects.size()).arg(anInfoStr).toStdString().c_str());
535 for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
536 ObjectPtr aObj = (*aIt);
538 // Hide the object if it is invalid or concealed one
539 bool aHide = !aObj->data() || !aObj->data()->isValid();
540 if (!aHide) { // check that this is not hidden result
541 ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
542 aHide = aRes && aRes->isConcealed();
545 myDisplayer->erase(aObj, false);
547 // Redisplay the visible object or the object of the current operation
548 bool isVisibleObject = myDisplayer->isVisible(aObj);
549 #ifdef DEBUG_FEATURE_REDISPLAY
550 //QString anObjInfo = ModuleBase_Tools::objectInfo((aObj));
551 //qDebug(QString("visible=%1 : display= %2").arg(isVisibleObject).arg(anObjInfo).toStdString().c_str());
554 if (isVisibleObject) { // redisplay visible object
555 //displayObject(aObj); // In order to update presentation
556 // in order to avoid the check whether the object can be redisplayed, the exact method
557 // of redisplay is called. This modification is made in order to have the line is updated
558 // by creation of a horizontal constraint on the line by preselection
559 myDisplayer->redisplay(aObj, false);
560 if (myOperationMgr->hasOperation()) {
561 ModuleBase_Operation* aOperation = myOperationMgr->currentOperation();
562 if (!aOperation->isEditOperation() &&
563 aOperation->hasObject(aObj) && myDisplayer->isActive(aObj))
564 myDisplayer->deactivate(aObj);
566 } else { // display object if the current operation has it
567 ModuleBase_Operation* aOperation = myOperationMgr->currentOperation();
568 if (aOperation && aOperation->hasObject(aObj)) {
569 ModuleBase_Operation* aOperation = myOperationMgr->currentOperation();
570 #ifdef DEBUG_FEATURE_REDISPLAY
571 QString anObjInfo = ModuleBase_Tools::objectInfo((aObj));
572 qDebug(QString(" display object = %1").arg(anObjInfo).toStdString().c_str());
574 if (displayObject(aObj)) {
575 // Deactivate object of current operation from selection
576 if (myDisplayer->isActive(aObj))
577 myDisplayer->deactivate(aObj);
583 myDisplayer->updateViewer();
586 //******************************************************
587 void XGUI_Workshop::onFeatureCreatedMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& theMsg)
589 std::set<ObjectPtr> aObjects = theMsg->objects();
590 std::set<ObjectPtr>::const_iterator aIt;
591 #ifdef DEBUG_FEATURE_CREATED
593 for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
594 anInfo.append(ModuleBase_Tools::objectInfo((*aIt)));
596 QString anInfoStr = anInfo.join(", ");
597 qDebug(QString("onFeatureCreatedMsg: %1, %2").arg(aObjects.size()).arg(anInfoStr).toStdString().c_str());
600 //bool aHasPart = false;
601 bool isDisplayed = false;
602 for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
603 ObjectPtr anObject = *aIt;
604 // the validity of the data should be checked here in order to avoid display of the objects,
605 // which were created, then deleted, but flush for the creation event happens after that
606 if (!anObject->data() || !anObject->data()->isValid())
608 //ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(*aIt);
611 // If a feature is created from the aplication's python console
612 // it doesn't stored in the operation mgr and doesn't displayed
614 isDisplayed = displayObject(*aIt);
618 myObjectBrowser->processEvent(theMsg);
620 myDisplayer->updateViewer();
621 //if (aHasPart) { // TODO: Avoid activate last part on loading of document
622 // activateLastPart();
626 //******************************************************
627 void XGUI_Workshop::onObjectDeletedMsg(const std::shared_ptr<ModelAPI_ObjectDeletedMessage>& theMsg)
630 myObjectBrowser->processEvent(theMsg);
631 //std::set<ObjectPtr> aFeatures = theMsg->objects();
634 //******************************************************
635 void XGUI_Workshop::onOperationStarted(ModuleBase_Operation* theOperation)
637 setNestedFeatures(theOperation);
639 if (theOperation->getDescription()->hasXmlRepresentation()) { //!< No need for property panel
640 connectWithOperation(theOperation);
641 setPropertyPanel(theOperation);
643 updateCommandStatus();
645 myModule->operationStarted(theOperation);
648 //******************************************************
649 void XGUI_Workshop::onOperationResumed(ModuleBase_Operation* theOperation)
651 setNestedFeatures(theOperation);
653 if (theOperation->getDescription()->hasXmlRepresentation()) { //!< No need for property panel
654 // connectWithOperation(theOperation); already connected
655 setPropertyPanel(theOperation);
657 updateCommandStatus();
659 myModule->operationResumed(theOperation);
663 //******************************************************
664 void XGUI_Workshop::onOperationStopped(ModuleBase_Operation* theOperation)
666 ModuleBase_ISelection* aSel = mySelector->selection();
667 QObjectPtrList aObj = aSel->selectedPresentations();
668 //!< No need for property panel
669 updateCommandStatus();
671 myPropertyPanel->cleanContent();
673 // Activate objects created by current operation
674 // in order to clean selection modes
675 // the deactivation should be pefromed in the same place, where the mode is activated,
676 // e.g. activation in the current widget activation, deactivation - in the widget's deactivation
678 //myDisplayer->activateObjects(aModes);
679 myModule->operationStopped(theOperation);
681 if (myOperationMgr->operationsCount() == 0) {
682 // Activate selection mode for all objects
684 myDisplayer->activateObjects(aModes);
689 void XGUI_Workshop::onOperationCommitted(ModuleBase_Operation* theOperation)
691 myModule->operationCommitted(theOperation);
694 void XGUI_Workshop::onOperationAborted(ModuleBase_Operation* theOperation)
696 myModule->operationAborted(theOperation);
699 void XGUI_Workshop::setNestedFeatures(ModuleBase_Operation* theOperation)
701 if (this->isSalomeMode())
702 theOperation->setNestedFeatures(mySalomeConnector->nestedActions(theOperation->id()));
704 theOperation->setNestedFeatures(myActionsMgr->nestedCommands(theOperation->id()));
707 void XGUI_Workshop::setPropertyPanel(ModuleBase_Operation* theOperation)
710 QString aXmlRepr = theOperation->getDescription()->xmlRepresentation();
711 ModuleBase_WidgetFactory aFactory = ModuleBase_WidgetFactory(aXmlRepr.toStdString(),
714 myPropertyPanel->cleanContent();
715 aFactory.createWidget(myPropertyPanel->contentWidget());
717 QList<ModuleBase_ModelWidget*> aWidgets = aFactory.getModelWidgets();
718 foreach (ModuleBase_ModelWidget* aWidget, aWidgets) {
719 bool isStoreValue = !theOperation->isEditOperation() &&
720 !aWidget->getDefaultValue().empty() &&
721 !aWidget->isComputedDefault();
722 aWidget->setFeature(theOperation->feature(), isStoreValue);
723 aWidget->enableFocusProcessing();
726 myPropertyPanel->setModelWidgets(aWidgets);
727 theOperation->setPropertyPanel(myPropertyPanel);
729 myModule->propertyPanelDefined(theOperation);
731 myPropertyPanel->setWindowTitle(theOperation->getDescription()->description());
734 bool XGUI_Workshop::event(QEvent * theEvent)
736 PostponeMessageQtEvent* aPostponedEv = dynamic_cast<PostponeMessageQtEvent*>(theEvent);
738 std::shared_ptr<Events_Message> aEventPtr = aPostponedEv->postponedMessage();
739 processEvent(aEventPtr);
748 void XGUI_Workshop::addFeature(const std::shared_ptr<Config_FeatureMessage>& theMessage)
752 qDebug() << "XGUI_Workshop::addFeature: NULL message.";
756 ActionInfo aFeatureInfo;
757 aFeatureInfo.initFrom(theMessage);
758 // Remember features icons
759 myIcons[QString::fromStdString(theMessage->id())] = aFeatureInfo.iconFile;
761 QString aWchName = QString::fromStdString(theMessage->workbenchId());
762 QStringList aNestedFeatures =
763 QString::fromStdString(theMessage->nestedFeatures()).split(" ", QString::SkipEmptyParts);
764 QString aDocKind = QString::fromStdString(theMessage->documentKind());
765 QList<QAction*> aNestedActList;
766 bool isColumnButton = !aNestedFeatures.isEmpty();
767 if (isColumnButton) {
768 QString aNestedActions = QString::fromStdString(theMessage->actionsWhenNested());
769 if (aNestedActions.contains("accept")) {
770 QAction* anAction = myActionsMgr->operationStateAction(XGUI_ActionsMgr::AcceptAll, NULL);
771 connect(anAction, SIGNAL(triggered()), myOperationMgr, SLOT(commitAllOperations()));
772 aNestedActList << anAction;
774 if (aNestedActions.contains("abort")) {
775 QAction* anAction = myActionsMgr->operationStateAction(XGUI_ActionsMgr::AbortAll, NULL);
776 connect(anAction, SIGNAL(triggered()), myOperationMgr, SLOT(abortAllOperations()));
777 aNestedActList << anAction;
781 if (isSalomeMode()) {
783 if (isColumnButton) {
784 aAction = salomeConnector()->addNestedFeature(aWchName, aFeatureInfo, aNestedActList);
786 aAction = salomeConnector()->addFeature(aWchName, aFeatureInfo);
788 salomeConnector()->setNestedActions(aFeatureInfo.id, aNestedFeatures);
789 salomeConnector()->setDocumentKind(aFeatureInfo.id, aDocKind);
791 myActionsMgr->addCommand(aAction);
792 myModule->actionCreated(aAction);
794 //Find or create Workbench
795 AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
796 AppElements_Workbench* aPage = aMenuBar->findWorkbench(aWchName);
798 aPage = addWorkbench(aWchName);
800 //Find or create Group
801 QString aGroupName = QString::fromStdString(theMessage->groupId());
802 AppElements_MenuGroupPanel* aGroup = aPage->findGroup(aGroupName);
804 aGroup = aPage->addGroup(aGroupName);
806 // Check if hotkey sequence is already defined:
807 QKeySequence aHotKey = myActionsMgr->registerShortcut(aFeatureInfo.shortcut);
808 if(aHotKey != aFeatureInfo.shortcut) {
809 aFeatureInfo.shortcut = aHotKey;
812 AppElements_Command* aCommand = aGroup->addFeature(aFeatureInfo,
815 // Enrich created button with accept/abort buttons if necessary
816 AppElements_Button* aButton = aCommand->button();
817 if (aButton->isColumnButton()) {
818 aButton->setAdditionalButtons(aNestedActList);
820 myActionsMgr->addCommand(aCommand);
821 myModule->actionCreated(aCommand);
826 * Makes a signal/slot connections between Property Panel
827 * and given operation. The given operation becomes a
828 * current operation and previous operation if exists
830 void XGUI_Workshop::connectWithOperation(ModuleBase_Operation* theOperation)
832 QAction* aCommand = 0;
833 if (isSalomeMode()) {
834 aCommand = salomeConnector()->command(theOperation->getDescription()->operationId());
836 AppElements_MainMenu* aMenu = myMainWindow->menuObject();
837 FeaturePtr aFeature = theOperation->feature();
839 aCommand = aMenu->feature(QString::fromStdString(aFeature->getKind()));
841 //Abort operation on uncheck the command
843 connect(aCommand, SIGNAL(triggered(bool)), theOperation, SLOT(setRunning(bool)));
848 * Saves document with given name.
850 void XGUI_Workshop::saveDocument(const QString& theName, std::list<std::string>& theFileNames)
852 QApplication::restoreOverrideCursor();
853 SessionPtr aMgr = ModelAPI_Session::get();
854 aMgr->save(theName.toLatin1().constData(), theFileNames);
855 QApplication::restoreOverrideCursor();
858 bool XGUI_Workshop::isActiveOperationAborted()
860 return myOperationMgr->abortAllOperations();
863 //******************************************************
864 void XGUI_Workshop::onExit()
866 SessionPtr aMgr = ModelAPI_Session::get();
867 if (aMgr->isModified()) {
868 int anAnswer = QMessageBox::question(
869 myMainWindow, tr("Save current file"), tr("The document is modified, save before exit?"),
870 QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
871 if (anAnswer == QMessageBox::Save) {
872 bool saved = onSave();
876 } else if (anAnswer == QMessageBox::Cancel) {
883 //******************************************************
884 void XGUI_Workshop::onNew()
886 QApplication::setOverrideCursor(Qt::WaitCursor);
887 if (objectBrowser() == 0) {
889 mySelector->connectViewers();
891 myViewerProxy->connectToViewer();
893 if (!isSalomeMode()) {
894 myMainWindow->showPythonConsole();
895 QMdiSubWindow* aWnd = myMainWindow->viewer()->createView();
896 aWnd->showMaximized();
897 updateCommandStatus();
899 myContextMenuMgr->connectViewer();
900 QApplication::restoreOverrideCursor();
903 //******************************************************
904 void XGUI_Workshop::onOpen()
906 if(!isActiveOperationAborted())
908 //save current file before close if modified
909 SessionPtr aSession = ModelAPI_Session::get();
910 if (aSession->isModified()) {
911 //TODO(sbh): re-launch the app?
912 int anAnswer = QMessageBox::question(
913 myMainWindow, tr("Save current file"),
914 tr("The document is modified, save before opening another?"),
915 QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
916 if (anAnswer == QMessageBox::Save) {
918 } else if (anAnswer == QMessageBox::Cancel) {
921 aSession->closeAll();
925 //show file dialog, check if readable and open
926 myCurrentDir = QFileDialog::getExistingDirectory(mainWindow());
927 if (myCurrentDir.isEmpty())
929 QFileInfo aFileInfo(myCurrentDir);
930 if (!aFileInfo.exists() || !aFileInfo.isReadable()) {
931 QMessageBox::critical(myMainWindow, tr("Warning"), tr("Unable to open the file."));
935 QApplication::setOverrideCursor(Qt::WaitCursor);
936 myIsLoadingData = true;
937 aSession->load(myCurrentDir.toLatin1().constData());
938 myObjectBrowser->rebuildDataTree();
940 updateCommandStatus();
941 myIsLoadingData = false;
942 QApplication::restoreOverrideCursor();
945 //******************************************************
946 bool XGUI_Workshop::onSave()
948 if(!isActiveOperationAborted())
950 if (myCurrentDir.isEmpty()) {
953 std::list<std::string> aFiles;
954 saveDocument(myCurrentDir, aFiles);
955 updateCommandStatus();
957 myMainWindow->setModifiedState(false);
961 //******************************************************
962 bool XGUI_Workshop::onSaveAs()
964 if(!isActiveOperationAborted())
966 QFileDialog dialog(mainWindow());
967 dialog.setWindowTitle(tr("Select directory to save files..."));
968 dialog.setFileMode(QFileDialog::Directory);
969 dialog.setFilter(tr("Folders (*)"));
970 dialog.setOptions(QFileDialog::HideNameFilterDetails | QFileDialog::ShowDirsOnly);
971 dialog.setViewMode(QFileDialog::Detail);
973 if (!dialog.exec()) {
976 QString aTempDir = dialog.selectedFiles().first();
978 if (aDir.exists() && !aDir.entryInfoList(QDir::NoDotAndDotDot | QDir::AllEntries).isEmpty()) {
979 int answer = QMessageBox::question(
981 //: Title of the dialog which asks user if he wants to save study in existing non-empty folder
983 tr("The folder already contains some files, save anyway?"),
984 QMessageBox::Save | QMessageBox::Cancel);
985 if (answer == QMessageBox::Cancel) {
989 myCurrentDir = aTempDir;
990 if (!isSalomeMode()) {
991 myMainWindow->setCurrentDir(myCurrentDir, false);
992 myMainWindow->setModifiedState(false);
997 //******************************************************
998 void XGUI_Workshop::onUndo(int theTimes)
1000 objectBrowser()->treeView()->setCurrentIndex(QModelIndex());
1001 SessionPtr aMgr = ModelAPI_Session::get();
1002 if (aMgr->isOperation())
1003 operationMgr()->onAbortOperation();
1004 for (int i = 0; i < theTimes; ++i) {
1007 updateCommandStatus();
1010 //******************************************************
1011 void XGUI_Workshop::onRedo(int theTimes)
1013 // the viewer update should be blocked in order to avoid the features blinking. For the created
1014 // feature a results are created, the flush of the created signal caused the viewer redisplay for
1015 // each created result. After a redisplay signal is flushed. So, the viewer update is blocked until
1016 // redo of all possible objects happens
1017 bool isUpdateEnabled = myDisplayer->enableUpdateViewer(false);
1019 objectBrowser()->treeView()->setCurrentIndex(QModelIndex());
1020 SessionPtr aMgr = ModelAPI_Session::get();
1021 if (aMgr->isOperation())
1022 operationMgr()->onAbortOperation();
1023 for (int i = 0; i < theTimes; ++i) {
1026 updateCommandStatus();
1028 // unblock the viewer update functionality and make update on purpose
1029 myDisplayer->enableUpdateViewer(isUpdateEnabled);
1030 myDisplayer->updateViewer();
1033 //******************************************************
1034 void XGUI_Workshop::onRebuild()
1036 SessionPtr aMgr = ModelAPI_Session::get();
1037 bool aWasOperation = aMgr->isOperation(); // keep this value
1038 if (!aWasOperation) {
1039 aMgr->startOperation("Rebuild");
1041 static const Events_ID aRebuildEvent = Events_Loop::loop()->eventByName("Rebuild");
1042 Events_Loop::loop()->send(std::shared_ptr<Events_Message>(
1043 new Events_Message(aRebuildEvent, this)));
1044 if (!aWasOperation) {
1045 aMgr->finishOperation();
1047 updateCommandStatus();
1050 //******************************************************
1051 void XGUI_Workshop::onPreferences()
1053 ModuleBase_Prefs aModif;
1054 ModuleBase_Preferences::editPreferences(aModif);
1055 if (aModif.size() > 0) {
1057 foreach (ModuleBase_Pref aPref, aModif)
1059 aSection = aPref.first;
1060 if (aSection == ModuleBase_Preferences::VIEWER_SECTION) {
1061 if (!isSalomeMode())
1062 myMainWindow->viewer()->updateFromResources();
1063 } else if (aSection == ModuleBase_Preferences::MENU_SECTION) {
1064 if (!isSalomeMode())
1065 myMainWindow->menuObject()->updateFromResources();
1071 //******************************************************
1072 ModuleBase_IModule* XGUI_Workshop::loadModule(const QString& theModule)
1074 QString libName = QString::fromStdString(library(theModule.toStdString()));
1075 if (libName.isEmpty()) {
1076 qWarning(qPrintable(tr("Information about module \"%1\" doesn't exist.").arg(theModule)));
1081 CREATE_FUNC crtInst = 0;
1084 HINSTANCE modLib = ::LoadLibrary((LPTSTR) qPrintable(libName));
1088 FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
1089 0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
1090 QString aMsg((char*) &lpMsgBuf);
1091 err = QString("Failed to load %1. %2").arg(libName).arg(aMsg);
1092 ::LocalFree(lpMsgBuf);
1094 crtInst = (CREATE_FUNC) ::GetProcAddress(modLib, CREATE_MODULE);
1098 FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM
1099 | FORMAT_MESSAGE_IGNORE_INSERTS,
1100 0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
1101 QString aMsg((char*) &lpMsgBuf);
1102 err = QString("Failed to find %1 function. %2").arg( CREATE_MODULE).arg(aMsg);
1103 ::LocalFree(lpMsgBuf);
1107 void* modLib = dlopen( libName.toLatin1(), RTLD_LAZY | RTLD_GLOBAL );
1109 err = QString( "Can not load library %1. %2" ).arg( libName ).arg( dlerror() );
1111 crtInst = (CREATE_FUNC)dlsym( modLib, CREATE_MODULE );
1113 err = QString( "Failed to find function %1. %2" ).arg( CREATE_MODULE ).arg( dlerror() );
1118 ModuleBase_IModule* aModule = crtInst ? crtInst(myModuleConnector) : 0;
1120 if (!err.isEmpty()) {
1122 Events_Error::send(err.toStdString());
1124 qWarning(qPrintable(err));
1130 //******************************************************
1131 bool XGUI_Workshop::activateModule()
1133 Config_ModuleReader aModuleReader;
1134 QString moduleName = QString::fromStdString(aModuleReader.getModuleName());
1135 myModule = loadModule(moduleName);
1139 connect(myDisplayer, SIGNAL(objectDisplayed(ObjectPtr, AISObjectPtr)),
1140 myModule, SLOT(onObjectDisplayed(ObjectPtr, AISObjectPtr)));
1141 connect(myDisplayer, SIGNAL(beforeObjectErase(ObjectPtr, AISObjectPtr)),
1142 myModule, SLOT(onBeforeObjectErase(ObjectPtr, AISObjectPtr)));
1144 myModule->createFeatures();
1145 myActionsMgr->update();
1149 //******************************************************
1150 void XGUI_Workshop::updateCommandStatus()
1152 QList<QAction*> aCommands;
1153 if (isSalomeMode()) { // update commands in SALOME mode
1154 aCommands = salomeConnector()->commandList();
1156 AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
1157 foreach (AppElements_Command* aCmd, aMenuBar->features())
1158 aCommands.append(aCmd);
1160 SessionPtr aMgr = ModelAPI_Session::get();
1161 if (aMgr->hasModuleDocument()) {
1162 QAction *aUndoCmd, *aRedoCmd;
1163 foreach(QAction* aCmd, aCommands) {
1164 QString aId = aCmd->data().toString();
1165 if (aId == "UNDO_CMD")
1167 else if (aId == "REDO_CMD")
1170 // Enable all commands
1171 aCmd->setEnabled(true);
1174 aUndoCmd->setEnabled(myModule->canUndo());
1175 aRedoCmd->setEnabled(myModule->canRedo());
1178 foreach(QAction* aCmd, aCommands) {
1179 QString aId = aCmd->data().toString();
1180 if (aId == "NEW_CMD")
1181 aCmd->setEnabled(true);
1182 else if (aId == "EXIT_CMD")
1183 aCmd->setEnabled(true);
1185 aCmd->setEnabled(false);
1188 myActionsMgr->update();
1189 emit commandStatusUpdated();
1192 void XGUI_Workshop::updateHistory()
1194 std::list<std::string> aUndoList = ModelAPI_Session::get()->undoList();
1195 QList<ActionInfo> aUndoRes = processHistoryList(aUndoList);
1196 emit updateUndoHistory(aUndoRes);
1198 std::list<std::string> aRedoList = ModelAPI_Session::get()->redoList();
1199 QList<ActionInfo> aRedoRes = processHistoryList(aRedoList);
1200 emit updateRedoHistory(aRedoRes);
1203 //******************************************************
1204 QDockWidget* XGUI_Workshop::createObjectBrowser(QWidget* theParent)
1206 QDockWidget* aObjDock = new QDockWidget(theParent);
1207 aObjDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea | Qt::BottomDockWidgetArea);
1208 aObjDock->setWindowTitle(tr("Object browser"));
1209 aObjDock->setStyleSheet(
1210 "::title { position: relative; padding-left: 5px; text-align: left center }");
1211 myObjectBrowser = new XGUI_ObjectsBrowser(aObjDock);
1212 connect(myObjectBrowser, SIGNAL(activePartChanged(ObjectPtr)), this,
1213 SLOT(changeCurrentDocument(ObjectPtr)));
1214 aObjDock->setWidget(myObjectBrowser);
1216 myContextMenuMgr->connectObjectBrowser();
1220 //******************************************************
1222 * Creates dock widgets, places them in corresponding area
1223 * and tabifies if necessary.
1225 void XGUI_Workshop::createDockWidgets()
1227 QMainWindow* aDesktop = isSalomeMode() ? salomeConnector()->desktop() : myMainWindow;
1228 QDockWidget* aObjDock = createObjectBrowser(aDesktop);
1229 aDesktop->addDockWidget(Qt::LeftDockWidgetArea, aObjDock);
1230 myPropertyPanel = new XGUI_PropertyPanel(aDesktop);
1231 myPropertyPanel->setupActions(myActionsMgr);
1232 myPropertyPanel->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea | Qt::BottomDockWidgetArea);
1233 aDesktop->addDockWidget(Qt::LeftDockWidgetArea, myPropertyPanel);
1234 hidePropertyPanel(); ///<! Invisible by default
1235 hideObjectBrowser();
1236 aDesktop->tabifyDockWidget(aObjDock, myPropertyPanel);
1237 myPropertyPanel->installEventFilter(myOperationMgr);
1239 QAction* aOkAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Accept);
1240 connect(aOkAct, SIGNAL(triggered()), myOperationMgr, SLOT(onCommitOperation()));
1241 QAction* aCancelAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Abort);
1242 connect(aCancelAct, SIGNAL(triggered()), myOperationMgr, SLOT(onAbortOperation()));
1243 connect(myPropertyPanel, SIGNAL(noMoreWidgets()), myModule, SLOT(onNoMoreWidgets()));
1244 connect(myPropertyPanel, SIGNAL(keyReleased(QKeyEvent*)),
1245 myOperationMgr, SLOT(onKeyReleased(QKeyEvent*)));
1246 connect(myOperationMgr, SIGNAL(validationStateChanged(bool)),
1247 aOkAct, SLOT(setEnabled(bool)));
1248 QAction* aAcceptAllAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::AcceptAll);
1249 connect(myOperationMgr, SIGNAL(nestedStateChanged(bool)),
1250 aAcceptAllAct, SLOT(setEnabled(bool)));
1254 //******************************************************
1255 void XGUI_Workshop::showPropertyPanel()
1257 QAction* aViewAct = myPropertyPanel->toggleViewAction();
1258 ///<! Restore ability to close panel from the window's menu
1259 aViewAct->setEnabled(true);
1260 myPropertyPanel->show();
1261 myPropertyPanel->raise();
1264 //******************************************************
1265 void XGUI_Workshop::hidePropertyPanel()
1267 QAction* aViewAct = myPropertyPanel->toggleViewAction();
1268 ///<! Do not allow to show empty property panel
1269 aViewAct->setEnabled(false);
1270 myPropertyPanel->hide();
1273 //******************************************************
1274 void XGUI_Workshop::showObjectBrowser()
1276 myObjectBrowser->parentWidget()->show();
1279 //******************************************************
1280 void XGUI_Workshop::hideObjectBrowser()
1282 myObjectBrowser->parentWidget()->hide();
1285 //******************************************************
1286 void XGUI_Workshop::onFeatureTriggered()
1288 QAction* aCmd = dynamic_cast<QAction*>(sender());
1290 QString aId = salomeConnector()->commandId(aCmd);
1292 myModule->launchOperation(aId);
1296 //******************************************************
1297 void XGUI_Workshop::changeCurrentDocument(ObjectPtr theObj)
1299 SessionPtr aMgr = ModelAPI_Session::get();
1301 ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(theObj);
1303 DocumentPtr aPartDoc = aPart->partDoc();
1305 aMgr->setActiveDocument(aPartDoc);
1310 aMgr->setActiveDocument(aMgr->moduleDocument());
1313 //******************************************************
1314 void XGUI_Workshop::salomeViewerSelectionChanged()
1316 emit salomeViewerSelection();
1319 //**************************************************************
1320 ModuleBase_IViewer* XGUI_Workshop::salomeViewer() const
1322 return mySalomeConnector->viewer();
1325 //**************************************************************
1326 void XGUI_Workshop::onContextMenuCommand(const QString& theId, bool isChecked)
1328 QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1329 if ((theId == "ACTIVATE_PART_CMD") && (aObjects.size() > 0)) {
1330 ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObjects.first());
1331 activatePart(aPart);
1332 } else if (theId == "DEACTIVATE_PART_CMD")
1333 activatePart(ResultPartPtr());
1334 else if (theId == "DELETE_CMD")
1336 else if (theId == "COLOR_CMD")
1337 changeColor(aObjects);
1338 else if (theId == "SHOW_CMD")
1339 showObjects(aObjects, true);
1340 else if (theId == "HIDE_CMD")
1341 showObjects(aObjects, false);
1342 else if (theId == "SHOW_ONLY_CMD")
1343 showOnlyObjects(aObjects);
1344 else if (theId == "SHADING_CMD")
1345 setDisplayMode(aObjects, XGUI_Displayer::Shading);
1346 else if (theId == "WIREFRAME_CMD")
1347 setDisplayMode(aObjects, XGUI_Displayer::Wireframe);
1348 else if (theId == "HIDEALL_CMD")
1349 myDisplayer->eraseAll();
1350 else if (theId == "EDIT_CMD") {
1351 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObjects.first());
1352 if (aFeature == NULL) {
1353 ResultParameterPtr aParam =
1354 std::dynamic_pointer_cast<ModelAPI_ResultParameter>(aObjects.first());
1355 if (aParam.get() != NULL) {
1356 aFeature = ModelAPI_Feature::feature(aParam);
1359 if (aFeature.get() != NULL)
1360 myModule->editFeature(aFeature);
1364 //**************************************************************
1365 void XGUI_Workshop::activatePart(ResultPartPtr theFeature)
1367 if (!myPartActivating) {
1368 myPartActivating = true;
1370 theFeature->activate();
1371 changeCurrentDocument(theFeature);
1372 myObjectBrowser->activatePart(theFeature);
1373 myPartActivating = false;
1375 updateCommandStatus();
1378 //**************************************************************
1379 //void XGUI_Workshop::activateLastPart()
1381 // SessionPtr aMgr = ModelAPI_Session::get();
1382 // DocumentPtr aDoc = aMgr->moduleDocument();
1383 // std::string aGrpName = ModelAPI_ResultPart::group();
1384 // ObjectPtr aLastPart = aDoc->object(aGrpName, aDoc->size(aGrpName) - 1);
1385 // ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aLastPart);
1387 // activatePart(aPart);
1391 //**************************************************************
1392 void XGUI_Workshop::deleteObjects()
1394 ModuleBase_IModule* aModule = module();
1395 // 1. allow the module to delete objects, do nothing if it has succeed
1396 if (aModule->deleteObjects()) {
1397 updateCommandStatus();
1401 if (!isActiveOperationAborted())
1403 QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1404 bool hasResult = false;
1405 bool hasFeature = false;
1406 bool hasParameter = false;
1407 XGUI_Tools::checkObjects(anObjects, hasResult, hasFeature, hasParameter);
1408 if (!(hasFeature || hasParameter))
1411 // 1. start operation
1412 QString aDescription = contextMenuMgr()->action("DELETE_CMD")->text();
1413 aDescription += tr(" %1");
1414 QStringList aObjectNames;
1415 foreach (ObjectPtr aObj, anObjects) {
1416 if (!aObj->data().get())
1418 aObjectNames << QString::fromStdString(aObj->data()->name());
1420 aDescription = aDescription.arg(aObjectNames.join(", "));
1422 SessionPtr aMgr = ModelAPI_Session::get();
1423 aMgr->startOperation(aDescription.toStdString());
1424 // 2. close the documents of the removed parts if the result part is in a list of selected objects
1425 foreach (ObjectPtr aObj, anObjects)
1427 ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
1429 DocumentPtr aDoc = aObj->document();
1430 if (aDoc == aMgr->activeDocument()) {
1435 // 3. delete objects
1436 QMainWindow* aDesktop = isSalomeMode() ? salomeConnector()->desktop() : myMainWindow;
1437 std::set<FeaturePtr> anIgnoredFeatures;
1438 if (deleteFeatures(anObjects, anIgnoredFeatures, aDesktop, true)) {
1439 myDisplayer->updateViewer();
1440 aMgr->finishOperation();
1441 updateCommandStatus();
1444 aMgr->abortOperation();
1448 //**************************************************************
1449 bool XGUI_Workshop::deleteFeatures(const QObjectPtrList& theList,
1450 std::set<FeaturePtr> theIgnoredFeatures,
1452 const bool theAskAboutDeleteReferences)
1454 // 1. find all referenced features
1455 std::set<FeaturePtr> aRefFeatures;
1456 foreach (ObjectPtr aObj, theList) {
1457 FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
1458 if (aFeature.get() != NULL) {
1459 aObj->document()->refsToFeature(aFeature, aRefFeatures, false);
1462 // 2. warn about the references remove, break the delete operation if the user chose it
1463 if (theAskAboutDeleteReferences && !aRefFeatures.empty()) {
1464 QStringList aRefNames;
1465 std::set<FeaturePtr>::const_iterator anIt = aRefFeatures.begin(),
1466 aLast = aRefFeatures.end();
1467 for (; anIt != aLast; anIt++) {
1468 aRefNames.append((*anIt)->name().c_str());
1470 QString aNames = aRefNames.join(", ");
1472 QMessageBox::StandardButton aRes = QMessageBox::warning(
1473 theParent, tr("Delete features"),
1474 QString(tr("Selected features are used in the following features: %1.\
1475 These features will be deleted also. Would you like to continue?")).arg(aNames),
1476 QMessageBox::No | QMessageBox::Yes, QMessageBox::No);
1477 if (aRes != QMessageBox::Yes)
1481 // 3. remove referenced features
1482 std::set<FeaturePtr>::const_iterator anIt = aRefFeatures.begin(),
1483 aLast = aRefFeatures.end();
1484 for (; anIt != aLast; anIt++) {
1485 FeaturePtr aFeature = (*anIt);
1486 DocumentPtr aDoc = aFeature->document();
1487 if (theIgnoredFeatures.find(aFeature) == theIgnoredFeatures.end())
1488 aDoc->removeFeature(aFeature);
1491 // 4. remove the parameter features
1492 foreach (ObjectPtr aObj, theList) {
1493 FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
1495 DocumentPtr aDoc = aObj->document();
1496 if (theIgnoredFeatures.find(aFeature) == theIgnoredFeatures.end())
1497 aDoc->removeFeature(aFeature);
1503 bool hasResults(QObjectPtrList theObjects, const std::set<std::string>& theTypes)
1505 bool isFoundResultType = false;
1506 foreach(ObjectPtr anObj, theObjects)
1508 ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
1509 if (aResult.get() == NULL)
1512 isFoundResultType = theTypes.find(aResult->groupName()) != theTypes.end();
1513 if (isFoundResultType)
1516 return isFoundResultType;
1519 //**************************************************************
1520 bool XGUI_Workshop::canChangeColor() const
1522 QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1524 std::set<std::string> aTypes;
1525 aTypes.insert(ModelAPI_ResultGroup::group());
1526 aTypes.insert(ModelAPI_ResultConstruction::group());
1527 aTypes.insert(ModelAPI_ResultBody::group());
1528 return hasResults(aObjects, aTypes);
1531 //**************************************************************
1532 #include <QButtonGroup>
1533 #include <QRadioButton>
1535 void XGUI_Workshop::changeColor(const QObjectPtrList& theObjects)
1537 std::vector<int> aColor;
1538 foreach(ObjectPtr anObject, theObjects) {
1540 AISObjectPtr anAISObj = myDisplayer->getAISObject(anObject);
1542 anAISObj->getColor(aColor[0], aColor[1], aColor[2]);
1543 if (!aColor.empty())
1546 if (aColor.size() != 3)
1549 // 2. show the dialog to change the value
1550 QDialog* aDlg = new QDialog();
1551 aDlg->setWindowTitle("Color");
1552 QGridLayout* aLay = new QGridLayout(aDlg);
1554 QRadioButton* aRandomChoiceBtn = new QRadioButton(aDlg);
1555 QRadioButton* aColorChoiceBtn = new QRadioButton(aDlg);
1556 aColorChoiceBtn->setChecked(true);
1557 QButtonGroup* aGroup = new QButtonGroup(aDlg);
1558 aGroup->setExclusive(true);
1559 aGroup->addButton(aColorChoiceBtn);
1560 aGroup->addButton(aRandomChoiceBtn);
1562 aLay->addWidget(aColorChoiceBtn, 0, 0);
1563 aLay->addWidget(aRandomChoiceBtn, 1, 0);
1565 QtxColorButton* aColorBtn = new QtxColorButton(aDlg);
1566 aColorBtn->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
1567 aLay->addWidget(aColorBtn, 0, 1);
1568 aColorBtn->setColor(QColor(aColor[0], aColor[1], aColor[2]));
1570 QLabel* aRandomLabel = new QLabel("Random", aDlg);
1571 aLay->addWidget(aRandomLabel, 1, 1);
1573 QDialogButtonBox* aButtons = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel,
1574 Qt::Horizontal, aDlg);
1575 connect(aButtons, SIGNAL(accepted()), aDlg, SLOT(accept()));
1576 connect(aButtons, SIGNAL(rejected()), aDlg, SLOT(reject()));
1577 aLay->addWidget(aButtons, 2, 0, 1, 2);
1579 aDlg->move(QCursor::pos());
1580 bool isDone = aDlg->exec() == QDialog::Accepted;
1584 QColor aColorResult = aColorBtn->color();
1585 int aRedResult = aColorResult.red(),
1586 aGreenResult = aColorResult.green(),
1587 aBlueResult = aColorResult.blue();
1589 if (aRedResult == aColor[0] && aGreenResult == aColor[1] && aBlueResult == aColor[2])
1592 // 3. abort the previous operation and start a new one
1593 SessionPtr aMgr = ModelAPI_Session::get();
1594 bool aWasOperation = aMgr->isOperation(); // keep this value
1595 if (!aWasOperation) {
1596 QString aDescription = contextMenuMgr()->action("DELETE_CMD")->text();
1597 aMgr->startOperation(aDescription.toStdString());
1600 // 4. set the value to all results
1601 AttributeIntArrayPtr aColorAttr;
1602 foreach(ObjectPtr anObj, theObjects) {
1603 ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
1604 if (aResult.get() != NULL) {
1605 aColorAttr = aResult->data()->intArray(ModelAPI_Result::COLOR_ID());
1606 if (aColorAttr.get() != NULL) {
1607 if (!aColorAttr->size()) {
1608 aColorAttr->setSize(3);
1610 aColorAttr->setValue(0, aRedResult);
1611 aColorAttr->setValue(1, aGreenResult);
1612 aColorAttr->setValue(2, aBlueResult);
1617 aMgr->finishOperation();
1618 updateCommandStatus();
1621 //**************************************************************
1622 void XGUI_Workshop::showObjects(const QObjectPtrList& theList, bool isVisible)
1624 foreach (ObjectPtr aObj, theList)
1627 displayObject(aObj);
1629 myDisplayer->erase(aObj, false);
1632 myDisplayer->updateViewer();
1635 //**************************************************************
1636 void XGUI_Workshop::showOnlyObjects(const QObjectPtrList& theList)
1638 myDisplayer->showOnly(theList);
1642 //**************************************************************
1643 void XGUI_Workshop::registerValidators() const
1645 SessionPtr aMgr = ModelAPI_Session::get();
1646 ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
1649 //**************************************************************
1650 void XGUI_Workshop::displayAllResults()
1652 SessionPtr aMgr = ModelAPI_Session::get();
1653 DocumentPtr aRootDoc = aMgr->moduleDocument();
1654 displayDocumentResults(aRootDoc);
1655 for (int i = 0; i < aRootDoc->size(ModelAPI_ResultPart::group()); i++) {
1656 ObjectPtr aObject = aRootDoc->object(ModelAPI_ResultPart::group(), i);
1657 ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObject);
1658 displayDocumentResults(aPart->partDoc());
1660 myDisplayer->updateViewer();
1663 //**************************************************************
1664 void XGUI_Workshop::displayDocumentResults(DocumentPtr theDoc)
1668 displayGroupResults(theDoc, ModelAPI_ResultConstruction::group());
1669 displayGroupResults(theDoc, ModelAPI_ResultBody::group());
1672 //**************************************************************
1673 void XGUI_Workshop::displayGroupResults(DocumentPtr theDoc, std::string theGroup)
1675 for (int i = 0; i < theDoc->size(theGroup); i++)
1676 displayObject(theDoc->object(theGroup, i));
1679 //**************************************************************
1680 void XGUI_Workshop::setDisplayMode(const QObjectPtrList& theList, int theMode)
1682 foreach(ObjectPtr aObj, theList) {
1683 myDisplayer->setDisplayMode(aObj, (XGUI_Displayer::DisplayMode)theMode, false);
1685 if (theList.size() > 0)
1686 myDisplayer->updateViewer();
1689 //**************************************************************
1690 void XGUI_Workshop::closeDocument()
1692 ModuleBase_Operation* anOperation = operationMgr()->currentOperation();
1693 while (anOperation) {
1694 anOperation->abort();
1695 anOperation = operationMgr()->currentOperation();
1697 myDisplayer->closeLocalContexts();
1698 myDisplayer->eraseAll();
1699 objectBrowser()->clearContent();
1701 SessionPtr aMgr = ModelAPI_Session::get();
1703 objectBrowser()->clearContent();
1706 //**************************************************************
1707 bool XGUI_Workshop::displayObject(ObjectPtr theObj)
1709 if (!myModule->canDisplayObject(theObj))
1712 ResultBodyPtr aBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(theObj);
1713 if (aBody.get() != NULL) {
1714 int aNb = myDisplayer->objectsCount();
1715 myDisplayer->display(theObj, false);
1718 } else if (!(myIsLoadingData || myPartActivating))
1719 myDisplayer->display(theObj, false);
1724 void XGUI_Workshop::addHistoryMenu(QObject* theObject, const char* theSignal, const char* theSlot)
1726 XGUI_HistoryMenu* aMenu = NULL;
1727 if (isSalomeMode()) {
1728 QAction* anAction = qobject_cast<QAction*>(theObject);
1731 aMenu = new XGUI_HistoryMenu(anAction);
1733 QToolButton* aButton = qobject_cast<QToolButton*>(theObject);
1734 aMenu = new XGUI_HistoryMenu(aButton);
1736 connect(this, theSignal, aMenu, SLOT(setHistory(const QList<ActionInfo>&)));
1737 connect(aMenu, SIGNAL(actionSelected(int)), this, theSlot);
1740 QList<ActionInfo> XGUI_Workshop::processHistoryList(const std::list<std::string>& theList) const
1742 QList<ActionInfo> aResult;
1743 std::list<std::string>::const_iterator it = theList.cbegin();
1744 for (; it != theList.cend(); it++) {
1745 QString anId = QString::fromStdString(*it);
1746 bool isEditing = anId.endsWith(ModuleBase_Operation::EditSuffix());
1748 anId.chop(ModuleBase_Operation::EditSuffix().size());
1751 QAction* aContextMenuAct = myContextMenuMgr->actionByName(anId);
1752 if (aContextMenuAct) {
1753 anInfo.initFrom(aContextMenuAct);
1755 anInfo = myActionsMgr->actionInfoById(anId);
1758 anInfo.text = anInfo.text.prepend("Modify ");