Inspector {#occt_user_guides__inspector}
===============================
@tableofcontents
@section occt_inspector_1 Introduction
This manual explains how to use Inspector.
@subsection occt_inspector_1_1 Overview
Inspector is a Qt-based library that provides functionality to interactively inspect low-level content of the OCAF data model, OCCT viewer and Modelisation Data.
This component is aimed to assist the developers of OCCT-based applications to debug the problematic situations that occur in their applications.
Inspector has a plugin-oriented architecture. The current release contains the following plugins:
| Plugin | OCCT component | Root class of OCCT investigated component |
| :----- | :----- | :----- |
| @ref occt_inspector_2_2 "DFBrowser"| OCAF | TDocStd_Application |
| @ref occt_inspector_2_3 "VInspector"| Visualization | AIS_InteractiveContext |
| @ref occt_inspector_2_4 "ShapeView"| Modelisation Data | TopoDS_Shape |
Each plugin implements logic of a corresponding OCCT component.
Each of the listed plugins is embeded in the common framework.
The user is able to manage which plugins should be loaded by Inspector.
Also he can extend number of plugins by implementing a new plugin.
@subsection occt_inspector_1_3 Getting started
There are two launch modes:
1. Launch **TInspectorEXE** executable sample. For more details see @ref occt_inspector_6 "TInspectorEXE" section;
2. Launch DRAW, load plugin INSPECTOR, and use **tinspector** command.
For more details see @ref occt_inspector_7 "Launch in DRAW Test Harness" section.
Note. If you have no Inspector library in your build directory, please make sure that OCCT is compiled with *BUILD_Inspector*
option ON. For more details see @ref occt_inspector_4 "Build procedure".
@section occt_inspector_2 Inspector
@subsection occt_inspector_2_1 Overview
Inspector consists of the following components:
* buttons to activate the corresponding plugin;
* view area to visualize the plugin content.
@figure{tinspector_elements.svg,"Plugins placement in Inspector",360}
@subsection occt_inspector_2_2 DFBrowser Plugin
@subsubsection occt_inspector_2_2_1 Overview
@figure{dfbrowser.png, "DFBrowser"}
This plugin visualizes content of TDocStd_Application in a tree view. It shows documents of the application,
hierarchy of TDF_Labels, content of TDF_Attributes and interconnection between attributes (e.g. references).
Additionally it has 3D view to visualize TopoDS_Shape elements stored in the document.
@subsubsection occt_inspector_2_2_2 Elements
@figure{dfbrowser_elements.svg, "DFBrowser Elements",360}
OCAF tree view
Each OCAF element has own tree view item:
| Type | Tree item | Text | Description |
| :----- | :----- | :----- | :----- |
| TDocStd_Application | Application | TDocStd_Application | It is the root of tree view. Children are documents.|
| TDocStd_Document | Document | entry : name | It is a child of Application item. Children are Labels and Attributes items.
Text view is an entry of the root label and the value of TDataStd_Name attribute for the label if it exists. |
| TDF_Label | Label | entry : name | It is a child of a Document or another Label item. Children and text view are the same as for Document item. |
| TDF_Attribute | Attribute | attribute type [additional information] | It is a child of a Label. It has no children.
Text view is the attribute type (DynamicType()->Name() of TDF_Attribute) and additional information (a combination of attribute values) |
Additional information of TDF_Attributes:
| Type | Text |
| :----- | :----- |
| TDocStd_Owner | [storage format] |
| TDataStd_AsciiString,
TDataStd_Name,
TDataStd_Real,
@ref occt_attribute_simple_types "other Simple types" | [value] |
| TDataStd_BooleanList,
TDataStd_ExtStringList,
@ref occt_attribute_list_types "other List types" | [value_1 ... value_n] |
| TDataStd_BooleanArray,
TDataStd_ByteArray,
@ref occt_attribute_array_types "other Array types" | [value_1 ... value_n] |
| TDataStd_TreeNode | [tree node ID ==> Father()->Label()] (if it has father) or
[tree node ID <== First()->Label()] (if it has NO father)|
| TDataStd_TreeNode(XDE) | [@ref occt_attribute_xde_tree_node_id "XDE tree node ID" ==> Father()->Label()] (if it has father),
[@ref occt_attribute_xde_tree_node_id "XDE tree Node ID" <== label_1, ..., label_n] (if it has NO father)|
| TNaming_NamedShape | [shape type : evolution] |
| TNaming_UsedShapes | [map extent] |
Custom color of items:
| OCAF element Type | Color |
| :----- | :----- |
| TDF_Label | dark green, if the label has TDataStd_Name attribute,
light grey if the label is empty (has no attributes on all levels of hierarchy),
black otherwise |
| TNaming_NamedShape | dark gray for TopAbs_FORWARD orientation of TopoDS_Shape,
gray for TopAbs_REVERSED orientation of TopoDS_Shape,
black for other orientation |
Context popup menu:
| Action | Functionality |
| :----- | :----- |
| Expand | Expands the next two levels under the selected item |
| Expand All | Expands the whole tree of the selected item |
| Collapse All | Collapses the whole tree of the selected item |
Property Panel
Property panel is used to display content of Label or Attribute tree view items.
This control is used for content of Label or Attribute tree view items or Search result view.
Information is usually shown in one or several tables.
TDF_Attribute has the following content in Property Panel:
Type | Description | Content |
---|---|---|
TDF_Label | a table of [entry or attribute name, value] | @figure{property_panel_label.png, "",140} |
TDocStd_Owner, @ref occt_attribute_simple_types "Simple types", @ref occt_attribute_list_types "List types" |
a table of [method name, value] | @figure{property_panel_simple_type.png, "",140} |
TDataStd_BooleanArray, TDataStd_ByteArray, @ref occt_attribute_array_types "other Array types" |
2 controls: * a table of [array bound, value], * table of [method name, value] |
@figure{property_panel_array.png, "",140} |
TDataStd_TreeNode | 2 controls: * a table of [Tree ID, value] (visible only if Tree ID() != ID()), * a tree view of tree nodes starting from Root() of the tree node. The current tree node has dark blue text. |
@figure{property_panel_tree_node.png, "",140} |
TDataStd_NamedData | tab bar of attribute elements, each tab has a table of [name, value] | @figure{property_panel_named_data.png, "",140} |
TNaming_UsedShapes | a table of all the shapes handled by the framework | @figure{property_panel_tnaming_used_shapes.png, "",140} |
TNaming_NamedShape | 2 controls: * a table of [method name, value] including CurrentShape/OriginalShape methods result of TNaming_Tools, * an evolution table. Tables contain buttons for @ref occt_shape_export "TopoDS_Shape export". |
@figure{property_panel_tnaming_named_shape.png, "",140} |
TNaming_Naming | 2 controls: * a table of TNaming_Name vlaues, * a table of [method name, value] |
@figure{property_panel_tnaming_naming.png, "",140} |
Kind | Source object | Visualization propeties | View |
---|---|---|---|
Main presentation | Tree view item: TPrsStd_AISPresentation, TNaming_NamedShape, TNaming_Naming |
Color: a default color for shape type of the current TopoDS_Shape | @figure{display_main_presentation.png, "",100} |
Additional presentation | References in Property panel | Color: white | @figure{display_additional_presentation.png, "",100} |