X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Plugin.cpp;h=f892c57a7f5a6d04675df7d135b32facc2ad95ad;hb=42dfdea5422ab72d81c36155b4c6f352c85c1110;hp=31c80e4953a769853494e17e785805c59b6b3a7e;hpb=0f05d006a106e11da67743ac851ab6c6170eb80c;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Plugin.cpp b/src/PartSetPlugin/PartSetPlugin_Plugin.cpp index 31c80e495..f892c57a7 100644 --- a/src/PartSetPlugin/PartSetPlugin_Plugin.cpp +++ b/src/PartSetPlugin/PartSetPlugin_Plugin.cpp @@ -1,10 +1,19 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + #include "PartSetPlugin_Plugin.h" #include "PartSetPlugin_Part.h" #include "PartSetPlugin_Duplicate.h" #include "PartSetPlugin_Remove.h" + +#include + #include #include +#ifdef _DEBUG +#include +#endif + using namespace std; // the only created instance of this plugin @@ -30,3 +39,31 @@ FeaturePtr PartSetPlugin_Plugin::createFeature(string theFeatureID) // feature of such kind is not found return FeaturePtr(); } + +void PartSetPlugin_Plugin::processEvent(const std::shared_ptr& theMessage) +{ + const Events_ID kRequestEvent = + Events_Loop::loop()->eventByName(EVENT_FEATURE_STATE_REQUEST); + if (theMessage->eventID() == kRequestEvent) { + Events_Loop::loop()->send(getFeaturesState(), false); + } else if (theMessage.get()) { + #ifdef _DEBUG + std::cout << "PartSetPlugin_Plugin::processEvent: unhandled message caught: " << std::endl + << theMessage->eventID().eventText() << std::endl; + #endif + } +} + +std::shared_ptr PartSetPlugin_Plugin::getFeaturesState() +{ + const Events_ID kResponseEvent = + Events_Loop::loop()->eventByName(EVENT_FEATURE_STATE_RESPONSE); + std::shared_ptr aMsg( + new ModelAPI_FeatureStateMessage(kResponseEvent, this)); + std::string aStdDocKind = ModelAPI_Session::get()->activeDocument()->kind(); + bool aDocIsPart = (aStdDocKind == PartSetPlugin_Part::ID()); + aMsg->setState(PartSetPlugin_Part::ID(), true); + aMsg->setState(PartSetPlugin_Duplicate::ID(), aDocIsPart); + aMsg->setState(PartSetPlugin_Remove::ID(), aDocIsPart); + return aMsg; +}