X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_MultiTranslation.h;h=a9af6f8fee4d24c16e55d96ffa581d4add374efd;hb=3f01be441c3244407d583560f6c244187e8050dc;hp=f741d2ee722f3b8942762b54f6e2bc8ea6a540a3;hpb=1bbe11ce617a6cac19ceb26a5d5c6bb48354d99e;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_MultiTranslation.h b/src/SketchPlugin/SketchPlugin_MultiTranslation.h index f741d2ee7..a9af6f8fe 100644 --- a/src/SketchPlugin/SketchPlugin_MultiTranslation.h +++ b/src/SketchPlugin/SketchPlugin_MultiTranslation.h @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> - -// File: SketchPlugin_MultiTranslation.h -// Created: 21 Apr 2015 -// Author: Artem ZHIDKOV +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #ifndef SketchPlugin_MultiTranslation_H_ #define SketchPlugin_MultiTranslation_H_ @@ -19,10 +32,9 @@ * SketchPlugin_Constraint::ENTITY_A() for initial list of objects and * SketchPlugin_Constraint::ENTITY_B() for the list of created objects * - * The list of created objects contains a number of copies of each object given in - * the NUMBER_OF_COPIES_ID() attribute plus 1 (the initial objects are stored into this - * attribute too). At the start of the list, there are collected N copies - * of first object from initial list, then N copies of second object etc. + * The list of created objects contains initial and copied objects of each object given. The + * number copies is the NUMBER_OF_OBJECTS_ID() minus 1. At the start of the list, there are + * collected N copies of first object from initial list, then N copies of second object etc. */ class SketchPlugin_MultiTranslation : public SketchPlugin_ConstraintBase { @@ -47,23 +59,32 @@ class SketchPlugin_MultiTranslation : public SketchPlugin_ConstraintBase return MY_TRANSLATION_LIST_ID; } + /// attribute name for first point + inline static const std::string& VALUE_TYPE() + { + static const std::string VALUE_TYPE_ATTR("ValueType"); + return VALUE_TYPE_ATTR; + } + /// Start point of translation inline static const std::string& START_POINT_ID() { static const std::string MY_START_POINT_ID("MultiTranslationStartPoint"); return MY_START_POINT_ID; } + /// End point of translation inline static const std::string& END_POINT_ID() { static const std::string MY_END_POINT_ID("MultiTranslationEndPoint"); return MY_END_POINT_ID; } - /// Number of translated objects - inline static const std::string& NUMBER_OF_COPIES_ID() + + /// Total number of objects, initial and translated objects + inline static const std::string& NUMBER_OF_OBJECTS_ID() { - static const std::string MY_NUMBER_OF_COPIES_ID("MultiTranslationCopies"); - return MY_NUMBER_OF_COPIES_ID; + static const std::string MY_NUMBER_OF_OBJECTS_ID("MultiTranslationObjects"); + return MY_NUMBER_OF_OBJECTS_ID; } /// \brief Creates a new part document if needed @@ -72,14 +93,22 @@ class SketchPlugin_MultiTranslation : public SketchPlugin_ConstraintBase /// \brief Request for initialization of data model of the feature: adding all attributes SKETCHPLUGIN_EXPORT virtual void initAttributes(); + /// Called on change of any argument-attribute of this object + /// \param theID identifier of changed attribute + SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID); + /// Returns the AIS preview SKETCHPLUGIN_EXPORT virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious); + /// removes all fields from this feature: results, data, etc + SKETCHPLUGIN_EXPORT virtual void erase(); + /// \brief Use plugin manager for features creation SketchPlugin_MultiTranslation(); private: ObjectPtr copyFeature(ObjectPtr theObject); + }; #endif