X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_AttributeSelectionList.cpp;h=3b67df9eb0a9063e23a7874fde696432fdaa9857;hb=2e39226506e4b82f6ae5dcc26e776571801b1555;hp=14a684a96657ff7f13443ac8dc4ef9bff83ccc9a;hpb=7bf19255421b34594c7b0a76d0ce28166d0ce895;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeSelectionList.cpp b/src/Model/Model_AttributeSelectionList.cpp index 14a684a96..3b67df9eb 100644 --- a/src/Model/Model_AttributeSelectionList.cpp +++ b/src/Model/Model_AttributeSelectionList.cpp @@ -11,12 +11,26 @@ #include "Model_Data.h" #include +#include + +#include +#include +#include +#include using namespace std; void Model_AttributeSelectionList::append( const ResultPtr& theContext, const std::shared_ptr& theSubShape) { + // do not use the degenerated edge as a shape, a list is not incremented in this case + if (theSubShape.get() && !theSubShape->isNull() && theSubShape->isEdge()) { + const TopoDS_Shape& aSubShape = theSubShape->impl(); + if (aSubShape.ShapeType() == TopAbs_EDGE && BRep_Tool::Degenerated(TopoDS::Edge(aSubShape))) { + return; + } + } + int aNewTag = mySize->Get() + 1; TDF_Label aNewLab = mySize->Label().FindChild(aNewTag); @@ -25,24 +39,40 @@ void Model_AttributeSelectionList::append( if (owner()) { aNewAttr->setObject(owner()); } + aNewAttr->setID(id()); mySize->Set(aNewTag); aNewAttr->setValue(theContext, theSubShape); owner()->data()->sendAttributeUpdated(this); } +void Model_AttributeSelectionList::append(std::string theNamingName) +{ + int aNewTag = mySize->Get() + 1; + TDF_Label aNewLab = mySize->Label().FindChild(aNewTag); + + std::shared_ptr aNewAttr = + std::shared_ptr(new Model_AttributeSelection(aNewLab)); + if (owner()) { + aNewAttr->setObject(owner()); + } + mySize->Set(aNewTag); + aNewAttr->selectSubShape(selectionType(), theNamingName); + owner()->data()->sendAttributeUpdated(this); +} + int Model_AttributeSelectionList::size() { return mySize->Get(); } -int Model_AttributeSelectionList::selectionType() +const std::string Model_AttributeSelectionList::selectionType() const { - return (int) mySelectionType->Get(); + return TCollection_AsciiString(mySelectionType->Get()).ToCString(); } -void Model_AttributeSelectionList::setSelectionType(int theType) +void Model_AttributeSelectionList::setSelectionType(const std::string& theType) { - mySelectionType->Set((double) theType); + mySelectionType->Set(theType.c_str()); } std::shared_ptr @@ -72,13 +102,21 @@ void Model_AttributeSelectionList::clear() } } +bool Model_AttributeSelectionList::isInitialized() +{ + if (size() == 0) { // empty list is not initialized list: sketch will be not valid after add/undo + return false; + } + return ModelAPI_AttributeSelectionList::isInitialized(); +} + Model_AttributeSelectionList::Model_AttributeSelectionList(TDF_Label& theLabel) { myIsInitialized = theLabel.FindAttribute(TDataStd_Integer::GetID(), mySize) == Standard_True; if (!myIsInitialized) { mySize = TDataStd_Integer::Set(theLabel, 0); - mySelectionType = TDataStd_Real::Set(theLabel, 0); + mySelectionType = TDataStd_Comment::Set(theLabel, ""); } else { // recollect mySubs - theLabel.FindAttribute(TDataStd_Real::GetID(), mySelectionType); + theLabel.FindAttribute(TDataStd_Comment::GetID(), mySelectionType); } }