#include <ModelAPI_AttributeString.h>
#include <ModelAPI_Events.h>
+void sendMessageWithFailedShapes(const ListOfShape& theVertices)
+{
+ std::shared_ptr<ModelAPI_ShapesFailedMessage> aMessage(
+ new ModelAPI_ShapesFailedMessage(Events_Loop::eventByName(EVENT_OPERATION_SHAPES_FAILED)));
+ aMessage->setShapes(theVertices);
+ Events_Loop::loop()->send(aMessage);
+}
+
FeaturesPlugin_Fillet1D::FeaturesPlugin_Fillet1D()
{
}
removeResults(aResultIndex);
}
+void FeaturesPlugin_Fillet1D::attributeChanged(const std::string& theID)
+{
+ if (theID == CREATION_METHOD()) {
+ // creation method is changed, drop failed vertices and send the message
+ removeResults(0);
+ sendMessageWithFailedShapes(ListOfShape());
+ }
+}
+
bool FeaturesPlugin_Fillet1D::baseShapes(ListOfShape& theWires, MapShapeSubs& theWireVertices)
{
std::set<GeomShapePtr, GeomAPI_Shape::Comparator> aProcessedWires;
if (isSendMessage) {
// send message to highlight the failed vertices
- std::shared_ptr<ModelAPI_ShapesFailedMessage> aMessage(
- new ModelAPI_ShapesFailedMessage(Events_Loop::eventByName(EVENT_OPERATION_SHAPES_FAILED)));
- aMessage->setShapes(myFailedVertices);
- Events_Loop::loop()->send(aMessage);
+ sendMessageWithFailedShapes(myFailedVertices);
}
static const std::string THE_PREFIX = "Fillet1D";
/// Request for initialization of data model of the feature: adding all attributes.
FEATURESPLUGIN_EXPORT virtual void initAttributes();
+ /// Called on change of any argument-attribute of this object
+ /// \param theID identifier of changed attribute
+ FEATURESPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID);
+
/// Performs the fillet algorithm and stores it in the data structure.
FEATURESPLUGIN_EXPORT virtual void execute();