// 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 #include #include #include #include #include #include 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 . Standard_EXPORT TCollection_AsciiString OpenRoot() const; //! Returns a string composed with the sub-label //! entries of . Standard_EXPORT TCollection_AsciiString OpenLabel (const TDF_Label& aLab) const; //! Returns a string composed with the attribute index //! (found in ) of . Standard_EXPORT TCollection_AsciiString OpenAttributeList (const TDF_Label& aLab); //! Returns a string composed with the list of //! referenced attribute index of the attribute //! . 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 to be displayed in //! information window. Standard_EXPORT TCollection_AsciiString Information() const; //! Returns information about to be displayed //! in information window. Standard_EXPORT TCollection_AsciiString Information (const TDF_Label& aLab) const; //! Returns information about attribute 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