Salome HOME
PR: merged from V5_1_4rc1
[modules/smesh.git] / src / SMESH_I / SMESH_Group_i.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 SMESH_I : idl implementation based on 'SMESH' unit's classes
24 //  File   : SMESH_Group_i.hxx
25 //  Author : Sergey ANIKIN, OCC
26 //  Module : SMESH
27 //
28 #ifndef SMESH_Group_i_HeaderFile
29 #define SMESH_Group_i_HeaderFile
30
31 #include "SMESH.hxx"
32 #include "SMESH_Mesh_i.hxx"
33
34 #include <SALOMEconfig.h>
35 #include CORBA_SERVER_HEADER(SMESH_Group)
36 #include CORBA_SERVER_HEADER(SMESH_Mesh)
37 #include CORBA_CLIENT_HEADER(GEOM_Gen)
38
39 #include "SALOME_GenericObj_i.hh"
40
41 class SMESH_Group;
42 class SMESHDS_GroupBase;
43
44 // ===========
45 // Group Base
46 // ===========
47 class SMESH_I_EXPORT SMESH_GroupBase_i:
48   public virtual POA_SMESH::SMESH_GroupBase,
49   public virtual SALOME::GenericObj_i
50 {
51  public:
52   SMESH_GroupBase_i(PortableServer::POA_ptr thePOA,
53                     SMESH_Mesh_i* theMeshServant,
54                     const int theLocalID );
55   virtual ~SMESH_GroupBase_i();
56
57   // CORBA interface implementation
58   void SetName(const char* name);
59   char* GetName();
60   SMESH::ElementType GetType();
61   CORBA::Long Size();
62   CORBA::Boolean IsEmpty();
63   CORBA::Boolean Contains(CORBA::Long elem_id);
64   CORBA::Long GetID(CORBA::Long elem_index);
65   SMESH::long_array* GetListOfID();
66   SMESH::SMESH_Mesh_ptr GetMesh();
67
68   /*!
69    * Returns statistic of mesh elements
70    * Result array of number enityties
71    * Inherited from SMESH_IDSource
72    */
73   virtual SMESH::long_array* GetMeshInfo();
74
75   // Inherited from SMESH_IDSource interface
76   virtual SMESH::long_array* GetIDs();
77
78   // Internal C++ interface
79   int GetLocalID() const { return myLocalID; }
80   SMESH_Mesh_i* GetMeshServant() const { return myMeshServant; }
81   SMESH_Group* GetSmeshGroup() const;
82   SMESHDS_GroupBase* GetGroupDS() const;
83
84   void SetColor(const SALOMEDS::Color& color);
85   SALOMEDS::Color GetColor();
86
87   void SetColorNumber(CORBA::Long color);
88   CORBA::Long GetColorNumber();
89
90 private:
91   SMESH_Mesh_i* myMeshServant;
92   int myLocalID;
93
94   void changeLocalId(int localId) { myLocalID = localId; }
95   friend void SMESH_Mesh_i::CheckGeomGroupModif();
96 };
97
98 // ======
99 // Group
100 // ======
101
102 class SMESH_I_EXPORT SMESH_Group_i:
103   public virtual POA_SMESH::SMESH_Group,
104   public SMESH_GroupBase_i
105 {
106  public:
107   SMESH_Group_i( PortableServer::POA_ptr thePOA, SMESH_Mesh_i* theMeshServant, const int theLocalID );
108
109   // CORBA interface implementation
110   void Clear();
111   CORBA::Long Add( const SMESH::long_array& theIDs );
112   CORBA::Long Remove( const SMESH::long_array& theIDs );
113
114   CORBA::Long AddByPredicate( SMESH::Predicate_ptr thePredicate );
115   CORBA::Long RemoveByPredicate( SMESH::Predicate_ptr thePredicate );
116 };
117
118 // =========================
119 // Group linked to geometry
120 // =========================
121
122 class SMESH_I_EXPORT SMESH_GroupOnGeom_i:
123   public virtual POA_SMESH::SMESH_GroupOnGeom,
124   public SMESH_GroupBase_i
125 {
126  public:
127   SMESH_GroupOnGeom_i( PortableServer::POA_ptr thePOA, SMESH_Mesh_i* theMeshServant, const int theLocalID );
128
129   // CORBA interface implementation
130   GEOM::GEOM_Object_ptr GetShape();
131 };
132 #endif