X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2FModelAPI%2FModelAPI_ResultPart.h;h=8f35004b6c7f551efa663b5809e9449354982bab;hb=9a06f255338dc4cd38cfcdf724fe72306cea29a3;hp=39a719845e0dbfbc0fd707871301557418a1226e;hpb=2532fb2df83ee1ddd9ff3e8b381d3788eaa15b69;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_ResultPart.h b/src/ModelAPI/ModelAPI_ResultPart.h index 39a719845..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,9 +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_ @@ -62,7 +62,7 @@ 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 + /// Returns the original part result: for transformation features results this is /// the original Part feature result virtual std::shared_ptr original() = 0; @@ -73,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; @@ -82,15 +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::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