X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSHAPERGUI%2FSHAPERGUI.cpp;h=9232099ac0e71d0e283f41fca7e0abc919958bd8;hb=9a661fe493a02eaeefa01965c76728c5421062d0;hp=475b4933d71e1b9e4831a01199ad435ef3ce7780;hpb=1b480058354c8db4efece962f1ba900cd0fc7581;p=modules%2Fshaper.git diff --git a/src/SHAPERGUI/SHAPERGUI.cpp b/src/SHAPERGUI/SHAPERGUI.cpp index 475b4933d..9232099ac 100644 --- a/src/SHAPERGUI/SHAPERGUI.cpp +++ b/src/SHAPERGUI/SHAPERGUI.cpp @@ -100,7 +100,7 @@ static const QString ToolbarsSection("SHAPER_Toolbars"); static const QString FreeCommandsParam("OutOFToolbars"); -/** +/** * Class for preferences management */ class SHAPERGUI_PrefMgr: public ModuleBase_IPrefMgr @@ -383,6 +383,16 @@ bool SHAPERGUI::activateModule(SUIT_Study* theStudy) connect(getApp()->action(LightApp_Application::FileSaveAsId), SIGNAL(triggered(bool)), this, SLOT(onSaveAsDocByShaper())); updateInfoPanel(); + + //connect(myWorkshop->operationMgr(), SIGNAL(operationResumed(ModuleBase_Operation*)), + // this, SLOT(onOperationResumed(ModuleBase_Operation*))); + //connect(myWorkshop->operationMgr(), SIGNAL(operationStopped(ModuleBase_Operation*)), + // this, SLOT(onOperationStopped(ModuleBase_Operation*))); + connect(myWorkshop->operationMgr(), SIGNAL(operationCommitted(ModuleBase_Operation*)), + this, SLOT(onOperationCommitted(ModuleBase_Operation*))); + connect(myWorkshop->operationMgr(), SIGNAL(operationAborted(ModuleBase_Operation*)), + this, SLOT(onOperationAborted(ModuleBase_Operation*))); + return isDone; } @@ -484,6 +494,39 @@ bool SHAPERGUI::deactivateModule(SUIT_Study* theStudy) return LightApp_Module::deactivateModule(theStudy); } +//****************************************************** +void SHAPERGUI::logShaperGUIEvent() +{ + QAction* anAction = static_cast(sender()); + QString anId = anAction->data().toString(); + QString anEventDescription ("SHAPER"); + if (anId.contains("Sketch")) + anEventDescription += " sketcher"; + anEventDescription += ": "; + anEventDescription += anAction->text(); + anEventDescription += " has been started"; + CAM_Application::logUserEvent(anEventDescription); +} + +//****************************************************** +void SHAPERGUI::onOperationCommitted(ModuleBase_Operation* theOperation) +{ + //QString anEventDescription ("SHAPER operation has been committed"); + QString anEventDescription ("SHAPER operation "); + anEventDescription += theOperation->id(); + anEventDescription += " has been committed"; + CAM_Application::logUserEvent(anEventDescription); +} + +//****************************************************** +void SHAPERGUI::onOperationAborted(ModuleBase_Operation* theOperation) +{ + QString anEventDescription ("SHAPER operation "); + anEventDescription += theOperation->id(); + anEventDescription += " has been aborted"; + CAM_Application::logUserEvent(anEventDescription); +} + //****************************************************** void SHAPERGUI::onViewManagerAdded(SUIT_ViewManager* theMgr) { @@ -704,6 +747,7 @@ QAction* SHAPERGUI::addFeature(const QString& theWBName, const QString& theTBNam createTool(separator(), aWBTool); registerCommandToolbar(theTBName, -1); } + connect(aAction, SIGNAL(triggered(bool)), this, SLOT(logShaperGUIEvent())); return aAction; }