1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-31 11:15:31 +03:00
occt/src/DDF/DDF_Browser.hxx
abv 92efcf78a6 0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
Automatic restore of IMPLEMENT_STANDARD_RTTIEXT macro (upgrade -rtti)
2015-12-04 14:15:06 +03:00

115 lines
3.2 KiB
C++

// Created by: DAUTRY Philippe
// Copyright (c) 1997-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#ifndef _DDF_Browser_HeaderFile
#define _DDF_Browser_HeaderFile
#include <Standard.hxx>
#include <Standard_Type.hxx>
#include <TDF_AttributeIndexedMap.hxx>
#include <Draw_Drawable3D.hxx>
#include <Standard_OStream.hxx>
#include <Draw_Interpretor.hxx>
#include <Standard_Integer.hxx>
class TDF_Data;
class Draw_Display;
class Draw_Drawable3D;
class TCollection_AsciiString;
class TDF_Label;
class DDF_Browser;
DEFINE_STANDARD_HANDLE(DDF_Browser, Draw_Drawable3D)
//! Browses a data framework from TDF.
class DDF_Browser : public Draw_Drawable3D
{
public:
Standard_EXPORT DDF_Browser(const Handle(TDF_Data)& aDF);
Standard_EXPORT void DrawOn (Draw_Display& dis) const Standard_OVERRIDE;
Standard_EXPORT virtual Handle(Draw_Drawable3D) Copy() const Standard_OVERRIDE;
Standard_EXPORT virtual void Dump (Standard_OStream& S) const Standard_OVERRIDE;
Standard_EXPORT virtual void Whatis (Draw_Interpretor& I) const Standard_OVERRIDE;
Standard_EXPORT void Data (const Handle(TDF_Data)& aDF);
Standard_EXPORT Handle(TDF_Data) Data() const;
//! Returns a string composed with the sub-label
//! entries of <myDF>.
Standard_EXPORT TCollection_AsciiString OpenRoot() const;
//! Returns a string composed with the sub-label
//! entries of <aLab>.
Standard_EXPORT TCollection_AsciiString OpenLabel (const TDF_Label& aLab) const;
//! Returns a string composed with the attribute index
//! (found in <myAttMap>) of <aLab>.
Standard_EXPORT TCollection_AsciiString OpenAttributeList (const TDF_Label& aLab);
//! Returns a string composed with the list of
//! referenced attribute index of the attribute
//! <anIndex>. For exemple, it is usefull for
//! TDataStd_Group. It uses a mecanism based on a
//! DDF_AttributeBrowser.
Standard_EXPORT TCollection_AsciiString OpenAttribute (const Standard_Integer anIndex = 0);
//! Returns information about <me> to be displayed in
//! information window.
Standard_EXPORT TCollection_AsciiString Information() const;
//! Returns information about <aLab> to be displayed
//! in information window.
Standard_EXPORT TCollection_AsciiString Information (const TDF_Label& aLab) const;
//! Returns information about attribute <anIndex> to
//! be displayed in information window.
Standard_EXPORT TCollection_AsciiString Information (const Standard_Integer anIndex = 0) const;
DEFINE_STANDARD_RTTIEXT(DDF_Browser,Draw_Drawable3D)
protected:
private:
Handle(TDF_Data) myDF;
TDF_AttributeIndexedMap myAttMap;
};
#endif // _DDF_Browser_HeaderFile