X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=idl%2FSMESH_Group.idl;h=e34cc96f5cabf181107f06839d98a2190922f37a;hp=399d701d9a40f61736ef49729932fabfd2c5b810;hb=2cf6435f1492b63b9adf4e8256d88968638ed9bf;hpb=b0a908c0d20341651771d0249fb10882f54b2aad diff --git a/idl/SMESH_Group.idl b/idl/SMESH_Group.idl index 399d701d9..e34cc96f5 100644 --- a/idl/SMESH_Group.idl +++ b/idl/SMESH_Group.idl @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -41,7 +41,7 @@ module SMESH /*! * SMESH_Group: base interface of group object */ - interface SMESH_GroupBase : SALOME::GenericObj, SMESH_IDSource + interface SMESH_GroupBase : SMESH_IDSource { /*! * Sets group name @@ -74,7 +74,7 @@ module SMESH boolean Contains( in long elem_id ); /*! - * Returns ID of an element at position + * Returns ID of an element at position counted from 1 */ long GetID( in long elem_index ); @@ -121,7 +121,13 @@ module SMESH * (corresponds to the "hue" parameter of the color - must be in range [0, 360]) */ long GetColorNumber(); - }; + + /*! + * Returns \c true if \c this group depends on the \a other via + * FT_BelongToMeshGroup predicate or vice versa + */ + boolean IsInDependency( in SMESH_GroupBase other ); + }; /*! * SMESH_Group: interface of a standalone group object @@ -170,8 +176,11 @@ module SMESH */ interface SMESH_GroupOnFilter : SMESH_GroupBase { - void SetFilter( in Filter theFilter); + void SetFilter( in Filter theFilter) raises (SALOME::SALOME_Exception); Filter GetFilter(); + + //! @return True if group contents is computed + boolean IsUpToDate(); }; };