X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Tools.h;h=b0af5520bae730e1b3a1252f24df5a358bb42e70;hb=befbd47554122bdbc74789ee76975167292d58be;hp=907cc7b974a9df0f996c51c699a4024566878418;hpb=7fa8d58b5e73c5fe1f49e3ab620a3650cf6ea953;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Tools.h b/src/ModelAPI/ModelAPI_Tools.h old mode 100755 new mode 100644 index 907cc7b97..b0af5520b --- a/src/ModelAPI/ModelAPI_Tools.h +++ b/src/ModelAPI/ModelAPI_Tools.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// 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 @@ -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_Tools_HeaderFile @@ -28,7 +27,7 @@ class ModelAPI_Document; class ModelAPI_Feature; class ModelAPI_Result; class ModelAPI_ResultParameter; -class ModelAPI_ResultCompSolid; +class ModelAPI_ResultBody; class GeomAPI_Shape; @@ -101,17 +100,18 @@ MODELAPI_EXPORT std::shared_ptr compositeOwner( const std::shared_ptr& theFeature); /*! - * Returns the compsolid result - parent of this result. - * \param theSub the sub-element of comp-solid + * Returns the result - parent of this result. + * \param theSub the sub-element of composit result + * \param theRoot if it is true, returns the root father * \returns null if it is not sub-element of composite */ -MODELAPI_EXPORT std::shared_ptr compSolidOwner( - const std::shared_ptr& theSub); +MODELAPI_EXPORT std::shared_ptr + bodyOwner(const std::shared_ptr& theSub, const bool theRoot = false); /*! - * Returns index of this result in parent (if parent exists, returned by compSolidOwner) + * Returns index of this result in parent (if parent exists, returned by bodyOwner) * \returns zero-base index, or -1 if not found */ -MODELAPI_EXPORT int compSolidIndex(const std::shared_ptr& theSub); +MODELAPI_EXPORT int bodyIndex(const std::shared_ptr& theSub); /*! * Returns true if the result contains a not empty list of sub results. @@ -121,6 +121,13 @@ MODELAPI_EXPORT int compSolidIndex(const std::shared_ptr& theSu */ MODELAPI_EXPORT bool hasSubResults(const std::shared_ptr& theResult); +/*! +* collects recursively all subs of the given result +*/ +MODELAPI_EXPORT void allSubs(const std::shared_ptr& theResult, + std::list >& theResults, + const bool theLowerOnly = false); + /*! * Adds the results of the given feature to theResults list: including disabled and sub-results */ @@ -187,17 +194,48 @@ MODELAPI_EXPORT void findRefsToFeatures( MODELAPI_EXPORT void getConcealedResults(const std::shared_ptr& theFeature, std::list >& theResults); -/*! Return the default name of the result according the features it depends. +/*! Return the default name of the result according the features it depends or name of the feature. * Return also whether the name is get from the concealing result of parent object * (means that concealing result has user-defined name). */ MODELAPI_EXPORT std::pair getDefaultName( - const std::shared_ptr& theResult, - const int theResultIndex); + const std::shared_ptr& theResult, const bool theInherited = true); -/*! Return the default name of the result according to name of the feature. +/*! Collect all parents for the given feature, including the Part */ -MODELAPI_EXPORT std::string getDefaultName(const std::shared_ptr& theResult); +MODELAPI_EXPORT std::set > + getParents(const std::shared_ptr& theFeature); + +/*! Creates a remove result features with the given results +*/ +MODELAPI_EXPORT void removeResults(const std::list >& theResults); + +/*! Returns current deflection in the given result +* \param theResult a result object +* \return a deflection value or -1 if it was not defined +*/ +MODELAPI_EXPORT double getDeflection(const std::shared_ptr& theResult); + +/*! Returns current color of the current result +* \param[in] theResult a result object +* \param[out] theColor a color values if it is defined +*/ +MODELAPI_EXPORT void getColor(const std::shared_ptr& theResult, + std::vector& theColor); + +/*! Returns current transparency in the given result +* \param theResult a result object +* \return a transparency value or -1 if it was not defined +*/ +MODELAPI_EXPORT double getTransparency(const std::shared_ptr& theResult); + +/*! Copies all visualization attributes from one result to another. +* \param theSource a result that contains the copied attributes +* \param theDest a destination result that takes the visualization attributes +*/ +MODELAPI_EXPORT void copyVisualizationAttrs(std::shared_ptr theSource, + std::shared_ptr theDest); + } #endif