Salome HOME
Merge from V5_1_main 14/05/2010
[modules/smesh.git] / src / SMESHDS / SMESHDS_GroupBase.hxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SMESH SMESHDS : management of mesh data and SMESH document
24 //  File   : SMESHDS_Group.hxx
25 //  Module : SMESH
26 //  $Header$
27 //
28 #ifndef _SMESHDS_GroupBase_HeaderFile
29 #define _SMESHDS_GroupBase_HeaderFile
30
31 #include "SMESH_SMESHDS.hxx"
32
33 #include <string>
34 #include "SMDSAbs_ElementType.hxx"
35 #include "SMDS_MeshElement.hxx"
36
37 #include <Quantity_Color.hxx>
38   
39 class SMESHDS_Mesh;
40
41 class SMESHDS_EXPORT SMESHDS_GroupBase
42 {
43  public:
44
45   SMESHDS_GroupBase (const int                 theID,
46                      const SMESHDS_Mesh*       theMesh,
47                      const SMDSAbs_ElementType theType);
48
49   int GetID() const { return myID; }
50
51   const SMESHDS_Mesh* GetMesh() const { return myMesh; }
52
53   virtual void SetType(SMDSAbs_ElementType theType);
54
55   SMDSAbs_ElementType GetType() const { return myType; }
56
57   void SetStoreName (const char* theName) { myStoreName = theName; }
58
59   const char* GetStoreName () const { return myStoreName.c_str(); }
60
61   virtual int Extent();
62
63   virtual bool IsEmpty();
64
65   virtual bool Contains (const int theID);
66
67   virtual bool Contains (const SMDS_MeshElement* elem);
68
69   virtual SMDS_ElemIteratorPtr GetElements() = 0;
70
71   int GetID (const int theIndex);
72   // use it for iterations 1..Extent()
73
74   virtual ~SMESHDS_GroupBase() {}
75
76   void SetColor (const Quantity_Color& theColor)
77   { myColor = theColor;}
78   
79   Quantity_Color GetColor() const
80   { return myColor;}
81
82   void SetColorGroup (int theColorGroup);
83
84   int GetColorGroup() const;
85   
86  protected:
87   const SMDS_MeshElement* findInMesh (const int theID) const;
88   void resetIterator();
89
90  private:
91   SMESHDS_GroupBase (const SMESHDS_GroupBase& theOther);
92   // prohibited copy constructor
93   SMESHDS_GroupBase& operator = (const SMESHDS_GroupBase& theOther);
94   // prohibited assign operator
95
96   int                  myID;
97   const SMESHDS_Mesh*  myMesh;
98   SMDSAbs_ElementType  myType;
99   std::string          myStoreName;
100   // for GetID()
101   int                  myCurIndex;
102   int                  myCurID;
103   SMDS_ElemIteratorPtr myIterator;
104   Quantity_Color       myColor;
105 };
106
107 #endif