X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_ResultPart.h;h=bd8a697f8529060f2e3249b01bf9d3534b13171e;hb=084eb7ded785430805bdc8dd83491829c6e89aa1;hp=74d86953f84129e36779bf386484769ac2ab2d4b;hpb=298e667eb49d3d1441664d76c1ab4f5fdc80645e;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_ResultPart.h b/src/ModelAPI/ModelAPI_ResultPart.h index 74d86953f..bd8a697f8 100644 --- a/src/ModelAPI/ModelAPI_ResultPart.h +++ b/src/ModelAPI/ModelAPI_ResultPart.h @@ -1,13 +1,28 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: ModelAPI_ResultPart.h -// Created: 07 Jul 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2017 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 ModelAPI_ResultPart_H_ #define ModelAPI_ResultPart_H_ #include "ModelAPI_Result.h" +class GeomAPI_Trsf; #include @@ -48,6 +63,10 @@ class ModelAPI_ResultPart : public ModelAPI_Result /// Returns the part-document of this result virtual std::shared_ptr partDoc() = 0; + /// Returns the original part result: for transfomration features results this is + /// the original Part feature result + virtual std::shared_ptr original() = 0; + /// Sets this document as current and if it is not loaded yet, loads it virtual void activate() = 0; @@ -55,9 +74,22 @@ class ModelAPI_ResultPart : public ModelAPI_Result virtual bool isActivated() = 0; /// Returns the name of the shape inside of the part - virtual std::string nameInPart(const std::shared_ptr& theShape) = 0; + virtual std::string nameInPart(const std::shared_ptr& theShape, + int& theIndex) = 0; + /// Updates the selection inside of the part by the selection index + virtual bool updateInPart(const int theIndex) = 0; + + /// Applies the additional transformation of the part + virtual void setTrsf(std::shared_ptr theThis, + const std::shared_ptr& theTransformation) = 0; + /// Returns the shape by the name in the part - virtual std::shared_ptr shapeInPart(const std::string& theName) = 0; + virtual std::shared_ptr shapeInPart( + const std::string& theName, const std::string& theType, int& theIndex) = 0; + + /// Returns the shape selected in the selection index + virtual std::shared_ptr selectionValue(const int theIndex) = 0; + /// Updates the shape-result of the part (called on Part feature execution) virtual void updateShape() = 0; };