0032429: Coding - Warnings during compilation on macosx arm64 with option BUILD_Inspe...
[occt.git] / tools / DFBrowser / DFBrowser_Tools.hxx
1 // Created on: 2017-06-16
2 // Created by: Natalia ERMOLAEVA
3 // Copyright (c) 2017 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement. 
15
16 #ifndef DFBrowser_Tools_H
17 #define DFBrowser_Tools_H
18
19 #include <inspector/TreeModel_ItemBase.hxx>
20
21 #include <Standard.hxx>
22 #include <Standard_GUID.hxx>
23 #include <TDocStd_Document.hxx>
24 #include <TDF_Label.hxx>
25 #include <TDF_Attribute.hxx>
26 #include <TopoDS_Shape.hxx>
27
28 #include <Standard_WarningsDisable.hxx>
29 #include <QAbstractItemModel>
30 #include <QColor>
31 #include <QMap>
32 #include <QModelIndex>
33 #include <QPixmap>
34 #include <QString>
35 #include <QIcon>
36 #include <Standard_WarningsRestore.hxx>
37
38 class DFBrowserPane_AttributePaneAPI;
39
40 //! \namespace DFBrowser_Tools
41 //! The namespace that gives auxiliary methods for TDF elements manipulation
42 namespace DFBrowser_Tools
43 {
44
45   //! Returns true if the label is not root, has attribute or at least one sub-label with attribute
46   //! \param theLabel a label
47   //! \return boolean result
48   Standard_EXPORT bool IsEmptyLabel (const TDF_Label& theLabel);
49
50   //! Returns the label entry
51   //! \param isUseShortInfo boolean value if value of name attribute should be included to result
52   //! \return string value
53   Standard_EXPORT QString GetLabelInfo (const TDF_Label& theLabel, const bool isUseShortInfo = true);
54
55   //! Returns the label icon
56   Standard_EXPORT QIcon GetLabelIcon (const TDF_Label& theLabel, bool isStandard16x16 = true);
57 }
58
59 #endif