SHAPER 9.16.0
Model_ResultField.h
1// Copyright (C) 2014-2026 CEA, EDF
2//
3// This library is free software; you can redistribute it and/or
4// modify it under the terms of the GNU Lesser General Public
5// License as published by the Free Software Foundation; either
6// version 2.1 of the License, or (at your option) any later version.
7//
8// This library is distributed in the hope that it will be useful,
9// but WITHOUT ANY WARRANTY; without even the implied warranty of
10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11// Lesser General Public License for more details.
12//
13// You should have received a copy of the GNU Lesser General Public
14// License along with this library; if not, write to the Free Software
15// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16//
17// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18//
19
20#ifndef Model_ResultField_H_
21#define Model_ResultField_H_
22
23#include "Model.h"
24#include <ModelAPI_ResultField.h>
25#include <vector>
26
34{
35 std::shared_ptr<ModelAPI_Data> myOwnerData;
36public:
37
39 {
40 public:
41 Model_FieldStep(ModelAPI_ResultField* theParent, int theId)
42 : ModelAPI_ResultField::ModelAPI_FieldStep(), myParent(theParent), myId(theId)
43 {
44 setData(myParent->data()); // it is not needed to have special data for the temporary
45 // step object, but data must be "valid" for GUI checks
46 };
47
48 virtual ModelAPI_ResultField* field() const { return myParent; }
49
50 virtual int id() const { return myId; }
51
52 virtual std::shared_ptr<ModelAPI_Document> document() const { return myParent->document(); }
53
55 virtual std::wstring name();
56
57 private:
58 ModelAPI_ResultField* myParent;
59 int myId;
60 };
61
63 MODEL_EXPORT virtual void colorConfigInfo(std::string& theSection, std::string& theName,
64 std::string& theDefault);
65
67 MODEL_EXPORT virtual std::shared_ptr<GeomAPI_Shape> shape();
68
70 MODEL_EXPORT virtual int stepsSize() const;
71
74 MODEL_EXPORT virtual std::string textLine(int theLine) const;
75
78 MODEL_EXPORT virtual std::shared_ptr<ModelAPI_ResultField::ModelAPI_FieldStep>
79 step(int theId) const;
80
82 MODEL_EXPORT virtual ~Model_ResultField();
83
85 MODEL_EXPORT virtual void updateSteps();
86
87protected:
89 Model_ResultField(std::shared_ptr<ModelAPI_Data> theOwnerData);
90
91 friend class Model_Objects;
92
93private:
94
95 std::vector<FieldStepPtr> mySteps;
96};
97
98#endif
virtual std::shared_ptr< ModelAPI_Data > data() const
Returns the data manager of this object: attributes.
Definition: ModelAPI_Object.cpp:45
virtual std::shared_ptr< ModelAPI_Document > document() const
Returns document this feature belongs to.
Definition: ModelAPI_Object.cpp:55
virtual void setData(std::shared_ptr< ModelAPI_Data > theData)
Sets the data manager of an object (document does)
Definition: ModelAPI_Object.cpp:72
Definition: ModelAPI_ResultField.h:39
The fields result.
Definition: ModelAPI_ResultField.h:35
Manager of objects of the document.
Definition: Model_Objects.h:46
Definition: Model_ResultField.h:39
virtual std::shared_ptr< ModelAPI_Document > document() const
Returns document this feature belongs to.
Definition: Model_ResultField.h:52
virtual std::wstring name()
Returns a GUI name of this step.
Definition: Model_ResultField.cpp:158
The fields result.
Definition: Model_ResultField.h:34
virtual ~Model_ResultField()
Removes the stored builders.
Definition: Model_ResultField.cpp:40
virtual std::string textLine(int theLine) const
Returns a text line by its number.
Definition: Model_ResultField.cpp:133
virtual void updateSteps()
To refresh the steps of a field.
Definition: Model_ResultField.cpp:106
Model_ResultField(std::shared_ptr< ModelAPI_Data > theOwnerData)
Makes a body on the given feature data.
Definition: Model_ResultField.cpp:35
virtual void colorConfigInfo(std::string &theSection, std::string &theName, std::string &theDefault)
Returns the parameters of color definition in the resources configuration manager.
Definition: Model_ResultField.cpp:49
virtual std::shared_ptr< GeomAPI_Shape > shape()
Returns the compound of selected entities.
Definition: Model_ResultField.cpp:58
virtual int stepsSize() const
Returns number of steps.
Definition: Model_ResultField.cpp:122
virtual std::shared_ptr< ModelAPI_ResultField::ModelAPI_FieldStep > step(int theId) const
Returns step object.
Definition: Model_ResultField.cpp:150