mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-26 09:20:35 +05:00
127 lines
3.6 KiB
C++
127 lines
3.6 KiB
C++
// GEOM GEOMDS : implementation of Geometry component data structure and Geometry documents management
|
|
//
|
|
// Copyright (C) 2003 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
|
|
//
|
|
// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
|
|
//
|
|
//
|
|
//
|
|
// File : GEOMDS_Explorer.cxx
|
|
// Author : Yves FRICAUD
|
|
// Module : GEOM
|
|
// $Header$
|
|
|
|
using namespace std;
|
|
#include "GEOMDS_Explorer.ixx"
|
|
|
|
#include <TNaming_NamedShape.hxx>
|
|
#include <TNaming_Tool.hxx>
|
|
#include <TDataStd_Name.hxx>
|
|
|
|
|
|
//=======================================================================
|
|
//function : GEOMDS_Explorer
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
GEOMDS_Explorer::GEOMDS_Explorer(const TDF_Label& Main) : myChildIterator(Main)
|
|
{
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : const;
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean GEOMDS_Explorer::More()
|
|
{
|
|
if (!myChildIterator.More())
|
|
return 0;
|
|
Handle(TDataStd_Name) Att;
|
|
Handle(TNaming_NamedShape) NS;
|
|
TDF_Label L = myChildIterator.Value();
|
|
if (( L.FindAttribute(TDataStd_Name::GetID(),Att) ) ||
|
|
(L.FindAttribute(TNaming_NamedShape::GetID(),NS))
|
|
)
|
|
return 1;
|
|
// myChildIterator.Next();
|
|
// More();
|
|
return 0;
|
|
/*
|
|
if (!myChildIterator.More())
|
|
return 0;
|
|
TDF_Label L = myChildIterator.Value();
|
|
Handle(TNaming_NamedShape) NS;
|
|
for (TDF_ChildIterator it2(L); it2.More(); it2.Next()) {
|
|
TDF_Label L2 = it2.Value();
|
|
if (L2.FindAttribute(TNaming_NamedShape::GetID(),NS)) {
|
|
return 1;
|
|
}
|
|
myChildIterator.Next();
|
|
}
|
|
return 0;
|
|
*/
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Next
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void GEOMDS_Explorer::Next()
|
|
{
|
|
myChildIterator.Next();
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Shape
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TopoDS_Shape GEOMDS_Explorer::Shape() const
|
|
{
|
|
Handle(TNaming_NamedShape) NS;
|
|
TDF_Label L = myChildIterator.Value();
|
|
L.FindAttribute(TNaming_NamedShape::GetID(),NS);
|
|
TopoDS_Shape S = TNaming_Tool::GetShape(NS);
|
|
return S;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Name
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TCollection_ExtendedString GEOMDS_Explorer::Name() const
|
|
{
|
|
TDF_Label L = myChildIterator.Value();
|
|
Handle(TDataStd_Name) Att;
|
|
if ( L.FindAttribute(TDataStd_Name::GetID(),Att) )
|
|
//L.FindAttribute(TDataStd_Name::GetID(),Att);
|
|
return Att->Get();
|
|
else
|
|
return TCollection_ExtendedString();
|
|
}
|
|
|
|
|
|
|
|
|