X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_ResultPart.h;h=8f35004b6c7f551efa663b5809e9449354982bab;hb=9a06f255338dc4cd38cfcdf724fe72306cea29a3;hp=db0baf99ca3ae07a774872deb992d4f84671ae2f;hpb=a55eb7b05cb791412b0f72e2353ee2f2f0ae519d;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_ResultPart.h b/src/ModelAPI/ModelAPI_ResultPart.h index db0baf99c..8f35004b6 100644 --- a/src/ModelAPI/ModelAPI_ResultPart.h +++ b/src/ModelAPI/ModelAPI_ResultPart.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2022 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 @@ -12,10 +12,9 @@ // // 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 +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or -// email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #ifndef ModelAPI_ResultPart_H_ @@ -74,7 +73,7 @@ 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, + virtual std::wstring 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; @@ -83,18 +82,24 @@ class ModelAPI_ResultPart : public ModelAPI_Result virtual void setTrsf(std::shared_ptr theThis, const std::shared_ptr& theTransformation) = 0; + /// Returns the summary transformations of all references to the origin + virtual std::shared_ptr summaryTrsf() = 0; + /// Returns the shape by the name in the part virtual std::shared_ptr shapeInPart( - const std::string& theName, const std::string& theType, int& theIndex) = 0; + const std::wstring& theName, const std::string& theType, int& theIndex) = 0; /// Updates the selection inside of the part as a geometrical selection - virtual bool combineGeometrical(const int theIndex, std::string& theNewName) = 0; + virtual bool combineGeometrical(const int theIndex, std::wstring& theNewName) = 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; + + /// Loading the part from file + virtual void loadPart() = 0; }; //! Pointer on feature object