X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConstructionPlugin%2FConstructionPlugin_Point.h;h=2c1282492185a8b2cd2d391e8c45f29ab57f0fe6;hb=aef9c1a87bc7ca357d8dfe47c56ac5edc9935d35;hp=637b96193d5d0f205d926920c550171cccb00cc0;hpb=7bf19255421b34594c7b0a76d0ce28166d0ce895;p=modules%2Fshaper.git diff --git a/src/ConstructionPlugin/ConstructionPlugin_Point.h b/src/ConstructionPlugin/ConstructionPlugin_Point.h index 637b96193..2c1282492 100644 --- a/src/ConstructionPlugin/ConstructionPlugin_Point.h +++ b/src/ConstructionPlugin/ConstructionPlugin_Point.h @@ -8,43 +8,185 @@ #define ConstructionPlugin_Point_H_ #include "ConstructionPlugin.h" + +#include #include +#include + +class GeomAPI_Vertex; -/// Point kind -const std::string CONSTRUCTION_POINT_KIND("Point"); - -/// attribute name for X coordinate -const std::string POINT_ATTR_X = "x"; -/// attribute name for Y coordinate -const std::string POINT_ATTR_Y = "y"; -/// attribute name for Z coordinate -const std::string POINT_ATTR_Z = "z"; - -/**\class ConstructionPlugin_Point - * \ingroup DataModel - * \brief Feature for creation of the new part in PartSet. - */ -class ConstructionPlugin_Point : public ModelAPI_Feature +/// \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 - CONSTRUCTIONPLUGIN_EXPORT virtual const std::string& getKind() +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; + } + + /*/// 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 std::string MY_KIND = CONSTRUCTION_POINT_KIND; - return MY_KIND; + static const std::string MY_CREATION_METHOD_ID("by_distance_on_edge"); + return MY_CREATION_METHOD_ID; } - /// Creates a new part document if needed + /// Attribute name for creation method. + inline static const std::string& CREATION_METHOD_BY_PROJECTION() + { + static const std::string MY_CREATION_METHOD_ID("by_projection"); + return MY_CREATION_METHOD_ID; + } + + /// 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. + inline static const std::string& Y() + { + static const std::string POINT_ATTR_Y("y"); + return POINT_ATTR_Y; + } + + /// Attribute name for Z coordinate. + inline static const std::string& Z() + { + static const std::string POINT_ATTR_Z("z"); + return POINT_ATTR_Z; + } + + /*/// 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(); + + /// 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();*/ + }; #endif