2005-12-05 21:23:52 +05:00
|
|
|
// Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
2006-06-01 17:32:40 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2005-12-05 21:23:52 +05:00
|
|
|
//
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
#ifndef _GEOM_Object_i_HeaderFile
|
|
|
|
#define _GEOM_Object_i_HeaderFile
|
|
|
|
|
2007-02-07 16:48:21 +05:00
|
|
|
#include "GEOM_GEOM_I.hxx"
|
|
|
|
|
|
|
|
#include "GEOMImpl_Gen.hxx"
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
#include <SALOMEconfig.h>
|
2005-08-18 12:15:31 +06:00
|
|
|
#include CORBA_CLIENT_HEADER(SALOMEDS)
|
2004-12-01 15:39:14 +05:00
|
|
|
#include CORBA_SERVER_HEADER(GEOM_Gen)
|
|
|
|
|
|
|
|
#include "SALOME_GenericObj_i.hh"
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
#include "GEOM_Object.hxx"
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
#include <TopoDS_Shape.hxx>
|
|
|
|
|
2007-02-07 16:48:21 +05:00
|
|
|
class GEOM_I_EXPORT GEOM_Object_i : public virtual POA_GEOM::GEOM_Object, public virtual SALOME::GenericObj_i
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
GEOM_Object_i(PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine, Handle(GEOM_Object) theImpl);
|
|
|
|
~GEOM_Object_i();
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
virtual char* GetEntry();
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
virtual CORBA::Long GetStudyID();
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
virtual CORBA::Long GetType();
|
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
virtual GEOM::shape_type GetShapeType();
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
virtual void SetName(const char* theName);
|
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
virtual char* GetName();
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2008-02-06 20:43:50 +05:00
|
|
|
virtual void SetColor(const SALOMEDS::Color& theColor);
|
|
|
|
|
|
|
|
virtual SALOMEDS::Color GetColor();
|
|
|
|
|
|
|
|
virtual void SetAutoColor(CORBA::Boolean theAutoColor);
|
|
|
|
|
|
|
|
virtual CORBA::Boolean GetAutoColor();
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
virtual void SetStudyEntry(const char* theEntry);
|
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
virtual char* GetStudyEntry();
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
virtual GEOM::ListOfGO* GetDependency();
|
|
|
|
|
|
|
|
virtual GEOM::ListOfGO* GetLastDependency();
|
|
|
|
|
|
|
|
virtual SALOMEDS::TMPFile* GetShapeStream();
|
|
|
|
|
2007-04-18 21:44:19 +06:00
|
|
|
virtual CORBA::LongLong getShape();
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
virtual bool IsMainShape() { return _impl->IsMainShape(); }
|
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
virtual GEOM::ListOfLong* GetSubShapeIndices();
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
virtual GEOM::GEOM_Object_ptr GetMainShape();
|
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
virtual bool IsShape();
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
Handle(GEOM_Object) GetImpl() { return _impl; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2008-02-12 20:57:45 +05:00
|
|
|
GEOM::GEOM_Gen_var _engine;
|
2005-08-18 12:15:31 +06:00
|
|
|
Handle(GEOM_Object) _impl;
|
2004-12-01 15:39:14 +05:00
|
|
|
TopoDS_Shape _geom;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|