X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConstructionPlugin%2FConstructionPlugin_Point.h;h=2c1282492185a8b2cd2d391e8c45f29ab57f0fe6;hb=055d9413812e3ee5418d550fcb7a8ec0d58d0549;hp=f4bf39a1186fdc61b3ee35e42f3665a8b7a609fa;hpb=0a76161addf39a6d03b90308eb99abc3a8d10e74;p=modules%2Fshaper.git diff --git a/src/ConstructionPlugin/ConstructionPlugin_Point.h b/src/ConstructionPlugin/ConstructionPlugin_Point.h index f4bf39a11..2c1282492 100644 --- a/src/ConstructionPlugin/ConstructionPlugin_Point.h +++ b/src/ConstructionPlugin/ConstructionPlugin_Point.h @@ -8,65 +8,184 @@ #define ConstructionPlugin_Point_H_ #include "ConstructionPlugin.h" -#include + #include +#include +#include + +class GeomAPI_Vertex; -/**\class ConstructionPlugin_Point - * \ingroup Plugins - * \brief Feature for creation of the new part in PartSet. - */ -class ConstructionPlugin_Point : public ModelAPI_Feature, public GeomAPI_ICustomPrs +/// \class ConstructionPlugin_Point +/// \ingroup Plugins +/// \brief Feature for creation of the new part in PartSet. +class ConstructionPlugin_Point: public ModelAPI_Feature, public GeomAPI_ICustomPrs { - public: - /// Returns the kind of a feature +public: + /// Returns the kind of a feature. CONSTRUCTIONPLUGIN_EXPORT virtual const std::string& getKind(); + /// Point kind. inline static const std::string& ID() { static const std::string CONSTRUCTION_POINT_KIND("Point"); return CONSTRUCTION_POINT_KIND; } - /// default color for a point - inline static const std::string& DEFAULT_COLOR() + /*/// Attribute name for creation method. + inline static const std::string& CREATION_METHOD() + { + static const std::string MY_CREATION_METHOD_ID("creation_method"); + return MY_CREATION_METHOD_ID; + } + + /// Attribute name for creation method. + inline static const std::string& CREATION_METHOD_BY_XYZ() + { + static const std::string MY_CREATION_METHOD_ID("by_xyz"); + return MY_CREATION_METHOD_ID; + } + + /// Attribute name for creation method. + inline static const std::string& CREATION_METHOD_BY_DISTANCE_ON_EDGE() + { + static const std::string MY_CREATION_METHOD_ID("by_distance_on_edge"); + return MY_CREATION_METHOD_ID; + } + + /// Attribute name for creation method. + inline static const std::string& CREATION_METHOD_BY_PROJECTION() { - static const std::string CONSTRUCTION_POINT_COLOR("#ffff00"); - return CONSTRUCTION_POINT_COLOR; + static const std::string MY_CREATION_METHOD_ID("by_projection"); + return MY_CREATION_METHOD_ID; } - /// attribute name for X coordinate + /// Attribute name for creation method. + inline static const std::string& CREATION_METHOD_BY_LINES_INTERSECTION() + { + static const std::string MY_CREATION_METHOD_ID("by_lines_intersection"); + return MY_CREATION_METHOD_ID; + } + + /// Attribute name for creation method. + inline static const std::string& CREATION_METHOD_BY_LINE_AND_PLANE_INTERSECTION() + { + static const std::string MY_CREATION_METHOD_ID("by_line_and_plane_intersection"); + return MY_CREATION_METHOD_ID; + }*/ + + /// Attribute name for X coordinate. inline static const std::string& X() { static const std::string POINT_ATTR_X("x"); return POINT_ATTR_X; } - /// attribute name for Y coordinate + + /// Attribute name for Y coordinate. inline static const std::string& Y() { static const std::string POINT_ATTR_Y("y"); return POINT_ATTR_Y; } - /// attribute name for Z coordinate + + /// Attribute name for Z coordinate. inline static const std::string& Z() { static const std::string POINT_ATTR_Z("z"); return POINT_ATTR_Z; } - /// Creates a new part document if needed + /*/// Attribute name for selected edge. + inline static const std::string& EDGE() + { + static const std::string ATTR_ID("edge"); + return ATTR_ID; + } + + /// Attribute name for distance. + inline static const std::string& DISTANCE_VALUE() + { + static const std::string ATTR_ID("value"); + return ATTR_ID; + } + + /// Attribute name for percent flag. + inline static const std::string& DISTANCE_PERCENT() + { + static const std::string ATTR_ID("percent"); + return ATTR_ID; + } + + /// Attribute name for reverse flag. + inline static const std::string& REVERSE() + { + static const std::string ATTR_ID("reverse"); + return ATTR_ID; + } + + /// Attribute name for point. + inline static const std::string& POINT() + { + static const std::string ATTR_ID("point"); + return ATTR_ID; + } + + /// Attribute name for plane. + inline static const std::string& PLANE() + { + static const std::string ATTR_ID("plane"); + return ATTR_ID; + } + + /// Attribute name for selected first line. + inline static const std::string& FIRST_LINE() + { + static const std::string ATTR_ID("first_line"); + return ATTR_ID; + } + + /// Attribute name for selected second line. + inline static const std::string& SECOND_LINE() + { + static const std::string ATTR_ID("second_line"); + return ATTR_ID; + } + + /// Attribute name for selected intersection line. + inline static const std::string& INTERSECTION_LINE() + { + static const std::string ATTR_ID("intersection_line"); + return ATTR_ID; + } + + /// Attribute name for selected intersection plane. + inline static const std::string& INTERSECTION_PLANE() + { + static const std::string ATTR_ID("intersection_plane"); + return ATTR_ID; + }*/ + + /// Creates a new part document if needed. CONSTRUCTIONPLUGIN_EXPORT virtual void execute(); - /// Request for initialization of data model of the feature: adding all attributes + /// Request for initialization of data model of the feature: adding all attributes. CONSTRUCTIONPLUGIN_EXPORT virtual void initAttributes(); - /// Construction result is allways recomuted on the fly + /// Construction result is allways recomuted on the fly. CONSTRUCTIONPLUGIN_EXPORT virtual bool isPersistentResult() {return false;} /// Use plugin manager for features creation ConstructionPlugin_Point(); - /// Modifies the given presentation in the custom way. - virtual void customisePresentation(AISObjectPtr thePrs); + /// Customize presentation of the feature + virtual bool customisePresentation(ResultPtr theResult, AISObjectPtr thePrs, + std::shared_ptr theDefaultPrs); + +private: + std::shared_ptr createByXYZ(); + /*std::shared_ptr createByDistanceOnEdge(); + std::shared_ptr createByProjection(); + std::shared_ptr createByLinesIntersection(); + std::shared_ptr createByLineAndPlaneIntersection();*/ };