X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_Validators.h;h=886cf21e66a68a4f866cc37d6c34da7dfa16bab5;hb=904e1f50449d938d2a2494d8f76abfd0c91364f9;hp=de46a76605cd87e330b00fe2d3205fd41b4fa415;hpb=4df3d12284892e126685f42a4e3c3c7f63f3b502;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_Validators.h b/src/PartSet/PartSet_Validators.h index de46a7660..886cf21e6 100644 --- a/src/PartSet/PartSet_Validators.h +++ b/src/PartSet/PartSet_Validators.h @@ -17,52 +17,59 @@ * Selector validators */ + //! \ingroup Validators //! A class to validate a selection for Distance constraint operation class PartSet_DistanceSelection : public ModuleBase_SelectionValidator { - protected: - PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; }; //! \ingroup Validators //! A class to validate a selection for Length constraint operation class PartSet_LengthSelection : public ModuleBase_SelectionValidator { - protected: - PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; }; //! \ingroup Validators //! A class to validate a selection for Perpendicular constraint operation class PartSet_PerpendicularSelection : public ModuleBase_SelectionValidator { - protected: - PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; }; //! \ingroup Validators //! A class to validate a selection for Parallel constraint operation class PartSet_ParallelSelection : public ModuleBase_SelectionValidator { - protected: - PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; }; //! \ingroup Validators //! A class to validate a selection for Radius constraint operation class PartSet_RadiusSelection : public ModuleBase_SelectionValidator { - protected: - PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; }; //! \ingroup Validators //! A class to validate a selection for Rigid constraint operation class PartSet_RigidSelection : public ModuleBase_SelectionValidator { - protected: - PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; }; @@ -70,96 +77,133 @@ class PartSet_RigidSelection : public ModuleBase_SelectionValidator //! A class to validate a selection for coincedence constraint operation class PartSet_CoincidentSelection : public ModuleBase_SelectionValidator { - protected: - PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; }; //! \ingroup Validators //! A class to validate a selection for Horizontal and Vertical constraints operation class PartSet_HVDirSelection : public ModuleBase_SelectionValidator { - protected: - PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; }; //! \ingroup Validators //! A class to validate a selection for Tangential constraints operation class PartSet_TangentSelection : public ModuleBase_SelectionValidator { - protected: - PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; }; //! \ingroup Validators //! A class to validate a selection for Fillet constraints operation class PartSet_FilletSelection : public ModuleBase_SelectionValidator { - protected: - PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; }; //! \ingroup Validators //! A class to validate a selection for Angle constraints operation class PartSet_AngleSelection : public ModuleBase_SelectionValidator { - protected: - PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; }; -////////////// Attribute validators //////////////// +//! \ingroup Validators +//! A class to validate a selection for Equal constraints operation +class PartSet_EqualSelection : public ModuleBase_SelectionValidator +{ +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; +}; +//! \ingroup Validators +//! A class to validate a selection for Collinear constraints operation +class PartSet_CollinearSelection : public ModuleBase_SelectionValidator +{ +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; +}; -/** -* \ingroup Validators -* A validator which checks that objects selected for feature attributes are different (not the same) -*/ -class PartSet_DifferentObjectsValidator : public ModelAPI_AttributeValidator +//! \ingroup Validators +//! A class to validate a selection for Middle point constraints operation +class PartSet_MiddlePointSelection : public ModuleBase_SelectionValidator { - public: - //! Returns true if the attribute is good for the feature attribute - //! \param theAttribute an attribute - //! \param theArguments a list of arguments (names of attributes to check) - virtual bool isValid(const AttributePtr& theAttribute, - const std::list& theArguments, - std::string& theError) const; +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; +}; -protected: - //! Checks whethe other feature attributes has a reference to the given attribute - //! \param theAttribute a source attribute to find object - //! \return a boolean value - bool featureHasReferences(const AttributePtr& theAttribute) const; +//! \ingroup Validators +//! A class to validate a selection for Middle point constraints operation +class PartSet_MultyTranslationSelection : public ModuleBase_SelectionValidator +{ +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; }; +//! \ingroup Validators +//! A class to validate a selection for Middle point constraints operation +class PartSet_SplitSelection : public ModuleBase_SelectionValidator +{ +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; +}; + +//! \ingroup Validators +//! A class to validate a selection for Middle point constraints operation +class PartSet_ProjectionSelection : public ModuleBase_SelectionValidator +{ +public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; +}; + +////////////// Attribute validators //////////////// + + /** * \ingroup Validators * A validator which checks that objects selected for feature attributes are different (not the same) */ -class PartSet_SketchEntityValidator : public ModelAPI_AttributeValidator +class PartSet_DifferentObjectsValidator : public ModelAPI_AttributeValidator { + //! Validator possible error types + enum ErrorType { + EqualObjects, + EqualAttributes, + EqualShapes, + EmptyShapes + }; public: //! Returns true if the attribute is good for the feature attribute //! \param theAttribute an attribute //! \param theArguments a list of arguments (names of attributes to check) + //! \param theError an output error string virtual bool isValid(const AttributePtr& theAttribute, const std::list& theArguments, - std::string& theError) const; -}; + Events_InfoMessage& theError) const; +private: + //! Returns error message for the error type + //! \param theType a type of error + //! \param thEqualObjectInfo an + std::string errorMessage(const PartSet_DifferentObjectsValidator::ErrorType& theType, + const std::string& thEqualObject, const std::string& theFirstAttribute, + const std::string& theSecondAttribute) const; -/**\class PartSet_SameTypeAttrValidator - * \ingroup Validators - * \brief Validator for the tangent constraint input. - * - * It just checks that distance is greater than zero. - */ -class PartSet_SameTypeAttrValidator : public ModelAPI_AttributeValidator -{ - public: - //! returns true if attribute is valid - //! \param theAttribute the checked attribute - //! \param theArguments arguments of the attribute - virtual bool isValid(const AttributePtr& theAttribute, - const std::list& theArguments, - std::string& theError) const; }; /**\class PartSet_CoincidentAttr @@ -173,9 +217,10 @@ class PartSet_CoincidentAttr : public ModelAPI_AttributeValidator //! returns true if attribute is valid //! \param theAttribute the checked attribute //! \param theArguments arguments of the attribute + //! \param theError an output error string virtual bool isValid(const AttributePtr& theAttribute, const std::list& theArguments, - std::string& theError) const; + Events_InfoMessage& theError) const; };