1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/src/DDF/DDF_Browser.hxx
dpasukhi a5a7b3185b Coding - Apply .clang-format formatting #286
Update empty method guards to new style with regex (see PR).
Used clang-format 18.1.8.
New actions to validate code formatting is added.
Update .clang-format with disabling of include sorting.
  It is temporary changes, then include will be sorted.
Apply formatting for /src and /tools folder.
The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
2025-01-26 00:43:57 +00:00

94 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 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 example, it is useful for
//! TDataStd_Group. It uses a mechanism 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