X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_AttributeString.cpp;h=2b97d891a5c396da5249affb7ef4cba2ebe829de;hb=72b9423caaa48805589d6ab87d366f79ecde5bfe;hp=8a9d6f0ebcea225222a1361f5842200645c65647;hpb=c20717c0b994f654d4da7b9039e9f08c165929c3;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeString.cpp b/src/Model/Model_AttributeString.cpp index 8a9d6f0eb..2b97d891a 100644 --- a/src/Model/Model_AttributeString.cpp +++ b/src/Model/Model_AttributeString.cpp @@ -1,6 +1,22 @@ -// File: Model_AttributeString.cpp -// Created: 25 august 2014 -// Author: sbh +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// #include #include @@ -11,8 +27,6 @@ #include #include #include -#include -#include #include @@ -20,6 +34,8 @@ void Model_AttributeString::setValue(const std::string& theValue) { TCollection_ExtendedString aValue(theValue.c_str()); if (!myIsInitialized || myString->Get() != aValue) { + if (myString.IsNull()) + myString = TDataStd_Name::Set(myLab, TCollection_ExtendedString()); myString->Set(aValue); owner()->data()->sendAttributeUpdated(this); } @@ -27,15 +43,19 @@ void Model_AttributeString::setValue(const std::string& theValue) std::string Model_AttributeString::value() { + if (myString.IsNull()) + return ""; // not initialized return TCollection_AsciiString(myString->Get()).ToCString(); } Model_AttributeString::Model_AttributeString(TDF_Label& theLabel) +{ + myLab = theLabel; + reinit(); +} + +void Model_AttributeString::reinit() { // check the attribute could be already presented in this doc (after load document) - myIsInitialized = theLabel.FindAttribute(TDataStd_Integer::GetID(), myString) == Standard_True; - if (!myIsInitialized) { - // create attribute: not initialized by value yet, just empty string - myString = TDataStd_Name::Set(theLabel, TCollection_ExtendedString()); - } + myIsInitialized = myLab.FindAttribute(TDataStd_Name::GetID(), myString) == Standard_True; }