X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintMirror.cpp;h=371830c761471fb377899b28a46ab18599913f74;hb=64fc7e4fdd63997ec7a502b233ef5f88186d5bbb;hp=dfc90aa492f4668da8338ff74f4357c96305fe90;hpb=d7a4accddf64dfbe704738e6b7708164643aeba7;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintMirror.cpp b/src/SketchPlugin/SketchPlugin_ConstraintMirror.cpp old mode 100644 new mode 100755 index dfc90aa49..371830c76 --- a/src/SketchPlugin/SketchPlugin_ConstraintMirror.cpp +++ b/src/SketchPlugin/SketchPlugin_ConstraintMirror.cpp @@ -10,7 +10,6 @@ #include #include #include -#include #include #include #include @@ -31,18 +30,14 @@ void SketchPlugin_ConstraintMirror::initAttributes() data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId()); data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefList::typeId()); data()->addAttribute(SketchPlugin_Constraint::ENTITY_C(), ModelAPI_AttributeRefList::typeId()); - AttributeSelectionListPtr aSelection = - std::dynamic_pointer_cast(data()->addAttribute( - SketchPlugin_ConstraintMirror::MIRROR_LIST_ID(), ModelAPI_AttributeSelectionList::typeId())); - aSelection->setSelectionType("EDGE"); + data()->addAttribute(SketchPlugin_ConstraintMirror::MIRROR_LIST_ID(), ModelAPI_AttributeRefList::typeId()); ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), SketchPlugin_Constraint::ENTITY_B()); ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), SketchPlugin_Constraint::ENTITY_C()); } void SketchPlugin_ConstraintMirror::execute() { - AttributeSelectionListPtr aMirrorObjectRefs = - selectionList(SketchPlugin_ConstraintMirror::MIRROR_LIST_ID()); + AttributeRefListPtr aMirrorObjectRefs = reflist(SketchPlugin_ConstraintMirror::MIRROR_LIST_ID()); // Wait all objects being created, then send update events static Events_ID anUpdateEvent = Events_Loop::eventByName(EVENT_OBJECT_UPDATED); @@ -60,16 +55,16 @@ void SketchPlugin_ConstraintMirror::execute() std::vector isUsed(anInitialList.size(), false); // add new items to the list for(int anInd = 0; anInd < aMirrorObjectRefs->size(); anInd++) { - std::shared_ptr aSelect = aMirrorObjectRefs->value(anInd); + ObjectPtr anObject = aMirrorObjectRefs->object(anInd); std::list::const_iterator anIt = anInitialList.begin(); std::vector::iterator aUsedIt = isUsed.begin(); for (; anIt != anInitialList.end(); anIt++, aUsedIt++) - if (*anIt == aSelect->context()) { + if (*anIt == anObject) { *aUsedIt = true; break; } if (anIt == anInitialList.end()) - aRefListOfShapes->append(aSelect->context()); + aRefListOfShapes->append(anObject); } // remove unused items std::list::iterator anInitIter = anInitialList.begin(); @@ -204,14 +199,8 @@ AISObjectPtr SketchPlugin_ConstraintMirror::getAISObject(AISObjectPtr thePreviou void SketchPlugin_ConstraintMirror::attributeChanged(const std::string& theID) { if (theID == MIRROR_LIST_ID()) { - AttributeSelectionListPtr aMirrorObjectRefs = selectionList(MIRROR_LIST_ID()); + AttributeRefListPtr aMirrorObjectRefs = reflist(MIRROR_LIST_ID()); if (aMirrorObjectRefs->size() == 0) { - // Wait all objects being created, then send update events - static Events_ID anUpdateEvent = Events_Loop::eventByName(EVENT_OBJECT_UPDATED); - bool isUpdateFlushed = Events_Loop::loop()->isFlushed(anUpdateEvent); - if (isUpdateFlushed) - Events_Loop::loop()->setFlushed(anUpdateEvent, false); - // Clear list of objects AttributeRefListPtr aRefListOfMirrored = std::dynamic_pointer_cast( data()->attribute(SketchPlugin_Constraint::ENTITY_C())); @@ -227,10 +216,9 @@ void SketchPlugin_ConstraintMirror::attributeChanged(const std::string& theID) if (aFeature) aDoc->removeFeature(aFeature); } - - // send events to update the sub-features by the solver - if (isUpdateFlushed) - Events_Loop::loop()->setFlushed(anUpdateEvent, true); + aRefListOfMirrored->clear(); + std::dynamic_pointer_cast( + data()->attribute(SketchPlugin_Constraint::ENTITY_B()))->clear(); } } }