X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_AttributeDocRef.cpp;h=2284226c262cb09819572a5c52e370623f5a7950;hb=2c5d9762904d572995855e2ce2239ea0c3463eb5;hp=dfb307f4dbfe0981cc8915fc838cea6a798540a4;hpb=1faf79937e639b380c9d48fda5c1932522718548;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeDocRef.cpp b/src/Model/Model_AttributeDocRef.cpp index dfb307f4d..2284226c2 100644 --- a/src/Model/Model_AttributeDocRef.cpp +++ b/src/Model/Model_AttributeDocRef.cpp @@ -1,42 +1,38 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_AttributeDocRef.cxx // Created: 2 Apr 2014 // Author: Mikhail PONIKAROV #include "Model_AttributeDocRef.h" #include "Model_Application.h" -#include "Model_Events.h" -#include +#include +#include using namespace std; -void Model_AttributeDocRef::setValue(boost::shared_ptr theDoc) +void Model_AttributeDocRef::setValue(std::shared_ptr theDoc) { + myDoc = theDoc; TCollection_ExtendedString aNewID(theDoc->id().c_str()); - if (myComment->Get() != aNewID) { + if (!myIsInitialized || myComment->Get() != aNewID) { myComment->Set(TCollection_ExtendedString(theDoc->id().c_str())); - - static Events_ID anEvent = Events_Loop::eventByName(EVENT_FEATURE_UPDATED); - Model_FeatureUpdatedMessage aMsg(owner(), anEvent); - Events_Loop::loop()->send(aMsg); + owner()->data()->sendAttributeUpdated(this); } } -boost::shared_ptr Model_AttributeDocRef::value() +std::shared_ptr Model_AttributeDocRef::value() { - if (myComment->Get().Length()) - return Model_Application::getApplication()->getDocument( - TCollection_AsciiString(myComment->Get()).ToCString()); - // not initialized - return boost::shared_ptr(); + return myDoc; } Model_AttributeDocRef::Model_AttributeDocRef(TDF_Label& theLabel) { - // check the attribute could be already presented in this doc (after load document) - if (!theLabel.FindAttribute(TDataStd_Comment::GetID(), myComment)) { + myIsInitialized = theLabel.FindAttribute(TDataStd_Comment::GetID(), myComment) == Standard_True; + if (!myIsInitialized) { // create attribute: not initialized by value yet, just empty string myComment = TDataStd_Comment::Set(theLabel, ""); - } else { // document was already referenced: try to set it as loaded by demand + } else { // document was already referenced: try to set it as loaded by demand Handle(Model_Application) anApp = Model_Application::getApplication(); string anID(TCollection_AsciiString(myComment->Get()).ToCString()); if (!anApp->hasDocument(anID)) {