X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Tools.h;h=da38e87add14de71a9618366bce4e2670c1f052a;hb=220bd2b37119be1c65abf88a88792445cb9d99f8;hp=18f237a007db14c1e23fac85b218098086faa713;hpb=5e62d11396e77cb030ca3978a8172ffccf92bf75;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Tools.h b/src/XGUI/XGUI_Tools.h index 18f237a00..da38e87ad 100644 --- a/src/XGUI/XGUI_Tools.h +++ b/src/XGUI/XGUI_Tools.h @@ -14,6 +14,8 @@ #include class QWidget; +class XGUI_Workshop; +class ModuleBase_IWorkshop; /*! \ingroup GUI @@ -56,6 +58,12 @@ QString XGUI_EXPORT addSlash(const QString& path); // The model concerning tools +/*! Unite object names in one string using the separator between values + \param theObjects a list of objects + \param theSeparator a separator + */ +QString unionOfObjectNames(const QObjectPtrList& theObjects, const QString& theSeparator); + /*! Returns true if the feature is a model object \param theFeature a feature @@ -108,7 +116,14 @@ void XGUI_EXPORT refsToFeatureInFeatureDocument(const ObjectPtr& theObject, \param theFeature a candidate to be a composite feature \return a boolean value */ -bool XGUI_EXPORT isSubOfComposite(const ObjectPtr& theObject); +bool XGUI_EXPORT isSubOfComposite(const ObjectPtr& theObject, const FeaturePtr& theFeature); + +/*! +*/ +void refsDirectToFeatureInAllDocuments(const ObjectPtr& theSourceObject, const ObjectPtr& theObject, + const QObjectPtrList& theIgnoreList, + std::set& theDirectRefFeatures, + std::set& theAlreadyProcessed); /*! Returns a container of references feature to the source object. The search happens in the object @@ -118,13 +133,15 @@ bool XGUI_EXPORT isSubOfComposite(const ObjectPtr& theObject); which has the object as a sub object. \param theSourceObject an object, which references are searched \param theObject an intermediate recursive object, should be set in the source object + \param theIgnoreList an ignore list, the found referernces which coincide with the objects are ignored \param theDirectRefFeatures direct references - \param theIndirectRefFeatures indirect references + \param theIndirectRefFeatures indirect references. These are features that refers to the direct features \param theAlreadyProcessed set of processed elements, used for optimization (do not reanalyse processed) \return a boolean value */ void XGUI_EXPORT refsToFeatureInAllDocuments(const ObjectPtr& theSourceObject, const ObjectPtr& theObject, + const QObjectPtrList& theIgnoreList, std::set& theDirectRefFeatures, std::set& theIndirectRefFeatures, std::set& theAlreadyProcessed); @@ -135,6 +152,14 @@ void XGUI_EXPORT refsToFeatureInAllDocuments(const ObjectPtr& theSourceObject, * \returns boolean value */ bool XGUI_EXPORT isSubOfComposite(const ObjectPtr& theObject); + +/*! + Returns converted workshop + \param theWorkshop an interface workshop + \return XGUI workshop instance +*/ +XGUI_EXPORT XGUI_Workshop* workshop(ModuleBase_IWorkshop* theWorkshop); + }; #endif