1 // Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #ifndef _GEOMImpl_IGroupOperations_HXX_
22 #define _GEOMImpl_IGroupOperations_HXX_
24 #include "Utils_SALOME_Exception.hxx"
25 #include "GEOM_IOperations.hxx"
26 #include "GEOM_Engine.hxx"
27 #include "GEOM_Object.hxx"
28 #include <TDocStd_Document.hxx>
29 #include <TColStd_HArray1OfInteger.hxx>
30 #include <TColStd_HSequenceOfInteger.hxx>
33 class GEOMImpl_IGroupOperations : public GEOM_IOperations {
35 Standard_EXPORT GEOMImpl_IGroupOperations(GEOM_Engine* theEngine, int theDocID);
36 Standard_EXPORT ~GEOMImpl_IGroupOperations();
38 Standard_EXPORT Handle(GEOM_Object) CreateGroup(Handle(GEOM_Object) theMainShape, TopAbs_ShapeEnum theShapeType);
40 Standard_EXPORT void AddObject(Handle(GEOM_Object) theGroup, int theSubShapeID);
42 Standard_EXPORT void RemoveObject(Handle(GEOM_Object) theGroup, int theSubShapeID);
44 Standard_EXPORT void UnionList (Handle(GEOM_Object) theGroup,
45 const Handle(TColStd_HSequenceOfTransient)& theSubShapes);
47 Standard_EXPORT void DifferenceList (Handle(GEOM_Object) theGroup,
48 const Handle(TColStd_HSequenceOfTransient)& theSubShapes);
50 Standard_EXPORT void UnionIDs (Handle(GEOM_Object) theGroup,
51 const Handle(TColStd_HSequenceOfInteger)& theSubShapes);
53 Standard_EXPORT void DifferenceIDs (Handle(GEOM_Object) theGroup,
54 const Handle(TColStd_HSequenceOfInteger)& theSubShapes);
56 Standard_EXPORT TopAbs_ShapeEnum GetType(Handle(GEOM_Object) theGroup);
58 Standard_EXPORT Handle(GEOM_Object) GetMainShape(Handle(GEOM_Object) theGroup);
60 Standard_EXPORT Handle(TColStd_HArray1OfInteger) GetObjects(Handle(GEOM_Object) theGroup);