X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_ActionsMgr.cpp;h=8b6fbadd1c685e94305ef78d791405823e73c060;hb=1be01557bbce2ce45f8f7e1cfce412005aa8e349;hp=a496899708f9375fd8fa60fde53a89de2044a6f3;hpb=ef523c1c20fecaf086c9f9fe712750ae8e180ec0;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_ActionsMgr.cpp b/src/XGUI/XGUI_ActionsMgr.cpp index a49689970..8b6fbadd1 100644 --- a/src/XGUI/XGUI_ActionsMgr.cpp +++ b/src/XGUI/XGUI_ActionsMgr.cpp @@ -1,112 +1,371 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + /* * XGUI_ActionsMgr.cpp */ -#include "XGUI_ActionsMgr.h" -#include "XGUI_Command.h" -#include "XGUI_Workshop.h" -#include "XGUI_SalomeConnector.h" +#include + +#include +#include +#include +#include +#include +#include + +#include +#include + +#include +#include +#include +#include +#include +#include + #include +#ifdef _DEBUG +#include +#include +#endif XGUI_ActionsMgr::XGUI_ActionsMgr(XGUI_Workshop* theParent) - : QObject(theParent), myWorkshop(theParent) + : QObject(theParent), + myWorkshop(theParent), + myOperationMgr(theParent->operationMgr()) { - + // Default shortcuts + myShortcuts << QKeySequence::Save; + myShortcuts << QKeySequence::Undo; + myShortcuts << QKeySequence::Redo; + myShortcuts << QKeySequence::Open; + myShortcuts << QKeySequence::Close; + + //Initialize event listening + Events_Loop* aLoop = Events_Loop::loop(); + static Events_ID aStateResponseEventId = + Events_Loop::loop()->eventByName(EVENT_FEATURE_STATE_RESPONSE); + aLoop->registerListener(this, aStateResponseEventId, NULL, true); } XGUI_ActionsMgr::~XGUI_ActionsMgr() { } +void XGUI_ActionsMgr::addCommand(QAction* theCmd) +{ + QString aId = theCmd->data().toString(); + if (aId.isEmpty()) { + return; + } + myActions.insert(aId, theCmd); + AppElements_Command* aXCmd = dynamic_cast(theCmd); + if (aXCmd) { + myNestedActions[aId] = aXCmd->nestedCommands(); + } else { + XGUI_Workshop* aWorkshop = static_cast(parent()); + myNestedActions[aId] = aWorkshop->salomeConnector()->nestedActions(aId); + } +} -void XGUI_ActionsMgr::addCommand(QString theId, QAction* theCmd) +void XGUI_ActionsMgr::addNestedCommands(const QString& theId, const QStringList& theCommands) { - myActions.insert(theId,theCmd); - myActionsState.insert(theId, theCmd->isEnabled()); - connect(theCmd, SIGNAL(triggered(bool)), this, SLOT(setActionsDisabled(bool))); + myNestedActions[theId] = theCommands; } -void XGUI_ActionsMgr::addCommand(XGUI_Command* theCmd) +QStringList XGUI_ActionsMgr::nestedCommands(const QString& theId) const { - myActions.insert(theCmd->id(),theCmd); - myActionsState.insert(theCmd->id(), theCmd->enabled()); - theCmd->connectTo(this, SLOT(setActionsDisabled(bool))); + if (myNestedActions.contains(theId)) + return myNestedActions[theId]; + return QStringList(); } -void XGUI_ActionsMgr::setActionsDisabled(bool isDisabled) +bool XGUI_ActionsMgr::isNested(const QString& theId) const { - //Re-enable actions (just restore their state) - if (!isDisabled) { - myNestedActions.clear(); - restoreCommandState(); - return; + foreach(QString aId, myNestedActions.keys()) + { + QStringList aList = myNestedActions[aId]; + if (aList.contains(theId)) + return true; } - //Disable all actions, but caller and unblockable (defined in a xml) - saveCommandsState(); + return false; +} - QString aSkippedId; - if (myWorkshop->isSalomeMode()) { - QAction* aToggledFeature = dynamic_cast(sender()); - aSkippedId = myWorkshop->salomeConnector()->commandId(aToggledFeature); +void XGUI_ActionsMgr::update() +{ + 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 { - XGUI_Command* aToggledFeature = dynamic_cast(sender()); - aSkippedId = aToggledFeature->id(); + setAllEnabled(true); + setNestedCommandsEnabled(false); + } + // TODO(SBH): Get defaults state of actions from XML and remove the following method + updateByDocumentKind(); + updateCheckState(); + updateByPlugins(anActiveFeature); +} + +void XGUI_ActionsMgr::updateCheckState() +{ + QString eachCommand = QString(); + foreach(eachCommand, myActions.keys()) { + setActionChecked(eachCommand, false); + } + QStringList ltActiveCommands = myOperationMgr->operationList(); + foreach(eachCommand, ltActiveCommands) { + setActionChecked(eachCommand, true); } - QStringList anActionIdsList = myActions.keys(); - foreach(QString eachKey, anActionIdsList) { - if (eachKey == aSkippedId) { - continue; +} + +void XGUI_ActionsMgr::updateOnViewSelection() +{ + if (!myOperationMgr->hasOperation()) + return; + + QStringList aIdList = myOperationMgr->operationList(); + //ModuleBase_Operation* anOperation = myOperationMgr->currentOperation(); + //FeaturePtr anActiveFeature = anOperation->feature(); + //if(!anActiveFeature.get()) + if (aIdList.isEmpty()) + return; + + //QString aFeatureId = QString::fromStdString(anActiveFeature->getKind()); + XGUI_Selection* aSelection = myWorkshop->selector()->selection(); + // only viewer selection is processed + if (aSelection->getSelected(ModuleBase_ISelection::Viewer).size() == 0) { + // it seems that this code is not nesessary anymore. It leads to incorrect case: + // sketch operation start, click in any place in the viewer. The result is all nested + // entities are enabled(but the sketch plane is not selected yet). Any sketch operation + // can be started but will be incorrect on preview build before it uses the sketch unset plane. + /*foreach(QString aFeatureId, aIdList) { + foreach(QString aId, nestedCommands(aFeatureId)) { + setActionEnabled(aId, true); + } + }*/ + } else { + SessionPtr aMgr = ModelAPI_Session::get(); + ModelAPI_ValidatorsFactory* aFactory = aMgr->validators(); + foreach(QString aFeatureId, aIdList) { + foreach(QString aId, nestedCommands(aFeatureId)) { + ModelAPI_ValidatorsFactory::Validators aValidators; + aFactory->validators(aId.toStdString(), aValidators); + ModelAPI_ValidatorsFactory::Validators::iterator aValidatorIt = aValidators.begin(); + for (; aValidatorIt != aValidators.end(); ++aValidatorIt) { + const ModuleBase_SelectionValidator* aSelValidator = + dynamic_cast(aFactory->validator(aValidatorIt->first)); + if (!aSelValidator) + continue; + setActionEnabled(aId, aSelValidator->isValid(aSelection, aValidatorIt->second)); + } + } } - myActions[eachKey]->setEnabled(false); } - if (myWorkshop->isSalomeMode()) { - myNestedActions = myWorkshop->salomeConnector()->nestedActions(aSkippedId); +} + +QKeySequence XGUI_ActionsMgr::registerShortcut(const QKeySequence& theKeySequence) +{ + if (theKeySequence.isEmpty()) { + return QKeySequence(); + } + if (myShortcuts.contains(theKeySequence)) { + QString aMessage = tr("Shortcut %1 is already defined. Ignore."); + aMessage = aMessage.arg(theKeySequence.toString()); + Events_Error::send(aMessage.toStdString()); + return QKeySequence(); + } + myShortcuts.append(theKeySequence); + return theKeySequence; +} + +QKeySequence XGUI_ActionsMgr::registerShortcut(const QString& theKeySequence) +{ + if (theKeySequence.isEmpty()) { + return QKeySequence(); + } + QKeySequence aResult(theKeySequence); + registerShortcut(aResult); + return aResult; +} + +void XGUI_ActionsMgr::processEvent(const std::shared_ptr& theMessage) +{ + const Events_ID kResponseEvent = + Events_Loop::loop()->eventByName(EVENT_FEATURE_STATE_RESPONSE); + if (theMessage->eventID() == kResponseEvent) { + std::shared_ptr aStateMessage = + std::dynamic_pointer_cast(theMessage); + if (!aStateMessage.get()) + return; + std::list aFeaturesList = aStateMessage->features(); + std::list::iterator it = aFeaturesList.begin(); + for( ; it != aFeaturesList.end(); ++it) { + QString anActionId = QString::fromStdString(*it); + bool theDefaultState = false; + if (myActions.contains(anActionId)) { + theDefaultState = myActions[anActionId]->isEnabled(); + } + setActionEnabled(anActionId, aStateMessage->state(*it, theDefaultState)); + } + } else if (theMessage.get()) { + #ifdef _DEBUG + std::cout << "XGUI_ActionsMgr::processEvent: unhandled message caught: " << std::endl + << theMessage->eventID().eventText() << std::endl; + #endif + } +} + +QAction* XGUI_ActionsMgr::operationStateAction(OperationStateActionId theId, QObject* theParent) +{ + QAction* aResult = NULL; + if (myOperationActions.contains(theId)) { + aResult = myOperationActions.value(theId); + if (theParent && aResult->parent() != theParent) { + aResult->setParent(theParent); + } } else { - XGUI_Command* aToggledFeature = dynamic_cast(sender()); - myNestedActions = aToggledFeature->unblockableCommands(); + switch (theId) { + case Accept: + case AcceptAll: + aResult = new QAction(QIcon(":pictures/button_ok.png"), "", theParent); + break; + case Abort: + case AbortAll: { + aResult = new QAction(QIcon(":pictures/button_cancel.png"), "", theParent); + if(theId == Abort) { + aResult->setShortcut(QKeySequence(Qt::Key_Escape)); + } + } + break; + case Help: + aResult = new QAction(QIcon(":pictures/button_help.png"), "", theParent); + break; + default: + break; + } + myOperationActions.insert(theId, aResult); } + return aResult; } -void XGUI_ActionsMgr::saveCommandsState() +QAction* XGUI_ActionsMgr::action(const QString& theId) { - myActionsState.clear(); - QStringList anActionIdsList = myActions.keys(); - foreach(QString eachKey, anActionIdsList) { - myActionsState.insert(eachKey, myActions[eachKey]->isEnabled()); + QAction* anAction = 0; + if(myActions.contains(theId)) { + anAction = myActions.value(theId); } + return anAction; +} +ActionInfo XGUI_ActionsMgr::actionInfoById(const QString& theId) +{ + ActionInfo aResult; + if(myActions.contains(theId)) { + aResult.initFrom(myActions.value(theId)); + } else { + aResult.id = theId; + aResult.text = theId; + } + return aResult; } -void XGUI_ActionsMgr::restoreCommandState() +void XGUI_ActionsMgr::setAllEnabled(bool isEnabled) { - QStringList anActionIdsList = myActions.keys(); - foreach(QString eachKey, anActionIdsList) { - myActions[eachKey]->setEnabled(myActionsState[eachKey]); - myActions[eachKey]->setChecked(false); + foreach(QString eachAction, myActions.keys()) + { + setActionEnabled(eachAction, isEnabled); } } + +//! +void XGUI_ActionsMgr::setNestedCommandsEnabled(bool theEnabled, const QString& theParent) +{ + QStringList ltNestedActions; + if (theParent.isEmpty()) { //Disable ALL nested + foreach(QString eachParent, myNestedActions.keys()) { + ltNestedActions << myNestedActions[eachParent]; + } + } else { + ltNestedActions << myNestedActions[theParent]; + } + foreach(QString eachNested, ltNestedActions) { + setActionEnabled(eachNested, theEnabled); + } +} + +void XGUI_ActionsMgr::setNestedStackEnabled(ModuleBase_Operation* theOperation) +{ + ModuleBase_OperationFeature* anOperation = dynamic_cast(theOperation); + if(!anOperation || !anOperation->feature()) + return; + FeaturePtr aFeature = anOperation->feature(); + QString aFeatureId = QString::fromStdString(aFeature->getKind()); + setActionEnabled(aFeatureId, true); + setNestedCommandsEnabled(true, aFeatureId); + + setNestedStackEnabled(myOperationMgr->previousOperation(theOperation)); +} + void XGUI_ActionsMgr::setActionChecked(const QString& theId, const bool theChecked) { - if(myActions.contains(theId)) { - myActions[theId]->setChecked(theChecked); + if (myActions.contains(theId)) { + QAction* anAction = myActions[theId]; + if (anAction->isCheckable()) { + anAction->setChecked(theChecked); + } } } -void XGUI_ActionsMgr::updateAction(const QString& theId) +void XGUI_ActionsMgr::setActionEnabled(const QString& theId, const bool theEnabled) { - if(myActions.contains(theId)){ - myActions[theId]->setEnabled(myActionsState[theId]); - myActions[theId]->setChecked(false); + if (myActions.contains(theId)) { + myActions[theId]->setEnabled(theEnabled); } } -void XGUI_ActionsMgr::setNestedActionsEnabled(bool isEnabled) +/* + * Disables all actions which have the Document Kind different to + * the current document's kind + */ +void XGUI_ActionsMgr::updateByDocumentKind() { - foreach(QString eachKey, myNestedActions) { - if (myActions.contains(eachKey)) - myActions[eachKey]->setEnabled(isEnabled); + std::string aStdDocKind = ModelAPI_Session::get()->activeDocument()->kind(); + 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); + } + } + if(!aCmdDocKind.isEmpty() && aCmdDocKind != aDocKind) { + eachAction->setEnabled(false); + } } } + +void XGUI_ActionsMgr::updateByPlugins(FeaturePtr anActiveFeature) +{ + static Events_ID aStateRequestEventId = Events_Loop::loop()->eventByName( + EVENT_FEATURE_STATE_REQUEST); + std::shared_ptr aMsg( + new ModelAPI_FeatureStateMessage(aStateRequestEventId, this)); + aMsg->setFeature(anActiveFeature); + Events_Loop::loop()->send(aMsg, false); +}