X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_ActionsMgr.cpp;h=2468786c43859ced97f6586a46310ef28c820908;hb=220bd2b37119be1c65abf88a88792445cb9d99f8;hp=1f721eea9812574438227612d906910bbfb3ee6e;hpb=366c734ae7ae78f4e4dc639aeabd72b9c6ec6bc4;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_ActionsMgr.cpp b/src/XGUI/XGUI_ActionsMgr.cpp index 1f721eea9..2468786c4 100644 --- a/src/XGUI/XGUI_ActionsMgr.cpp +++ b/src/XGUI/XGUI_ActionsMgr.cpp @@ -4,7 +4,9 @@ * XGUI_ActionsMgr.cpp */ +#ifndef HAVE_SALOME #include +#endif #include #include @@ -61,13 +63,13 @@ void XGUI_ActionsMgr::addCommand(QAction* theCmd) return; } myActions.insert(aId, theCmd); - AppElements_Command* aXCmd = dynamic_cast(theCmd); - if (aXCmd) { - myNestedActions[aId] = aXCmd->nestedCommands(); - } else { +#ifdef HAVE_SALOME XGUI_Workshop* aWorkshop = static_cast(parent()); myNestedActions[aId] = aWorkshop->salomeConnector()->nestedActions(aId); - } +#else + AppElements_Command* aXCmd = dynamic_cast(theCmd); + myNestedActions[aId] = aXCmd->nestedCommands(); +#endif } void XGUI_ActionsMgr::addNestedCommands(const QString& theId, const QStringList& theCommands) @@ -93,32 +95,29 @@ bool XGUI_ActionsMgr::isNested(const QString& theId) const return false; } -void XGUI_ActionsMgr::update() +void XGUI_ActionsMgr::updateCommandsStatus() { + setAllEnabled(true); XGUI_Selection* aSelection = myWorkshop->selector()->selection(); - if (aSelection->getSelected(ModuleBase_ISelection::Viewer).size() > 0) { + if (aSelection->getSelected(ModuleBase_ISelection::Viewer).size() > 0) updateOnViewSelection(); - } else { - FeaturePtr anActiveFeature = FeaturePtr(); - ModuleBase_OperationFeature* aFOperation = dynamic_cast - (myOperationMgr->currentOperation()); - if (aFOperation) { - anActiveFeature = aFOperation->feature(); - if(anActiveFeature.get()) { - setAllEnabled(false); - QString aFeatureId = QString::fromStdString(anActiveFeature->getKind()); - setActionEnabled(aFeatureId, true); - } - setNestedStackEnabled(aFOperation); - } else { - setAllEnabled(true); - setNestedCommandsEnabled(false); + + FeaturePtr anActiveFeature = FeaturePtr(); + ModuleBase_OperationFeature* aFOperation = dynamic_cast + (myOperationMgr->currentOperation()); + if (aFOperation) { + anActiveFeature = aFOperation->feature(); + QStringList aNested = allNestedCommands(aFOperation); + foreach(QString aAction, myActions.keys()) { + if (!aNested.contains(aAction)) + setActionEnabled(aAction, false); } - // TODO(SBH): Get defaults state of actions from XML and remove the following method - updateByDocumentKind(); - updateCheckState(); - updateByPlugins(anActiveFeature); - } + } else + setNestedCommandsEnabled(false); + + updateByPlugins(anActiveFeature); + updateByDocumentKind(); + updateCheckState(); } void XGUI_ActionsMgr::updateCheckState() @@ -229,20 +228,25 @@ QAction* XGUI_ActionsMgr::operationStateAction(OperationStateActionId theId, QOb } else { switch (theId) { case Accept: - case AcceptAll: + case AcceptAll: { aResult = new QAction(QIcon(":pictures/button_ok.png"), "", theParent); - break; + aResult->setToolTip("Apply"); + } + break; case Abort: case AbortAll: { aResult = new QAction(QIcon(":pictures/button_cancel.png"), "", theParent); - if(theId == Abort) { + aResult->setToolTip("Cancel"); + if (theId == Abort) { aResult->setShortcut(QKeySequence(Qt::Key_Escape)); } } break; - case Help: + case Help: { aResult = new QAction(QIcon(":pictures/button_help.png"), "", theParent); - break; + aResult->setToolTip("Help"); + } + break; default: break; } @@ -274,8 +278,7 @@ ActionInfo XGUI_ActionsMgr::actionInfoById(const QString& theId) void XGUI_ActionsMgr::setAllEnabled(bool isEnabled) { - foreach(QString eachAction, myActions.keys()) - { + foreach(QString eachAction, myActions.keys()) { setActionEnabled(eachAction, isEnabled); } } @@ -304,12 +307,26 @@ void XGUI_ActionsMgr::setNestedStackEnabled(ModuleBase_Operation* theOperation) return; FeaturePtr aFeature = anOperation->feature(); QString aFeatureId = QString::fromStdString(aFeature->getKind()); - setActionEnabled(aFeatureId, true); + //setActionEnabled(aFeatureId, true); setNestedCommandsEnabled(true, aFeatureId); setNestedStackEnabled(myOperationMgr->previousOperation(theOperation)); } +QStringList XGUI_ActionsMgr::allNestedCommands(ModuleBase_Operation* theOperation) +{ + QStringList aFeatures; + ModuleBase_OperationFeature* anOperation = dynamic_cast(theOperation); + if(!anOperation || !anOperation->feature()) + return aFeatures; + FeaturePtr aFeature = anOperation->feature(); + QString aFeatureId = QString::fromStdString(aFeature->getKind()); + + aFeatures << myNestedActions[aFeatureId]; + aFeatures << allNestedCommands(myOperationMgr->previousOperation(theOperation)); + return aFeatures; +} + void XGUI_ActionsMgr::setActionChecked(const QString& theId, const bool theChecked) { if (myActions.contains(theId)) { @@ -323,7 +340,11 @@ void XGUI_ActionsMgr::setActionChecked(const QString& theId, const bool theCheck void XGUI_ActionsMgr::setActionEnabled(const QString& theId, const bool theEnabled) { if (myActions.contains(theId)) { - myActions[theId]->setEnabled(theEnabled); + QAction* aAction = myActions[theId]; + // Initially all actions are enabled + // If it was disabled for any reason then we can not enable it + if (aAction->isEnabled()) + aAction->setEnabled(theEnabled); } } @@ -337,16 +358,16 @@ void XGUI_ActionsMgr::updateByDocumentKind() QString aDocKind = QString::fromStdString(aStdDocKind); XGUI_Workshop* aWorkshop = static_cast(parent()); foreach(QAction* eachAction, myActions.values()) { - AppElements_Command* aCmd = dynamic_cast(eachAction); QString aCmdDocKind; - if(aCmd) { - aCmdDocKind = aCmd->documentKind(); - } else { - QString aId = eachAction->data().toString(); - if (!aId.isEmpty()) { - aCmdDocKind = aWorkshop->salomeConnector()->documentKind(aId); - } +#ifdef HAVE_SALOME + QString aId = eachAction->data().toString(); + if (!aId.isEmpty()) { + aCmdDocKind = aWorkshop->salomeConnector()->documentKind(aId); } +#else + AppElements_Command* aCmd = dynamic_cast(eachAction); + aCmdDocKind = aCmd->documentKind(); +#endif if(!aCmdDocKind.isEmpty() && aCmdDocKind != aDocKind) { eachAction->setEnabled(false); }