smesh/src/SMESH_I/SMESH_Group_i.hxx

196 lines
5.8 KiB
C++
Raw Normal View History

2013-04-01 19:05:47 +06:00
// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2004-06-18 14:34:31 +06:00
//
2012-08-09 16:03:55 +06:00
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License.
2004-06-18 14:34:31 +06:00
//
2012-08-09 16:03:55 +06:00
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
2004-06-18 14:34:31 +06:00
//
2012-08-09 16:03:55 +06:00
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2004-06-18 14:34:31 +06:00
//
2012-08-09 16:03:55 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
// SMESH SMESH_I : idl implementation based on 'SMESH' unit's classes
2004-06-18 14:34:31 +06:00
// File : SMESH_Group_i.hxx
// Author : Sergey ANIKIN, OCC
// Module : SMESH
2009-02-17 10:27:49 +05:00
//
2004-06-18 14:34:31 +06:00
#ifndef SMESH_Group_i_HeaderFile
#define SMESH_Group_i_HeaderFile
#include "SMESH.hxx"
2012-08-09 16:03:55 +06:00
#include "SMESH_Mesh_i.hxx"
#include "SMESH_Filter_i.hxx"
2004-06-18 14:34:31 +06:00
#include <SALOMEconfig.h>
#include CORBA_SERVER_HEADER(SMESH_Group)
#include CORBA_SERVER_HEADER(SMESH_Mesh)
2004-12-01 15:48:31 +05:00
#include CORBA_CLIENT_HEADER(GEOM_Gen)
2004-06-18 14:34:31 +06:00
#include "SALOME_GenericObj_i.hh"
class SMESH_Group;
2004-12-01 15:48:31 +05:00
class SMESHDS_GroupBase;
2012-08-09 16:03:55 +06:00
class SMESH_PreMeshInfo;
2004-12-01 15:48:31 +05:00
// ===========
// Group Base
// ===========
class SMESH_I_EXPORT SMESH_GroupBase_i:
2004-12-01 15:48:31 +05:00
public virtual POA_SMESH::SMESH_GroupBase,
2004-06-18 14:34:31 +06:00
public virtual SALOME::GenericObj_i
{
2004-12-01 15:48:31 +05:00
public:
SMESH_GroupBase_i(PortableServer::POA_ptr thePOA,
2012-08-09 16:03:55 +06:00
SMESH_Mesh_i* theMeshServant,
const int theLocalID );
2004-12-01 15:48:31 +05:00
virtual ~SMESH_GroupBase_i();
2004-06-18 14:34:31 +06:00
// CORBA interface implementation
2004-12-01 15:48:31 +05:00
void SetName(const char* name);
2004-06-18 14:34:31 +06:00
char* GetName();
SMESH::ElementType GetType();
CORBA::Long Size();
CORBA::Boolean IsEmpty();
2004-12-01 15:48:31 +05:00
CORBA::Boolean Contains(CORBA::Long elem_id);
CORBA::Long GetID(CORBA::Long elem_index);
SMESH::long_array* GetListOfID();
2012-08-09 16:03:55 +06:00
SMESH::long_array* GetNodeIDs();
CORBA::Long GetNumberOfNodes();
CORBA::Boolean IsNodeInfoAvailable(); // for gui
virtual SMESH::SMESH_Mesh_ptr GetMesh();
/*!
* Returns statistic of mesh elements
* Result array of number enityties
* Inherited from SMESH_IDSource
*/
virtual SMESH::long_array* GetMeshInfo();
2004-06-18 14:34:31 +06:00
2004-12-01 15:48:31 +05:00
// Inherited from SMESH_IDSource interface
virtual SMESH::long_array* GetIDs();
2004-06-18 14:34:31 +06:00
2012-08-09 16:03:55 +06:00
/*!
* Returns types of elements it contains
* Inherited from SMESH_IDSource interface
*/
virtual SMESH::array_of_ElementType* GetTypes();
/*!
* Returns false if GetMeshInfo() returns incorrect information that may
* happen if mesh data is not yet fully loaded from the file of study.
*/
virtual bool IsMeshInfoCorrect();
2004-12-01 15:48:31 +05:00
// Internal C++ interface
int GetLocalID() const { return myLocalID; }
SMESH_Mesh_i* GetMeshServant() const { return myMeshServant; }
SMESH_Group* GetSmeshGroup() const;
2004-12-01 15:48:31 +05:00
SMESHDS_GroupBase* GetGroupDS() const;
2004-06-18 14:34:31 +06:00
void SetColor(const SALOMEDS::Color& color);
SALOMEDS::Color GetColor();
void SetColorNumber(CORBA::Long color);
CORBA::Long GetColorNumber();
2012-08-09 16:03:55 +06:00
protected:
SMESH_PreMeshInfo* & changePreMeshInfo() { return myPreMeshInfo; }
SMESH_PreMeshInfo* myPreMeshInfo; // mesh info before full loading from study file
friend class SMESH_PreMeshInfo;
2013-02-12 20:37:44 +06:00
int myNbNodes, myGroupDSTic;
2004-12-01 15:48:31 +05:00
private:
SMESH_Mesh_i* myMeshServant;
int myLocalID;
2012-08-09 16:03:55 +06:00
void changeLocalId(int localId) { myLocalID = localId; }
friend class SMESH_Mesh_i;
2004-12-01 15:48:31 +05:00
};
2004-06-18 14:34:31 +06:00
2004-12-01 15:48:31 +05:00
// ======
// Group
// ======
2004-06-18 14:34:31 +06:00
class SMESH_I_EXPORT SMESH_Group_i:
2004-12-01 15:48:31 +05:00
public virtual POA_SMESH::SMESH_Group,
2005-02-02 16:09:27 +05:00
public SMESH_GroupBase_i
2004-12-01 15:48:31 +05:00
{
public:
2012-08-09 16:03:55 +06:00
SMESH_Group_i( PortableServer::POA_ptr thePOA,
SMESH_Mesh_i* theMeshServant,
const int theLocalID );
2004-12-01 15:48:31 +05:00
// CORBA interface implementation
void Clear();
CORBA::Long Add( const SMESH::long_array& theIDs );
2004-06-18 14:34:31 +06:00
CORBA::Long Remove( const SMESH::long_array& theIDs );
CORBA::Long AddByPredicate( SMESH::Predicate_ptr thePredicate );
CORBA::Long RemoveByPredicate( SMESH::Predicate_ptr thePredicate );
2012-08-09 16:03:55 +06:00
CORBA::Long AddFrom( SMESH::SMESH_IDSource_ptr theSource );
2004-12-01 15:48:31 +05:00
};
2004-06-18 14:34:31 +06:00
2004-12-01 15:48:31 +05:00
// =========================
// Group linked to geometry
// =========================
2004-06-18 14:34:31 +06:00
class SMESH_I_EXPORT SMESH_GroupOnGeom_i:
2004-12-01 15:48:31 +05:00
public virtual POA_SMESH::SMESH_GroupOnGeom,
2005-02-02 16:09:27 +05:00
public SMESH_GroupBase_i
2004-12-01 15:48:31 +05:00
{
public:
2012-08-09 16:03:55 +06:00
SMESH_GroupOnGeom_i( PortableServer::POA_ptr thePOA,
SMESH_Mesh_i* theMeshServant,
const int theLocalID );
2004-12-01 15:48:31 +05:00
// CORBA interface implementation
GEOM::GEOM_Object_ptr GetShape();
2004-06-18 14:34:31 +06:00
};
2012-08-09 16:03:55 +06:00
// =========================
// Group deined by filter
// =========================
class SMESH_I_EXPORT SMESH_GroupOnFilter_i:
public virtual POA_SMESH::SMESH_GroupOnFilter,
public SMESH_GroupBase_i,
public SMESH::Filter_i::TPredicateChangeWaiter
{
public:
SMESH_GroupOnFilter_i( PortableServer::POA_ptr thePOA,
SMESH_Mesh_i* theMeshServant,
const int theLocalID );
~SMESH_GroupOnFilter_i();
// Persistence
static SMESH::Filter_ptr StringToFilter(const std::string& thePersistentString );
std::string FilterToString() const;
static SMESH_PredicatePtr GetPredicate( SMESH::Filter_ptr );
// CORBA interface implementation
void SetFilter(SMESH::Filter_ptr theFilter);
SMESH::Filter_ptr GetFilter();
2013-02-12 20:37:44 +06:00
virtual SMESH::long_array* GetListOfID();
virtual SMESH::long_array* GetMeshInfo();
2012-08-09 16:03:55 +06:00
// method of SMESH::Filter_i::TPredicateChangeWaiter
virtual void PredicateChanged();
private:
SMESH::Filter_var myFilter;
};
2004-06-18 14:34:31 +06:00
#endif