X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_ResultField.h;h=cbaa3efec852ca8d2d1c93b43fc443af349f1a6d;hb=09365c927ebe8d881de2eda7f96bc33a2d9511c8;hp=38de177a1a9cdc848c479be9d091c44c46cc184c;hpb=b83fa38ac920a7e7f6fe7d6dbe816bb91029c68f;p=modules%2Fshaper.git diff --git a/src/Model/Model_ResultField.h b/src/Model/Model_ResultField.h index 38de177a1..cbaa3efec 100644 --- a/src/Model/Model_ResultField.h +++ b/src/Model/Model_ResultField.h @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: Model_ResultField.h -// Created: 16 Nov 2016 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2019 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 +// #ifndef Model_ResultField_H_ #define Model_ResultField_H_ @@ -26,18 +39,27 @@ public: { public: Model_FieldStep(ModelAPI_ResultField* theParent, int theId) - : myParent(theParent), myId(theId) {}; + : ModelAPI_ResultField::ModelAPI_FieldStep(), myParent(theParent), myId(theId) + { + setData(myParent->data()); // it is not needed to have special data for the temporary + // step object, but data must be "valid" for GUI checks + }; virtual ModelAPI_ResultField* field() const { return myParent; } virtual int id() const { return myId; } + virtual std::shared_ptr document() const { return myParent->document(); } + + /// Returns a GUI name of this step + virtual std::string name(); + private: ModelAPI_ResultField* myParent; int myId; }; - /// Retuns the parameters of color definition in the resources config manager + /// Returns the parameters of color definition in the resources configuration manager MODEL_EXPORT virtual void colorConfigInfo(std::string& theSection, std::string& theName, std::string& theDefault); @@ -53,11 +75,15 @@ public: /// Returns step object /// \param theId an id of the object - MODEL_EXPORT virtual ModelAPI_ResultField::ModelAPI_FieldStep* step(int theId) const; + MODEL_EXPORT virtual std::shared_ptr + step(int theId) const; /// Removes the stored builders MODEL_EXPORT virtual ~Model_ResultField(); + /// To refresh the steps of a field + MODEL_EXPORT virtual void updateSteps(); + protected: /// Makes a body on the given feature data Model_ResultField(std::shared_ptr theOwnerData); @@ -65,9 +91,8 @@ protected: friend class Model_Objects; private: - void updateSteps(); - std::vector mySteps; + std::vector mySteps; }; #endif