X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Workshop.cpp;h=b5b0b5f6baeeb50b95d9cd621859c12dd4d9cfdf;hb=47c18d4de2719126f6b045b5c37525cd8f170aa1;hp=b21bc9e12be38e40d1e01aa1673d01bccd7e9136;hpb=fd6e8847c7c7e43594a91c68ec9153bc8067c8ac;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Workshop.cpp b/src/XGUI/XGUI_Workshop.cpp index b21bc9e12..b5b0b5f6b 100644 --- a/src/XGUI/XGUI_Workshop.cpp +++ b/src/XGUI/XGUI_Workshop.cpp @@ -1,4 +1,4 @@ -#include "XGUI_Module.h" +#include "ModuleBase_IModule.h" #include "XGUI_Constants.h" #include "XGUI_Command.h" #include "XGUI_MainMenu.h" @@ -10,6 +10,7 @@ #include "XGUI_Viewer.h" #include "ModuleBase_WidgetFactory.h" #include "XGUI_SelectionMgr.h" +#include "XGUI_Selection.h" #include "XGUI_ObjectsBrowser.h" #include "XGUI_Displayer.h" #include "XGUI_OperationMgr.h" @@ -20,6 +21,7 @@ #include "XGUI_ViewerProxy.h" #include "XGUI_PropertyPanel.h" #include "XGUI_ContextMenuMgr.h" +#include "XGUI_ModuleConnector.h" #include #include @@ -27,12 +29,18 @@ #include #include #include +#include + +#include #include #include + #include #include #include +#include + #include #include #include @@ -71,7 +79,7 @@ QString XGUI_Workshop::featureIcon(const std::string& theId) XGUI_Workshop::XGUI_Workshop(XGUI_SalomeConnector* theConnector) : QObject(), myCurrentDir(QString()), - myPartSetModule(NULL), + myModule(NULL), mySalomeConnector(theConnector), myPropertyPanel(0), myObjectBrowser(0), @@ -82,6 +90,7 @@ XGUI_Workshop::XGUI_Workshop(XGUI_SalomeConnector* theConnector) myDisplayer = new XGUI_Displayer(this); mySelector = new XGUI_SelectionMgr(this); + //connect(mySelector, SIGNAL(selectionChanged()), this, SLOT(updateModuleCommands())); myOperationMgr = new XGUI_OperationMgr(this); myActionsMgr = new XGUI_ActionsMgr(this); @@ -91,6 +100,9 @@ XGUI_Workshop::XGUI_Workshop(XGUI_SalomeConnector* theConnector) this, SLOT(onContextMenuCommand(const QString&, bool))); myViewerProxy = new XGUI_ViewerProxy(this); + connect(myViewerProxy, SIGNAL(selectionChanged()), this, SLOT(updateCommandsOnViewSelection())); + + myModuleConnector = new XGUI_ModuleConnector(this); connect(myOperationMgr, SIGNAL(operationStarted()), SLOT(onOperationStarted())); connect(myOperationMgr, SIGNAL(operationResumed()), SLOT(onOperationStarted())); @@ -114,13 +126,12 @@ void XGUI_Workshop::startApplication() Events_Loop* aLoop = Events_Loop::loop(); aLoop->registerListener(this, Events_Error::errorID()); //!< Listening application errors. //TODO(sbh): Implement static method to extract event id [SEID] - Events_ID aFeatureId = aLoop->eventByName(EVENT_FEATURE_LOADED); - aLoop->registerListener(this, aFeatureId); - Events_ID aPartSetId = aLoop->eventByName("PartSetModuleEvent"); - aLoop->registerListener(this, aPartSetId); - Events_ID aFeatureUpdatedId = aLoop->eventByName(EVENT_FEATURE_UPDATED); - aLoop->registerListener(this, aFeatureUpdatedId); + aLoop->registerListener(this, Events_Loop::eventByName(EVENT_FEATURE_LOADED)); + // TODO Is it good to use non standard event within workshop? + aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OPERATION_LAUNCHED)); + aLoop->registerListener(this, Events_Loop::eventByName(EVENT_FEATURE_UPDATED)); aLoop->registerListener(this, Events_Loop::eventByName(EVENT_FEATURE_CREATED)); + aLoop->registerListener(this, Events_Loop::eventByName(EVENT_FEATURE_TO_REDISPLAY)); activateModule(); if (myMainWindow) { @@ -216,55 +227,36 @@ void XGUI_Workshop::processEvent(const Events_Message* theMessage) } return; } + // Process creation of Part if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_FEATURE_CREATED)) { const Model_FeatureUpdatedMessage* aUpdMsg = dynamic_cast(theMessage); - std::set aFeatures = aUpdMsg->features(); + onFeatureCreatedMsg(aUpdMsg); + } - std::set::const_iterator aIt; - bool aHasPart = false; - for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) { - FeaturePtr aFeature = (*aIt); - if (aFeature->getKind() == "Part") { - aHasPart = true; - break; - } - } - if (aHasPart) { - //The created part will be created in Object Browser later and we have to activate it - // only when it is created everywere - QTimer::singleShot(50, this, SLOT(activateLastPart())); - } + // Redisplay feature + if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_FEATURE_TO_REDISPLAY)) { + const Model_FeatureUpdatedMessage* aUpdMsg = dynamic_cast(theMessage); + onFeatureRedisplayMsg(aUpdMsg); } //Update property panel on corresponding message. If there is no current operation (no //property panel), or received message has different feature to the current - do nothing. - static Events_ID aFeatureUpdatedId = Events_Loop::loop()->eventByName(EVENT_FEATURE_UPDATED); - if (theMessage->eventID() == aFeatureUpdatedId && myOperationMgr->hasOperation()) - { + if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_FEATURE_UPDATED)) { const Model_FeatureUpdatedMessage* anUpdateMsg = dynamic_cast(theMessage); - std::set aFeatures = anUpdateMsg->features(); - - FeaturePtr aCurrentFeature = myOperationMgr->currentOperation()->feature(); - std::set::const_iterator aIt; - for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) { - FeaturePtr aNewFeature = (*aIt); - if(aNewFeature == aCurrentFeature) { - myPropertyPanel->updateContentWidget(aCurrentFeature); - break; - } - } + onFeatureUpdatedMsg(anUpdateMsg); } + //An operation passed by message. Start it, process and commit. - const Config_PointerMessage* aPartSetMsg = dynamic_cast(theMessage); - if (aPartSetMsg) { - ModuleBase_Operation* anOperation = - (ModuleBase_Operation*)(aPartSetMsg->pointer()); + if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OPERATION_LAUNCHED)) { + const Config_PointerMessage* aPartSetMsg = dynamic_cast(theMessage); + //myPropertyPanel->cleanContent(); + ModuleBase_Operation* anOperation = (ModuleBase_Operation*)aPartSetMsg->pointer(); if (myOperationMgr->startOperation(anOperation)) { myPropertyPanel->updateContentWidget(anOperation->feature()); - if (anOperation->getDescription()->xmlRepresentation().isEmpty()) { + if (!anOperation->getDescription()->hasXmlRepresentation()) { anOperation->commit(); updateCommandStatus(); } @@ -276,24 +268,98 @@ void XGUI_Workshop::processEvent(const Events_Message* theMessage) if (anAppError) { emit errorOccurred(QString::fromLatin1(anAppError->description())); } +} + +//****************************************************** +void XGUI_Workshop::onFeatureUpdatedMsg(const Model_FeatureUpdatedMessage* theMsg) +{ + std::set aFeatures = theMsg->features(); + if (myOperationMgr->hasOperation()) + { + FeaturePtr aCurrentFeature = myOperationMgr->currentOperation()->feature(); + std::set::const_iterator aIt; + for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) { + FeaturePtr aNewFeature = (*aIt); + if(aNewFeature == aCurrentFeature) { + myPropertyPanel->updateContentWidget(aCurrentFeature); + break; + } + } + } +} +//****************************************************** +void XGUI_Workshop::onFeatureRedisplayMsg(const Model_FeatureUpdatedMessage* theMsg) +{ + std::set aFeatures = theMsg->features(); + std::set::const_iterator aIt; + bool isDisplayed = false; + for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) { + FeaturePtr aFeature = (*aIt); + if (aFeature->getKind() != PARTSET_PART_KIND) { + isDisplayed = myDisplayer->redisplay(aFeature, false); + } + } + if (isDisplayed) + myDisplayer->updateViewer(); } +//****************************************************** +void XGUI_Workshop::onFeatureCreatedMsg(const Model_FeatureUpdatedMessage* theMsg) +{ + std::set aFeatures = theMsg->features(); + + std::set::const_iterator aIt; + bool aHasPart = false; + bool isDisplayed = false; + for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) { + FeaturePtr aFeature = (*aIt); + if (aFeature->getKind() == PARTSET_PART_KIND) { + aHasPart = true; + //break; + } else { + isDisplayed = myDisplayer->display(aFeature, false); + } + } + if (isDisplayed) + myDisplayer->updateViewer(); + if (aHasPart) { + //The created part will be created in Object Browser later and we have to activate it + // only when it is created everywere + QTimer::singleShot(50, this, SLOT(activateLastPart())); + } +} + //****************************************************** void XGUI_Workshop::onOperationStarted() { ModuleBase_Operation* aOperation = myOperationMgr->currentOperation(); - if(!aOperation->getDescription()->xmlRepresentation().isEmpty()) { //!< No need for property panel + if(aOperation->getDescription()->hasXmlRepresentation()) { //!< No need for property panel connectWithOperation(aOperation); showPropertyPanel(); + QString aXmlRepr = aOperation->getDescription()->xmlRepresentation(); + ModuleBase_WidgetFactory aFactory = ModuleBase_WidgetFactory(aXmlRepr.toStdString(), myModuleConnector); + + myPropertyPanel->cleanContent(); + aFactory.createWidget(myPropertyPanel->contentWidget()); + + QList aWidgets = aFactory.getModelWidgets(); + QList::const_iterator anIt = aWidgets.begin(), aLast = aWidgets.end(); + ModuleBase_ModelWidget* aWidget; + for (; anIt != aLast; anIt++) { + aWidget = *anIt; + //QObject::connect(aWidget, SIGNAL(valuesChanged()), aOperation, SLOT(storeCustomValue())); + QObject::connect(aWidget, SIGNAL(valuesChanged()), + this, SLOT(onWidgetValuesChanged())); + // Init default values + if (!aOperation->isEditOperation() && aWidget->hasDefaultValue()) { + aWidget->storeValue(aOperation->feature()); + } + } - ModuleBase_WidgetFactory aFactory = ModuleBase_WidgetFactory(aOperation); - QWidget* aContent = myPropertyPanel->contentWidget(); - qDeleteAll(aContent->children()); - aFactory.createWidget(aContent); - myPropertyPanel->setModelWidgets(aFactory.getModelWidgets()); + myPropertyPanel->setModelWidgets(aWidgets); myPropertyPanel->setWindowTitle(aOperation->getDescription()->description()); } updateCommandStatus(); @@ -305,6 +371,7 @@ void XGUI_Workshop::onOperationStopped(ModuleBase_Operation* theOperation) //!< No need for property panel updateCommandStatus(); hidePropertyPanel(); + myPropertyPanel->cleanContent(); } /* @@ -335,7 +402,7 @@ void XGUI_Workshop::addFeature(const Config_FeatureMessage* theMessage) QKeySequence(), isUsePropPanel); salomeConnector()->setNestedActions(aId, aNestedFeatures.split(" ")); myActionsMgr->addCommand(aAction); - myPartSetModule->featureCreated(aAction); + myModule->featureCreated(aAction); } else { XGUI_MainMenu* aMenuBar = myMainWindow->menuObject(); @@ -357,7 +424,7 @@ void XGUI_Workshop::addFeature(const Config_FeatureMessage* theMessage) QKeySequence(), isUsePropPanel); aCommand->setNestedCommands(aNestedFeatures.split(" ", QString::SkipEmptyParts)); myActionsMgr->addCommand(aCommand); - myPartSetModule->featureCreated(aCommand); + myModule->featureCreated(aCommand); } } @@ -429,6 +496,7 @@ void XGUI_Workshop::onNew() aWnd->showMaximized(); updateCommandStatus(); } + myContextMenuMgr->connectViewer(); QApplication::restoreOverrideCursor(); } @@ -465,8 +533,9 @@ void XGUI_Workshop::onOpen() } QApplication::setOverrideCursor(Qt::WaitCursor); aDoc->load(myCurrentDir.toLatin1().constData()); - QApplication::restoreOverrideCursor(); updateCommandStatus(); + myObjectBrowser->rebuildDataTree(); + QApplication::restoreOverrideCursor(); } //****************************************************** @@ -534,7 +603,7 @@ void XGUI_Workshop::onRedo() } //****************************************************** -XGUI_Module* XGUI_Workshop::loadModule(const QString& theModule) +ModuleBase_IModule* XGUI_Workshop::loadModule(const QString& theModule) { QString libName = QString::fromStdString(library(theModule.toStdString())); @@ -582,7 +651,7 @@ XGUI_Module* XGUI_Workshop::loadModule(const QString& theModule) } #endif - XGUI_Module* aModule = crtInst ? crtInst(this) : 0; + ModuleBase_IModule* aModule = crtInst ? crtInst(this) : 0; if (!err.isEmpty()) { if (mainWindow()) { @@ -599,10 +668,10 @@ bool XGUI_Workshop::activateModule() { Config_ModuleReader aModuleReader; QString moduleName = QString::fromStdString(aModuleReader.getModuleName()); - myPartSetModule = loadModule(moduleName); - if (!myPartSetModule) + myModule = loadModule(moduleName); + if (!myModule) return false; - myPartSetModule->createFeatures(); + myModule->createFeatures(); myActionsMgr->update(); return true; } @@ -648,6 +717,24 @@ void XGUI_Workshop::updateCommandStatus() myActionsMgr->update(); } +//****************************************************** +QList XGUI_Workshop::getModuleCommands() const +{ + QList aCommands; + if (isSalomeMode()) { // update commands in SALOME mode + aCommands = salomeConnector()->commandList(); + } else { + XGUI_MainMenu* aMenuBar = myMainWindow->menuObject(); + foreach (XGUI_Workbench* aWb, aMenuBar->workbenches()) { + if (aWb != aMenuBar->generalPage()) { + foreach(XGUI_Command* aCmd, aWb->features()) + aCommands.append(aCmd); + } + } + } + return aCommands; +} + //****************************************************** QDockWidget* XGUI_Workshop::createObjectBrowser(QWidget* theParent) { @@ -687,6 +774,11 @@ void XGUI_Workshop::createDockWidgets() connect(myPropertyPanel, SIGNAL(keyReleased(const std::string&, QKeyEvent*)), myOperationMgr, SLOT(onKeyReleased(const std::string&, QKeyEvent*))); + + connect(myPropertyPanel, SIGNAL(widgetActivated(ModuleBase_ModelWidget*)), + myOperationMgr, SLOT(onWidgetActivated(ModuleBase_ModelWidget*))); + connect(myOperationMgr, SIGNAL(activateNextWidget(ModuleBase_ModelWidget*)), + myPropertyPanel, SLOT(onActivateNextWidget(ModuleBase_ModelWidget*))); } //****************************************************** @@ -727,7 +819,7 @@ void XGUI_Workshop::onFeatureTriggered() if (aCmd) { QString aId = salomeConnector()->commandId(aCmd); if (!aId.isNull()) - myPartSetModule->launchOperation(aId); + myModule->launchOperation(aId); } } @@ -737,7 +829,7 @@ void XGUI_Workshop::changeCurrentDocument(FeaturePtr thePart) PluginManagerPtr aMgr = ModelAPI_PluginManager::get(); if (thePart) { DocumentPtr aFeaDoc; - if (thePart->data()) { + if (!XGUI_Tools::isModelObject(thePart)) { aFeaDoc = thePart->data()->docRef("PartDocument")->value(); } else { ObjectPtr aObject = boost::dynamic_pointer_cast(thePart); @@ -766,7 +858,7 @@ XGUI_SalomeViewer* XGUI_Workshop::salomeViewer() const //************************************************************** void XGUI_Workshop::onContextMenuCommand(const QString& theId, bool isChecked) { - QFeatureList aFeatures = mySelector->selectedFeatures(); + QFeatureList aFeatures = mySelector->selection()->selectedFeatures(); if ((theId == "ACTIVATE_PART_CMD") && (aFeatures.size() > 0)) activatePart(aFeatures.first()); else if (theId == "DEACTIVATE_PART_CMD") @@ -779,6 +871,26 @@ void XGUI_Workshop::onContextMenuCommand(const QString& theId, bool isChecked) showFeatures(aFeatures, false); } +//************************************************************** +void XGUI_Workshop::onWidgetValuesChanged() +{ + ModuleBase_Operation* anOperation = myOperationMgr->currentOperation(); + FeaturePtr aFeature = anOperation->feature(); + + ModuleBase_ModelWidget* aSenderWidget = dynamic_cast(sender()); + //if (aCustom) + // aCustom->storeValue(aFeature); + + const QList& aWidgets = myPropertyPanel->modelWidgets(); + QList::const_iterator anIt = aWidgets.begin(), aLast = aWidgets.end(); + for (; anIt != aLast; anIt++) { + ModuleBase_ModelWidget* aCustom = *anIt; + if (aCustom && (/*!aCustom->isInitialized(aFeature) ||*/ aCustom == aSenderWidget)) { + aCustom->storeValue(aFeature); + } + } +} + //************************************************************** void XGUI_Workshop::activatePart(FeaturePtr theFeature) { @@ -806,9 +918,9 @@ void XGUI_Workshop::deleteFeatures(QFeatureList theList) PluginManagerPtr aMgr = ModelAPI_PluginManager::get(); aMgr->rootDocument()->startOperation(); foreach (FeaturePtr aFeature, theList) { - if (aFeature->getKind() == "Part") { + if (aFeature->getKind() == PARTSET_PART_KIND) { DocumentPtr aDoc; - if (aFeature->data()) { + if (!XGUI_Tools::isModelObject(aFeature)) { aDoc = aFeature->data()->docRef("PartDocument")->value(); } else { ObjectPtr aObject = boost::dynamic_pointer_cast(aFeature); @@ -819,13 +931,16 @@ void XGUI_Workshop::deleteFeatures(QFeatureList theList) aDoc->close(); } } else { - if (!aFeature->data()) { + if (XGUI_Tools::isModelObject(aFeature)) { ObjectPtr aObject = boost::dynamic_pointer_cast(aFeature); aFeature = aObject->featureRef(); } } + if (myDisplayer->isVisible(aFeature)) + myDisplayer->erase(aFeature, false); aFeature->document()->removeFeature(aFeature); } + myDisplayer->updateViewer(); aMgr->rootDocument()->finishOperation(); } } @@ -833,6 +948,35 @@ void XGUI_Workshop::deleteFeatures(QFeatureList theList) //************************************************************** void XGUI_Workshop::showFeatures(QFeatureList theList, bool isVisible) { -// foreach (FeaturePtr aFeature, theList) { -// } + if (isVisible) { + foreach (FeaturePtr aFeature, theList) { + myDisplayer->display(aFeature, false); + } + } else { + foreach (FeaturePtr aFeature, theList) { + myDisplayer->erase(aFeature, false); + } + } + myDisplayer->updateViewer(); +} + +//************************************************************** +void XGUI_Workshop::updateCommandsOnViewSelection() +{ + PluginManagerPtr aMgr = ModelAPI_PluginManager::get(); + ModelAPI_ValidatorsFactory* aFactory = aMgr->validators(); + XGUI_Selection* aSelection = mySelector->selection(); + + QList aActions = getModuleCommands(); + foreach(QAction* aAction, aActions) { + QString aId = aAction->data().toString(); + const ModelAPI_Validator* aValidator = aFactory->validator(aId.toStdString()); + if (aValidator) { + const ModuleBase_SelectionValidator* aSelValidator = + dynamic_cast(aValidator); + if (aSelValidator) { + aAction->setEnabled(aSelValidator->isValid(aSelection)); + } + } + } }