SHAPER 9.16.0
Selector_Primitive.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 Selector_Primitive_H_
21#define Selector_Primitive_H_
22
23#include "Selector_Algo.h"
24
30{
31 TDF_Label myFinal;
32public:
35 SELECTOR_EXPORT void select(const TDF_Label theFinalLabel);
36
38 SELECTOR_EXPORT virtual void store() override;
39
42 SELECTOR_EXPORT virtual bool restore() override;
43
46 SELECTOR_EXPORT virtual TDF_Label restoreByName(std::wstring theName,
47 const TopAbs_ShapeEnum theShapeType, Selector_NameGenerator* theNameGenerator) override;
48
50 SELECTOR_EXPORT virtual bool solve(const TopoDS_Shape& theContext) override;
51
53 SELECTOR_EXPORT virtual std::wstring name(Selector_NameGenerator* theNameGenerator) override;
54private:
57
58 friend class Selector_Algo;
59};
60
61#endif
Definition: Selector_Algo.h:37
An interface for generation of the naming name basing on the current selection and document informati...
Definition: Selector_NameGenerator.h:34
Kind of selection algorithm: exact referencing to alone shape in the data structure.
Definition: Selector_Primitive.h:30
virtual bool restore() override
Restores the selected shape by the topological naming kept in the data structure Returns true if it c...
Definition: Selector_Primitive.cpp:46
virtual bool solve(const TopoDS_Shape &theContext) override
Updates the current shape by the stored topological name.
Definition: Selector_Primitive.cpp:63
virtual void store() override
Stores the name to the label and sub-labels tree.
Definition: Selector_Primitive.cpp:39
virtual std::wstring name(Selector_NameGenerator *theNameGenerator) override
Returns the naming name of the selection.
Definition: Selector_Primitive.cpp:77
void select(const TDF_Label theFinalLabel)
Initializes the selection of this kind.
Definition: Selector_Primitive.cpp:34
virtual TDF_Label restoreByName(std::wstring theName, const TopAbs_ShapeEnum theShapeType, Selector_NameGenerator *theNameGenerator) override
Restores the selected shape by the topological name string.
Definition: Selector_Primitive.cpp:52