SHAPER 9.16.0
BuildPlugin_Validators.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 BuildPlugin_Validators_H_
21#define BuildPlugin_Validators_H_
22
23#include <ModelAPI_AttributeValidator.h>
24#include <ModelAPI_FeatureValidator.h>
25
32{
33public:
38 virtual bool isValid(const AttributePtr& theAttribute,
39 const std::list<std::string>& theArguments,
40 Events_InfoMessage& theError) const;
41};
42
48{
49public:
54 virtual bool isValid(const std::shared_ptr<ModelAPI_Feature>& theFeature,
55 const std::list<std::string>& theArguments,
56 Events_InfoMessage& theError) const;
57};
58
64{
65public:
70 virtual bool isValid(const std::shared_ptr<ModelAPI_Feature>& theFeature,
71 const std::list<std::string>& theArguments,
72 Events_InfoMessage& theError) const;
73};
74
80{
81public:
86 virtual bool isValid(const std::shared_ptr<ModelAPI_Feature>& theFeature,
87 const std::list<std::string>& theArguments,
88 Events_InfoMessage& theError) const;
89};
90
95{
96public:
101 virtual bool isValid(const AttributePtr& theAttribute,
102 const std::list<std::string>& theArguments,
103 Events_InfoMessage& theError) const;
104};
105
110{
111public:
116 virtual bool isValid(const AttributePtr& theAttribute,
117 const std::list<std::string>& theArguments,
118 Events_InfoMessage& theError) const;
119};
120
125{
126public:
131 virtual bool isValid(const AttributePtr& theAttribute,
132 const std::list<std::string>& theArguments,
133 Events_InfoMessage& theError) const;
134};
135
140{
141public:
146 virtual bool isValid(const AttributePtr& theAttribute,
147 const std::list<std::string>& theArguments,
148 Events_InfoMessage& theError) const;
149};
150
151#endif
A validator for selection base shapes for build features.
Definition: BuildPlugin_Validators.h:32
virtual bool isValid(const AttributePtr &theAttribute, const std::list< std::string > &theArguments, Events_InfoMessage &theError) const
Returns true if attribute is ok.
Definition: BuildPlugin_Validators.cpp:54
A validator for selection base shapes for face.
Definition: BuildPlugin_Validators.h:64
virtual bool isValid(const std::shared_ptr< ModelAPI_Feature > &theFeature, const std::list< std::string > &theArguments, Events_InfoMessage &theError) const
Returns true if attributes is ok.
Definition: BuildPlugin_Validators.cpp:220
A validator for selection base shapes for solid.
Definition: BuildPlugin_Validators.h:80
virtual bool isValid(const std::shared_ptr< ModelAPI_Feature > &theFeature, const std::list< std::string > &theArguments, Events_InfoMessage &theError) const
Returns true if attributes is ok.
Definition: BuildPlugin_Validators.cpp:402
A validator for selection of Vertex feature.
Definition: BuildPlugin_Validators.h:125
virtual bool isValid(const AttributePtr &theAttribute, const std::list< std::string > &theArguments, Events_InfoMessage &theError) const
Returns true if attribute is ok.
Definition: BuildPlugin_Validators.cpp:677
A validator for selection base shapes for wire.
Definition: BuildPlugin_Validators.h:48
virtual bool isValid(const std::shared_ptr< ModelAPI_Feature > &theFeature, const std::list< std::string > &theArguments, Events_InfoMessage &theError) const
Returns true if attributes is ok.
Definition: BuildPlugin_Validators.cpp:121
Definition: BuildPlugin_Validators.h:140
virtual bool isValid(const AttributePtr &theAttribute, const std::list< std::string > &theArguments, Events_InfoMessage &theError) const
Returns true if attribute has a valid parameter expression.
Definition: BuildPlugin_Validators.cpp:737
A validator for selection of Filling feature.
Definition: BuildPlugin_Validators.h:110
virtual bool isValid(const AttributePtr &theAttribute, const std::list< std::string > &theArguments, Events_InfoMessage &theError) const
Returns true if attribute is ok.
Definition: BuildPlugin_Validators.cpp:625
A validator for selection sub-shapes for SubShape feature.
Definition: BuildPlugin_Validators.h:95
virtual bool isValid(const AttributePtr &theAttribute, const std::list< std::string > &theArguments, Events_InfoMessage &theError) const
Returns true if attribute is ok.
Definition: BuildPlugin_Validators.cpp:521
An event message for sending a string message which has to be translated.
Definition: Events_InfoMessage.h:35
Generic validator for any attribute of a feature.
Definition: ModelAPI_AttributeValidator.h:31
The geneneric validator for the whole feature.
Definition: ModelAPI_FeatureValidator.h:35