diff --git a/.github/actions/build-tinspector/action.yml b/.github/actions/build-tinspector/action.yml
index da9434e453..2cd9639be7 100644
--- a/.github/actions/build-tinspector/action.yml
+++ b/.github/actions/build-tinspector/action.yml
@@ -35,11 +35,18 @@ runs:
       shell: bash
       run: sudo apt-get update && sudo apt-get install -y tcl-dev tk-dev cmake gcc g++ make libbtbb-dev libx11-dev libglu1-mesa-dev tcllib tcl-thread tcl libvtk9-dev libopenvr-dev libdraco-dev libfreeimage-dev libegl1-mesa-dev libgles2-mesa-dev libfreetype-dev qtbase5-dev qt5-qmake qtbase5-dev-tools qtdeclarative5-dev qttools5-dev qttools5-dev-tools
 
+    - name: Checkout TInspector
+      shell: bash
+      run: |
+        git clone https://github.com/Open-Cascade-SAS/Inspector.git inspector
+        cd inspector
+        git checkout 6da9ba776ef72a17dca3331974df4200024c7f34
+
     - name: Configure TInspector - Windows
       if: inputs.platform == 'windows'
       shell: pwsh
       run: |
-        cd tools
+        cd inspector
         mkdir build
         cd build
         cmake -G "Visual Studio 17 2022" -A x64 `
@@ -47,40 +54,40 @@ runs:
               -D BUILD_SHARED_LIBS=ON `
               -D 3RDPARTY_DIR=${{ github.workspace }}//3rdparty-vc14-64 `
               -D OpenCASCADE_DIR=${{ github.workspace }}/occt-install `
-              -D INSTALL_DIR=${{ github.workspace }}/tools/install `
+              -D INSTALL_DIR=${{ github.workspace }}/inspector/install `
               ..
 
     - name: Configure TInspector - Linux
       if: inputs.platform == 'linux'
       shell: bash
       run: |
-        cd tools
+        cd inspector
         mkdir build
         cd build
         cmake -G "Unix Makefiles" \
               -D CMAKE_BUILD_TYPE=Release \
               -D BUILD_SHARED_LIBS=ON \
               -D OpenCASCADE_DIR=${{ github.workspace }}/occt-install \
-              -D INSTALL_DIR=${{ github.workspace }}/tools/install \
+              -D INSTALL_DIR=${{ github.workspace }}/inspector/install \
               ..
 
     - name: Build TInspector - Windows
       if: inputs.platform == 'windows'
       shell: pwsh
       run: |
-        cd tools/build
+        cd inspector/build
         cmake --build . --config Release --target install
 
     - name: Build TInspector - Linux
       if: inputs.platform == 'linux'
       shell: bash
       run: |
-        cd tools/build
+        cd inspector/build
         make install -j$(nproc)
 
     - name: Upload TInspector installation
       uses: actions/upload-artifact@v4.4.3
       with:
         name: inspector-${{ inputs.platform }}-x64
-        path: tools/install
+        path: inspector/install
         retention-days: 7
diff --git a/.github/actions/clang-format-check/action.yml b/.github/actions/clang-format-check/action.yml
index 4eabdf02a5..0f88184e4b 100644
--- a/.github/actions/clang-format-check/action.yml
+++ b/.github/actions/clang-format-check/action.yml
@@ -8,7 +8,7 @@ inputs:
   file-pattern:
     description: 'Pattern to match files for formatting check'
     required: false
-    default: '^(src|tools)/.*\.(cpp|hxx|cxx|lxx|h|pxx|hpp)$'
+    default: '^(src)/.*\.(cpp|hxx|cxx|lxx|h|pxx|hpp)$'
   clang-format-version:
     description: 'Required clang-format version'
     required: false
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 34300d41ad..cd8eeb35e7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -327,8 +327,6 @@ if (MSVC)
 endif()
 set (BUILD_SAMPLES_QT OFF CACHE BOOL "${BUILD_SAMPLES_QT_DESCR}")
 
-set (BUILD_Inspector OFF CACHE BOOL "${BUILD_Inspector_DESCR}")
-
 # uwp sample
 if (MSVC)
   if ("${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsStore")
@@ -745,8 +743,8 @@ else()
   OCCT_CHECK_AND_UNSET ("INSTALL_JEMALLOC")
 endif()
 
-# qt for inspector and samples
-if (BUILD_Inspector OR BUILD_SAMPLES_QT)
+# qt for samples
+if (BUILD_SAMPLES_QT)
   # check qt 3rdparty path
   add_definitions (-DHAVE_QT)
   list (APPEND OCCT_3RDPARTY_CMAKE_LIST "adm/cmake/qt")
@@ -1021,28 +1019,6 @@ else()
   set (SCRIPT_EXT sh)
 endif()
 
-# OCCT tools
-# include original list of tools
-# list <TOOLNAME>_TOOLKITS is created foreach tool and contains its toolkits
-# list <OCCT_TOOLS> will contain all tools
-if (BUILD_Inspector)
-  add_definitions (-DHAVE_Inspector)
-
-  OCCT_MODULES_AND_TOOLKITS (TOOLS "TOOL_TOOLKITS" OCCT_TOOLS)
-  foreach (OCCT_TOOL ${OCCT_TOOLS})
-    list (APPEND BUILD_TOOL_TOOLKITS ${${OCCT_TOOL}_TOOL_TOOLKITS})
-  endforeach()
-
-  # collect all the headers to <binary dir>/inc/inspector folder
-
-  # Ensure the include directory exists
-  file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/${INSTALL_DIR_INCLUDE}/inspector")
-
-  string(TIMESTAMP CURRENT_TIME "%H:%M:%S")
-  message (STATUS "\nInfo: \(${CURRENT_TIME}\) Start collecting all OCCT tool header files into ${CMAKE_BINARY_DIR}/inc/inspector ...")
-  COLLECT_AND_INSTALL_OCCT_HEADER_FILES ("${CMAKE_BINARY_DIR}" "${BUILD_TOOL_TOOLKITS}" "tools" "${INSTALL_DIR_INCLUDE}/inspector")
-endif()
-
 # OCCT samples
 # get absolute path from INSTALL_DIR
 set (INSTALL_DIR_ABSOLUTE "${INSTALL_DIR}")
@@ -1227,13 +1203,6 @@ if (MSVC AND 3RDPARTY_DLL_DIRS)
   endif()
 endif()
 
-# include patched toolkit projects or original ones
-if (BUILD_TOOL_TOOLKITS)
-  foreach (BUILD_TOOL_TOOLKIT ${BUILD_TOOL_TOOLKITS})
-    OCCT_ADD_SUBDIRECTORY ("tools/${BUILD_TOOL_TOOLKIT}")
-  endforeach()
-endif()
-
 message (STATUS "Info: \(${CURRENT_TIME}\) OCCT toolkits processed")
 # samples do not support patch usage
 if (BUILD_SAMPLES_MFC OR BUILD_SAMPLES_QT)
@@ -1255,7 +1224,7 @@ endif()
 
 OCCT_MODULES_AND_TOOLKITS (SAMPLES "SAMPLES_TOOLKITS" OCCT_SAMPLES)
 
-if (BUILD_Inspector OR BUILD_SAMPLES_QT)
+if (BUILD_SAMPLES_QT)
   if (BUILD_SAMPLES_QT)
     if (NOT Qt5_FOUND OR "${Qt5Gui_EGL_INCLUDE_DIRS}" STREQUAL "" OR NOT WIN32)
       list (REMOVE_ITEM qt_SAMPLES_TOOLKITS AndroidQt)
@@ -1284,15 +1253,6 @@ if (BUILD_MODULE_UwpSample)
   add_subdirectory(samples/xaml)
 endif()
 
-if (BUILD_TOOL_TOOLKITS)
-  install (FILES "${CMAKE_SOURCE_DIR}/adm/templates/inspector.${SCRIPT_EXT}" DESTINATION  "${INSTALL_DIR_SCRIPT}"
-          PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
-
-  set (OpenCASCADE_BINARY_DIR "${INSTALL_DIR}/${INSTALL_DIR_BIN}")
-  # patch TInspectorEXE
-  OCCT_CONFIGURE ("adm/templates/TInspectorEXE.vcxproj.user.in" "${CMAKE_BINARY_DIR}/tools/TInspectorEXE/TInspectorEXE.vcxproj.user")
-endif()
-
 # Prepare variables for configuration of OpenCASCADE cmake config file
 set (OCCT_MODULES_ENABLED)
 set (OCCT_LIBRARIES)
diff --git a/adm/TOOLS b/adm/TOOLS
deleted file mode 100644
index 57ddcfcc64..0000000000
--- a/adm/TOOLS
+++ /dev/null
@@ -1,4 +0,0 @@
-TModelingData TKShapeView TKMessageModel TKMessageView
-TVisualization TKView TKVInspector
-TApplicationFramework TKTreeModel TKTInspectorAPI TKDFBrowser
-TTool TKTInspector TKToolsDraw TInspectorEXE
\ No newline at end of file
diff --git a/adm/UDLIST b/adm/UDLIST
index 9441779af1..f32a3efad7 100644
--- a/adm/UDLIST
+++ b/adm/UDLIST
@@ -472,26 +472,6 @@ n RWGltf
 n RWMesh
 n RWObj
 n RWPly
-n DFBrowser
-n DFBrowserPane
-n DFBrowserPaneXDE
-n ShapeView
-n TInspector
-n TInspectorAPI
-x TInspectorEXE
-t TKDFBrowser
-t TKShapeView
-t TKTInspector
-t TKTInspectorAPI
-t TKToolsDraw
-t TKTreeModel
-t TKView
-t TKVInspector
-n ToolsDraw
-n TreeModel
-n View
-n ViewControl
-n VInspector
 n Express
 t TKExpress
 x ExpToCasExe
diff --git a/adm/cmake/occt_toolkit_prepare_tool.cmake b/adm/cmake/occt_toolkit_prepare_tool.cmake
deleted file mode 100644
index eed173ae63..0000000000
--- a/adm/cmake/occt_toolkit_prepare_tool.cmake
+++ /dev/null
@@ -1,13 +0,0 @@
-if ("${TARGET_FOLDER}" STREQUAL "")
-  set (USE_QT ON)
-  set (RELATIVE_DIR "tools")
-  set (MODULES_LIST ${OCCT_TOOLS})
-  set (TARGET_FOLDER "Tools")
-  set (TOOLKITS_NAME_SUFFIX "TOOL_TOOLKITS")
-else()
-  unset (USE_QT)
-  unset (RELATIVE_DIR)
-  unset (MODULES_LIST)
-  unset (TARGET_FOLDER)
-  unset (TOOLKITS_NAME_SUFFIX)
-endif("${TARGET_FOLDER}" STREQUAL "")
diff --git a/adm/cmake/vardescr.cmake b/adm/cmake/vardescr.cmake
index d0cdd6946b..33702f089d 100644
--- a/adm/cmake/vardescr.cmake
+++ b/adm/cmake/vardescr.cmake
@@ -137,13 +137,6 @@ set (BUILD_SAMPLES_QT_DESCR
 These samples show some possibilities of using OCCT and they can be executed
 with script samples.bat from the installation directory (INSTALL_DIR)")
 
-set (BUILD_Inspector_DESCR
-"Indicates whether OCCT inspector should be built together with OCCT.
-This inspector provides functionality to interactively inspect low-level content
-of the OCAF data model, OCCT viewer, etc. have been introduced in OCCT.
-It can be executed with script inspector.bat from the installation directory (INSTALL_DIR) or
-using 'tinspector' command in DRAW interpretator")
-
 set (BUILD_MODULE_UwpSample_DESCR
 "Indicates whether OCCT UWP sample should be built together with OCCT.")
 
diff --git a/adm/scripts/cmake_custom.bat.template b/adm/scripts/cmake_custom.bat.template
index fabb66c5a1..52bea95fd3 100644
--- a/adm/scripts/cmake_custom.bat.template
+++ b/adm/scripts/cmake_custom.bat.template
@@ -16,7 +16,6 @@ rem set "BUILD_DIR=build-vs%VS%-%VSPLATFORM%"
 rem set "INSTALL_DIR=%SrcRoot%\install"
 
 rem set BUILD_DOC_Overview=OFF
-rem set BUILD_Inspector=OFF
 rem set BUILD_LIBRARY_TYPE=Shared
 rem set BUILD_RELEASE_DISABLE_EXCEPTIONS=ON
 rem set BUILD_WITH_DEBUG=OFF
diff --git a/adm/scripts/cmake_custom.sh.template b/adm/scripts/cmake_custom.sh.template
index b628e4a87e..0a164b5543 100644
--- a/adm/scripts/cmake_custom.sh.template
+++ b/adm/scripts/cmake_custom.sh.template
@@ -11,7 +11,6 @@ FREETYPE_DIR="$OCCT3RDPARTY/freetype-2.7.1"
 #INSTALL_DIR="$SrcRoot/install"
 
 #BUILD_DOC_Overview=OFF
-#BUILD_Inspector=OFF
 #BUILD_LIBRARY_TYPE=Shared
 #BUILD_RELEASE_DISABLE_EXCEPTIONS=ON
 #BUILD_WITH_DEBUG=OFF
diff --git a/adm/scripts/cmake_gen.bat b/adm/scripts/cmake_gen.bat
index 6a1651ce0e..6a2545fcc1 100644
--- a/adm/scripts/cmake_gen.bat
+++ b/adm/scripts/cmake_gen.bat
@@ -17,7 +17,6 @@ set "INSTALL_DIR=%SrcRoot%\install"
 
 set BUILD_ADDITIONAL_TOOLKITS=
 set BUILD_DOC_Overview=OFF
-set BUILD_Inspector=OFF
 set BUILD_LIBRARY_TYPE=Shared
 set BUILD_RELEASE_DISABLE_EXCEPTIONS=ON
 set BUILD_WITH_DEBUG=OFF
@@ -58,7 +57,6 @@ cmake -G "%arch_compile%" ^
   -D 3RDPARTY_DIR:STRING="%OCCT3RDPARTY%" ^
   -D BUILD_ADDITIONAL_TOOLKITS:STRING="%BUILD_ADDITIONAL_TOOLKITS%" ^
   -D BUILD_DOC_Overview:BOOL=%BUILD_DOC_Overview% ^
-  -D BUILD_Inspector:BOOL=%BUILD_Inspector% ^
   -D BUILD_LIBRARY_TYPE:STRING=%BUILD_LIBRARY_TYPE% ^
   -D BUILD_MODULE_ApplicationFramework:BOOL=%BUILD_MODULE_ApplicationFramework% ^
   -D BUILD_MODULE_DataExchange:BOOL=%BUILD_MODULE_DataExchange% ^
diff --git a/adm/scripts/cmake_gen.sh b/adm/scripts/cmake_gen.sh
index 7ebd7d1e6d..fd38c6e8d4 100755
--- a/adm/scripts/cmake_gen.sh
+++ b/adm/scripts/cmake_gen.sh
@@ -22,7 +22,6 @@ INSTALL_DIR_LIB=lin64/gcc/lib$DEB
 
 BUILD_ADDITIONAL_TOOLKITS=
 BUILD_DOC_Overview=OFF
-BUILD_Inspector=OFF
 BUILD_LIBRARY_TYPE=Shared
 BUILD_RELEASE_DISABLE_EXCEPTIONS=ON
 BUILD_WITH_DEBUG=OFF
@@ -59,7 +58,6 @@ cmake -G "Unix Makefiles" \
   -D 3RDPARTY_FREETYPE_DIR:PATH="$FREETYPE_DIR" \
   -D BUILD_ADDITIONAL_TOOLKITS:STRING="$BUILD_ADDITIONAL_TOOLKITS" \
   -D BUILD_DOC_Overview:BOOL=$BUILD_DOC_Overview \
-  -D BUILD_Inspector:BOOL=$BUILD_Inspector \
   -D BUILD_LIBRARY_TYPE:STRING=$BUILD_LIBRARY_TYPE \
   -D BUILD_MODULE_ApplicationFramework:BOOL=$BUILD_MODULE_ApplicationFramework \
   -D BUILD_MODULE_DataExchange:BOOL=$BUILD_MODULE_DataExchange \
diff --git a/adm/templates/TInspectorEXE.vcxproj.user.in b/adm/templates/TInspectorEXE.vcxproj.user.in
deleted file mode 100644
index ff4fa981b7..0000000000
--- a/adm/templates/TInspectorEXE.vcxproj.user.in
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|@X_COMPILER_BITNESS@'">
-  <LocalDebuggerEnvironment>CASROOT=@CMAKE_SOURCE_DIR@
-CSF_OCCTDataPath=@CMAKE_SOURCE_DIR@/data
-QTDIR=@3RDPARTY_QT_DIR@
-PATH=@3RDPARTY_DLL_DIRS_FOR_PATH@;@OpenCASCADE_BINARY_DIR@;%PATH%
- </LocalDebuggerEnvironment>
- <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
- <LocalDebuggerWorkingDirectory>@CMAKE_BINARY_DIR@</LocalDebuggerWorkingDirectory>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|@X_COMPILER_BITNESS@'">
-  <LocalDebuggerEnvironment>CASROOT=@CMAKE_SOURCE_DIR@
-CSF_OCCTDataPath=@CMAKE_SOURCE_DIR@/data
-QTDIR=@3RDPARTY_QT_DIR@
-PATH=@3RDPARTY_DLL_DIRS_FOR_PATH@;@OpenCASCADE_BINARY_DIR@i;%PATH%
- </LocalDebuggerEnvironment>
- <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
- <LocalDebuggerWorkingDirectory>@CMAKE_BINARY_DIR@</LocalDebuggerWorkingDirectory>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|@X_COMPILER_BITNESS@'">
-  <LocalDebuggerEnvironment>CASROOT=@CMAKE_SOURCE_DIR@
-CSF_OCCTDataPath=@CMAKE_SOURCE_DIR@/data
-QTDIR=@3RDPARTY_QT_DIR@
-PATH=@3RDPARTY_DLL_DIRS_FOR_PATH@;@OpenCASCADE_BINARY_DIR@d;%PATH%
- </LocalDebuggerEnvironment>
- <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
- <LocalDebuggerWorkingDirectory>@CMAKE_BINARY_DIR@</LocalDebuggerWorkingDirectory>
- </PropertyGroup>
-</Project>
\ No newline at end of file
diff --git a/adm/templates/inspector.bat b/adm/templates/inspector.bat
deleted file mode 100644
index 3ffa7ad955..0000000000
--- a/adm/templates/inspector.bat
+++ /dev/null
@@ -1,17 +0,0 @@
-@echo off
-
-rem Use:
-rem - first argument specifies version of Visual Studio (vc8, vc9, or vc10),
-rem - second argument specifies architecture (win32 or win64),
-rem - third argument specifies build mode (Debug or Release)
-rem - fourth and next arguments specify loaded tool plugins
-rem     The arguments are: dfbrowser shapeview vinspector
-rem     If there are no tool plugins are specified, all plugins will be loaded
-rem Default options are:
-rem   vc8 win32 Release
-
-rem Setup environment and launch TInspector
-call "%~dp0env.bat" %1 %2 %3
-
-TInspectorEXE.exe %*
-
diff --git a/adm/templates/inspector.sh b/adm/templates/inspector.sh
deleted file mode 100644
index d79f099d75..0000000000
--- a/adm/templates/inspector.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/bash
-
-aCurrentPath="$PWD"
-aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD";
-
-source "${aScriptPath}/env.sh" "$1"
-
-cd ${aCurrentPath}
-TInspectorEXE
diff --git a/dox/FILES_HTML.txt b/dox/FILES_HTML.txt
index fbfcb40d4c..ebfe027e0a 100644
--- a/dox/FILES_HTML.txt
+++ b/dox/FILES_HTML.txt
@@ -48,7 +48,6 @@ user_guides/xde/xde.md
 user_guides/de_wrapper/de_wrapper.md
 user_guides/ocaf/ocaf.md
 user_guides/draw_test_harness/draw_test_harness.md
-user_guides/inspector/inspector.md
 user_guides/vis/vis.md
 
 specification/specification.md
diff --git a/dox/FILES_PDF.txt b/dox/FILES_PDF.txt
index e67ee8482f..68bd191766 100644
--- a/dox/FILES_PDF.txt
+++ b/dox/FILES_PDF.txt
@@ -21,7 +21,6 @@ user_guides/iges/iges.md
 user_guides/step/step.md
 user_guides/xde/xde.md
 user_guides/de_wrapper/de_wrapper.md
-user_guides/inspector/inspector.md
 user_guides/draw_test_harness/draw_test_harness.md
 
 contribution/contribution_workflow/contribution_workflow.md
diff --git a/dox/samples/novice_guide.md b/dox/samples/novice_guide.md
index 09568ee2e4..9818c843a6 100644
--- a/dox/samples/novice_guide.md
+++ b/dox/samples/novice_guide.md
@@ -62,7 +62,6 @@ Additionally, @ref occt_user_guides__modeling_algos "Modeling Algorithms" are us
 
 The **Topology** section of the Overview demonstrates the functions used in 3D operations.
 Multiple use cases are provided, including different object intersections, modifying and calculations.
-Some of these use cases are described in the documentation, such as @ref occt_user_guides__inspector "Inspector" usage.
 
 @figure{sample_overview_qt_topology.png,"",240} height=440px
 
diff --git a/dox/user_guides/draw_test_harness/draw_test_harness.md b/dox/user_guides/draw_test_harness/draw_test_harness.md
index 4a206cd563..10cc3e30fb 100644
--- a/dox/user_guides/draw_test_harness/draw_test_harness.md
+++ b/dox/user_guides/draw_test_harness/draw_test_harness.md
@@ -10885,6 +10885,7 @@ mdist
 
 
 This section describes commands that make possible to use Inspector.
+Inspector available in https://github.com/Open-Cascade-SAS/Inspector repository.
 
 @subsection occt_draw_13_1 tinspector
 
diff --git a/dox/user_guides/inspector/images/3DView.png b/dox/user_guides/inspector/images/3DView.png
deleted file mode 100644
index 71c00818e5..0000000000
Binary files a/dox/user_guides/inspector/images/3DView.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/3DView_elements.svg b/dox/user_guides/inspector/images/3DView_elements.svg
deleted file mode 100644
index 71a18b19d0..0000000000
--- a/dox/user_guides/inspector/images/3DView_elements.svg
+++ /dev/null
@@ -1,224 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="165.36458mm"
-   height="99.483337mm"
-   viewBox="0 0 165.36458 99.483337"
-   version="1.1"
-   id="svg8"
-   sodipodi:docname="3DView_elements.svg"
-   inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
-  <defs
-     id="defs2" />
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="0.98994949"
-     inkscape:cx="237.05748"
-     inkscape:cy="217.01184"
-     inkscape:document-units="mm"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     inkscape:window-width="1410"
-     inkscape:window-height="786"
-     inkscape:window-x="265"
-     inkscape:window-y="101"
-     inkscape:window-maximized="0"
-     fit-margin-top="0"
-     fit-margin-left="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     showborder="true"
-     inkscape:showpageshadow="false" />
-  <metadata
-     id="metadata5">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="translate(-208.35938,-140.66904)">
-    <rect
-       style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#000000;stroke-width:0.52916667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4147-9"
-       width="164.83542"
-       height="98.95417"
-       x="208.62396"
-       y="140.93362"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:#bfbfbf;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.52916664;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5"
-       width="155.95102"
-       height="20.214758"
-       x="212.62312"
-       y="145.17099"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:#bfbfbf;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.52916664;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4159-1"
-       width="155.83388"
-       height="64.776878"
-       x="212.62471"
-       y="170.05089"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.36620295;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4195-1-1"
-       width="30.417513"
-       height="11.316654"
-       x="286.53876"
-       y="149.43106"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.36620295;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4195-1-5-9"
-       width="30.417513"
-       height="11.316654"
-       x="321.21384"
-       y="149.43106"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.38666677px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="295.72775"
-       y="156.1628"
-       id="text5675-5"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5677-3"
-         x="295.72775"
-         y="156.1628"
-         style="font-size:3.88055563px;line-height:1.25;stroke-width:0.28222224px">Single</tspan></text>
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.38666677px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="331.03946"
-       y="156.53418"
-       id="text5679-5"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5681-0"
-         x="331.03946"
-         y="156.53418"
-         style="font-size:3.88055563px;line-height:1.25;stroke-width:0.28222224px">Clean</tspan></text>
-    <rect
-       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.45057005;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4195-8-33"
-       width="14.354354"
-       height="56.42762"
-       x="216.9996"
-       y="174.34537"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.83517319;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4195-7-0"
-       width="67.939919"
-       height="26.352776"
-       x="265.93634"
-       y="189.26295"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.3866663px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222221px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="295.6308"
-       y="201.46571"
-       id="text5683-5-2"
-       transform="scale(0.98830373,1.0118347)"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5685-3-7"
-         x="295.6308"
-         y="201.46571"
-         style="font-size:3.83516741px;line-height:1.25;stroke-width:0.28222221px">3D view</tspan></text>
-    <rect
-       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.36620298;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4195-1-1-3"
-       width="30.417513"
-       height="11.316654"
-       x="217.1886"
-       y="149.43106"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.38666677px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="227.84984"
-       y="156.48491"
-       id="text5675-5-2"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5677-3-2"
-         x="227.84984"
-         y="156.48491"
-         style="font-size:3.88055563px;line-height:1.25;stroke-width:0.28222224px">View</tspan></text>
-    <rect
-       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.36620298;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4195-1-1-9"
-       width="30.417513"
-       height="11.316654"
-       x="251.86369"
-       y="149.43106"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.38666677px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="262.35156"
-       y="156.53418"
-       id="text5675-5-9"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5677-3-0"
-         x="262.35156"
-         y="156.53418"
-         style="font-size:3.88055563px;line-height:1.25;stroke-width:0.28222224px">Multi</tspan></text>
-  </g>
-</svg>
diff --git a/dox/user_guides/inspector/images/3DView_set_orientation.png b/dox/user_guides/inspector/images/3DView_set_orientation.png
deleted file mode 100644
index 605ec83b80..0000000000
Binary files a/dox/user_guides/inspector/images/3DView_set_orientation.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/TStandaloneEXE.png b/dox/user_guides/inspector/images/TStandaloneEXE.png
deleted file mode 100644
index 6cdd5c902f..0000000000
Binary files a/dox/user_guides/inspector/images/TStandaloneEXE.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/TStandaloneEXE_open.png b/dox/user_guides/inspector/images/TStandaloneEXE_open.png
deleted file mode 100644
index 806efe2d75..0000000000
Binary files a/dox/user_guides/inspector/images/TStandaloneEXE_open.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/VStudio_projects.png b/dox/user_guides/inspector/images/VStudio_projects.png
deleted file mode 100644
index 1d2f1626ed..0000000000
Binary files a/dox/user_guides/inspector/images/VStudio_projects.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/dfbrowser.png b/dox/user_guides/inspector/images/dfbrowser.png
deleted file mode 100644
index 7584280525..0000000000
Binary files a/dox/user_guides/inspector/images/dfbrowser.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/dfbrowser_elements.svg b/dox/user_guides/inspector/images/dfbrowser_elements.svg
deleted file mode 100644
index a766d8e860..0000000000
--- a/dox/user_guides/inspector/images/dfbrowser_elements.svg
+++ /dev/null
@@ -1,27 +0,0 @@
-<svg width="609" height="426" xmlns="http://www.w3.org/2000/svg">
- <g id="Layer_1">
-  <title>Layer 1</title>
-  <rect stroke="#58a50b" id="svg_1" height="424.00001" width="605" y="-0.00001" x="0.5" stroke-width="4" fill="#ffffff"/>
-  <rect id="svg_2" height="89" width="575" y="16" x="13.5" stroke-width="4" stroke="#58a50b" fill="#66af1c"/>
-  <rect stroke="#58a50b" id="svg_3" height="280" width="277.99999" y="121" x="16.5" stroke-width="4" fill="#66af1c"/>
-  <rect stroke="#58a50b" id="svg_4" height="122" width="277.99999" y="120" x="309.5" stroke-width="4" fill="#66af1c"/>
-  <rect stroke="#58a50b" id="svg_5" height="140" width="277.99999" y="256" x="310.5" stroke-width="4" fill="#66af1c"/>
-  <rect id="svg_6" height="64" width="219" y="184" x="47.5" stroke-width="4" stroke="#58a50b" fill="#ffffff"/>
-  <rect id="svg_7" height="40" width="277" y="36" x="30.5" stroke-width="4" stroke="#58a50b" fill="#ffffff"/>
-  <rect stroke="#58a50b" id="svg_8" height="40" width="112" y="36" x="321.5" stroke-width="4" fill="#ffffff"/>
-  <rect stroke="#58a50b" id="svg_10" height="40" width="119" y="36" x="446.5" stroke-width="4" fill="#ffffff"/>
-  <text style="cursor: move;" xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_11" y="61" x="98.5" stroke-width="0" stroke="#58a50b" fill="#000000">Tree Navigation</text>
-  <text xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_12" y="63" x="338.5" stroke-width="0" stroke="#58a50b" fill="#000000">Update</text>
-  <text xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_13" y="65" x="474.5" stroke-width="0" stroke="#58a50b" fill="#ffffff">Search</text>
-  <text style="cursor: move;" xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_14" y="62" x="475.5" stroke-width="0" stroke="#58a50b" fill="#000000">Search</text>
-  <rect stroke="#58a50b" id="svg_20" height="54" width="136.99999" y="291" x="318.5" stroke-width="4" fill="#ffffff"/>
-  <rect stroke="#58a50b" id="svg_21" height="52" width="188" y="180" x="391.5" stroke-width="4" fill="#ffffff"/>
-  <rect stroke="#58a50b" id="svg_22" height="54" width="163" y="136" x="323.5" stroke-width="4" fill="#ffffff"/>
-  <rect stroke="#58a50b" id="svg_23" height="53" width="146" y="317" x="426.5" stroke-width="4" fill="#ffffff"/>
-  <text xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_27" y="170" x="338.5" stroke-width="0" stroke="#58a50b" fill="#000000">Property panel</text>
-  <text xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_28" y="227" x="83.5" stroke-width="0" stroke="#58a50b" fill="#000000">OCAF tree view</text>
-  <text xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="21" id="svg_30" y="322" x="322.5" stroke-width="0" stroke="#58a50b" fill="#000000">Dump View</text>
-  <text xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_31" y="352" x="459.5" stroke-width="0" stroke="#58a50b" fill="#000000">3D View</text>
-  <text style="cursor: move;" xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="18" id="svg_32" y="214" x="398.5" stroke-width="0" stroke="#58a50b" fill="#000000">Property panel (custom)</text>
- </g>
-</svg>
\ No newline at end of file
diff --git a/dox/user_guides/inspector/images/dfbrowser_selection_in_tree_view.svg b/dox/user_guides/inspector/images/dfbrowser_selection_in_tree_view.svg
deleted file mode 100644
index 31e886b4cb..0000000000
--- a/dox/user_guides/inspector/images/dfbrowser_selection_in_tree_view.svg
+++ /dev/null
@@ -1,218 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="172.24374mm"
-   height="92.868752mm"
-   viewBox="0 0 172.24374 92.868752"
-   version="1.1"
-   id="svg3735"
-   inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
-   sodipodi:docname="dfbrowser_selection_in_tree_view.svg">
-  <defs
-     id="defs3729">
-    <marker
-       inkscape:stockid="Arrow2Lend"
-       orient="auto"
-       refY="0"
-       refX="0"
-       id="Arrow2Lend-21-01"
-       style="overflow:visible"
-       inkscape:isstock="true">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3705-7-5"
-         style="fill:#78943d;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
-         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
-         transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
-    </marker>
-    <marker
-       inkscape:stockid="Arrow2Lend"
-       orient="auto"
-       refY="0"
-       refX="0"
-       id="Arrow2Lend-2-4"
-       style="overflow:visible"
-       inkscape:isstock="true">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3705-3-0"
-         style="fill:#78943d;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
-         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
-         transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
-    </marker>
-    <marker
-       inkscape:stockid="Arrow2Lend"
-       orient="auto"
-       refY="0"
-       refX="0"
-       id="Arrow2Lend-3"
-       style="overflow:visible"
-       inkscape:isstock="true">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3705-1"
-         style="fill:#78943d;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
-         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
-         transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
-    </marker>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="1"
-     inkscape:cx="529.17338"
-     inkscape:cy="317.0623"
-     inkscape:document-units="mm"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     fit-margin-top="0"
-     fit-margin-left="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     inkscape:showpageshadow="false"
-     inkscape:snap-nodes="false"
-     inkscape:snap-global="false"
-     inkscape:window-width="1332"
-     inkscape:window-height="784"
-     inkscape:window-x="581"
-     inkscape:window-y="97"
-     inkscape:window-maximized="0" />
-  <metadata
-     id="metadata3732">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="translate(-2.324585,-55.529915)">
-    <image
-       y="55.529915"
-       x="2.324585"
-       id="image4288"
-       xlink:href="data:image/png;base64,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 Q/8f/KdIsRN9rswAAAAASUVORK5CYII= "
-       style="image-rendering:optimizeSpeed"
-       preserveAspectRatio="none"
-       height="92.868752"
-       width="172.24374" />
-    <rect
-       y="70.645706"
-       x="73.434807"
-       height="38.560051"
-       width="100.79762"
-       id="rect4159-3-7"
-       style="opacity:0.23600003;fill:#9bbb59;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.50258124;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       y="61.046356"
-       x="17.609051"
-       height="8.0621023"
-       width="107.38746"
-       id="rect4159-3-44-2"
-       style="opacity:0.21300001;fill:#9bbb59;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.23719928;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <path
-       style="fill:none;stroke:#78943d;stroke-width:0.55221736;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.31330393, 1.10443464;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#Arrow2Lend-3)"
-       d="M 52.594602,136.48855 90.93033,67.622602"
-       id="path3682-9"
-       inkscape:connector-curvature="0"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <path
-       style="fill:none;stroke:#78943d;stroke-width:0.47015369;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.82092189, 0.94030729;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#Arrow2Lend-2-4)"
-       d="M 66.379796,136.99632 99.201717,94.430987"
-       id="path3682-3-6"
-       inkscape:connector-curvature="0"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <path
-       style="fill:none;stroke:#78943d;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.17500011, 1.05833337;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#Arrow2Lend-21-01)"
-       d="m 70.56271,136.99195 44.37875,-7.99632"
-       id="path3682-2-8"
-       inkscape:connector-curvature="0"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       y="60.876686"
-       x="18.080685"
-       height="8.3825922"
-       width="107.21016"
-       id="rect4159-3-4-8-3"
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.52916667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       y="69.93074"
-       x="72.507774"
-       height="39.628773"
-       width="101.44677"
-       id="rect4159-3-4-8-39"
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.52916664;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       y="111.37624"
-       x="73.15773"
-       height="35.124645"
-       width="100.82154"
-       id="rect4159-3-7-8"
-       style="opacity:0.23600003;fill:#9bbb59;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.47972783;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       y="110.966"
-       x="72.49575"
-       height="36.098152"
-       width="101.47084"
-       id="rect4159-3-4-8-39-4"
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.52916667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <image
-       y="55.529915"
-       x="167.95375"
-       id="image1593"
-       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAIAAABLixI0AAAAA3NCSVQICAjb4U/gAAAAsElEQVQ4
-jcWU4QnEIAyFtWSKCg4hbucmzuQUYufI/fCQeG1VTODer5TCx3tJjA4hKCGBc857zwfFGKFW1tpt
-Ss65FgffUVPHQkQxFlMdS2stxpLMyPQF9AMRG+6ROzYObz9KuVi+qIw5xVjqFnM6mdF+0ZgrkUdz
-NOasiFKulciT/aq4xd7N92t9CP9+27rXM2vxDVH7tN68ORXx05P9+3Vv7nfv283mCJRSKSU+SFgf
-ylJCrIGwaxIAAAAASUVORK5CYII=
-"
-       style="image-rendering:optimizeSpeed"
-       preserveAspectRatio="none"
-       height="6.6145835"
-       width="6.6145835" />
-  </g>
-</svg>
diff --git a/dox/user_guides/inspector/images/display_additional_presentation.png b/dox/user_guides/inspector/images/display_additional_presentation.png
deleted file mode 100644
index 8b4eda8716..0000000000
Binary files a/dox/user_guides/inspector/images/display_additional_presentation.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/display_main_presentation.png b/dox/user_guides/inspector/images/display_main_presentation.png
deleted file mode 100644
index 63d3079b51..0000000000
Binary files a/dox/user_guides/inspector/images/display_main_presentation.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/drawexe_tinspector.png b/dox/user_guides/inspector/images/drawexe_tinspector.png
deleted file mode 100644
index 5cb0eabeec..0000000000
Binary files a/dox/user_guides/inspector/images/drawexe_tinspector.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/dump_attribute.png b/dox/user_guides/inspector/images/dump_attribute.png
deleted file mode 100644
index e86f09658e..0000000000
Binary files a/dox/user_guides/inspector/images/dump_attribute.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/messageview_dump_panel.png b/dox/user_guides/inspector/images/messageview_dump_panel.png
deleted file mode 100644
index 23c815dc0a..0000000000
Binary files a/dox/user_guides/inspector/images/messageview_dump_panel.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/messageview_elements.svg b/dox/user_guides/inspector/images/messageview_elements.svg
deleted file mode 100644
index 14bc397452..0000000000
--- a/dox/user_guides/inspector/images/messageview_elements.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg">
- <g id="Layer_1">
-  <title>Layer 1</title>
-  <rect stroke="#ff56ff" id="svg_1" height="296.99999" width="297.00002" y="1.6" x="1" stroke-width="4" fill="#ffffff"/>
-  <rect id="svg_3" height="120" width="136" y="22.6" x="153" stroke-width="4" stroke="#ff56ff" fill="#ff56ff"/>
-  <rect stroke="#ff56ff" id="svg_4" height="259.99999" width="126.99999" y="18.6" x="16" stroke-width="4" fill="#ff56ff"/>
-  <rect stroke="#ff56ff" id="svg_5" height="122" width="131" y="155.6" x="156" stroke-width="4" fill="#ff56ff"/>
-  <rect stroke="#ff56ff" id="svg_6" height="41.00001" width="125" y="87.6" x="17" stroke-width="4" fill="#ffffff"/>
-  <rect id="svg_7" height="3" width="2" y="364.6" x="89" stroke-width="4" stroke="#ff56ff" fill="#ffffff"/>
-  <rect stroke="#ffffff" id="svg_8" height="41.00001" width="117" y="126.6" x="21" stroke-width="4" fill="#ffffff"/>
-  <rect stroke="#ff56ff" id="svg_9" height="41.00001" width="125" y="63.6" x="164" stroke-width="4" fill="#ffffff"/>
-  <rect stroke="#ff56ff" id="svg_10" height="64.00001" width="114.00001" y="158.6" x="159" stroke-width="4" fill="#ffffff"/>
-  <rect stroke="#ff56ff" id="svg_11" height="41.00001" width="101.00001" y="215.6" x="184" stroke-width="4" fill="#ffffff"/>
-  <text transform="matrix(0.742836 0 0 0.850555 6.17194 14.6433)" stroke="#ff56ff" xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_13" y="119.6" x="24" stroke-width="0" fill="#000000">Message report</text>
-  <text style="cursor: move;" transform="matrix(0.742836 0 0 0.850555 6.17194 46.6433)" stroke="#ff56ff" xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_14" y="118.4243" x="24" stroke-width="0" fill="#000000">tree view</text>
-  <text style="cursor: move;" xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_15" y="90.6" x="167" stroke-width="0" stroke="#ff56ff" fill="#000000">Dump panel</text>
-  <text xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_16" y="245.6" x="190" stroke-width="0" stroke="#ff56ff" fill="#000000">3D View</text>
-  <text transform="matrix(0.784367 0 0 0.769922 36.8545 36.9383)" stroke="#ff56ff" xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_17" y="181.6" x="157" stroke-width="0" fill="#000000">Property panel</text>
-  <text transform="matrix(0.884685 0 0 0.774516 20.9874 38.7657)" stroke="#ff56ff" xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_18" y="206.5113" x="176.34827" stroke-width="0" fill="#000000">(custom)</text>
- </g>
-</svg>
\ No newline at end of file
diff --git a/dox/user_guides/inspector/images/messageview_pop_up_menu.png b/dox/user_guides/inspector/images/messageview_pop_up_menu.png
deleted file mode 100644
index 058d409447..0000000000
Binary files a/dox/user_guides/inspector/images/messageview_pop_up_menu.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/messageview_property_panel_custom.png b/dox/user_guides/inspector/images/messageview_property_panel_custom.png
deleted file mode 100644
index 8015a9d876..0000000000
Binary files a/dox/user_guides/inspector/images/messageview_property_panel_custom.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/messageview_view.png b/dox/user_guides/inspector/images/messageview_view.png
deleted file mode 100644
index 081e32bc7a..0000000000
Binary files a/dox/user_guides/inspector/images/messageview_view.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/preferences.png b/dox/user_guides/inspector/images/preferences.png
deleted file mode 100644
index 24221fda8b..0000000000
Binary files a/dox/user_guides/inspector/images/preferences.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/property_panel.png b/dox/user_guides/inspector/images/property_panel.png
deleted file mode 100644
index 84e1bbf169..0000000000
Binary files a/dox/user_guides/inspector/images/property_panel.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/property_panel_custom_array.png b/dox/user_guides/inspector/images/property_panel_custom_array.png
deleted file mode 100644
index 426c5157ed..0000000000
Binary files a/dox/user_guides/inspector/images/property_panel_custom_array.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/property_panel_custom_item_selection.svg b/dox/user_guides/inspector/images/property_panel_custom_item_selection.svg
deleted file mode 100644
index 73d74e2cfa..0000000000
--- a/dox/user_guides/inspector/images/property_panel_custom_item_selection.svg
+++ /dev/null
@@ -1,173 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="172.24374mm"
-   height="92.868752mm"
-   viewBox="0 0 172.24374 92.868752"
-   version="1.1"
-   id="svg3936"
-   inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
-   sodipodi:docname="property_panel_item_selection.svg">
-  <defs
-     id="defs3930">
-    <marker
-       inkscape:stockid="Arrow2Lend"
-       orient="auto"
-       refY="0"
-       refX="0"
-       id="Arrow2Lend-2-4-9"
-       style="overflow:visible"
-       inkscape:isstock="true">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3705-3-0-4"
-         style="fill:#78943d;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
-         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
-         transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
-    </marker>
-    <marker
-       inkscape:stockid="Arrow2Lend"
-       orient="auto"
-       refY="0"
-       refX="0"
-       id="Arrow2Lend-3-1"
-       style="overflow:visible"
-       inkscape:isstock="true">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3705-1-8"
-         style="fill:#78943d;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
-         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
-         transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
-    </marker>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="4"
-     inkscape:cx="585.11712"
-     inkscape:cy="337.7975"
-     inkscape:document-units="mm"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     inkscape:showpageshadow="false"
-     fit-margin-top="0"
-     fit-margin-left="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     inkscape:window-width="1252"
-     inkscape:window-height="826"
-     inkscape:window-x="276"
-     inkscape:window-y="50"
-     inkscape:window-maximized="0" />
-  <metadata
-     id="metadata3933">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="translate(103.1308,-102.39896)">
-    <image
-       y="102.39896"
-       x="-103.1308"
-       id="image1040"
-       xlink:href="data:image/png;base64,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 AElFTkSuQmCC "
-       style="image-rendering:optimizeSpeed"
-       preserveAspectRatio="none"
-       height="92.868752"
-       width="172.24374" />
-    <rect
-       y="157.29077"
-       x="-30.123583"
-       height="36.266384"
-       width="97.666809"
-       id="rect4159-3-7-2"
-       style="opacity:0.23600003;fill:#9bbb59;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.47977537;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       y="156.78819"
-       x="-30.438066"
-       height="37.271538"
-       width="98.295784"
-       id="rect4159-3-4-8-39-45"
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.52916664;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       y="153.00125"
-       x="-73.346046"
-       height="7.0100822"
-       width="41.7659"
-       id="rect4159-3-7-2-8"
-       style="opacity:0.23600003;fill:#9bbb59;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.13793828;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       y="152.9041"
-       x="-73.480537"
-       height="7.2043724"
-       width="42.03487"
-       id="rect4159-3-4-8-39-45-4"
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#78943d;stroke-width:0.5291667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <path
-       style="fill:none;stroke:#78943d;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.17500011, 1.05833337;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#Arrow2Lend-3-1)"
-       d="m -16.378334,132.08943 -28.478284,21.38872"
-       id="path3682-9-1"
-       inkscape:connector-curvature="0"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <path
-       style="fill:none;stroke:#78943d;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.17500011, 1.05833337;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#Arrow2Lend-2-4-9)"
-       d="m -14.861679,132.26224 34.426698,34.12532"
-       id="path3682-3-6-9"
-       inkscape:connector-curvature="0"
-       inkscape:export-filename="D:\OCCT\master_CR29018\dox\user_guides\inspector\images\selection_in_tree_view.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <image
-       y="102.39896"
-       x="62.498363"
-       id="image5982"
-       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAIAAABLixI0AAAAA3NCSVQICAjb4U/gAAAAsElEQVQ4
-jcWU4QnEIAyFtWSKCg4hbucmzuQUYufI/fCQeG1VTODer5TCx3tJjA4hKCGBc857zwfFGKFW1tpt
-Ss65FgffUVPHQkQxFlMdS2stxpLMyPQF9AMRG+6ROzYObz9KuVi+qIw5xVjqFnM6mdF+0ZgrkUdz
-NOasiFKulciT/aq4xd7N92t9CP9+27rXM2vxDVH7tN68ORXx05P9+3Vv7nfv283mCJRSKSU+SFgf
-ylJCrIGwaxIAAAAASUVORK5CYII=
-"
-       style="image-rendering:optimizeSpeed"
-       preserveAspectRatio="none"
-       height="6.6145835"
-       width="6.6145835" />
-  </g>
-</svg>
diff --git a/dox/user_guides/inspector/images/property_panel_custom_label.png b/dox/user_guides/inspector/images/property_panel_custom_label.png
deleted file mode 100644
index 9b8abedbaf..0000000000
Binary files a/dox/user_guides/inspector/images/property_panel_custom_label.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/property_panel_custom_named_data.png b/dox/user_guides/inspector/images/property_panel_custom_named_data.png
deleted file mode 100644
index ac5ba1b978..0000000000
Binary files a/dox/user_guides/inspector/images/property_panel_custom_named_data.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/property_panel_custom_simple_type.png b/dox/user_guides/inspector/images/property_panel_custom_simple_type.png
deleted file mode 100644
index f9832d6e79..0000000000
Binary files a/dox/user_guides/inspector/images/property_panel_custom_simple_type.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/property_panel_custom_tnaming_named_shape.png b/dox/user_guides/inspector/images/property_panel_custom_tnaming_named_shape.png
deleted file mode 100644
index af78a2587d..0000000000
Binary files a/dox/user_guides/inspector/images/property_panel_custom_tnaming_named_shape.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/property_panel_custom_tnaming_naming.png b/dox/user_guides/inspector/images/property_panel_custom_tnaming_naming.png
deleted file mode 100644
index e3c9952dfb..0000000000
Binary files a/dox/user_guides/inspector/images/property_panel_custom_tnaming_naming.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/property_panel_custom_tnaming_used_shapes.png b/dox/user_guides/inspector/images/property_panel_custom_tnaming_used_shapes.png
deleted file mode 100644
index 7bad62599d..0000000000
Binary files a/dox/user_guides/inspector/images/property_panel_custom_tnaming_used_shapes.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/property_panel_custom_tree_node.png b/dox/user_guides/inspector/images/property_panel_custom_tree_node.png
deleted file mode 100644
index a0e6f617e4..0000000000
Binary files a/dox/user_guides/inspector/images/property_panel_custom_tree_node.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/search.png b/dox/user_guides/inspector/images/search.png
deleted file mode 100644
index 9681b76184..0000000000
Binary files a/dox/user_guides/inspector/images/search.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/shapeview.png b/dox/user_guides/inspector/images/shapeview.png
deleted file mode 100644
index 0c335e4723..0000000000
Binary files a/dox/user_guides/inspector/images/shapeview.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/shapeview_elements.svg b/dox/user_guides/inspector/images/shapeview_elements.svg
deleted file mode 100644
index 228ee0848e..0000000000
--- a/dox/user_guides/inspector/images/shapeview_elements.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg">
- <g id="Layer_1">
-  <title>Layer 1</title>
-  <rect stroke-width="4" stroke="#ffaa56" id="svg_1" height="295" width="294.99999" y="2.59999" x="3" fill="#fff"/>
-  <rect id="svg_3" height="252" width="130" y="26.6" x="20" stroke-width="4" stroke="#ffaa56" fill="#ffaa56"/>
-  <rect stroke="#ffaa56" id="svg_4" height="121.00001" width="130" y="157.6" x="158" stroke-width="4" fill="#ffaa56"/>
-  <rect stroke="#ffaa56" id="svg_5" height="116.99999" width="130" y="25.6" x="159" stroke-width="4" fill="#ffaa56"/>
-  <rect stroke="#ffaa56" id="svg_10" height="83" width="120" y="97.6" x="24" stroke-width="0" fill="#ffffff"/>
-  <text xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_12" y="125.6" x="33" stroke-width="0" stroke="#7f7f2f" fill="#000000">Topo_DS</text>
-  <text xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_13" y="160.6" x="28" stroke-width="0" stroke="#7f7f2f" fill="#000000">Shape view</text>
-  <rect stroke="#ffaa56" id="svg_14" height="50" width="120" y="197.6" x="164" stroke-width="0" fill="#ffffff"/>
-  <text xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_15" y="231.6" x="184" stroke-width="0" stroke="#7f7f2f" fill="#000000">3D view</text>
-  <rect stroke="#ffaa56" id="svg_16" height="50" width="125.99999" y="59.6" x="161" stroke-width="0" fill="#ffffff"/>
-  <text transform="matrix(0.893464 0 0 0.962463 18.0458 2.59472)" stroke="#7f7f2f" xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_17" y="92.678" x="160" stroke-width="0" fill="#000000">Property panel</text>
- </g>
-</svg>
\ No newline at end of file
diff --git a/dox/user_guides/inspector/images/shapeview_property_panel.png b/dox/user_guides/inspector/images/shapeview_property_panel.png
deleted file mode 100644
index 198cdcb2a3..0000000000
Binary files a/dox/user_guides/inspector/images/shapeview_property_panel.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/shapeview_tree_columns.png b/dox/user_guides/inspector/images/shapeview_tree_columns.png
deleted file mode 100644
index 94cf959843..0000000000
Binary files a/dox/user_guides/inspector/images/shapeview_tree_columns.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/tinspector_elements.svg b/dox/user_guides/inspector/images/tinspector_elements.svg
deleted file mode 100644
index e112187b45..0000000000
--- a/dox/user_guides/inspector/images/tinspector_elements.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-<svg width="609" height="426" xmlns="http://www.w3.org/2000/svg">
-
- <g>
-  <title>Layer 1</title>
-  <rect stroke="#7f3f00" stroke-width="4" id="svg_2" height="419.99998" width="605.00004" y="2.8" x="1.99999" fill="#ffffff"/>
-  <rect id="svg_5" height="193" width="413" y="207.8" x="167" stroke-width="3" stroke="#08a4d8" fill="#ffffff"/>
-  <rect stroke="#f2780e" id="svg_6" height="193.99999" width="409.99997" y="173.8" x="137" opacity="NaN" stroke-width="3" fill="#ffffff"/>
-  <rect stroke="#d608cb" id="svg_7" height="192" width="404.99998" y="136.8" x="106" stroke-width="4" fill="#ffffff"/>
-  <rect stroke="#5fbf00" id="svg_9" height="193" width="406.00001" y="91.8" x="66.99999" stroke-width="4" fill="#ffffff"/>
-  <rect id="svg_10" height="43" width="137" y="23.8" x="19" stroke-width="4" stroke="#5fbf00" fill="#5fbf00"/>
-  <rect stroke="#d608cb" id="svg_16" height="43" width="137" y="23.8" x="163" stroke-width="4" fill="#ffffff"/>
-  <rect stroke="#f2780e" opacity="NaN" id="svg_17" height="42" width="135" y="23.8" x="309" stroke-width="3" fill="#ffffff"/>
-  <rect stroke="#08a4d8" id="svg_18" height="43" width="135" y="23.8" x="451" stroke-width="3" fill="#ffffff"/>
-  <text xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_19" y="52.8" x="32" stroke-width="0" stroke="#08a4d8" fill="#000000">DFBrowser</text>
-  <text transform="matrix(0.903837 0 0 1 19.0402 0)" stroke="#010b0f" xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_22" y="52.8" x="165.91458" stroke-width="0" fill="#000000">MessageView</text>
-  <text xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_23" y="52.8" x="325" stroke-width="0" stroke="#5fbf00" fill="#000000">ShapeView</text>
-  <text xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="24" id="svg_24" y="51.8" x="463" stroke-width="0" stroke="#7f3f00" fill="#000000">VInspector</text>
- </g>
-</svg>
\ No newline at end of file
diff --git a/dox/user_guides/inspector/images/treeview_preferences.svg b/dox/user_guides/inspector/images/treeview_preferences.svg
deleted file mode 100644
index 5627c577e9..0000000000
--- a/dox/user_guides/inspector/images/treeview_preferences.svg
+++ /dev/null
@@ -1,417 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="165.36458mm"
-   height="99.483337mm"
-   viewBox="0 0 165.36458 99.483337"
-   version="1.1"
-   id="svg8"
-   sodipodi:docname="treeview_preferences.svg"
-   inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
-  <defs
-     id="defs2">
-    <linearGradient
-       id="linearGradient920"
-       osb:paint="solid">
-      <stop
-         style="stop-color:#f0f0f0;stop-opacity:1;"
-         offset="0"
-         id="stop918" />
-    </linearGradient>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="0.98994949"
-     inkscape:cx="237.05748"
-     inkscape:cy="217.01184"
-     inkscape:document-units="mm"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     inkscape:window-width="1336"
-     inkscape:window-height="850"
-     inkscape:window-x="276"
-     inkscape:window-y="52"
-     inkscape:window-maximized="1"
-     fit-margin-top="0"
-     fit-margin-left="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     showborder="true"
-     inkscape:showpageshadow="false" />
-  <metadata
-     id="metadata5">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="translate(-208.35938,-140.66904)">
-    <rect
-       style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#000000;stroke-width:0.52916667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4147-9"
-       width="164.83542"
-       height="98.95417"
-       x="208.62396"
-       y="140.93362"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:#e3f4d7;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.52916667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4159-1"
-       width="155.83388"
-       height="89.326508"
-       x="212.62471"
-       y="145.50125"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.42238337;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4195-1-1"
-       width="40.466312"
-       height="11.316654"
-       x="280.74753"
-       y="149.43106"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.42572066;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4195-1-5-9"
-       width="41.108295"
-       height="11.316654"
-       x="321.21384"
-       y="149.43106"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.38666677px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="291.19687"
-       y="156.27933"
-       id="text5675-5"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5677-3"
-         x="291.19687"
-         y="156.27933"
-         style="font-size:3.88055563px;line-height:1.25;stroke-width:0.28222224px">Column_1</tspan></text>
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.38666677px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="331.87143"
-       y="156.27933"
-       id="text5679-5"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5681-0"
-         x="331.87143"
-         y="156.27933"
-         style="font-size:3.88055563px;line-height:1.25;stroke-width:0.28222224px">Column_4</tspan></text>
-    <rect
-       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.97454143;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4195-7-0"
-       width="145.13353"
-       height="68.954567"
-       x="217.1886"
-       y="160.74771"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5293566;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4195-1-1-3"
-       width="63.558933"
-       height="11.316654"
-       x="217.1886"
-       y="149.43106"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.38666677px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="243.21165"
-       y="156.4707"
-       id="text5675-5-2"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5677-3-2"
-         x="243.21165"
-         y="156.4707"
-         style="font-size:3.88055563px;line-height:1.25;stroke-width:0.28222224px">Name</tspan></text>
-    <rect
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.52916667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5-8"
-       width="63.558926"
-       height="80.271225"
-       x="217.1886"
-       y="149.43106"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.52916667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5-8-8"
-       width="40.466305"
-       height="80.271225"
-       x="280.74753"
-       y="149.43106"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.52916667;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5-8-8-8"
-       width="41.108303"
-       height="80.271225"
-       x="321.21384"
-       y="149.43106"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.1984375;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5-8-1"
-       width="63.558929"
-       height="11.316656"
-       x="217.1886"
-       y="149.43106"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.1984375;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5-8-1-0"
-       width="40.466309"
-       height="11.316656"
-       x="280.74753"
-       y="149.43106"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.1984375;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5-8-1-7"
-       width="41.108307"
-       height="11.316656"
-       x="321.21384"
-       y="149.43106"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:#f0f0f0;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.44990167;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5"
-       width="38.957039"
-       height="58.495327"
-       x="307.89423"
-       y="158.80739"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.38666677px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="317.94843"
-       y="174.62115"
-       id="text5675-5-4"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5677-3-6"
-         x="317.94843"
-         y="174.62115"
-         style="font-size:3.88055563px;line-height:1.25;stroke-width:0.28222224px">Column_1</tspan></text>
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.38666677px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="317.78735"
-       y="165.06331"
-       id="text5675-5-2-9"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5677-3-2-1"
-         x="317.78735"
-         y="165.06331"
-         style="font-size:3.88055563px;line-height:1.25;stroke-width:0.28222224px">Name</tspan></text>
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.38666677px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="317.94843"
-       y="184.37038"
-       id="text5679-5-9"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5681-0-2"
-         x="317.94843"
-         y="184.37038"
-         style="font-size:3.88055563px;line-height:1.25;stroke-width:0.28222224px">Column_2</tspan></text>
-    <rect
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.1984375;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5-8-1-8"
-       width="38.957031"
-       height="9.7492247"
-       x="307.89423"
-       y="158.80739"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.1984375;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5-8-1-8-8"
-       width="38.957035"
-       height="9.7492256"
-       x="307.89423"
-       y="168.55661"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.1984375;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5-8-1-8-7"
-       width="38.957035"
-       height="9.7492256"
-       x="307.89423"
-       y="178.30583"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.1984375;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5-8-1-8-4"
-       width="38.957035"
-       height="9.7492256"
-       x="307.89423"
-       y="188.05505"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.1984375;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5-8-1-8-2"
-       width="38.957035"
-       height="9.7492256"
-       x="307.89423"
-       y="197.80428"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <rect
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.1984375;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.29879999;stroke-opacity:1"
-       id="rect4157-5-8-1-8-71"
-       width="38.957035"
-       height="9.7492256"
-       x="307.89423"
-       y="207.5535"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <image
-       y="170.78539"
-       x="310.04617"
-       id="image1119"
-       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAA3NCSVQICAjb4U/gAAAAi0lEQVQ4 jWOccOIbA7mAiWydI0Lz+yd3yNR8bHHblvbEL2+fk6z52OK2uye2W8VW8ghL4tP8/skdNOfBdSpb eBFw9sWtc3dOyIHrx6MTi2ar2GpeYUmIfvw6GRgYGDGT569vX3ZPzH335A4DAwMenVhsZmBgYOPi cc2fLCSjgl8ndpuJB0MieQ4bzQCA/UWjCjrjVAAAAABJRU5ErkJggg== "
-       style="image-rendering:optimizeSpeed"
-       preserveAspectRatio="none"
-       height="5.2916665"
-       width="5.2916665" />
-    <image
-       y="161.03616"
-       x="310.04617"
-       id="image1119-4"
-       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAA3NCSVQICAjb4U/gAAAAi0lEQVQ4 jWOccOIbA7mAiWydI0Lz+yd3yNR8bHHblvbEL2+fk6z52OK2uye2W8VW8ghL4tP8/skdNOfBdSpb eBFw9sWtc3dOyIHrx6MTi2ar2GpeYUmIfvw6GRgYGDGT569vX3ZPzH335A4DAwMenVhsZmBgYOPi cc2fLCSjgl8ndpuJB0MieQ4bzQCA/UWjCjrjVAAAAABJRU5ErkJggg== "
-       style="image-rendering:optimizeSpeed"
-       preserveAspectRatio="none"
-       height="5.2916665"
-       width="5.2916665" />
-    <image
-       y="200.03305"
-       x="310.04617"
-       id="image1119-7"
-       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAA3NCSVQICAjb4U/gAAAAi0lEQVQ4 jWOccOIbA7mAiWydI0Lz+yd3yNR8bHHblvbEL2+fk6z52OK2uye2W8VW8ghL4tP8/skdNOfBdSpb eBFw9sWtc3dOyIHrx6MTi2ar2GpeYUmIfvw6GRgYGDGT569vX3ZPzH335A4DAwMenVhsZmBgYOPi cc2fLCSjgl8ndpuJB0MieQ4bzQCA/UWjCjrjVAAAAABJRU5ErkJggg== "
-       style="image-rendering:optimizeSpeed"
-       preserveAspectRatio="none"
-       height="5.2916665"
-       width="5.2916665" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.38666677px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="317.94843"
-       y="194.1196"
-       id="text5679-5-9-2"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5681-0-2-3"
-         x="317.94843"
-         y="194.1196"
-         style="font-size:3.88055563px;line-height:1.25;stroke-width:0.28222224px">Column_3</tspan></text>
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.38666677px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="317.94843"
-       y="203.86882"
-       id="text5679-5-9-4"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5681-0-2-9"
-         x="317.94843"
-         y="203.86882"
-         style="font-size:3.88055563px;line-height:1.25;stroke-width:0.28222224px">Column_4</tspan></text>
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-weight:normal;font-size:3.38666677px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.28222224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       x="317.94843"
-       y="213.61804"
-       id="text5679-5-9-9"
-       inkscape:export-filename="F:\OCC\master_CR29018\dox\user_guides\inspector\images\3DView.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"><tspan
-         sodipodi:role="line"
-         id="tspan5681-0-2-4"
-         x="317.94843"
-         y="213.61804"
-         style="font-size:3.88055563px;line-height:1.25;stroke-width:0.28222224px">Column_5</tspan></text>
-  </g>
-</svg>
diff --git a/dox/user_guides/inspector/images/vinspector.png b/dox/user_guides/inspector/images/vinspector.png
deleted file mode 100644
index 8f3fbfe308..0000000000
Binary files a/dox/user_guides/inspector/images/vinspector.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/vinspector_elements.svg b/dox/user_guides/inspector/images/vinspector_elements.svg
deleted file mode 100644
index 89fd298344..0000000000
--- a/dox/user_guides/inspector/images/vinspector_elements.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-<svg width="609" height="234" xmlns="http://www.w3.org/2000/svg">
- <g id="Layer_1">
-  <title>Layer 1</title>
-  <rect fill="#ffffff" stroke-width="4" x="3.5" y="3.2" width="603.99998" height="227.99999" id="svg_1" stroke="#007fff"/>
-  <rect stroke="#007fff" fill="#007fff" stroke-width="4" x="24.5" y="30.2" width="202" height="67" id="svg_8"/>
-  <rect stroke="#007fff" fill="#007fff" stroke-width="4" x="407.50001" y="29.19999" width="186.99999" height="185" id="svg_9"/>
-  <rect stroke="#007fff" fill="#ffffff" stroke-width="4" x="57.5" y="36.2" width="128" height="56" id="svg_11"/>
-  <rect stroke="#ffffff" fill="#ffffff" stroke-width="4" x="418.50001" y="91.2" width="163.99997" height="56" id="svg_13"/>
-  <text fill="#000000" stroke="#007fff" stroke-width="0" x="86.5" y="73.2" id="svg_14" font-size="24" font-family="Noto Sans JP" text-anchor="start" xml:space="preserve">Update</text>
-  <text fill="#000000" stroke="#007fff" stroke-width="0" x="458.5" y="127.2" id="svg_15" font-size="24" font-family="Noto Sans JP" text-anchor="start" xml:space="preserve">3D view</text>
-  <rect stroke="#007fff" fill="#007fff" stroke-width="4" x="22.5" y="113.2" width="206" height="102" id="svg_18"/>
-  <rect stroke="#ffffff" fill="#ffffff" stroke-width="4" x="27.5" y="138.2" width="194" height="56" id="svg_19"/>
-  <text fill="#000000" stroke="#007fff" stroke-width="0" x="30.5" y="174.2" id="svg_21" font-size="20" font-family="Noto Sans JP" text-anchor="start" xml:space="preserve">Presentations tree view</text>
-  <rect stroke="#007fff" fill="#007fff" stroke-width="4" x="239.5" y="30.19999" width="157" height="185" id="svg_2"/>
-  <rect stroke="#ffffff" fill="#ffffff" stroke-width="4" x="245.50002" y="84.2" width="147.99997" height="56" id="svg_3"/>
-  <text fill="#000000" stroke="#007fff" stroke-width="0" x="248.5" y="121.2" id="svg_5" font-size="24" font-family="Noto Sans JP" text-anchor="start" xml:space="preserve">Property panel</text>
- </g>
-
-</svg>
\ No newline at end of file
diff --git a/dox/user_guides/inspector/images/vinspector_light_setting.png b/dox/user_guides/inspector/images/vinspector_light_setting.png
deleted file mode 100644
index a91e1e8e13..0000000000
Binary files a/dox/user_guides/inspector/images/vinspector_light_setting.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/vinspector_property_panel.png b/dox/user_guides/inspector/images/vinspector_property_panel.png
deleted file mode 100644
index 7650dd5027..0000000000
Binary files a/dox/user_guides/inspector/images/vinspector_property_panel.png and /dev/null differ
diff --git a/dox/user_guides/inspector/images/vinspector_tree_columns.png b/dox/user_guides/inspector/images/vinspector_tree_columns.png
deleted file mode 100644
index 34617f8324..0000000000
Binary files a/dox/user_guides/inspector/images/vinspector_tree_columns.png and /dev/null differ
diff --git a/dox/user_guides/inspector/inspector.md b/dox/user_guides/inspector/inspector.md
deleted file mode 100644
index 59a0bb38ee..0000000000
--- a/dox/user_guides/inspector/inspector.md
+++ /dev/null
@@ -1,635 +0,0 @@
-Inspector  {#occt_user_guides__inspector}
-===============================
-
-@tableofcontents
- 
-@section occt_inspector_1 Introduction
-
-This manual explains how to use the 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 Modeling 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"| Modeling Data | *TopoDS_Shape* |
-| @ref occt_inspector_2_5 "MessageView"| Modeling Data | *Message_Report* |
-
-
-Each plugin implements logic of a corresponding OCCT component.
-
-Each of the listed plugins is embedded in the common framework, thus it is possible to manage, which plugins should be loaded by the Inspector, and to extend their number 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_4_1 "TInspectorEXE" section;
-2. Launch DRAW, load plugin INSPECTOR, and use *tinspector* command.
-   For more details, see @ref occt_inspector_4_2 "Launch in DRAW Test Harness" section.
-
-
-**Note**. If you have no Inspector library in your build directory, make sure that OCCT is compiled with *BUILD_Inspector* 
-option ON. For more details see @ref occt_inspector_5 "Build procedure".
-
-
-@section occt_inspector_2 Inspector Plugins
-
-@subsection occt_inspector_2_1 Overview
-
-Inspector consists of the following components:
-  * <b>buttons</b> to activate the corresponding plugin;
-  * <b>view area</b> 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 the content of *TDocStd_Application* in a tree view. It shows application documents, 
-the hierarchy of *TDF_Labels*, the content of *TDF_Attributes* and interconnection between attributes (e.g. references).
-Additionally there is a 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}
-
-<b>OCAF tree view</b>
-
-Each OCAF element has own tree view item:
-
-| Type | Tree item | Text | Description |
-| :----- | :----- | :----- | :----- |
-| *TDocStd_Application* | Application | *TDocStd_Application* | The root of tree view. Its children are documents.|
-| *TDocStd_Document* | Document | entry : name | A child of *Application* item. Its children are *Label* and *Attribute* items.<br> 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 | A child of a *Document* or another *Label* item. Its children and text view are the same as for Document item. |
-| *TDF_Attribute* | Attribute | attribute type [additional information] | A child of a *Label*. It has no children. <br> Text view is the attribute type *(DynamicType()->Name()* of *TDF_Attribute*) and additional information (a combination of attribute values). |
-
-
-Additional information about TDF_Attributes:
-
-| Type | Text |
-| :----- | :----- |
-| *TDocStd_Owner* | [storage format] |
-| *TDataStd_AsciiString*,<br> *TDataStd_Name*,<br> *TDataStd_Real*,<br> other *Simple* type attributes | [value] |
-| *TDataStd_BooleanList*,<br> *TDataStd_ExtStringList*,<br> other *List* attributes | [value_1 ... value_n] |
-| *TDataStd_BooleanArray*,<br> *TDataStd_ByteArray*,<br> other *Array* type attributes | [value_1 ... value_n] |
-| *TDataStd_TreeNode* | [tree node ID  ==> Father()->Label()] (if it has a father) or <br> [tree node ID <== First()->Label()] (if it has NO father)|
-| *TDataStd_TreeNode(XDE)* | [XDE tree node ID  ==> Father()->Label()] (if it has a father), <br> [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* | <b>dark green</b>, if the label has *TDataStd_Name* attribute, <br><b>light grey</b> if the label is empty (has no attributes on all levels of  hierarchy),<br> <b>black</b> otherwise. |
-| *TNaming_NamedShape* | <b>dark gray</b> for *TopAbs_FORWARD* orientation of *TopoDS_Shape*, <br> <b>gray</b> for *TopAbs_REVERSED* orientation of *TopoDS_Shape*, <br> <b>black</b> for other orientation. |
-
-
-Context pop-up 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. |
-
-<b>Property Panel</b>
-
-Property panel is used to display the result of <b>TDF_Attribute::Dump()</b> or <b>TDF_Label::Dump()</b> of the selected tree view item.
-The information is shown in one table.
-
-@figure{property_panel.png,"PropertyPanel",360}
-
-<b>Property Panel (custom)</b>
-
-Property panel (custom) is used to display the content of *Label* or *Attribute* tree view items or Search result view.
-The information is usually shown in one or several tables.
-
-*TDF_Attribute* has the following content in the Property Panel:
-
-<table>
-<tr><th>Type</th><th>Description</th><th>Content</th></tr>
-<tr><td><i>TDF_Label</i></td>
-    <td> a table of [entry or attribute name, value]</td>
-    <td>@figure{property_panel_custom_label.png, "",140}</td></tr>
-<tr><td><i>TDocStd_Owner</i>,<br> Simple type attributes, <br> List type attributes</td>
-    <td>a table of [method name, value]</td>
-    <td>@figure{property_panel_custom_simple_type.png, "",140}</td></tr>
-<tr><td><i>TDataStd_BooleanArray</i>,<br> <i>TDataStd_ByteArray</i>,<br> other Array type attributes</td>
-    <td>2 controls: <br> - a table of [array bound, value], <br> - a table of [method name, value] </td>
-    <td>@figure{property_panel_custom_array.png, "",140}</td></tr>
-<tr><td><i>TDataStd_TreeNode</i></td>
-    <td>2 controls: <br> - a table of [Tree ID, value] (visible only if Tree ID() != ID() ), <br> - a tree view of tree nodes starting from *Root()* of the tree node. The current tree node has <b>dark blue</b> text.</td>
-    <td>@figure{property_panel_custom_tree_node.png, "",140} </td></tr>
-<tr><td><i>TDataStd_NamedData</i></td>
-    <td>tab bar of attribute elements, each tab has a table of [name, value]</td>
-    <td>@figure{property_panel_custom_named_data.png, "",140}</td></tr>
-<tr><td><i>TNaming_UsedShapes</i></td>
-    <td>a table of all shapes handled by the framework</td>
-    <td>@figure{property_panel_custom_tnaming_used_shapes.png, "",140}</td></tr>
-<tr><td><i>TNaming_NamedShape</i></td>
-    <td>2 controls: <br> - a table of [method name, value] including CurrentShape/OriginalShape methods result of <i>TNaming_Tools</i>, <br> - an evolution table. <br> Tables contain buttons for @ref occt_shape_export "TopoDS_Shape export".</td>
-    <td>@figure{property_panel_custom_tnaming_named_shape.png, "",140}</td></tr>
-<tr><td><i>TNaming_Naming</i></td>
-    <td>2 controls: <br> - a table of <i>TNaming_Name</i> values,<br> - a table of [method name, value]</td>
-    <td>@figure{property_panel_custom_tnaming_naming.png, "",140}</td></tr>
-</table>
-
-
-<b>Dump view</b>
-
-@figure{dump_attribute.png, "Dump of TDF_Attribute",200}
-
-Dump view shows the result of <b>TDF_Attribute::Dump()</b> or <b>TDF_Label::Dump()</b> of the selected tree view item.
-
-<b>3D view</b>
-
-3D View visualizes *TopoDS_Shape* elements of OCAF attribute via AIS facilities.
-
-DFBrowser creates two kinds of presentations depending on the selection place:
-
-<table>
-<tr><th>Kind</th><th>Source object</th><th>Visualization properties</th><th>View</th></tr>
-<tr><td>Main presentation</td>
-    <td>Tree view item:<br> *TPrsStd_AISPresentation*,<br> *TNaming_NamedShape*,<br> *TNaming_Naming*</td>
-    <td>Color: a default color for shape type of the current *TopoDS_Shape*.</td>
-    <td>@figure{display_main_presentation.png, "",100}</td></tr>
-<tr><td>Additional presentation</td>
-    <td>References in Property panel</td>
-    <td>Color: white</td>
-    <td>@figure{display_additional_presentation.png, "",100}</td></tr>
-</table>
-
-
-
-<b>Tree Navigation</b>
-
-Tree Navigation shows a path to the item selected in the tree view.
-The path is a sequence of label entries and attribute type names.
-Each element in the path is selectable - simply click on it to select the corresponding tree view item.
-
-Navigation control has buttons to go to the previous and the next selected tree view items.
-
-
-<b>Update Button</b>
-
-Update button synchronizes content of tree view to the current content of OCAF document that could be modified outside.
-
-<b>Search</b>
-
-The user can search OCAF element by typing:
-  * *TDF_Label* entry,
-  * *TDF_Attribute* name,
-  * *TDataStd_Name* and *TDataStd_Comment* attributes value.
-
-@figure{search.png,"Search",360}
-
-As soon as the user confirms the typed criteria, the Property panel is filled by all satisfied values.
-The user can click a value to highlight the corresponding tree view item. By double click the item will be selected.
-
-
-@subsubsection occt_inspector_2_2_3 Elements cooperation
-
-<b>Tree item selection</b>
-
-Selection of tree view item updates content of the following controls:
-  * Navigation line;
-  * Property Panel;
-  * 3D View (if it is possible to create an interactive presentation);
-  * Dump View.
-
-@figure{dfbrowser_selection_in_tree_view.svg,"",360}
-
-<b>Property Panel (custom) item selection </b>
-
-If the property panel (custom) shows content of *TDF_Label*:
-  * selection of the table row highlights the corresponding item in the tree view,
-  * double click on the table row selects this item in the tree view.
-
-If the property panel (custom) shows content of *TDF_Attribute* that has reference to another attribute, selection of this reference:
-  * highlights the referenced item in the tree view,
-  * displays additional presentation in the 3D view if it can be created.
-
-@figure{property_panel_custom_item_selection.svg,"",360}
-
-Attributes having references:
-
-| Type | Reference | Additional presentation
-| :----- | :----- | :----- |
-| *TDF_Reference* | *TDF_Label* | |
-| *TDataStd_ReferenceArray*, <br> *TDataStd_ReferenceList*, <br> *TNaming_Naming* | One or several *TDF_Label* in a container. | |
-| *TDataStd_TreeNode* | *TDF_Label* | |
-| *TNaming_NamedShape* | *TDF_Label* in Evolution table |  *TopoDS_Shapes* selected in the property panel tables. |
-| *TNaming_UsedShapes* | one or several *TNaming_NamedShape* | *TopoDS_Shapes* of the selected *TNaming_NamedShape*. |
-
-
-@subsubsection occt_shape_export TopoDS_Shape export
-
-Property panel of *TNaming_NamedShape* attribute has controls to export *TopoDS_Shape* to:
-  * BREP. **Save file** dialog is open to enter the result file name,
-  * @ref occt_inspector_2_4 "ShapeView" plugin. The dialog for exporting element to ShapeView allows activating this plugin immediately.
-
-
-@subsection occt_inspector_2_3 VInspector Plugin
-
-@subsubsection occt_inspector_2_3_1 Overview
-
-@figure{vinspector.png, "VInspector",360}
-
-This plugin visualizes interactive objects displayed in *AIS_InteractiveContext* in a tree view with computed selection
-components for each presentation. It shows the selected elements in the context and allows selecting these elements.
-
-@subsubsection occt_inspector_2_3_2 Elements
-
-@figure{vinspector_elements.svg,"VInspector Elements",360}
-
-<b>Presentations tree view</b>
-
-This view shows presentations and selection computed on them. Also, the view has columns with information about the state of visualization elements.
-
-VInspector tree items.
-
-| Type | Description |
-| :----- | :----- |
-| *AIS_InteractiveContext* | The root of tree view. Its children are interactive objects obtained by *DisplayedObjects* and *ErasedObjects* methods.|
-| *AIS_InteractiveObject* | A child of *AIS_InteractiveContext* item. Its children are *SelectMgr_Selection* obtained by iteration on *CurrentSelection*.  |
-| *SelectMgr_Selection* | A child of *AIS_InteractiveObject*. Its children are *SelectMgr_SensitiveEntity* obtaining by iteration on *Sensitive*. |
-| *SelectMgr_SensitiveEntity* | A child of *SelectMgr_Selection*. Its children are *SelectMgr_SensitiveEntity* obtaining by iteration on *OwnerId*. |
-| *SelectBasics_EntityOwner* | A child of *SelectMgr_SensitiveEntity*. It has no children. |
-
-
-Custom color of tree view items:
-
-| OCAF element Type | Column | What | Color |
-| :----- | :----- | :----- | :----- |
-| *AIS_InteractiveObject* | 0 | Text | <b>dark gray</b> in *ErasedObjects* list of *AIS_InteractiveContext*,<br> <b>black</b> otherwise |
-| *AIS_InteractiveObject*, <br> *SelectMgr_SensitiveEntity*, <br> *SelectBasics_EntityOwner*| 1 | Background | <b>dark blue</b>, if there is a selected owner under the item, <br> <b>black</b> otherwise |
-| *SelectMgr_Selection*,<br> *SelectMgr_SensitiveEntity*,<br> *electBasics_EntityOwner* | all | Text | <b>dark gray</b>, if *SelectionState* of *SelectMgr_Selection* is not *SelectMgr_SOS_Activated*,<br> <b>black</b> otherwise |
-
-
-Context popup menu in tree view:
-| Action | Item | Functionality |
-| :----- | :----- | :----- |
-| Export to ShapeView | *AIS_InteractiveObject* | Exports *TopoDS_Shape* of the *AIS_Interactive* presentation to ShapeView plugin. <br> It should be *AIS_Shape* presentation and ShapeView plugin should be registered in Inspector<br> Dialog about exporting element to ShapeView is shown with a possibility to activate this plugin immediately. |
-| Show | *AIS_InteractiveObject* | Displays presentation in *AIS_InteractiveContext*. |
-| Hide | *AIS_InteractiveObject* | Erases presentation from *AIS_InteractiveContext*. |
-
-<b>Update</b>
-
-This button synchronizes the plugin content with the current state of *AIS_InteractiveContext* and updates the presence of items and their current selection.
-
-@subsubsection occt_inspector_2_3_3 Elements cooperation
-
-*VInspector* marks the presentations currently selected in *AIS_InteractiveContext* with a blue background in tree items. Use **Update** button to synchronize VInspector selected items state to the context.
-
-It is also possible to perform selection in the context using "Selection controls" VInspector feature. However, this operation should be performed carefully as
-it clears the current selection in *AIS_InteractiveContext*.
-
-Selection change:
-| From | To | Action | Result |
-| :----- | :----- | :----- | :----- |
-| *AIS_InteractiveContext* | VInspector | Performs selection in *AIS_InteractiveContext*. | Click **Update** button in VInspector and check **Selection** column: <br> *AIS_InteractiveContext* item contains some selected objects, <br> the value of some *AIS_InteractiveObject* is filled if they are selected for this presentation or its entity owner. |
-| VInspector | *AIS_InteractiveContext* | Activates one of Selection controls and selects one or several elements in the tree view. | The objects become selected in *AIS_InteractiveContext*. |
-
-@subsubsection occt_inspector_2_3_4 VInspector tree view columns
-
-Use context pop-up menu on the tree view header to select, which columns should be displayed.
-@figure{vinspector_tree_columns.png, "Vinspector tree header context menu",360}
-
-Use the setting Lights (position, color) in the view.
-@figure{vinspector_light_setting.png, "Vinspector light setting",360}
-
-@subsubsection occt_inspector_2_3_5 VInspector property panel
-
-Property panel shows the result of <b>AIS_InteractiveContext::Dump()</b> or <b>AIS_InteractiveObject::Dump()</b>.
-@figure{vinspector_property_panel.png, "Vinspector property panel",360}
-
-@subsection occt_inspector_2_4 ShapeView Plugin
-
-@subsubsection occt_inspector_2_4_1 Overview
-
-@figure{shapeview.png, "ShapeView",360}
-
-This plugin visualizes content of *TopoDS_Shape* in a tree view.
-
-@subsubsection occt_inspector_2_4_2 Property panel
-
-Property panel shows properties for TopoDS_Shape based on DumpJson.
-
-@figure{shapeview_property_panel.png, "ShapeView Property panel",360}
-
-@subsubsection occt_inspector_2_4_3 Elements
-
-@figure{shapeview_elements.svg,"ShapeView Elements",360}
-
-<b>TopoDS_Shape View</b>
-
-The view elements are *TopoDS_Shape* objects.
-The shape is exploded into sub-shapes using *TopoDS_Iterator* of the *TopoDS_Shape*.
-Children sub-shapes are presented in the view as children of the initial shape.
-By iterating recursively through all shapes we obtain a tree view of items shown in the ShapeView.
-
-The columns of the View show some information about *TopoDS_Shape* of the item.
-The first column allows changing the visibility of the item shape in the 3D view.
-
-Context pop-up menu in tree view:
-| Action | Functionality |
-| :----- | :----- |
-| Load BREP file | Opens the selected file and appends the resulting *TopoDS_Shape* into the tree view. |
-| Remove all shape items | Clears tree view. |
-| BREP view | Shows the text view with BREP content of the selected item. Creates the BREP file in a temporary directory of the plugin. |
-| Close All BREP views | Closes all opened text views. |
-| BREP directory | Displays the folder, where temporary BREP files have been stored. |
-
-@subsubsection occt_inspector_2_4_4 Elements cooperation
-
-Selection of one or several items in *TopoDS_Shape* View creates its *AIS_Shape* presentation and displays it in the 3D View.
-
-@subsubsection occt_inspector_2_4_5 ShapeView tree view columns
-
-Use context pop-up menu on the tree view header to select, which columns should be displayed.
-@figure{shapeview_tree_columns.png, "ShapeView tree header context menu",360}
-
-@subsection occt_inspector_2_5 MessageView Plugin
-
-MessageView plugin is used to display content of Message_Report.
-
-@subsubsection occt_inspector_2_5_1 Message report tree view
-
-Message report tree view shows the content of the Message_Report.
-
-Context pop-up menu in message report tree view:
-| Action | Functionality |
-| :----- | :----- |
-| Export Report | Exports the report as json file. |
-| WallClock Metric statistic | Creates the table  that sums the number of calls and the time spent on the functionality inside the value and shows it in Property panel (custom). It's necessary to activate "WallClock metric". |
-| Preview children presentations | Displays presentations of children items of selected items if found. |
-| Deactivate | Deactivates all types of metrics for the current report. |
-| Activate | Appends items to activate report metrics. |
-| Clear | Clears message report. |
-| Activate metric | Switches active state in report for clicked type of metric. |
-| Test metric | Sends several alerts to check metric of message-alert-tool mechanism. |
-| Test Message_Messenger | Sends several alerts to check property panel/presentations of messenger-alert-tool mechanism. |
-| Test Tree of messages | Sends several alerts to check tree of alerts. |
-
-@figure{messageview_pop_up_menu.png, "MessageView pop-up menu",360}
-
-@subsubsection occt_inspector_2_5_2 3D View
-
-3D View shows the selected item (TopoDS_Shape) in message report tree view.
-@figure{messageview_view.png, "MessageView 3D View",360}
-
-@subsubsection occt_inspector_2_5_3 Dump panel
-
-Shows Dump() information of the selected item if the item has Dump().
-@figure{messageview_dump_panel.png, "MessageView 3D View",360}
-
-@subsubsection occt_inspector_2_5_4 Property panel (custom)
-
-Shows the table for WallClock Metric statistic option.
-@figure{messageview_property_panel_custom.png, "MessageView 3D View",360}
-
-@subsubsection occt_inspector_2_5_5 Elements
-@figure{messageview_elements.svg, "MessageView elements",360}
-
-@section occt_inspector_3 Common controls
-
-@subsection occt_inspector_3_1 Tree View
-
-This control shows presentation hierarchy of the investigated OCCT element, e.g. *TDocStd_Application* for DFBrowser, see @ref occt_inspector_1_1 "Overview".
-The first column contains the name, other columns are informative.
-
-The tree view has a context menu with plugin-specific actions.
-
-@subsubsection occt_inspector_3_1_1 Tree View preferences
-
-It is possible to define visibility and width of columns.
-This option is available in a view that contains more than one column,
- e.g. @ref occt_inspector_2_3_4 "VInspector tree view columns"
- and @ref occt_inspector_2_4_4 "ShapeView tree view columns".
-
-@figure{treeview_preferences.svg, "Preferences schema",360}
-
-
-@subsection occt_inspector_3_2 3D View
-
-@subsubsection occt_inspector_3_2_1 Overview
-
-@figure{3DView.png, "3D View",360}
-
-This control for OCCT 3D viewer creates visualization view components and allows performing some user actions in the view.
-
-
-@subsubsection occt_inspector_3_2_2 Elements
-
-@figure{3DView_elements.svg,"3DView Elements",360}
-
-3D View contains the following elements:
-| Element | Functionality |
-| :----- | :----- |
-| 3D view | V3d viewer with mouse events processing. |
-| Context | Allows choosing another context that should be used in the plugin. The following contexts are available:<br> **Own** - the context of this view, <br> **External** - the context of the @ref occt_inspector_4_3 "external application", which initializes the plugin, <br> **None** - the visualization is not performed at all (useful if the presentation is too complex). |
-| Multi/Single | The buttons define what to do with the previously displayed objects: <br> **Multi** displays new presentations together with already displayed ones, <br> **Single** removes all previously displayed presentations. |
-| Clean | Removes all displayed presentations. |
-| Trihedron display | Shows the trihedron. |
-| View cube display | Shows the view cube. |
-| Fit All | Scene manipulation actions<br> (Fit All is checkable. If checked(by double click), display/hide of new objects will perform **Fit All** of the scene.) |
-| Display Mode | Sets *AIS_Shading* or *AIS_WireFrame* display mode for all presentations. |
-
-Context popup menu:
-| Action | Functionality |
-| :----- | :----- |
-| Set View Orientation | Shows the list of available *V3d_View* projections. Selection of an item with change the view. |
-
-@figure{3DView_set_orientation.png,"Set view orientation",360}
-
-@subsubsection occt_inspector_3_2_3 3D View preferences.
-View preferences store the current view orientation.
-
-@subsection occt_inspector_3_3 Preferences context menu
-
-@figure{preferences.png,"Plugin preferences",360}
-
-Context menu contains:
-| Element | Functionality |
-| :----- | :----- |
-| Tree Level Line,<br> PropertyPanel,<br> PropertyPanel (custom),<br> Dump, <br> View| Names of dock widgets in the active plugin. If the button is checked, dock widget is visible. |
-| Store Preferences | Creates ".tinspector.xml" preferences file with the current settings for each plugin.<br> This file is created in TEMP/TMP directory (by default) or in a user-defined directory. |
-| Remove Preferences | Removes preferences file. After the Inspector is restarted, default values will be applied. |
-
-
-The following controls have store/restore preferences:
-| Element | Preferences |
-| :----- | :----- |
-| Geometry| Inspector window size and position. <br>State of dockable widgets : visibility, position, size.|
-| @ref occt_inspector_3_1_1 "Tree View preferences"| Columns visible in the tree view and their width. |
-| @ref occt_inspector_3_2_3 "3D View preferences"| 3D view camera direction. |
-
-@section occt_inspector_4 Getting Started
-
-@subsection occt_inspector_4_1 TInspectorEXE sample
-
-This sample allows trying Inspector functionality.
-
-Use *inspector.bat* script file placed in a binary directory of OCCT to launch it.
-
-This script accepts the names of plugin's DLL that should be loaded. By default it loads all plugins described above.
-
-
-@figure{TStandaloneEXE.png, "TStandaloneEXE",360}
-
-Click on the Open button shows the dialog to select a file.
-@figure{TStandaloneEXE_open.png, "",360}
-
-Depending on the active plugin, it is possible to select the following files in the dialog:<br>
-- DFBRowser: OCAF document or STEP files;
-- VInspector: BREP files;
-- ShapeView: BREP files.
-
-Click the file name in the proposed directory and enter it manually or using **Browse** button.
-
-By default, TInspectorEXE opens the following files for plugins:
-| Plugin DLL library name | Files |
-| :----- | :----- |
-| TKDFBrowser | step/screw.step |
-| TKVInspector | occ/hammer.brep |
-| TKShapeView | occ/face1.brep, <br> occ/face2.brep |
-
-These files are found relatively to *CSF_OCCTDataPath*.
-
-@subsubsection occt_inspector_4_1_1 TInspectorEXE preferences
-The application stores recently loaded files. On the application start, the last file is activated.
-**Open file** dialog contains recently loaded files.
-Selection of a new file updates the container of recently loaded files and rewrites preferences.
-
-Source code of *TIspectorEXE* is a good sample for @ref occt_inspector_4_3 "using the Inspector in a custom application".
-
-@subsection occt_inspector_4_2 How to launch the Inspector in DRAW Test Harness
-
-*TKToolsDraw* plugin provides DRAW commands for Qt tools. Use *INSPECTOR* parameter of @ref occt_draw_1_3_3 "pload" 
-command to download the commands of this library. It contains *tinspector* command to start Inspector under DRAW.
-See more detailed description of the @ref occt_draw_13_1 "tinspector" command.
-
-The simple code to start Inspector with all plugins loaded:
-
-~~~~
-pload INSPECTOR
-tinspector
-~~~~
-
-@figure{drawexe_tinspector.png,"tinspector",360}
-
-This command does the following:
-- all available Plugins are presented in the Inspector. These are @ref occt_inspector_2_2 "DFBrowser", @ref occt_inspector_2_3 "VInspector", @ref occt_inspector_2_4 "ShapeView" and  @ref occt_inspector_2_5 "MessageView";
-- DFBrowser is the active plugin;
-- OCAF tree is empty.
-
-After this, we should create objects in DRAW and update *tinspector*.
-The examples of using Inspector in DRAW can be found in OCCT source directory /tests/tools.
-
-@subsection occt_inspector_4_3 How to use the Inspector in a custom application
-
-The example of using the Inspector in a custom application is presented in OCCT qt sample - <b>FuncDemo</b>.
-For building qt samples, switch on *BUILD_SAMPLES_QT* variable in @ref build_cmake_conf "Configuration process".
-
-In general, the following steps should be taken:
-* Set dependencies to OCCT and Qt in the application (Header and Link);
-* Create an instance of *TInspector_Communicator*;
-* Register the plugins of interest in the communicator by DLL library name;
-* Initialize the communicator with objects that will be investigated;
-* Set visible true for the communicator.
-
-
-
-Here is an example of C++ implementation:
-~~~~{.cpp}
-
-#include <inspector/TInspector_Communicator.hxx>
-
-static TInspector_Communicator* MyTCommunicator;
-
-void CreateInspector()
-{
-  NCollection_List<Handle(Standard_Transient)> aParameters;
-  //... append parameters in the list
-
-  if (!MyTCommunicator)
-  {
-    MyTCommunicator = new TInspector_Communicator();
-
-    MyTCommunicator->RegisterPlugin ("TKDFBrowser");
-    MyTCommunicator->RegisterPlugin ("TKVInspector");
-    MyTCommunicator->RegisterPlugin ("TKShapeView");
-    MyTCommunicator->RegisterPlugin ("TKMessageView");
-
-    MyTCommunicator->Init (aParameters);
-    MyTCommunicator->Activate ("TKDFBrowser");
-  }
-  MyTCommunicator->SetVisible (true);
-}
-~~~~
-
-Give one the following objects for a plugin using a container of parameters:
-
-| Plugin | to be initialized by |
-| :----- | :----- |
-| *TKDFBrowser* | *TDocStd_Application* |
-| *TKVInspector* | *AIS_InteractiveContext* |
-| *TKShapeView* | *TopoDS_TShape* |
-| *TKMessageView* | *Message_Report* |
-
-
-@section occt_inspector_5 Build procedure
-
-
-@subsection occt_inspector_5_1 Building with CMake within OCCT
-
-By default the Inspector compilation is off.
-To compile it, set the *BUILD_Inspector* flag to "ON". See @ref build_cmake_conf "Configuration process".
-
-When this option is switched ON, MS Visual Studio project has an additional tree of folders:
-
-@figure{VStudio_projects.png,"Inspector packages in MS Visual Studio",160}
-
-
-@section occt_inspector_6 Sources and packaging
-
-OCCT sources are extended by the /tools directory.
-
-Distribution of plugin packages :
-| Source packages | Plugin |
-| :----- | :----- |
-| *DFBrowser*, <br> *DFBrowserPane*, <br> *DFBrowserPaneXDE*, <br> *TKDFBrowser* | DFBrowser |
-| *VInspector*, <br> *TKVInspector*  | VInspector |
-| *ShapeView*, <br> *TKShapeView* | ShapeView |
-| *MessageView*, <br> *TKMessageView* | MessageView |
-
-Other packages:
-| Source packages| Used in |
-| :----- | :----- |
-| *TInspectorAPI*, <br> *TKInspectorAPI* | Interface for connection to plugin. |
-| *ViewControl*, <br> *TKTreeModel* | Classes for property view, table, table model. |
-| *TreeModel*, <br> *TKTreeView* | Items-oriented model to simplify work with GUI tree control. |
-| *View*, <br> *TKView* | 3D View component. |
-| *TInspector*, <br> *TKTInspector*  | Inspector window, where plugins are placed. |
-| *ToolsDraw*, <br> *TKToolsDraw* | Plugin for DRAW to start Inspector. |
-
-
-In MSVC studio, a separate folder contains Inspector projects.
-
-@section occt_inspector_7 Glossary
-* **Component** -- a part of OCCT , e.g. OCAF, VISUALIZATION, MODELING and others. 
-* **Plugin** -- a library that is loaded in some executable/library. Here, the plugins are:
-  * DFBrowser,
-  * ShapeView,
-  * VInspector.
diff --git a/dox/user_guides/user_guides.md b/dox/user_guides/user_guides.md
index 76223a876d..80a9391674 100644
--- a/dox/user_guides/user_guides.md
+++ b/dox/user_guides/user_guides.md
@@ -16,4 +16,3 @@ OCCT User Guides are organized by OCCT modules:
 * @subpage occt_user_guides__de_wrapper "Data Exchange Wrapper (DE Wrapper)"
 * @subpage occt_user_guides__ocaf "Open CASCADE Application Framework (OCAF)"
 * @subpage occt_user_guides__test_harness "DRAW Test Harness"
-* @subpage occt_user_guides__inspector "Inspector"
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt
deleted file mode 100644
index f6d8d1612d..0000000000
--- a/tools/CMakeLists.txt
+++ /dev/null
@@ -1,405 +0,0 @@
-# Caution! Be careful, when increase minimal cmake version:
-# using of newer version may leads (by default) to applying
-# of some new policies. It may break compilation.
-# For canceling of applying new policies use:
-# cmake_policy(PUSH) before `cmake_minimum_required`
-# and cmake_policy(POP) after.
-cmake_minimum_required (VERSION 3.1 FATAL_ERROR)
-
-set (ADDITIONAL_INLCUDE_DIR_DESCR "Additional directory to be added in the projects include section")
-if (NOT DEFINED ADDITIONAL_INLCUDE_DIR)
-  set (ADDITIONAL_INLCUDE_DIR "" CACHE PATH ${ADDITIONAL_INLCUDE_DIR_DESCR})
-  get_filename_component (ADDITIONAL_INLCUDE_DIR "${ADDITIONAL_INLCUDE_DIR}" ABSOLUTE)
-else()
-  file (TO_CMAKE_PATH "${ADDITIONAL_INLCUDE_DIR}" ADDITIONAL_INLCUDE_DIR)
-  set (ADDITIONAL_INLCUDE_DIR "${ADDITIONAL_INLCUDE_DIR}" CACHE PATH "${ADDITIONAL_INLCUDE_DIR_DESCR}" FORCE)
-endif()
-
-set (ADDITIONAL_DLL_DIR_DESCR "Additional directories that should be included into PATH")
-if (NOT DEFINED ADDITIONAL_DLL_DIR)
-  set (ADDITIONAL_DLL_DIR "" CACHE PATH ${ADDITIONAL_DLL_DIR_DESCR})
-  get_filename_component (ADDITIONAL_DLL_DIR "${ADDITIONAL_DLL_DIR}" ABSOLUTE)
-else()
-  file (TO_CMAKE_PATH "${ADDITIONAL_DLL_DIR}" ADDITIONAL_DLL_DIR)
-  set (ADDITIONAL_DLL_DIR "${ADDITIONAL_DLL_DIR}" CACHE PATH "${ADDITIONAL_DLL_DIR_DESCR}" FORCE)
-endif()
-
-set (CURRENT_DIR "${CMAKE_SOURCE_DIR}")
-set (CMAKE_SOURCE_DIR "${CMAKE_SOURCE_DIR}/.." CACHE INTERNAL "" FORCE)
-set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/adm/cmake")
-
-set (CMAKE_SUPPRESS_REGENERATION TRUE)
-
-set (CMAKE_CONFIGURATION_TYPES Release Debug RelWithDebInfo CACHE INTERNAL "" FORCE)
-
-# include cmake file
-macro (OCCT_INCLUDE_CMAKE_FILE BEING_INCLUDED_FILE)
-  include (${CMAKE_SOURCE_DIR}/${BEING_INCLUDED_FILE}.cmake)
-endmacro()
-
-macro (OCCT_INCLUDE_3RDPARTY_PRODUCT USE_PRODUCT PRODUCT_CONFIG_FILE)
-  if (${USE_PRODUCT})
-    OCCT_INCLUDE_CMAKE_FILE ("${PRODUCT_CONFIG_FILE}")
-  endif (${USE_PRODUCT})
-endmacro()
-
-# include variable description
-OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/vardescr")
-
-# set type of OCCT libraries
-if (NOT BUILD_LIBRARY_TYPE)
-  set (BUILD_LIBRARY_TYPE "Shared" CACHE STRING "${BUILD_LIBRARY_TYPE_DESCR}" FORCE)
-  SET_PROPERTY(CACHE BUILD_LIBRARY_TYPE PROPERTY STRINGS Shared Static)
-endif()
-
-if ("${BUILD_LIBRARY_TYPE}" STREQUAL "Shared")
-  set (BUILD_SHARED_LIBS ON)
-
-  if (NOT DEFINED BUILD_SHARED_LIBRARY_NAME_POSTFIX)
-    set (BUILD_SHARED_LIBRARY_NAME_POSTFIX "" CACHE STRING "${BUILD_SHARED_LIBRARY_NAME_POSTFIX_DESCR}" FORCE)
-  endif()
-else()
-  unset (BUILD_SHARED_LIBS)
-  unset (BUILD_SHARED_LIBRARY_NAME_POSTFIX)
-endif()
-
-# the name of the project
-project (Inspector)
-
-if (WIN32)
-  add_definitions(-DUNICODE)
-  add_definitions(-D_UNICODE)
-endif()
-
-# include occt macros
-OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/occt_macros")
-
-# Solution folder property
-set_property (GLOBAL PROPERTY USE_FOLDERS ON)
-
-# a single-configuration generator like the Makefile generator defines CMAKE_BUILD_TYPE variable
-# check this variable and set if it's required
-if (DEFINED CMAKE_BUILD_TYPE AND NOT CMAKE_BUILD_TYPE) # single-configuration generator.
-  set (CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel." FORCE)
-endif()
-
-if (BUILD_WITH_DEBUG)
-  set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$<CONFIG:DEBUG>:OCCT_DEBUG>)
-endif()
-
-# install dir of the project
-if (NOT DEFINED INSTALL_DIR)
-  # set default install directory for Windows
-  if (WIN32 AND NOT DEFINED CMAKE_INSTALL_PREFIX)
-    set (CMAKE_INSTALL_PREFIX "C:/opencascade-${OCC_VERSION_STRING_EXT}/inspector")
-  endif()
-  set (INSTALL_DIR "${CMAKE_INSTALL_PREFIX}" CACHE PATH "${INSTALL_DIR_DESCR}")
-else()
-  file (TO_CMAKE_PATH "${INSTALL_DIR}" INSTALL_DIR)
-  set (INSTALL_DIR "${INSTALL_DIR}" CACHE PATH "${INSTALL_DIR_DESCR}" FORCE)
-endif()
-
-# choose a variant of the layout of the install paths
-if (NOT INSTALL_DIR_LAYOUT)
-  if (WIN32)
-    set (INSTALL_DIR_LAYOUT "Windows" CACHE STRING "${INSTALL_DIR_LAYOUT_DESCR}" FORCE)
-  else()
-    set (INSTALL_DIR_LAYOUT "Unix" CACHE STRING "${INSTALL_DIR_LAYOUT_DESCR}" FORCE)
-  endif()
-  SET_PROPERTY(CACHE INSTALL_DIR_LAYOUT PROPERTY STRINGS Windows Unix)
-endif()
-
-# check INSTALL_DIR_LAYOUT changes and update INSTALL_DIR_* paths if necessary
-if (NOT DEFINED INSTALL_DIR_LAYOUT_PREV)
-  set (INSTALL_DIR_LAYOUT_PREV "${INSTALL_DIR_LAYOUT}" CACHE INTERNAL "" FORCE)
-elseif (NOT "${INSTALL_DIR_LAYOUT_PREV}" STREQUAL "${INSTALL_DIR_LAYOUT}")
-  set (INSTALL_DIR_LAYOUT_PREV "${INSTALL_DIR_LAYOUT}" CACHE INTERNAL "" FORCE)
-  # The structure of install folder should be reset due to changed layout
-  OCCT_CHECK_AND_UNSET_INSTALL_DIR_SUBDIRS ()
-
-  # Unset INSTALL_DIR_WITH_VERSION on windows
-  if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Windows")
-    OCCT_CHECK_AND_UNSET (INSTALL_DIR_WITH_VERSION)
-  else()
-    if (NOT DEFINED INSTALL_DIR_WITH_VERSION)
-      set (INSTALL_DIR_WITH_VERSION OFF CACHE BOOL "${INSTALL_DIR_WITH_VERSION_DESCR}")
-    endif()
-  endif()
-endif()
-
-# check CMAKE_INSTALL_PREFIX changes and update INSTALL_DIR if necessary
-if (NOT DEFINED CMAKE_INSTALL_PREFIX_PREV)
-  set (CMAKE_INSTALL_PREFIX_PREV "${CMAKE_INSTALL_PREFIX}" CACHE INTERNAL "" FORCE)
-elseif (NOT "${CMAKE_INSTALL_PREFIX_PREV}" STREQUAL "${CMAKE_INSTALL_PREFIX}")
-  # CMAKE_INSTALL_PREFIX has been changed at previous step
-  set (CMAKE_INSTALL_PREFIX_PREV "${CMAKE_INSTALL_PREFIX}" CACHE INTERNAL "" FORCE)
-  
-  # INSTALL_DIR is required to be updated
-  set (INSTALL_DIR "${CMAKE_INSTALL_PREFIX}" CACHE PATH "${INSTALL_DIR_DESCR}" FORCE)
-endif()
-
-# check INSTALL_DIR changes and update CMAKE_INSTALL_PREFIX if necessary
-if (NOT DEFINED INSTALL_DIR_PREV)
-  set (INSTALL_DIR_PREV "${INSTALL_DIR}" CACHE INTERNAL "" FORCE)
-elseif (NOT "${INSTALL_DIR_PREV}" STREQUAL "${INSTALL_DIR}")
-  # INSTALL_DIR has been changed at previous step
-  set (INSTALL_DIR_PREV "${INSTALL_DIR}" CACHE INTERNAL "" FORCE)
-
-  # sync CMAKE_INSTALL_PREFIX with INSTALL_DIR 
-  set (CMAKE_INSTALL_PREFIX "${INSTALL_DIR}" CACHE INTERNAL "" FORCE)
-
-  # set CMAKE_INSTALL_PREFIX_PREV to avoid the reset of structure of the install folder 
-  set (CMAKE_INSTALL_PREFIX_PREV "${INSTALL_DIR}" CACHE INTERNAL "" FORCE)
-endif()
-
-if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
-  if (NOT DEFINED INSTALL_DIR_WITH_VERSION_PREV)
-    set (INSTALL_DIR_WITH_VERSION_PREV "${INSTALL_DIR_WITH_VERSION}" CACHE INTERNAL "" FORCE)
-  elseif (NOT "${INSTALL_DIR_WITH_VERSION_PREV}" STREQUAL "${INSTALL_DIR_WITH_VERSION}")
-    # INSTALL_DIR_WITH_VERSION has been changed at previous step
-    set (INSTALL_DIR_WITH_VERSION_PREV "${INSTALL_DIR_WITH_VERSION}" CACHE INTERNAL "" FORCE)
-
-    OCCT_CHECK_AND_UNSET_INSTALL_DIR_SUBDIRS ()
-  endif()
-endif()
-
-# hide CMAKE_INSTALL_PREFIX from a user
-set (CMAKE_INSTALL_PREFIX "${INSTALL_DIR}" CACHE INTERNAL "" FORCE)
-
-set (BIN_LETTER "")
-if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
-  set (BIN_LETTER "d")
-elseif ("${CMAKE_BUILD_TYPE}" STREQUAL "RelWithDebInfo")
-  set (BIN_LETTER "i")
-endif()
-
-# Get all used variables: OS_WITH_BIT, COMPILER
-OCCT_MAKE_OS_WITH_BITNESS()
-OCCT_MAKE_COMPILER_SHORT_NAME()
-
-# do not define INSTALL_DIR_BIN for win.
-# Leave library structure for win: <prefix>/win64/vc10/bin(d)
-if (NOT DEFINED INSTALL_DIR_BIN)
-  if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
-    set (INSTALL_DIR_BIN "bin" CACHE PATH "${INSTALL_DIR_BIN_DESCR}")
-  else()
-    set (INSTALL_DIR_BIN "${OS_WITH_BIT}/${COMPILER}/bin" CACHE PATH "${INSTALL_DIR_BIN_DESCR}")
-  endif()
-endif()
-
-# define folder containing all shell/batch scripts
-if (NOT DEFINED INSTALL_DIR_SCRIPT)
-  if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
-    set (INSTALL_DIR_SCRIPT "${INSTALL_DIR_BIN}" CACHE PATH "${INSTALL_DIR_SCRIPT_DESCR}")
-  else()
-    set (INSTALL_DIR_SCRIPT "." CACHE PATH "${INSTALL_DIR_SCRIPT_DESCR}")
-  endif()
-endif()
-
-# place the libraries to <prefix>/lib folder for unix and leave old structure for windows
-if (NOT DEFINED INSTALL_DIR_LIB)
-  if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
-    set (INSTALL_DIR_LIB "lib" CACHE PATH "${INSTALL_DIR_LIB_DESCR}")
-  else()
-    set (INSTALL_DIR_LIB "${OS_WITH_BIT}/${COMPILER}/lib" CACHE PATH "${INSTALL_DIR_LIB_DESCR}")
-  endif()
-endif()
-
-# OCCT headers: <prefix>/inc for windows,
-#               <prefix>/include/opencascade-7.0.0 for unix
-if (NOT DEFINED INSTALL_DIR_INCLUDE)
-  if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
-    set (INSTALL_DIR_INCLUDE "include/opencascade" CACHE PATH "${INSTALL_DIR_INCLUDE_DESCR}")
-    if (INSTALL_DIR_WITH_VERSION)
-      set (INSTALL_DIR_INCLUDE "include/opencascade-${OCC_VERSION_STRING_EXT}" CACHE PATH "${INSTALL_DIR_INCLUDE_DESCR}" FORCE)
-    endif()
-  else()
-    set (INSTALL_DIR_INCLUDE "inc" CACHE PATH "${INSTALL_DIR_INCLUDE_DESCR}")
-  endif()
-endif()
-
-# OCCT resources: <prefix>/src for windows,
-#                 <prefix>/share/opencascade-7.0.0/resources for unix
-if (NOT DEFINED INSTALL_DIR_RESOURCE)
-  if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
-    set (INSTALL_DIR_RESOURCE "share/opencascade/resources" CACHE PATH "${INSTALL_DIR_RESOURCE_DESCR}")
-    if (INSTALL_DIR_WITH_VERSION)
-      set (INSTALL_DIR_RESOURCE "share/opencascade-${OCC_VERSION_STRING_EXT}/resources" CACHE PATH "${INSTALL_DIR_RESOURCE_DESCR}" FORCE)
-    endif()
-  else()
-    set (INSTALL_DIR_RESOURCE "src" CACHE PATH "${INSTALL_DIR_RESOURCE_DESCR}")
-  endif()
-endif()
-
-# OCCT data
-if (NOT DEFINED INSTALL_DIR_DATA)
-  if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
-    set (INSTALL_DIR_DATA "share/opencascade/data" CACHE PATH "${INSTALL_DIR_DATA_DESCR}")
-    if (INSTALL_DIR_WITH_VERSION)
-      set (INSTALL_DIR_DATA "share/opencascade-${OCC_VERSION_STRING_EXT}/data" CACHE PATH "${INSTALL_DIR_DATA_DESCR}" FORCE)
-    endif()
-  else()
-    set (INSTALL_DIR_DATA "data" CACHE PATH "${INSTALL_DIR_DATA_DESCR}")
-  endif()
-endif()
-
-# include original list of definitions and flags
-OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/occt_defs_flags")
-
-OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/3rdparty_macro")
-
-if (NOT DEFINED 3RDPARTY_DIR)
-  set (3RDPARTY_DIR "" CACHE PATH ${3RDPARTY_DIR_DESCR})
-  get_filename_component (3RDPARTY_DIR "${3RDPARTY_DIR}" ABSOLUTE)
-else()
-  file (TO_CMAKE_PATH "${3RDPARTY_DIR}" 3RDPARTY_DIR)
-  set (3RDPARTY_DIR "${3RDPARTY_DIR}" CACHE PATH "${3RDPARTY_DIR_DESCR}" FORCE)
-endif()
-
-find_package(OpenCASCADE QUIET PATHS "${OpenCASCADE_DIR}" "${OpenCASCADE_INSTALL_PREFIX}" NO_DEFAULT_PATH)
-# include OCCT headers
-include_directories ("${OpenCASCADE_INCLUDE_DIR}")
-
-if (NOT OpenCASCADE_FOUND)
-  message (FATAL_ERROR "could not find OpenCASCADE, please set OpenCASCADE_DIR variable" )
-else()
-  set (OpenCASCADE_DIR "${OpenCASCADE_INSTALL_PREFIX}" CACHE PATH "OpenCASCADE directory" FORCE)
-  message (STATUS "Using OpenCASCADE from \"${OpenCASCADE_DIR}\"" )
-endif()
-
-set (USE_TCL "${OpenCASCADE_WITH_TCL}")
-set (USE_FREETYPE "${OpenCASCADE_WITH_FREETYPE}")
-set (USE_FREEIMAGE "${OpenCASCADE_WITH_FREEIMAGE}")
-set (USE_GL2PS "${OpenCASCADE_WITH_GL2PS}")
-set (USE_TBB "${OpenCASCADE_WITH_TBB}")
-set (USE_VTK "${OpenCASCADE_WITH_VTK}")
-set (USE_FFMPEG "${OpenCASCADE_WITH_FFMPEG}")
-set (USE_GLES2 "${OpenCASCADE_WITH_GLES2}")
-set (USE_GLX "${OpenCASCADE_WITH_GLX}")
-
-
-# define CSF variable
-OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/occt_csf")
-
-# custom definitions (CMakeConfig of OCCT)
-OCCT_INCLUDE_3RDPARTY_PRODUCT (USE_TCL "adm/cmake/tcl")
-OCCT_INCLUDE_3RDPARTY_PRODUCT (USE_FREETYPE "adm/cmake/freetype")
-OCCT_INCLUDE_3RDPARTY_PRODUCT (USE_FREEIMAGE "adm/cmake/freeimage")
-OCCT_INCLUDE_3RDPARTY_PRODUCT (USE_GL2PS "adm/cmake/gl2ps")
-OCCT_INCLUDE_3RDPARTY_PRODUCT (USE_TBB "adm/cmake/tbb")
-OCCT_INCLUDE_3RDPARTY_PRODUCT (USE_VTK "adm/cmake/vtk")
-OCCT_INCLUDE_3RDPARTY_PRODUCT (USE_FFMPEG "adm/cmake/ffmpeg")
-OCCT_INCLUDE_3RDPARTY_PRODUCT (USE_GLES2 "adm/cmake/egl")
-OCCT_INCLUDE_3RDPARTY_PRODUCT (USE_GLES2 "adm/cmake/gles2")
-OCCT_INCLUDE_3RDPARTY_PRODUCT (USE_GLX "adm/cmake/glx")
-
-
-OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/qt")
-OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/occt_macros")
-
-#include (${CMAKE_SOURCE_DIR}/adm/cmake/3rdparty.cmake)
-
-set (3RDPARTY_DLL_DEB_PATH "${3RDPARTY_DLL_PATH}")
-
-# build directories
-if (SINGLE_GENERATOR)
-  set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/lib${BIN_LETTER}")
-  set (CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bin${BIN_LETTER}")
-  set (CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/lib${BIN_LETTER}")
-  if (WIN32)
-    set (CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bin${BIN_LETTER}")
-  endif()
-endif()
-
-set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/lib")
-set (CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bin")
-set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/lib")
-
-set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/libi")
-set (CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bini")
-set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/libi")
-
-set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/libd")
-set (CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bind")
-set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/libd")
-
-if (WIN32) 
-  set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE        "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bin")
-  set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bini")
-  set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG          "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bind")
-endif()
-
-# OCCT tools
-# include original list of tools
-# list <TOOLNAME>_TOOLKITS is created foreach tool and contains its toolkits
-# list <OCCT_TOOLS> will contain all tools
-OCCT_MODULES_AND_TOOLKITS (TOOLS "TOOL_TOOLKITS" OCCT_TOOLS)
-foreach (OCCT_TOOL ${OCCT_TOOLS})
-  list (APPEND BUILD_TOOL_TOOLKITS ${${OCCT_TOOL}_TOOL_TOOLKITS})
-endforeach()
-
-# collect all the headers to <binary dir>/inc/inspector folder
-
-# Ensure the include directory exists
-file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/${INSTALL_DIR_INCLUDE}/inspector")
-
-string(TIMESTAMP CURRENT_TIME "%H:%M:%S")
-message (STATUS "\nInfo: \(${CURRENT_TIME}\) Start collecting all OCCT tool header files into ${CMAKE_BINARY_DIR}/inc/inspector ...")
-COLLECT_AND_INSTALL_OCCT_HEADER_FILES ("${CMAKE_BINARY_DIR}" "${BUILD_TOOL_TOOLKITS}" "tools" "${INSTALL_DIR_INCLUDE}/inspector")
-
-# include <cmake binary folder>/inc
-include_directories (${CMAKE_BINARY_DIR}/${INSTALL_DIR_INCLUDE})
-
-include_directories (${ADDITIONAL_INLCUDE_DIR})
-
-if (3RDPARTY_INCLUDE_DIRS)
-  list (REMOVE_DUPLICATES 3RDPARTY_INCLUDE_DIRS)
-  string (REGEX REPLACE ";" "\n\t" 3RDPARTY_INCLUDE_DIRS_WITH_ENDS "${3RDPARTY_INCLUDE_DIRS}")
-  message (STATUS "Info: The directories of 3rdparty headers: \n\t${3RDPARTY_INCLUDE_DIRS_WITH_ENDS}")
-  include_directories (${3RDPARTY_INCLUDE_DIRS})
-endif()
-
-if (3RDPARTY_LIBRARY_DIRS)
-  list (REMOVE_DUPLICATES 3RDPARTY_LIBRARY_DIRS)
-  string (REGEX REPLACE ";" "\n\t" 3RDPARTY_LIBRARY_DIRS_WITH_ENDS "${3RDPARTY_LIBRARY_DIRS}")
-  message (STATUS "Info: The directories of 3rdparty libraries: \n\t${3RDPARTY_LIBRARY_DIRS_WITH_ENDS}")
-  link_directories (${3RDPARTY_LIBRARY_DIRS})
-endif()
-
-# include patched toolkit projects or original ones
-if (BUILD_TOOL_TOOLKITS)
-  foreach (BUILD_TOOL_TOOLKIT ${BUILD_TOOL_TOOLKITS})
-    OCCT_ADD_SUBDIRECTORY ("tools/${BUILD_TOOL_TOOLKIT}")
-  endforeach()
-endif()
-
-message (STATUS "Info: \(${CURRENT_TIME}\) OCCT toolkits processed")
-
-OCCT_MODULES_AND_TOOLKITS (SAMPLES "SAMPLES_TOOLKITS" OCCT_SAMPLES)
-
-# patch TInspectorEXE
-if (MSVC AND 3RDPARTY_DLL_DIRS)
-  list (REMOVE_DUPLICATES 3RDPARTY_DLL_DIRS)
-  set (3RDPARTY_DLL_DIRS_FOR_PATH "")
-
-  foreach (3RDPARTY_DLL_DIR ${3RDPARTY_DLL_DIRS})
-    set (3RDPARTY_DLL_DIRS_FOR_PATH "${3RDPARTY_DLL_DIRS_FOR_PATH};${3RDPARTY_DLL_DIR}")
-  endforeach()
-
-  if (ADDITIONAL_DLL_DIR)
-    foreach (3RDPARTY_DLL_DIR ${ADDITIONAL_DLL_DIR})
-      set (3RDPARTY_DLL_DIRS_FOR_PATH "${3RDPARTY_DLL_DIRS_FOR_PATH};${3RDPARTY_DLL_DIR}")
-    endforeach()
-  endif (ADDITIONAL_DLL_DIR)
-
-  OCCT_MAKE_COMPILER_BITNESS()
-  set (X_COMPILER_BITNESS "x64")
-  if ("${COMPILER_BITNESS}" STREQUAL "32")
-    set (X_COMPILER_BITNESS "Win32")
-  endif()
-
-  # patch TInspectorEXE
-  OCCT_CONFIGURE ("adm/templates/TInspectorEXE.vcxproj.user.in" "${CMAKE_BINARY_DIR}/TInspectorEXE/TInspectorEXE.vcxproj.user")
-endif()
-
-message (STATUS "Info: \(${CURRENT_TIME}\) Inspector configuration files prepared")
diff --git a/tools/Convert/Convert_Tools.cxx b/tools/Convert/Convert_Tools.cxx
deleted file mode 100644
index 6d7658f9d3..0000000000
--- a/tools/Convert/Convert_Tools.cxx
+++ /dev/null
@@ -1,294 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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.
-
-#include <inspector/Convert_Tools.hxx>
-#include <inspector/Convert_TransientShape.hxx>
-
-#include <AIS_Line.hxx>
-#include <AIS_Plane.hxx>
-#include <AIS_Shape.hxx>
-#include <BRep_Builder.hxx>
-#include <BRepBuilderAPI_MakeEdge.hxx>
-#include <BRepBuilderAPI_MakeVertex.hxx>
-#include <BRepPreviewAPI_MakeBox.hxx>
-#include <BRepTools.hxx>
-#include <gp_XY.hxx>
-#include <Geom_Line.hxx>
-#include <Geom_Plane.hxx>
-#include <Prs3d_PlaneAspect.hxx>
-#include <Standard_Dump.hxx>
-#include <TColgp_Array1OfPnt.hxx>
-#include <TopoDS_Compound.hxx>
-
-// =======================================================================
-// function : ReadShape
-// purpose :
-// =======================================================================
-TopoDS_Shape Convert_Tools::ReadShape(const TCollection_AsciiString& theFileName)
-{
-  TopoDS_Shape aShape;
-
-  BRep_Builder aBuilder;
-  BRepTools::Read(aShape, theFileName.ToCString(), aBuilder);
-  return aShape;
-}
-
-//=======================================================================
-// function : ConvertStreamToPresentations
-// purpose  :
-//=======================================================================
-void Convert_Tools::ConvertStreamToPresentations(
-  const Standard_SStream& theSStream,
-  const Standard_Integer  theStartPos,
-  const Standard_Integer /*theLastPos*/,
-  NCollection_List<Handle(Standard_Transient)>& thePresentations)
-{
-  int aStartPos = theStartPos;
-
-  gp_XYZ aPoint;
-  if (aPoint.InitFromJson(theSStream, aStartPos))
-  {
-    thePresentations.Append(new Convert_TransientShape(BRepBuilderAPI_MakeVertex(aPoint)));
-    return;
-  }
-
-  gp_Pnt aPnt;
-  if (aPnt.InitFromJson(theSStream, aStartPos))
-  {
-    thePresentations.Append(new Convert_TransientShape(BRepBuilderAPI_MakeVertex(aPnt)));
-    return;
-  }
-
-  gp_Dir aDir;
-  if (aDir.InitFromJson(theSStream, aStartPos))
-  {
-    gp_Lin            aLin(gp::Origin(), aDir);
-    Handle(Geom_Line) aGeomLine = new Geom_Line(aLin);
-    CreatePresentation(aGeomLine, thePresentations);
-    return;
-  }
-
-  gp_Ax2 anAx2;
-  if (anAx2.InitFromJson(theSStream, aStartPos))
-  {
-    Handle(Geom_Plane) aGeomPlane = new Geom_Plane(gp_Ax3(anAx2));
-    CreatePresentation(aGeomPlane, thePresentations);
-    return;
-  }
-
-  gp_Ax3 anAx3; // should be after gp_Ax2
-  if (anAx3.InitFromJson(theSStream, aStartPos))
-  {
-    Handle(Geom_Plane) aGeomPlane = new Geom_Plane(anAx3);
-    CreatePresentation(aGeomPlane, thePresentations);
-    return;
-  }
-
-  // should be after gp_Ax3
-  gp_Ax1 anAxis;
-  if (anAxis.InitFromJson(theSStream, aStartPos))
-  {
-    thePresentations.Append(new Convert_TransientShape(
-      BRepBuilderAPI_MakeEdge(anAxis.Location(),
-                              anAxis.Location().Coord() + anAxis.Direction().XYZ())));
-    return;
-  }
-
-  gp_Trsf aTrsf;
-  if (aTrsf.InitFromJson(theSStream, aStartPos))
-  {
-    CreatePresentation(aTrsf, thePresentations);
-    return;
-  }
-
-  Bnd_Box aBox;
-  if (aBox.InitFromJson(theSStream, aStartPos))
-  {
-    TopoDS_Shape aShape;
-    if (Convert_Tools::CreateShape(aBox, aShape))
-      thePresentations.Append(new Convert_TransientShape(aShape));
-    return;
-  }
-
-  Select3D_BndBox3d aSelectBndBox;
-  if (aSelectBndBox.InitFromJson(theSStream, aStartPos))
-  {
-    TopoDS_Shape aShape;
-
-    gp_Pnt aPntMin = gp_Pnt(aSelectBndBox.CornerMin().x(),
-                            aSelectBndBox.CornerMin().y(),
-                            aSelectBndBox.CornerMin().z());
-    gp_Pnt aPntMax = gp_Pnt(aSelectBndBox.CornerMax().x(),
-                            aSelectBndBox.CornerMax().y(),
-                            aSelectBndBox.CornerMax().z());
-    if (CreateBoxShape(aPntMin, aPntMax, aShape))
-      thePresentations.Append(new Convert_TransientShape(aShape));
-    return;
-  }
-}
-
-//=======================================================================
-// function : ConvertStreamToColor
-// purpose  :
-//=======================================================================
-Standard_Boolean Convert_Tools::ConvertStreamToColor(const Standard_SStream& theSStream,
-                                                     Quantity_Color&         theColor)
-{
-  Standard_Integer   aStartPos = 1;
-  Quantity_ColorRGBA aColorRGBA;
-  if (aColorRGBA.InitFromJson(theSStream, aStartPos))
-  {
-    theColor = aColorRGBA.GetRGB();
-    return Standard_True;
-  }
-
-  Quantity_Color aColor;
-  if (aColor.InitFromJson(theSStream, aStartPos))
-  {
-    theColor = aColor;
-    return Standard_True;
-  }
-
-  return Standard_False;
-}
-
-//=======================================================================
-// function : CreateShape
-// purpose  :
-//=======================================================================
-Standard_Boolean Convert_Tools::CreateShape(const Bnd_Box& theBoundingBox, TopoDS_Shape& theShape)
-{
-  if (theBoundingBox.IsVoid() || theBoundingBox.IsWhole())
-    return Standard_False;
-
-  Standard_Real aXmin, anYmin, aZmin, aXmax, anYmax, aZmax;
-  theBoundingBox.Get(aXmin, anYmin, aZmin, aXmax, anYmax, aZmax);
-
-  gp_Pnt aPntMin = gp_Pnt(aXmin, anYmin, aZmin);
-  gp_Pnt aPntMax = gp_Pnt(aXmax, anYmax, aZmax);
-
-  return CreateBoxShape(aPntMin, aPntMax, theShape);
-}
-
-//=======================================================================
-// function : CreateShape
-// purpose  :
-//=======================================================================
-Standard_Boolean Convert_Tools::CreateShape(const Bnd_OBB& theBoundingBox, TopoDS_Shape& theShape)
-{
-  if (theBoundingBox.IsVoid())
-    return Standard_False;
-
-  TColgp_Array1OfPnt anArrPnts(0, 8);
-  theBoundingBox.GetVertex(&anArrPnts(0));
-
-  BRep_Builder    aBuilder;
-  TopoDS_Compound aCompound;
-  aBuilder.MakeCompound(aCompound);
-
-  aBuilder.Add(aCompound,
-               BRepBuilderAPI_MakeEdge(gp_Pnt(anArrPnts.Value(0)), gp_Pnt(anArrPnts.Value(1))));
-  aBuilder.Add(aCompound,
-               BRepBuilderAPI_MakeEdge(gp_Pnt(anArrPnts.Value(0)), gp_Pnt(anArrPnts.Value(2))));
-  aBuilder.Add(aCompound,
-               BRepBuilderAPI_MakeEdge(gp_Pnt(anArrPnts.Value(1)), gp_Pnt(anArrPnts.Value(3))));
-  aBuilder.Add(aCompound,
-               BRepBuilderAPI_MakeEdge(gp_Pnt(anArrPnts.Value(2)), gp_Pnt(anArrPnts.Value(3))));
-
-  theShape = aCompound;
-  return Standard_True;
-}
-
-//=======================================================================
-// function : CreateBoxShape
-// purpose  :
-//=======================================================================
-Standard_Boolean Convert_Tools::CreateBoxShape(const gp_Pnt& thePntMin,
-                                               const gp_Pnt& thePntMax,
-                                               TopoDS_Shape& theShape)
-{
-  BRepPreviewAPI_MakeBox aMakeBox;
-  aMakeBox.Init(thePntMin, thePntMax);
-  theShape = aMakeBox.Shape();
-
-  return Standard_True;
-}
-
-//=======================================================================
-// function : CreatePresentation
-// purpose  :
-//=======================================================================
-void Convert_Tools::CreatePresentation(
-  const Handle(Geom_Line)&                      theLine,
-  NCollection_List<Handle(Standard_Transient)>& thePresentations)
-{
-  Handle(AIS_Line) aLinePrs = new AIS_Line(theLine);
-  aLinePrs->SetColor(Quantity_NOC_TOMATO);
-  thePresentations.Append(aLinePrs);
-}
-
-//=======================================================================
-// function : CreatePresentation
-// purpose  :
-//=======================================================================
-void Convert_Tools::CreatePresentation(
-  const Handle(Geom_Plane)&                     thePlane,
-  NCollection_List<Handle(Standard_Transient)>& thePresentations)
-{
-  Handle(AIS_Plane) aPlanePrs = new AIS_Plane(thePlane);
-
-  aPlanePrs->Attributes()->SetPlaneAspect(new Prs3d_PlaneAspect());
-  Handle(Prs3d_PlaneAspect) aPlaneAspect = aPlanePrs->Attributes()->PlaneAspect();
-  aPlaneAspect->SetPlaneLength(100, 100);
-  aPlaneAspect->SetDisplayCenterArrow(Standard_True);
-  aPlaneAspect->SetDisplayEdgesArrows(Standard_True);
-  aPlaneAspect->SetArrowsSize(100);
-  aPlaneAspect->SetArrowsLength(100);
-  aPlaneAspect->SetDisplayCenterArrow(Standard_True);
-  aPlaneAspect->SetDisplayEdges(Standard_True);
-
-  aPlanePrs->SetColor(Quantity_NOC_WHITE);
-  aPlanePrs->SetTransparency(0);
-
-  thePresentations.Append(aPlanePrs);
-}
-
-//=======================================================================
-// function : CreatePresentation
-// purpose  :
-//=======================================================================
-void Convert_Tools::CreatePresentation(
-  const gp_Trsf&                                theTrsf,
-  NCollection_List<Handle(Standard_Transient)>& thePresentations)
-{
-  Bnd_Box aBox(gp_Pnt(), gp_Pnt(10., 10., 10));
-
-  TopoDS_Shape aBoxShape;
-  if (!Convert_Tools::CreateShape(aBox, aBoxShape))
-    return;
-
-  Handle(AIS_Shape) aSourcePrs = new AIS_Shape(aBoxShape);
-  aSourcePrs->Attributes()->SetAutoTriangulation(Standard_False);
-  aSourcePrs->SetColor(Quantity_NOC_WHITE);
-  aSourcePrs->SetTransparency(0.5);
-  thePresentations.Append(aSourcePrs);
-
-  Handle(AIS_Shape) aTransformedPrs = new AIS_Shape(aBoxShape);
-  aTransformedPrs->Attributes()->SetAutoTriangulation(Standard_False);
-  aTransformedPrs->SetColor(Quantity_NOC_TOMATO);
-  aTransformedPrs->SetTransparency(0.5);
-  aTransformedPrs->SetLocalTransformation(theTrsf);
-  thePresentations.Append(aTransformedPrs);
-}
diff --git a/tools/Convert/Convert_Tools.hxx b/tools/Convert/Convert_Tools.hxx
deleted file mode 100644
index b809de733d..0000000000
--- a/tools/Convert/Convert_Tools.hxx
+++ /dev/null
@@ -1,113 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 Convert_Tools_H
-#define Convert_Tools_H
-
-#include <gp_Dir.hxx>
-#include <gp_Pnt.hxx>
-#include <gp_Trsf.hxx>
-#include <gp_XYZ.hxx>
-#include <Bnd_Box.hxx>
-#include <Bnd_OBB.hxx>
-#include <NCollection_List.hxx>
-#include <Quantity_Color.hxx>
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-#include <TColgp_HArray1OfPnt.hxx>
-#include <Standard_Dump.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <TopLoc_Location.hxx>
-#include <TopoDS_Shape.hxx>
-#include <Standard_SStream.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QString>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-class Geom_Line;
-class Geom_Plane;
-class Geom_Transformation;
-
-//! \class Convert_Tools
-//! \brief The tool that gives auxiliary methods for qt elements manipulation.
-class Convert_Tools
-{
-public:
-  //! Reads Shape using BREP reader
-  //! \param theFileName a file name
-  //! \return shape or NULL
-  Standard_EXPORT static TopoDS_Shape ReadShape(const TCollection_AsciiString& theFileName);
-
-  //! Creates shape presentations on the stream if possible. Tries to init some OCCT base for a new
-  //! presentation \param theStream source of presentation \param thePresentations container to
-  //! collect new presentations
-  Standard_EXPORT static void ConvertStreamToPresentations(
-    const Standard_SStream&                       theSStream,
-    const Standard_Integer                        theStartPos,
-    const Standard_Integer                        theLastPos,
-    NCollection_List<Handle(Standard_Transient)>& thePresentations);
-
-  //! Converts stream to color if possible. It processes Quantity_Color, Quantity_ColorRGBA
-  //! \param theStream source of presentation
-  //! \param[out] theColor  converted color
-  //! \returns true if done
-  Standard_EXPORT static Standard_Boolean ConvertStreamToColor(const Standard_SStream& theSStream,
-                                                               Quantity_Color&         theColor);
-
-  //! Creates box shape
-  //! \param theBoundingBox box shape parameters
-  //! \return created shape
-  Standard_EXPORT static Standard_Boolean CreateShape(const Bnd_Box& theBoundingBox,
-                                                      TopoDS_Shape&  theShape);
-
-  //! Creates box shape
-  //! \param theBoundingBox box shape parameters
-  //! \return created shape
-  Standard_EXPORT static Standard_Boolean CreateShape(const Bnd_OBB& theBoundingBox,
-                                                      TopoDS_Shape&  theShape);
-
-  //! Creates box shape
-  //! \param thePntMin minimum point on the bounding box
-  //! \param thePntMax maximum point on the bounding box
-  //! \return created shape
-  Standard_EXPORT static Standard_Boolean CreateBoxShape(const gp_Pnt& thePntMin,
-                                                         const gp_Pnt& thePntMax,
-                                                         TopoDS_Shape& theShape);
-
-  //! Creates presentation AIS_Line
-  //! \param theLine source line
-  //! \param thePresentations container to collect new presentations
-  Standard_EXPORT static void CreatePresentation(
-    const Handle(Geom_Line)&                      theLine,
-    NCollection_List<Handle(Standard_Transient)>& thePresentations);
-
-  //! Creates presentation AIS_Plane
-  //! \param thePlane source plane
-  //! \param thePresentations container to collect new presentations
-  Standard_EXPORT static void CreatePresentation(
-    const Handle(Geom_Plane)&                     thePlane,
-    NCollection_List<Handle(Standard_Transient)>& thePresentations);
-
-  //! Creates two presentations base on gp_Trsf: box in initial place and transformed box
-  //! \param thePlane source plane
-  //! \param thePresentations container to collect new presentations
-  Standard_EXPORT static void CreatePresentation(
-    const gp_Trsf&                                theTrsf,
-    NCollection_List<Handle(Standard_Transient)>& thePresentations);
-};
-
-#endif
diff --git a/tools/Convert/Convert_TransientShape.hxx b/tools/Convert/Convert_TransientShape.hxx
deleted file mode 100644
index fcaeb6fe45..0000000000
--- a/tools/Convert/Convert_TransientShape.hxx
+++ /dev/null
@@ -1,50 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 Convert_TransientShape_H
-#define Convert_TransientShape_H
-
-#include <Standard.hxx>
-#include <Standard_Handle.hxx>
-#include <Standard_Macro.hxx>
-#include <Standard_Type.hxx>
-#include <Standard_Transient.hxx>
-
-#include <TopoDS_Shape.hxx>
-
-//! \class Convert_TransientShape
-//! \brief An interface to convert a shape into a transient object to be used in arguments
-class Convert_TransientShape : public Standard_Transient
-{
-public:
-  //! Constructor
-  Convert_TransientShape(const TopoDS_Shape& theShape) { SetShape(theShape); }
-
-  //! Destructor
-  virtual ~Convert_TransientShape() {}
-
-  //! Returns current shape
-  const TopoDS_Shape Shape() const { return myShape; }
-
-  //! Fills current shape
-  void SetShape(const TopoDS_Shape& theShape) { myShape = theShape; }
-
-  DEFINE_STANDARD_RTTI_INLINE(Convert_TransientShape, Standard_Transient)
-
-private:
-  TopoDS_Shape myShape; //!< the shape
-};
-
-#endif
diff --git a/tools/Convert/FILES b/tools/Convert/FILES
deleted file mode 100644
index 77362ef432..0000000000
--- a/tools/Convert/FILES
+++ /dev/null
@@ -1,3 +0,0 @@
-Convert_Tools.cxx
-Convert_Tools.hxx
-Convert_TransientShape.hxx
diff --git a/tools/DFBrowser/DFBrowser.qrc b/tools/DFBrowser/DFBrowser.qrc
deleted file mode 100644
index e1f167f061..0000000000
--- a/tools/DFBrowser/DFBrowser.qrc
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE RCC><RCC version="1.0">
-    <qresource>
-        <file>icons/attribute.png</file>
-        <file>icons/attribute_40x40.png</file>
-        <file>icons/export_shape.png</file>
-        <file>icons/folder_export.png</file>
-        <file>icons/item_type_folder.png</file>
-        <file>icons/item_type_folder_40x40.png</file>
-        <file>icons/level_change.png</file>
-        <file>icons/named_shape.png</file>
-        <file>icons/named_shape_40x40.png</file>
-        <file>icons/search.png</file>
-        <file>icons/search_cancel.png</file>
-        <file>icons/treeline_backward.png</file>
-        <file>icons/treeline_forward.png</file>
-        <file>icons/treeline_update.png</file>
-    </qresource>
-</RCC>
diff --git a/tools/DFBrowser/DFBrowser_AttributePaneStack.cxx b/tools/DFBrowser/DFBrowser_AttributePaneStack.cxx
deleted file mode 100644
index d59a209324..0000000000
--- a/tools/DFBrowser/DFBrowser_AttributePaneStack.cxx
+++ /dev/null
@@ -1,153 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_AttributePaneStack.hxx>
-
-#include <inspector/DFBrowserPane_AttributePaneAPI.hxx>
-#include <inspector/DFBrowserPane_AttributePaneSelector.hxx>
-#include <inspector/DFBrowser_Item.hxx>
-#include <inspector/DFBrowser_Module.hxx>
-#include <inspector/DFBrowser_Tools.hxx>
-#include <inspector/DFBrowser_TreeLevelView.hxx>
-#include <inspector/DFBrowser_TreeModel.hxx>
-#include <inspector/DFBrowser_SearchView.hxx>
-#include <inspector/DFBrowser_Window.hxx>
-
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <TDF_Attribute.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QItemSelectionModel>
-#include <QMap>
-#include <QStackedWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowser_AttributePaneStack::DFBrowser_AttributePaneStack(QObject* theParent)
-    : QObject(theParent),
-      myCurrentPane(0),
-      myAttributesStack(0),
-      myModule(0),
-      myTreeLevelView(0),
-      mySearchView(0),
-      myEmptyWidget(0),
-      myPaneMode(DFBrowser_AttributePaneType_ItemView)
-{
-  myPaneSelector = new DFBrowserPane_AttributePaneSelector(theParent);
-}
-
-// =======================================================================
-// function : CreateWidget
-// purpose :
-// =======================================================================
-void DFBrowser_AttributePaneStack::CreateWidget(QWidget* theParent)
-{
-  myAttributesStack = new QStackedWidget(theParent);
-  ViewControl_Tools::SetWhiteBackground(myAttributesStack);
-  myEmptyWidget = new QWidget(theParent);
-  ViewControl_Tools::SetWhiteBackground(myEmptyWidget);
-
-  myAttributesStack->addWidget(myEmptyWidget);
-
-  myTreeLevelView = new DFBrowser_TreeLevelView(theParent);
-  myAttributesStack->addWidget(myTreeLevelView->GetControl());
-
-  mySearchView = new DFBrowser_SearchView(theParent);
-  myAttributesStack->addWidget(mySearchView->GetControl());
-
-  myAttributesStack->setCurrentWidget(myEmptyWidget);
-}
-
-// =======================================================================
-// function : SetPaneMode
-// purpose :
-// =======================================================================
-void DFBrowser_AttributePaneStack::SetPaneMode(const DFBrowser_AttributePaneType& theMode)
-{
-  if (myPaneMode == theMode)
-    return;
-
-  myPaneMode = theMode;
-  if (myPaneMode == DFBrowser_AttributePaneType_SearchView)
-  {
-    // clear highlight in tree model
-    DFBrowser_TreeModel* aModel = dynamic_cast<DFBrowser_TreeModel*>(myModule->GetOCAFViewModel());
-    if (aModel && aModel->HasHighlighted())
-      aModel->SetHighlighted(QModelIndexList());
-    myAttributesStack->setCurrentWidget(mySearchView->GetControl());
-  }
-  else
-  {
-    QItemSelectionModel* aSelectionModel = myModule->GetOCAFViewSelectionModel();
-    QModelIndex          anIndex =
-      TreeModel_ModelBase::SingleSelected(aSelectionModel->selectedIndexes(), 0);
-    SetCurrentItem(anIndex);
-  }
-}
-
-// =======================================================================
-// function : SetCurrentItem
-// purpose :
-// =======================================================================
-void DFBrowser_AttributePaneStack::SetCurrentItem(const QModelIndex& theIndex)
-{
-  if (myPaneMode != DFBrowser_AttributePaneType_ItemView)
-    return;
-
-  // clear highlight in tree model
-  DFBrowser_TreeModel* aModel = dynamic_cast<DFBrowser_TreeModel*>(myModule->GetOCAFViewModel());
-  if (aModel && aModel->HasHighlighted())
-    aModel->SetHighlighted(QModelIndexList());
-
-  myCurrentPane                    = 0;
-  QWidget*              aWidget    = 0;
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(theIndex);
-  if (!anItemBase)
-    return;
-
-  if (DFBrowser_TreeLevelView::ProcessItem(theIndex))
-    aWidget = myTreeLevelView->GetControl();
-  else
-  {
-    DFBrowser_ItemPtr anItem = itemDynamicCast<DFBrowser_Item>(anItemBase);
-    if (!anItem)
-      return;
-
-    if (myAttributesStack->currentWidget() == myTreeLevelView->GetControl())
-      myTreeLevelView->ClearSelection();
-    Handle(TDF_Attribute) anAttribute = anItem->GetAttribute();
-    myCurrentPane                     = myModule->GetAttributePane(anAttribute);
-
-    if (myCurrentPane)
-    {
-      aWidget = myCurrentPane->GetWidget(myAttributesStack, true);
-      if (aWidget)
-      {
-        int aWidgetIndex = myAttributesStack->indexOf(aWidget);
-        if (aWidgetIndex < 0)
-          myAttributesStack->addWidget(aWidget);
-      }
-      myCurrentPane->Init(anAttribute);
-
-      std::list<QItemSelectionModel*> aSelectionModels = myCurrentPane->GetSelectionModels();
-      myPaneSelector->SetCurrentSelectionModels(aSelectionModels);
-    }
-  }
-  myAttributesStack->setCurrentWidget(aWidget != NULL ? aWidget : myEmptyWidget);
-}
diff --git a/tools/DFBrowser/DFBrowser_AttributePaneStack.hxx b/tools/DFBrowser/DFBrowser_AttributePaneStack.hxx
deleted file mode 100644
index 7d81efecce..0000000000
--- a/tools/DFBrowser/DFBrowser_AttributePaneStack.hxx
+++ /dev/null
@@ -1,94 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_AttributePaneStack_H
-#define DFBrowser_AttributePaneStack_H
-
-#include <inspector/DFBrowser_AttributePaneType.hxx>
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <Standard.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QMap>
-#include <QItemSelection>
-#include <QStackedWidget>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowserPane_AttributePaneAPI;
-class DFBrowserPane_AttributePaneSelector;
-class DFBrowser_Module;
-class DFBrowser_SearchView;
-class DFBrowser_TreeLevelView;
-
-class QStackedWidget;
-class QWidget;
-
-//! \class DFBrowser_AttributePaneStack
-//! \brief Provides work to stacked widget where the current attribute pane is shown.
-class DFBrowser_AttributePaneStack : public QObject
-{
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowser_AttributePaneStack(QObject* theParent);
-
-  //! Destructor
-  virtual ~DFBrowser_AttributePaneStack() {}
-
-  //! Creates a stacked widget
-  //! \param theParent a parent widget
-  Standard_EXPORT virtual void CreateWidget(QWidget* theParent);
-
-  //! \return the stacked widget
-  QWidget* GetWidget() const { return myAttributesStack; }
-
-  //! Fills stack with the information
-  //! \param theAttributeTypes a map of attribute type name to information pane
-  void SetModule(DFBrowser_Module* theModule) { myModule = theModule; }
-
-  //! Sets the current widget in the stacked control either attribute pane or search view
-  //! \param theMode an active mode
-  Standard_EXPORT void SetPaneMode(const DFBrowser_AttributePaneType& theMode);
-
-  //! \return an attribute pane, which corresponds the current widget of the stacked widget control
-  DFBrowserPane_AttributePaneAPI* GetCurrentPane() const { return myCurrentPane; }
-
-  //! \return tree level view
-  DFBrowser_TreeLevelView* GetTreeLevelView() const { return myTreeLevelView; }
-
-  //! \return the search view
-  DFBrowser_SearchView* GetSearchView() const { return mySearchView; }
-
-  //! \return the pane selector
-  DFBrowserPane_AttributePaneSelector* GetPaneSelector() const { return myPaneSelector; }
-
-  //! Sets an active widget of attribute pane if the pane mode is item view mode.
-  //! Gets selection models of this pane and set the models into pane selector
-  Standard_EXPORT void SetCurrentItem(const QModelIndex& theIndex);
-
-protected:
-  DFBrowserPane_AttributePaneAPI*      myCurrentPane;  //!< active pane if mode is item view mode
-  DFBrowserPane_AttributePaneSelector* myPaneSelector; //!< pane selector filled by the active pane
-  QStackedWidget*                      myAttributesStack; //!< container of already created panes
-  DFBrowser_Module*                    myModule;          //!< the current module
-  DFBrowser_TreeLevelView* myTreeLevelView; //!< view of objects from one level of tree view
-  DFBrowser_SearchView*    mySearchView;    //!< view of search control
-  QWidget*                 myEmptyWidget; //!< an empty widget when nothing is selected in tree view
-  DFBrowser_AttributePaneType
-    myPaneMode; //!< the current pane mode, either item view or search view
-};
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_AttributePaneType.hxx b/tools/DFBrowser/DFBrowser_AttributePaneType.hxx
deleted file mode 100644
index f25164e8a1..0000000000
--- a/tools/DFBrowser/DFBrowser_AttributePaneType.hxx
+++ /dev/null
@@ -1,27 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_AttributePaneType_H
-#define DFBrowser_AttributePaneType_H
-
-//! Type of view shown in attribute pane stack
-enum DFBrowser_AttributePaneType
-{
-  DFBrowser_AttributePaneType_ItemView,  //!< attribute pane stack shows either TreeLevelView or
-                                         //!< attribute pane
-  DFBrowser_AttributePaneType_SearchView //!< attribute pane stack shows search view
-};
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_Communicator.cxx b/tools/DFBrowser/DFBrowser_Communicator.cxx
deleted file mode 100644
index 5ebb6b4d29..0000000000
--- a/tools/DFBrowser/DFBrowser_Communicator.cxx
+++ /dev/null
@@ -1,50 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_Communicator.hxx>
-
-#include <inspector/DFBrowser_Module.hxx>
-#include <inspector/DFBrowser_Window.hxx>
-
-// =======================================================================
-// function : CreateCommunicator
-// purpose : Creates a communicator by the library loading
-// =======================================================================
-Standard_EXPORTEXTERNC TInspectorAPI_Communicator* CreateCommunicator()
-{
-  return new DFBrowser_Communicator();
-}
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowser_Communicator::DFBrowser_Communicator()
-    : TInspectorAPI_Communicator(),
-      myWindow(0)
-{
-  myWindow = new DFBrowser_Window();
-}
-
-// =======================================================================
-// function : SetParameters
-// purpose :
-// =======================================================================
-void DFBrowser_Communicator::SetParameters(
-  const Handle(TInspectorAPI_PluginParameters)& theParameters)
-{
-  myWindow->SetParameters(theParameters);
-  myWindow->UpdateContent();
-}
diff --git a/tools/DFBrowser/DFBrowser_Communicator.hxx b/tools/DFBrowser/DFBrowser_Communicator.hxx
deleted file mode 100644
index 494ee16c90..0000000000
--- a/tools/DFBrowser/DFBrowser_Communicator.hxx
+++ /dev/null
@@ -1,80 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_Communicator_H
-#define DFBrowser_Communicator_H
-
-#include <inspector/DFBrowser_Window.hxx>
-#include <inspector/TInspectorAPI_Communicator.hxx>
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowser_Window;
-
-//! \class DFBrowser_Communicator.
-//! \brief This is a connector from TInspector application to DFBrowser view
-class DFBrowser_Communicator : public QObject, public TInspectorAPI_Communicator
-{
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowser_Communicator();
-
-  //! Destructor
-  virtual ~DFBrowser_Communicator() {}
-
-  //! Provides the container with a parent where this container should be inserted.
-  //! If Qt implementation, it should be QWidget with QLayout set inside
-  //! \param theParent a parent class
-  virtual void SetParent(void* theParent) Standard_OVERRIDE { myWindow->SetParent(theParent); }
-
-  //! Sets parameters container, it should be used when the plugin is initialized or in update
-  //! content \param theParameters a parameters container
-  Standard_EXPORT virtual void SetParameters(
-    const Handle(TInspectorAPI_PluginParameters)& theParameters) Standard_OVERRIDE;
-
-  //! Provides container for actions available in inspector on general level
-  //! \param theMenu if Qt implementation, it is QMenu object
-  Standard_EXPORT virtual void FillActionsMenu(void* theMenu) Standard_OVERRIDE
-  {
-    myWindow->FillActionsMenu(theMenu);
-  }
-
-  //! Returns plugin preferences, empty implementation by default
-  //! \param theItem container of preference elements
-  virtual void GetPreferences(TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
-  {
-    myWindow->GetPreferences(theItem);
-  }
-
-  //! Stores plugin preferences, empty implementation by default
-  //! \param theItem container of preference elements
-  virtual void SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
-  {
-    myWindow->SetPreferences(theItem);
-  }
-
-  //! Updates content of the current window
-  virtual void UpdateContent() Standard_OVERRIDE { myWindow->UpdateContent(); }
-
-private:
-  DFBrowser_Window* myWindow; //!< the current window
-};
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_DumpView.cxx b/tools/DFBrowser/DFBrowser_DumpView.cxx
deleted file mode 100644
index 7fe94fdf52..0000000000
--- a/tools/DFBrowser/DFBrowser_DumpView.cxx
+++ /dev/null
@@ -1,98 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_DumpView.hxx>
-
-#include <inspector/DFBrowser_Item.hxx>
-#include <inspector/DFBrowser_Window.hxx>
-#include <inspector/DFBrowser_TreeLevelView.hxx>
-#include <OSD_OpenFile.hxx>
-#include <inspector/TreeModel_ModelBase.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractItemModel>
-#include <QDir>
-#include <QFile>
-#include <QPlainTextEdit>
-#include <QTextStream>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : onSelectionChanged
-// purpose :
-// =======================================================================
-void DFBrowser_DumpView::OnTreeViewSelectionChanged(const QItemSelection& theSelected,
-                                                    const QItemSelection&)
-{
-  myTextEdit->setVisible(false);
-  myTextEdit->clear();
-
-  QModelIndexList aSelectedIndices = theSelected.indexes();
-  QModelIndexList aFirstColumnSelectedIndices;
-  for (QModelIndexList::const_iterator aSelIt = aSelectedIndices.begin();
-       aSelIt != aSelectedIndices.end();
-       aSelIt++)
-  {
-    QModelIndex anIndex = *aSelIt;
-    if (anIndex.column() == 0)
-      aFirstColumnSelectedIndices.append(anIndex);
-  }
-  if (aFirstColumnSelectedIndices.size() != 1)
-    return;
-
-  QString               aDumpInfo;
-  const QModelIndex&    anIndex    = aFirstColumnSelectedIndices.first();
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-  DFBrowser_ItemPtr     anItem;
-  if (anItemBase)
-    anItem = itemDynamicCast<DFBrowser_Item>(anItemBase);
-
-  if (!anItem)
-    return;
-
-  TCollection_AsciiString aFileName = DFBrowser_Window::TmpDirectory();
-  aFileName += "/dfbrowser.txt";
-  // print dump to file(not in a string stream because result might be too long)
-  std::ofstream aFileStream;
-  OSD_OpenStream(aFileStream, aFileName, std::ios::out);
-  if (anItem->HasAttribute())
-  {
-    Handle(TDF_Attribute) anAttribute = anItem->GetAttribute();
-    if (!anAttribute.IsNull())
-      anAttribute->Dump(aFileStream);
-  }
-  else if (anItem->HasLabel())
-    anItem->GetLabel().Dump(aFileStream);
-  aFileStream.close();
-
-  // read dumped file to fill view
-  QFile aFile(aFileName.ToCString());
-  if (!aFile.open(QIODevice::ReadOnly | QIODevice::Text))
-    return;
-  QTextStream aStream(&aFile);
-  while (!aStream.atEnd())
-  {
-    aDumpInfo.append(QString("%1\n").arg(aStream.readLine()));
-  }
-  aFile.close();
-  QDir aDir;
-  aDir.remove(aFileName.ToCString());
-  if (!aDumpInfo.isEmpty())
-  {
-    myTextEdit->setVisible(true);
-    myTextEdit->setPlainText(aDumpInfo);
-  }
-}
diff --git a/tools/DFBrowser/DFBrowser_DumpView.hxx b/tools/DFBrowser/DFBrowser_DumpView.hxx
deleted file mode 100644
index 1fe7736ecf..0000000000
--- a/tools/DFBrowser/DFBrowser_DumpView.hxx
+++ /dev/null
@@ -1,60 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_DumpView_H
-#define DFBrowser_DumpView_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QItemSelection>
-#include <QPlainTextEdit>
-#include <Standard_WarningsRestore.hxx>
-
-class QWidget;
-
-//! \class DFBrowser_DumpView
-//! \brief View to display result of Dump() method of a TDF_Attribute
-class DFBrowser_DumpView : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  DFBrowser_DumpView(QWidget* theParent)
-      : QObject(theParent),
-        myTextEdit(new QPlainTextEdit(theParent))
-  {
-  }
-
-  //! Destructor
-  virtual ~DFBrowser_DumpView() {}
-
-  //! \return the text edit control
-  QWidget* GetControl() const { return myTextEdit; }
-
-public slots:
-
-  //! Listens selection change and update the current control content by selection
-  //! \param theSelected container of selected items
-  //! \param theDeselected container of items that become deselected
-  Standard_EXPORT void OnTreeViewSelectionChanged(const QItemSelection& theSelected,
-                                                  const QItemSelection& theDeselected);
-
-private:
-  QPlainTextEdit* myTextEdit; //!< information view
-};
-#endif
diff --git a/tools/DFBrowser/DFBrowser_HighlightDelegate.cxx b/tools/DFBrowser/DFBrowser_HighlightDelegate.cxx
deleted file mode 100644
index 6aba8ea943..0000000000
--- a/tools/DFBrowser/DFBrowser_HighlightDelegate.cxx
+++ /dev/null
@@ -1,39 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_HighlightDelegate.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QPainter>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : paint
-// purpose :
-// =======================================================================
-void DFBrowser_HighlightDelegate::paint(QPainter*                   thePainter,
-                                        const QStyleOptionViewItem& theOption,
-                                        const QModelIndex&          theIndex) const
-{
-  // highlight cell
-  if (theOption.state & QStyle::State_MouseOver)
-  {
-    QColor aHighlightColor = DFBrowserPane_Tools::LightHighlightColor();
-    thePainter->fillRect(theOption.rect, aHighlightColor);
-  }
-  // default paint
-  QItemDelegate::paint(thePainter, theOption, theIndex);
-}
diff --git a/tools/DFBrowser/DFBrowser_HighlightDelegate.hxx b/tools/DFBrowser/DFBrowser_HighlightDelegate.hxx
deleted file mode 100644
index 1c8c2ed282..0000000000
--- a/tools/DFBrowser/DFBrowser_HighlightDelegate.hxx
+++ /dev/null
@@ -1,48 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_HighlightDelegate_H
-#define DFBrowser_HighlightDelegate_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QItemDelegate>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class DFBrowser_HighlightDelegate
-//! \brief An item delegate to paint in highlight color the cell when the mouse cursor is over it
-class DFBrowser_HighlightDelegate : public QItemDelegate
-{
-public:
-  //! Constructor
-  DFBrowser_HighlightDelegate(QObject* theParent = 0)
-      : QItemDelegate(theParent)
-  {
-  }
-
-  //! Destructor
-  virtual ~DFBrowser_HighlightDelegate() {}
-
-  //! Redefines of the parent virtual method to color the cell rectangle in highlight style
-  //! \param thePainter a painter
-  //! \param theOption a paint options
-  //! \param theIndex a view index
-  Standard_EXPORT virtual void paint(QPainter*                   thePainter,
-                                     const QStyleOptionViewItem& theOption,
-                                     const QModelIndex&          theIndex) const Standard_OVERRIDE;
-};
-#endif
diff --git a/tools/DFBrowser/DFBrowser_Item.cxx b/tools/DFBrowser/DFBrowser_Item.cxx
deleted file mode 100644
index 821180f343..0000000000
--- a/tools/DFBrowser/DFBrowser_Item.cxx
+++ /dev/null
@@ -1,216 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_Item.hxx>
-
-#include <inspector/DFBrowser_ItemRole.hxx>
-#include <inspector/DFBrowser_Module.hxx>
-#include <inspector/DFBrowser_Tools.hxx>
-#include <inspector/DFBrowser_Window.hxx>
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-#include <inspector/DFBrowserPane_ItemRole.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <TDF_AttributeIterator.hxx>
-#include <TDF_ChildIterator.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QIcon>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : hasAttribute
-// purpose :
-// =======================================================================
-bool DFBrowser_Item::HasAttribute() const
-{
-  initItem();
-  return myAttributeGUID != Standard_GUID();
-}
-
-// =======================================================================
-// function : getAttribute
-// purpose :
-// =======================================================================
-Handle(TDF_Attribute) DFBrowser_Item::GetAttribute() const
-{
-  initItem();
-  Handle(TDF_Attribute) anAttribute;
-  GetLabel().FindAttribute(myAttributeGUID, anAttribute);
-  return anAttribute;
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowser_Item::Init()
-{
-  DFBrowser_ItemBasePtr aParentItem = itemDynamicCast<DFBrowser_ItemBase>(Parent());
-  if (!aParentItem)
-    return;
-  TDF_Label aParentLabel = aParentItem->GetLabel();
-  // items can exist only by items with not empty label
-  if (aParentLabel.IsNull())
-    return;
-
-  int aNbAttributes = aParentLabel.NbAttributes();
-  int aRowId        = Row();
-  if (aRowId < aNbAttributes)
-  {
-    Handle(TDF_Attribute) anAttribute;
-    int                   anAttributeId = 0;
-    for (TDF_AttributeIterator anAttrIt(aParentLabel); anAttrIt.More();
-         anAttrIt.Next(), anAttributeId++)
-    {
-      if (anAttributeId == aRowId)
-        anAttribute = anAttrIt.Value();
-    }
-    SetAttribute(anAttribute);
-  }
-  else
-  {
-    int               aCurrentId = aRowId - aNbAttributes;
-    TDF_ChildIterator aLabelsIt(aParentLabel);
-    TDF_Label         aLabel;
-    for (int aLabelId = 0; aLabelsIt.More(); aLabelsIt.Next(), aLabelId++)
-    {
-      if (aLabelId < aCurrentId)
-        continue;
-      aLabel = aLabelsIt.Value();
-      break;
-    }
-    if (!aLabel.IsNull())
-      setLabel(aLabel);
-  }
-  TreeModel_ItemBase::Init();
-}
-
-// =======================================================================
-// function : reset
-// purpose :
-// =======================================================================
-void DFBrowser_Item::Reset()
-{
-  SetAttribute(Handle(TDF_Attribute)());
-
-  DFBrowser_ItemBase::Reset();
-}
-
-// =======================================================================
-// function : initRowCount
-// purpose :
-// =======================================================================
-int DFBrowser_Item::initRowCount() const
-{
-  return HasAttribute() ? 0 : DFBrowser_ItemBase::initRowCount();
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant DFBrowser_Item::initValue(const int theItemRole) const
-{
-  if (!HasAttribute())
-    return DFBrowser_ItemBase::initValue(theItemRole);
-
-  if (theItemRole == DFBrowserPane_ItemRole_DisplayExtended
-      || theItemRole == DFBrowserPane_ItemRole_ToolTipExtended)
-  {
-    int aRole =
-      theItemRole == DFBrowserPane_ItemRole_DisplayExtended ? Qt::DisplayRole : Qt::ToolTipRole;
-    QVariant aValue =
-      DFBrowser_Module::GetAttributeInfo(GetAttribute(), GetModule(), aRole, Column());
-    QString anAdditionalInfo = DFBrowser_Module::GetAttributeInfo(GetAttribute(),
-                                                                  GetModule(),
-                                                                  DFBrowser_ItemRole_AdditionalInfo,
-                                                                  Column())
-                                 .toString();
-    if (!anAdditionalInfo.isEmpty())
-    {
-      if (theItemRole == DFBrowserPane_ItemRole_DisplayExtended)
-        anAdditionalInfo = TreeModel_Tools::CutString(anAdditionalInfo);
-      if (!anAdditionalInfo.isEmpty())
-        aValue = QVariant(aValue.toString() + QString(" [%1]").arg(anAdditionalInfo));
-      // if (aRole == Qt::ToolTipRole)
-      //   aValue = wrapTextByWords(aValue.toString().toStdString(), INFO_LENGHT).c_str();
-    }
-    return aValue;
-  }
-
-  return DFBrowser_Module::GetAttributeInfo(GetAttribute(), GetModule(), theItemRole, Column());
-}
-
-// =======================================================================
-// function : initStream
-// purpose :
-// =======================================================================
-void DFBrowser_Item::initStream(Standard_OStream& theOStream) const
-{
-  if (!HasAttribute())
-    return;
-
-  if (DFBrowser_Window::IsUseDumpJson())
-  {
-    Handle(TDF_Attribute) anAttribute = GetAttribute();
-    if (!anAttribute.IsNull())
-    {
-      anAttribute->DumpJson(theOStream);
-    }
-  }
-}
-
-// =======================================================================
-// function : GetAttributeInfo
-// purpose :
-// =======================================================================
-QVariant DFBrowser_Item::GetAttributeInfo(int theRole) const
-{
-  initItem();
-  return cachedValue(theRole);
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void DFBrowser_Item::initItem() const
-{
-  if (IsInitialized())
-    return;
-
-  const_cast<DFBrowser_Item*>(this)->Init();
-}
-
-// =======================================================================
-// function : SetAttribute
-// purpose :
-// =======================================================================
-void DFBrowser_Item::SetAttribute(Handle(TDF_Attribute) theAttribute)
-{
-  if (!theAttribute.IsNull())
-  {
-    setLabel(theAttribute->Label());
-    myAttributeGUID = theAttribute->ID();
-  }
-  else
-  {
-    setLabel(TDF_Label());
-    myAttributeGUID = Standard_GUID();
-  }
-}
diff --git a/tools/DFBrowser/DFBrowser_Item.hxx b/tools/DFBrowser/DFBrowser_Item.hxx
deleted file mode 100644
index 647f28d9b0..0000000000
--- a/tools/DFBrowser/DFBrowser_Item.hxx
+++ /dev/null
@@ -1,106 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_Item_H
-#define DFBrowser_Item_H
-
-#include <inspector/DFBrowser_ItemBase.hxx>
-
-#include <TDF_Attribute.hxx>
-#include <Standard.hxx>
-#include <Standard_GUID.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QMap>
-#include <QList>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowser_Item;
-typedef QExplicitlySharedDataPointer<DFBrowser_Item> DFBrowser_ItemPtr;
-
-//! \class DFBrowser_Item
-//! \brief Declaration of the tree model root item.
-class DFBrowser_Item : public DFBrowser_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  //! \param theRow the item row position in the parent item
-  //! \param theColumn the item column position in the parent item
-  //! \return the pointer to the created item
-  static DFBrowser_ItemPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                      const int             theRow,
-                                      const int             theColumn)
-  {
-    return DFBrowser_ItemPtr(new DFBrowser_Item(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~DFBrowser_Item() {}
-
-  //! \return true if the attribute is set in the item, otherwise it is initialized by a label
-  Standard_EXPORT bool HasAttribute() const;
-
-  //! \return the item attribute
-  Standard_EXPORT Handle(TDF_Attribute) GetAttribute() const;
-
-  //! Finds int parent item attribute or label by this item row and store it in a field of this
-  //! item.
-  Standard_EXPORT virtual void Init() Standard_OVERRIDE;
-
-  //! Resets the cached item values, set null attribute and calls reset of the parent class
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-  //! Inits item and calls cachedValue() for the role
-  //! \param theItemRole a value role
-  //! \return the value
-  Standard_EXPORT QVariant GetAttributeInfo(int theRole) const;
-
-protected:
-  //! \return number of children.
-  virtual int initRowCount() const Standard_OVERRIDE;
-
-  //! Returns data value for the role:
-  //! - if content is label, calls DFBrowser_ItemBase;
-  //! - if content is attribute, if the fole is extended display, asks additional info text or ask
-  //! module about info \param theItemRole a value role \return the value
-  virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
-
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  Standard_EXPORT virtual void initStream(Standard_OStream& theOStream) const Standard_OVERRIDE;
-
-  //! Constructor
-  //! \param theParent a parent item
-  //! \param theRow the item row position in the parent item
-  //! \param theColumn the item column position in the parent item
-  DFBrowser_Item(TreeModel_ItemBasePtr theParent, const int theRow, const int theColumn)
-      : DFBrowser_ItemBase(theParent, theRow, theColumn)
-  {
-  }
-
-  //! Initializes the current item. It creates a backup of the specific item information
-  virtual void initItem() const Standard_OVERRIDE;
-
-  //! Sets the item attribute
-  //! \param theAttribute an item attribute
-  void SetAttribute(Handle(TDF_Attribute) theAttribute);
-
-private:
-  Standard_GUID myAttributeGUID; //!< if attribute, stores GUID of the attribute because label can
-                                 //!< contain only one attribute of a kind
-};
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_ItemApplication.cxx b/tools/DFBrowser/DFBrowser_ItemApplication.cxx
deleted file mode 100644
index 06c475b702..0000000000
--- a/tools/DFBrowser/DFBrowser_ItemApplication.cxx
+++ /dev/null
@@ -1,69 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_ItemApplication.hxx>
-
-#include <inspector/DFBrowser_Item.hxx>
-#include <inspector/DFBrowser_ItemDocument.hxx>
-#include <inspector/DFBrowser_Module.hxx>
-#include <inspector/DFBrowser_Tools.hxx>
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-#include <inspector/DFBrowserPane_ItemRole.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : createChild
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr DFBrowser_ItemApplication::createChild(int theRow, int theColumn)
-{
-  TreeModel_ItemBasePtr anItem =
-    DFBrowser_ItemDocument::CreateItem(currentItem(), theRow, theColumn);
-  DFBrowser_ItemBasePtr aBaseItem = itemDynamicCast<DFBrowser_ItemBase>(anItem);
-  aBaseItem->SetModule(GetModule());
-
-  return anItem;
-}
-
-// =======================================================================
-// function : initRowCount
-// purpose :
-// =======================================================================
-int DFBrowser_ItemApplication::initRowCount() const
-{
-  if (myApplication.IsNull())
-    return 0;
-
-  return myApplication->NbDocuments();
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant DFBrowser_ItemApplication::initValue(const int theItemRole) const
-{
-  if (theItemRole == Qt::DisplayRole || theItemRole == Qt::EditRole
-      || theItemRole == Qt::ToolTipRole || theItemRole == DFBrowserPane_ItemRole_DisplayExtended
-      || theItemRole == DFBrowserPane_ItemRole_ToolTipExtended)
-  {
-    return "TDocStd_Application";
-  }
-  return QVariant();
-}
diff --git a/tools/DFBrowser/DFBrowser_ItemApplication.hxx b/tools/DFBrowser/DFBrowser_ItemApplication.hxx
deleted file mode 100644
index c29eb38b59..0000000000
--- a/tools/DFBrowser/DFBrowser_ItemApplication.hxx
+++ /dev/null
@@ -1,81 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_ItemApplication_H
-#define DFBrowser_ItemApplication_H
-
-#include <inspector/DFBrowser_ItemBase.hxx>
-
-#include <TDocStd_Application.hxx>
-
-class DFBrowser_ItemApplication;
-typedef QExplicitlySharedDataPointer<DFBrowser_ItemApplication> DFBrowser_ItemApplicationPtr;
-
-//! \class DFBrowser_ItemApplication
-//! \brief Declaration of the tree model root item.
-//! This item is connected to the main label of the document.
-class DFBrowser_ItemApplication : public DFBrowser_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  static DFBrowser_ItemApplicationPtr CreateItem(TreeModel_ItemBasePtr theParent)
-  {
-    return DFBrowser_ItemApplicationPtr(new DFBrowser_ItemApplication(theParent));
-  }
-
-  //! Destructor
-  virtual ~DFBrowser_ItemApplication() {}
-
-  //! Sets the item label
-  //! \param theLabel an object where the child items structure is found
-  void SetApplication(const Handle(TDocStd_Application)& theApplication)
-  {
-    myApplication = theApplication;
-  }
-
-  //! Returns the current label
-  //! \return a label
-  const Handle(TDocStd_Application)& GetApplication() const { return myApplication; }
-
-protected:
-  //! Returns number of documents if the application is not NULL
-  //! \return rows count
-  virtual int initRowCount() const Standard_OVERRIDE;
-
-  //! Returns fixed item text or empty.
-  //! \param theItemRole a value role
-  //! \return the value
-  virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
-
-protected:
-  //! Creates a child item in the given position.
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \return the created item
-  virtual TreeModel_ItemBasePtr createChild(int theRow, int theColumn) Standard_OVERRIDE;
-
-private:
-  //! Constructor
-  //! \param theParent a parent item
-  DFBrowser_ItemApplication(TreeModel_ItemBasePtr theParent)
-      : DFBrowser_ItemBase(theParent, 0, 0)
-  {
-  }
-
-private:
-  Handle(TDocStd_Application) myApplication; //!<! OCAF application
-};
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_ItemBase.cxx b/tools/DFBrowser/DFBrowser_ItemBase.cxx
deleted file mode 100644
index de87b3b293..0000000000
--- a/tools/DFBrowser/DFBrowser_ItemBase.cxx
+++ /dev/null
@@ -1,162 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_ItemBase.hxx>
-
-#include <inspector/DFBrowser_Item.hxx>
-#include <inspector/DFBrowser_Module.hxx>
-#include <inspector/DFBrowser_Tools.hxx>
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-#include <inspector/DFBrowserPane_ItemRole.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <TDataStd_Name.hxx>
-#include <TDF_ChildIterator.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QColor>
-#include <QIcon>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowser_ItemBase::DFBrowser_ItemBase(TreeModel_ItemBasePtr theParent,
-                                       const int             theRow,
-                                       const int             theColumn)
-    : TreeModel_ItemBase(theParent, theRow, theColumn),
-      myModule(0),
-      myIsUseAdditionalInfo(true)
-{
-}
-
-// =======================================================================
-// function : reset
-// purpose :
-// =======================================================================
-void DFBrowser_ItemBase::Reset()
-{
-  setLabel(TDF_Label());
-  TreeModel_ItemBase::Reset();
-}
-
-// =======================================================================
-// function : GetLabel
-// purpose :
-// =======================================================================
-TDF_Label DFBrowser_ItemBase::GetLabel() const
-{
-  initItem();
-  return myLabel;
-}
-
-// =======================================================================
-// function : data
-// purpose :
-// =======================================================================
-QVariant DFBrowser_ItemBase::data(const QModelIndex& theIndex, int theRole) const
-{
-  int aRole = theRole;
-  if (Column() == 0 && useAdditionalInfo())
-  {
-    switch (theRole)
-    {
-      case Qt::DisplayRole: {
-        aRole = DFBrowserPane_ItemRole_DisplayExtended;
-        break;
-      }
-      case Qt::ToolTipRole: {
-        aRole = DFBrowserPane_ItemRole_ToolTipExtended;
-        break;
-      }
-    }
-  }
-  return TreeModel_ItemBase::data(theIndex, aRole);
-}
-
-// =======================================================================
-// function : initRowCount
-// purpose :
-// =======================================================================
-int DFBrowser_ItemBase::initRowCount() const
-{
-  TDF_Label aLabel = GetLabel();
-  if (aLabel.IsNull())
-    return 0;
-
-  return aLabel.NbChildren() + aLabel.NbAttributes();
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant DFBrowser_ItemBase::initValue(const int theItemRole) const
-{
-  switch (theItemRole)
-  {
-    case Qt::DisplayRole:
-    case Qt::EditRole:
-    case Qt::ToolTipRole:
-      return DFBrowser_Tools::GetLabelInfo(myLabel, false);
-    case DFBrowserPane_ItemRole_DisplayExtended:
-    case DFBrowserPane_ItemRole_ToolTipExtended:
-      return DFBrowser_Tools::GetLabelInfo(myLabel, true);
-    case Qt::ForegroundRole: {
-      QVariant aValue = QColor(Qt::black);
-      if (DFBrowser_Tools::IsEmptyLabel(GetLabel()))
-        aValue = QColor(Qt::lightGray);
-      else
-      { // TEMPORARY HERE : should be moved in the pane of TDataStd_Name kind of attribute
-        Handle(TDataStd_Name) aName;
-        if (useAdditionalInfo() && myLabel.FindAttribute(TDataStd_Name::GetID(), aName))
-          aValue = QColor(Qt::darkGreen);
-      }
-      return aValue;
-    }
-    case Qt::DecorationRole:
-      return DFBrowser_Tools::GetLabelIcon(myLabel);
-    default:
-      break;
-  }
-  return QVariant();
-}
-
-// =======================================================================
-// function : createChild
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr DFBrowser_ItemBase::createChild(int theRow, int theColumn)
-{
-  TreeModel_ItemBasePtr anItem    = DFBrowser_Item::CreateItem(currentItem(), theRow, theColumn);
-  DFBrowser_ItemBasePtr aBaseItem = itemDynamicCast<DFBrowser_ItemBase>(anItem);
-  aBaseItem->SetModule(GetModule());
-
-  return anItem;
-}
-
-// =======================================================================
-// function : SetUseAdditionalInfo
-// purpose :
-// =======================================================================
-bool DFBrowser_ItemBase::SetUseAdditionalInfo(const bool theValue)
-{
-  bool aPreviousValue   = myIsUseAdditionalInfo;
-  myIsUseAdditionalInfo = theValue;
-  return aPreviousValue;
-}
diff --git a/tools/DFBrowser/DFBrowser_ItemBase.hxx b/tools/DFBrowser/DFBrowser_ItemBase.hxx
deleted file mode 100644
index efc6843751..0000000000
--- a/tools/DFBrowser/DFBrowser_ItemBase.hxx
+++ /dev/null
@@ -1,101 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_ItemBase_H
-#define DFBrowser_ItemBase_H
-
-#include <Standard.hxx>
-#include <TDF_Label.hxx>
-
-#include <inspector/TreeModel_ItemBase.hxx>
-
-class DFBrowser_ItemBase;
-class DFBrowser_Module;
-typedef QExplicitlySharedDataPointer<DFBrowser_ItemBase> DFBrowser_ItemBasePtr;
-
-//! \class DFBrowser_ItemBase
-//! \brief Declaration of the tree model base item.
-//! This item provide method to process a TDF label.
-class DFBrowser_ItemBase : public TreeModel_ItemBase
-{
-public:
-  //! Sets the module to have an access to attribute information
-  //! \param theModule a current loaded application module
-  void SetModule(DFBrowser_Module* theModule) { myModule = theModule; }
-
-  //! Resets the cached item values
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-  //! \return true if the current label is not null
-  bool HasLabel() const { return !GetLabel().IsNull(); }
-
-  //! \return the current label
-  Standard_EXPORT virtual TDF_Label GetLabel() const;
-
-  //! \return the current module
-  DFBrowser_Module* GetModule() const { return myModule; }
-
-  //! Changes using of additional information in item. If it does not use additional info,
-  //! it will not return extended text in initValue().
-  //! \param theValue a new value
-  //! \return the previous value
-  Standard_EXPORT bool SetUseAdditionalInfo(const bool theValue);
-
-  //! Returns the data stored under the given role for the current item
-  //! \param theIndex the item model index
-  //! \param theRole the item model role
-  Standard_EXPORT virtual QVariant data(const QModelIndex& theIndex,
-                                        int                theRole) const Standard_OVERRIDE;
-
-protected:
-  //! Sets the item label
-  //! \param theLabel an object where the child items structure is found
-  void setLabel(TDF_Label theLabel) { myLabel = theLabel; }
-
-  //! Returns if additional information is shown in item for Display and ToolTip values
-  //! \return boolean value
-  bool useAdditionalInfo() const { return myIsUseAdditionalInfo; }
-
-  //! Returns sum of label children and attributes
-  //! \return rows count
-  virtual int initRowCount() const Standard_OVERRIDE;
-
-  //! Returns label information like text, icon or background(if it contains TDataStd_Name
-  //! attribute) \param theItemRole a value role \return the value
-  virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
-
-  //! Creates a child item in the given position.
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \return the created item
-  virtual TreeModel_ItemBasePtr createChild(int theRow, int theColumn) Standard_OVERRIDE;
-
-  //! Initializes the current item. It creates a backup of the specific item information
-  virtual void initItem() const Standard_OVERRIDE {}
-
-protected:
-  //! Constructor
-  //! \param theParent a parent item
-  //! \param theRow the item row position in the parent item
-  //! \param theColumn the item column position in the parent item
-  DFBrowser_ItemBase(TreeModel_ItemBasePtr theParent, const int theRow, const int theColumn);
-
-private:
-  TDF_Label myLabel; //!< a label of the document, which contains child labels and attributes
-  DFBrowser_Module* myModule; //!< the current module
-  bool myIsUseAdditionalInfo; //!< if true, additional item info is shown in square brackets
-};
-
-#endif
\ No newline at end of file
diff --git a/tools/DFBrowser/DFBrowser_ItemDocument.cxx b/tools/DFBrowser/DFBrowser_ItemDocument.cxx
deleted file mode 100644
index 046303c3fa..0000000000
--- a/tools/DFBrowser/DFBrowser_ItemDocument.cxx
+++ /dev/null
@@ -1,149 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_ItemDocument.hxx>
-
-#include <inspector/DFBrowser_Item.hxx>
-#include <inspector/DFBrowser_ItemApplication.hxx>
-#include <inspector/DFBrowser_ItemDocument.hxx>
-#include <inspector/DFBrowser_Tools.hxx>
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-#include <inspector/DFBrowserPane_ItemRole.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QIcon>
-#include <QLabel>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : GetLabel
-// purpose :
-// =======================================================================
-TDF_Label DFBrowser_ItemDocument::GetLabel() const
-{
-  TDF_Label aLabel;
-  if (myDocument.IsNull())
-    getDocument();
-
-  if (!myDocument.IsNull())
-    aLabel = myDocument->Main().Root();
-
-  if (!aLabel.IsNull())
-    aLabel = aLabel.Root();
-
-  return aLabel;
-}
-
-// =======================================================================
-// function : getDocument
-// purpose :
-// =======================================================================
-const Handle(TDocStd_Document)& DFBrowser_ItemDocument::getDocument() const
-{
-  initItem();
-  return myDocument;
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant DFBrowser_ItemDocument::initValue(const int theItemRole) const
-{
-  if (theItemRole == Qt::DisplayRole || theItemRole == Qt::EditRole
-      || theItemRole == DFBrowserPane_ItemRole_DisplayExtended
-      || theItemRole == DFBrowserPane_ItemRole_ToolTipExtended)
-    return DFBrowser_Tools::GetLabelInfo(GetLabel());
-  if (theItemRole == Qt::DecorationRole)
-    return DFBrowser_Tools::GetLabelIcon(GetLabel());
-
-  return QVariant();
-}
-
-// =======================================================================
-// function : createChild
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr DFBrowser_ItemDocument::createChild(int theRow, int theColumn)
-{
-  TreeModel_ItemBasePtr anItem    = DFBrowser_Item::CreateItem(currentItem(), theRow, theColumn);
-  DFBrowser_ItemBasePtr aBaseItem = itemDynamicCast<DFBrowser_ItemBase>(anItem);
-  aBaseItem->SetModule(GetModule());
-
-  return anItem;
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowser_ItemDocument::Init()
-{
-  DFBrowser_ItemApplicationPtr aParentItem = itemDynamicCast<DFBrowser_ItemApplication>(Parent());
-  if (!aParentItem)
-    return;
-
-  const Handle(TDocStd_Application)& anApplication = aParentItem->GetApplication();
-  // items can exist only by items with not empty label
-  if (anApplication.IsNull())
-    return;
-
-  int aRowId = Row();
-
-  int aDocumentId = -1;
-  for (Standard_Integer aDocId = 1, aNbDoc = anApplication->NbDocuments();
-       aDocId <= aNbDoc && aDocumentId < 0;
-       aDocId++)
-  {
-    if (aDocId - 1 == aRowId)
-      aDocumentId = aDocId;
-  }
-  if (aDocumentId > 0)
-  {
-    Handle(TDocStd_Document) aDocument;
-    anApplication->GetDocument(aDocumentId, aDocument);
-    setDocument(aDocument);
-  }
-  else
-    setDocument(Handle(TDocStd_Document)());
-
-  TreeModel_ItemBase::Init();
-}
-
-// =======================================================================
-// function : reset
-// purpose :
-// =======================================================================
-void DFBrowser_ItemDocument::Reset()
-{
-  Handle(TDocStd_Document) aDocument;
-  setDocument(aDocument);
-
-  DFBrowser_ItemBase::Reset();
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void DFBrowser_ItemDocument::initItem() const
-{
-  if (IsInitialized())
-    return;
-
-  const_cast<DFBrowser_ItemDocument*>(this)->Init();
-}
diff --git a/tools/DFBrowser/DFBrowser_ItemDocument.hxx b/tools/DFBrowser/DFBrowser_ItemDocument.hxx
deleted file mode 100644
index a47a93e056..0000000000
--- a/tools/DFBrowser/DFBrowser_ItemDocument.hxx
+++ /dev/null
@@ -1,96 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_ItemDocument_H
-#define DFBrowser_ItemDocument_H
-
-#include <inspector/DFBrowser_ItemBase.hxx>
-
-#include <Standard.hxx>
-#include <TDocStd_Document.hxx>
-
-class DFBrowser_ItemDocument;
-typedef QExplicitlySharedDataPointer<DFBrowser_ItemDocument> DFBrowser_ItemDocumentPtr;
-
-//! \class DFBrowser_ItemDocument
-//! \brief Declaration of the tree model document item.
-//! This item is connected to the OCAF document. Parent item is application, children are either
-//! labels or attributes
-class DFBrowser_ItemDocument : public DFBrowser_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  //! \param theRow the item row position in the parent item
-  //! \param theColumn the item column position in the parent item
-  //! \return the pointer to the created item
-  static DFBrowser_ItemDocumentPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                              const int             theRow,
-                                              const int             theColumn)
-  {
-    return DFBrowser_ItemDocumentPtr(new DFBrowser_ItemDocument(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~DFBrowser_ItemDocument() {}
-
-  //! Returns the current label
-  //! \return a label
-  Standard_EXPORT virtual TDF_Label GetLabel() const Standard_OVERRIDE;
-
-  //! Sets the item document
-  //! \param theLabel an object where the child items structure is found
-  void setDocument(const Handle(TDocStd_Document)& theDocument) { myDocument = theDocument; }
-
-  //! Returns true if the current document is not null
-  //! \return a boolean value
-  bool hasDocument() const { return !getDocument().IsNull(); }
-
-  //! Returns the current document
-  //! \return a label
-  Standard_EXPORT const Handle(TDocStd_Document)& getDocument() const;
-
-  //! Inits the item, fills internal containers
-  Standard_EXPORT virtual void Init() Standard_OVERRIDE;
-
-  //! Resets the cached item values
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-protected:
-  //! Initializes the current item. It is empty because Reset() is also empty.
-  virtual void initItem() const Standard_OVERRIDE;
-
-  //! Initializes the current item. It creates a backup of the specific item information
-  virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
-
-protected:
-  //! Creates a child item in the given position.
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \return the created item
-  virtual TreeModel_ItemBasePtr createChild(int theRow, int theColumn) Standard_OVERRIDE;
-
-private:
-  //! Constructor
-  //! \param theParent a parent item
-  DFBrowser_ItemDocument(TreeModel_ItemBasePtr theParent, const int theRow, const int theColumn)
-      : DFBrowser_ItemBase(theParent, theRow, theColumn)
-  {
-  }
-
-private:
-  Handle(TDocStd_Document) myDocument; //!< cached application document by the row index of the item
-};
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_ItemRole.hxx b/tools/DFBrowser/DFBrowser_ItemRole.hxx
deleted file mode 100644
index fc06006c00..0000000000
--- a/tools/DFBrowser/DFBrowser_ItemRole.hxx
+++ /dev/null
@@ -1,32 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_ItemRole_H
-#define DFBrowser_ItemRole_H
-
-#include <inspector/DFBrowserPane_ItemRole.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <Qt>
-#include <Standard_WarningsRestore.hxx>
-
-//! Additional data item role for DFBrowser tree item
-enum DFBrowser_ItemRole
-{
-  DFBrowser_ItemRole_AdditionalInfo =
-    DFBrowserPane_ItemRole_LastTreeRole + 1 //!< an attribute additional information
-};
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_Module.cxx b/tools/DFBrowser/DFBrowser_Module.cxx
deleted file mode 100644
index 4093b093f6..0000000000
--- a/tools/DFBrowser/DFBrowser_Module.cxx
+++ /dev/null
@@ -1,254 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_Module.hxx>
-
-#include <inspector/DFBrowser_Item.hxx>
-#include <inspector/DFBrowser_ItemApplication.hxx>
-#include <inspector/DFBrowser_ItemBase.hxx>
-#include <inspector/DFBrowser_ItemRole.hxx>
-#include <inspector/DFBrowser_Tools.hxx>
-#include <inspector/DFBrowser_TreeModel.hxx>
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-#include <inspector/DFBrowserPane_AttributePaneCreator.hxx>
-#include <inspector/DFBrowserPane_ItemRole.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <XCAFApp_Application.hxx>
-#include <XCAFDoc.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QItemSelectionModel>
-#include <QMessageBox>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowser_Module::DFBrowser_Module()
-    : myOCAFViewModel(0)
-{
-  RegisterPaneCreator(new DFBrowserPane_AttributePaneCreator());
-}
-
-// =======================================================================
-// function : CreateViewModel
-// purpose :
-// =======================================================================
-void DFBrowser_Module::CreateViewModel(void* theParent)
-{
-  myOCAFViewModel = new DFBrowser_TreeModel((QWidget*)theParent);
-  myOCAFViewModel->InitColumns();
-  myOCAFViewModel->SetModule(this);
-}
-
-// =======================================================================
-// function : SetApplication
-// purpose :
-// =======================================================================
-void DFBrowser_Module::SetApplication(const Handle(TDocStd_Application)& theApplication)
-{
-  myOCAFViewModel->Init(theApplication);
-
-  myPaneCreators.clear();
-  RegisterPaneCreator(new DFBrowserPane_AttributePaneCreator());
-}
-
-// =======================================================================
-// function : SetExternalContext
-// purpose :
-// =======================================================================
-void DFBrowser_Module::SetExternalContext(const Handle(Standard_Transient)& theContext)
-{
-  myExternalContext = Handle(AIS_InteractiveContext)::DownCast(theContext);
-}
-
-// =======================================================================
-// function : GetTDocStdApplication
-// purpose :
-// =======================================================================
-Handle(TDocStd_Application) DFBrowser_Module::GetTDocStdApplication() const
-{
-  return myOCAFViewModel->GetTDocStdApplication();
-}
-
-// =======================================================================
-// function : UpdateTreeModel
-// purpose :
-// =======================================================================
-void DFBrowser_Module::UpdateTreeModel()
-{
-  QAbstractItemModel*  aModel          = GetOCAFViewModel();
-  QItemSelectionModel* aSelectionModel = GetOCAFViewSelectionModel();
-  if (!aModel || !aSelectionModel)
-    return;
-  aSelectionModel->clearSelection();
-
-  emit beforeUpdateTreeModel();
-  myOCAFViewModel->Reset();
-  myOCAFViewModel->EmitLayoutChanged();
-
-  SetInitialTreeViewSelection();
-}
-
-// =======================================================================
-// function : SetInitialTreeViewSelection
-// purpose :
-// =======================================================================
-void DFBrowser_Module::SetInitialTreeViewSelection()
-{
-  QAbstractItemModel*  aModel          = GetOCAFViewModel();
-  QItemSelectionModel* aSelectionModel = GetOCAFViewSelectionModel();
-  if (!aModel || !aSelectionModel)
-    return;
-
-  // select a parent(application) item
-  aSelectionModel->select(aModel->index(0, 0), QItemSelectionModel::ClearAndSelect);
-}
-
-// =======================================================================
-// function : FindAttribute
-// purpose :
-// =======================================================================
-Handle(TDF_Attribute) DFBrowser_Module::FindAttribute(const QModelIndex& theIndex)
-{
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(theIndex);
-  if (!anItemBase)
-    return Handle(TDF_Attribute)();
-
-  DFBrowser_ItemPtr anItem = itemDynamicCast<DFBrowser_Item>(anItemBase);
-  return (anItem && anItem->HasAttribute()) ? anItem->GetAttribute() : Handle(TDF_Attribute)();
-}
-
-// =======================================================================
-// function : GetAttributePane
-// purpose :
-// =======================================================================
-DFBrowserPane_AttributePaneAPI* DFBrowser_Module::GetAttributePane(
-  Handle(TDF_Attribute) theAttribute)
-{
-  DFBrowserPane_AttributePaneAPI* aPane = 0;
-  if (theAttribute.IsNull())
-    return aPane;
-  return GetAttributePane(theAttribute->DynamicType()->Name());
-}
-
-// =======================================================================
-// function : GetAttributePane
-// purpose :
-// =======================================================================
-DFBrowserPane_AttributePaneAPI* DFBrowser_Module::GetAttributePane(
-  Standard_CString theAttributeName)
-{
-  DFBrowserPane_AttributePaneAPI* aPane = 0;
-
-  if (!myAttributeTypes.contains(theAttributeName))
-  {
-    aPane = CreateAttributePane(theAttributeName);
-    if (aPane)
-      myAttributeTypes[theAttributeName] = aPane;
-  }
-  else
-    aPane = myAttributeTypes[theAttributeName];
-
-  return aPane;
-}
-
-// =======================================================================
-// function : GetAttributeInfo
-// purpose :
-// =======================================================================
-QVariant DFBrowser_Module::GetAttributeInfo(Handle(TDF_Attribute) theAttribute,
-                                            DFBrowser_Module*     theModule,
-                                            int                   theRole,
-                                            int                   theColumnId)
-{
-  DFBrowserPane_AttributePane* anAttributePane = 0;
-  if (!theAttribute.IsNull())
-  {
-    DFBrowserPane_AttributePaneAPI* anAPIPane = theModule->GetAttributePane(theAttribute);
-    if (anAPIPane)
-      anAttributePane = dynamic_cast<DFBrowserPane_AttributePane*>(anAPIPane);
-  }
-
-  TCollection_AsciiString anInfo;
-  if (theRole == DFBrowser_ItemRole_AdditionalInfo)
-  {
-    anInfo = XCAFDoc::AttributeInfo(theAttribute);
-  }
-  QVariant aValue;
-  if (!anInfo.IsEmpty())
-  {
-    aValue = anInfo.ToCString();
-  }
-  else if (anAttributePane)
-    aValue = anAttributePane->GetAttributeInfo(
-      theAttribute,
-      theRole == DFBrowser_ItemRole_AdditionalInfo ? DFBrowserPane_ItemRole_ShortInfo : theRole,
-      theColumnId);
-  else
-    aValue =
-      DFBrowserPane_AttributePane::GetAttributeInfoByType(theAttribute->DynamicType()->Name(),
-                                                          theRole,
-                                                          theColumnId);
-  return aValue;
-}
-
-// =======================================================================
-// function : GetAttributeInfo
-// purpose :
-// =======================================================================
-QVariant DFBrowser_Module::GetAttributeInfo(Standard_CString  theAttributeName,
-                                            DFBrowser_Module* theModule,
-                                            int               theRole,
-                                            int               theColumnId)
-{
-  DFBrowserPane_AttributePane*    anAttributePane = 0;
-  DFBrowserPane_AttributePaneAPI* anAPIPane       = theModule->GetAttributePane(theAttributeName);
-  if (anAPIPane)
-    anAttributePane = dynamic_cast<DFBrowserPane_AttributePane*>(anAPIPane);
-
-  QVariant aValue;
-  if (anAttributePane)
-  {
-    Handle(TDF_Attribute) anAttribute;
-    aValue = anAttributePane->GetAttributeInfo(
-      anAttribute,
-      theRole == DFBrowser_ItemRole_AdditionalInfo ? DFBrowserPane_ItemRole_ShortInfo : theRole,
-      theColumnId);
-  }
-  else
-    aValue =
-      DFBrowserPane_AttributePane::GetAttributeInfoByType(theAttributeName, theRole, theColumnId);
-  return aValue;
-}
-
-// =======================================================================
-// function : CreateAttributePane
-// purpose :
-// =======================================================================
-DFBrowserPane_AttributePaneAPI* DFBrowser_Module::CreateAttributePane(
-  Standard_CString theAttributeName)
-{
-  DFBrowserPane_AttributePaneAPI* aPane = 0;
-  // iteration should be performed from the tail of the list, as latest added creator has
-  // larger priority
-  for (int aPaneCreatorId = myPaneCreators.size() - 1; aPaneCreatorId >= 0 && !aPane;
-       aPaneCreatorId--)
-    aPane = myPaneCreators[aPaneCreatorId]->CreateAttributePane(theAttributeName);
-  return aPane;
-}
diff --git a/tools/DFBrowser/DFBrowser_Module.hxx b/tools/DFBrowser/DFBrowser_Module.hxx
deleted file mode 100644
index 68e24a6cd8..0000000000
--- a/tools/DFBrowser/DFBrowser_Module.hxx
+++ /dev/null
@@ -1,161 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_Module_H
-#define DFBrowser_Module_H
-
-#include <inspector/DFBrowser_TreeModel.hxx>
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <AIS_InteractiveContext.hxx>
-#include <NCollection_Map.hxx>
-#include <Standard.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <TDF_Attribute.hxx>
-#include <TDocStd_Application.hxx>
-#include <TopoDS_Shape.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowserPane_AttributePaneAPI;
-class DFBrowserPane_AttributePaneCreatorAPI;
-
-class QAbstractItemModel;
-class QItemSelectionModel;
-
-//! \class DFBrowser_Module
-//! The class is a container of current components of DFBrowser:
-//! - OCAF view model
-//! - OCAF selection model
-//! - container of attribute panes into attribute name
-//! - acceptable attribute pane creators
-//! - external AIS interactive context
-//! It has general attribute pane creator, if the application is XDE, it uses XDE attribute pane
-//! creator. It fills container of created attribute pane.
-class DFBrowser_Module : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowser_Module();
-
-  //! Destructor
-  virtual ~DFBrowser_Module() {}
-
-  //! Creates tree model for OCAF application
-  Standard_EXPORT void CreateViewModel(void* theParent);
-
-  //! Fills tree model by the application and register pane creator
-  //! \param theApplication a current application
-  Standard_EXPORT void SetApplication(const Handle(TDocStd_Application)& theApplication);
-
-  //! Fills viewer by the context
-  //! \param theContext a current context where presentations should be visualized
-  Standard_EXPORT void SetExternalContext(const Handle(Standard_Transient)& theContext);
-
-  //! Returns external context or NULL
-  const Handle(AIS_InteractiveContext)& GetExternalContext() const { return myExternalContext; }
-
-  //! Returns a view model with the OCAF structure content
-  QAbstractItemModel* GetOCAFViewModel() { return myOCAFViewModel; }
-
-  //! Sets selection model of tree view
-  void SetOCAFViewSelectionModel(QItemSelectionModel* theSelectionModel)
-  {
-    myOCAFViewSelectionModel = theSelectionModel;
-  }
-
-  //! Returns selection model of tree view
-  QItemSelectionModel* GetOCAFViewSelectionModel() const { return myOCAFViewSelectionModel; }
-
-  //! Returns an OCAF application or NULL
-  //! \return an application instance
-  Standard_EXPORT Handle(TDocStd_Application) GetTDocStdApplication() const;
-
-  //! Rebuilds an OCAF tree view model
-  Standard_EXPORT void UpdateTreeModel();
-
-  //! Sets initial selection in OCAF tree view, it is an application(root) item
-  Standard_EXPORT void SetInitialTreeViewSelection();
-
-  //! Returns attribute placed on the parameter index in the OCAF tree view or NULL
-  //! \param theIndex an index in OCAF tree view.
-  //! \return an attribute
-  Standard_EXPORT Handle(TDF_Attribute) FindAttribute(const QModelIndex& theIndex);
-
-  //! Appends creator of a pane by attribute type
-  //! \param thePaneCreator
-  void RegisterPaneCreator(DFBrowserPane_AttributePaneCreatorAPI* thePaneCreator)
-  {
-    myPaneCreators.append(thePaneCreator);
-  }
-
-  //! Returns an attribute pane for the attribute: create a new if it is not exist in
-  //! internal map and the module processes this kind of attribute
-  //! \param theAttributeGUID an attribute key
-  //! \return attribute pane
-  Standard_EXPORT DFBrowserPane_AttributePaneAPI* GetAttributePane(
-    Handle(TDF_Attribute) theAttribute);
-
-  //! Returns an attribute pane for the attribute GUID: create a new if it is not exist in
-  //! internal map and the module processes this kind of attribute
-  //! \param theAttributeGUID an attribute key
-  //! \return attribute pane
-  Standard_EXPORT DFBrowserPane_AttributePaneAPI* GetAttributePane(
-    Standard_CString theAttributeName);
-
-  //! Finds the attribute pane according to the give attribute and returns its information
-  //! \param theAttribute a source attribute
-  //! \param theModule to provide a map of attribute id to attribute pane
-  //! \param theRole an attribute role in the tree view, includes: text, icon, color roles
-  //! \param theColumnId a column index
-  Standard_EXPORT static QVariant GetAttributeInfo(Handle(TDF_Attribute) theAttribute,
-                                                   DFBrowser_Module*     theModule,
-                                                   int                   theRole,
-                                                   int                   theColumnId);
-
-  //! Returns information for the given attribute type name
-  //! \param theAttributeName a current attribute type name
-  //! \param theModule a current module
-  //! \param theRole a role of information, used by tree model (e.g. DisplayRole, icon, background
-  //! and so on) \param theColumnId a tree model column \return value, interpreted by tree model
-  //! depending on the role
-  Standard_EXPORT static QVariant GetAttributeInfo(Standard_CString  theAttributeName,
-                                                   DFBrowser_Module* theModule,
-                                                   int               theRole,
-                                                   int               theColumnId);
-signals:
-
-  //! Emits signal about updating tree model
-  void beforeUpdateTreeModel();
-
-protected:
-  //! Tries to create attribute pane for the attribute name using registered attribute pane creators
-  //! \param theAttributeName a source attribute
-  //! \return attribute pane or NULL
-  DFBrowserPane_AttributePaneAPI* CreateAttributePane(Standard_CString theAttributeName);
-
-private:
-  DFBrowser_TreeModel* myOCAFViewModel;          //!< the tree view abstract model
-  QItemSelectionModel* myOCAFViewSelectionModel; //!< selection model over OCAF tree view
-  QMap<TCollection_AsciiString, DFBrowserPane_AttributePaneAPI*>
-                                                myAttributeTypes; //!< container of created panes
-  QList<DFBrowserPane_AttributePaneCreatorAPI*> myPaneCreators;   //!< pane creators
-  Handle(AIS_InteractiveContext) myExternalContext; //!< context that comes in initialize parameters
-};
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_OpenApplication.cxx b/tools/DFBrowser/DFBrowser_OpenApplication.cxx
deleted file mode 100644
index 02a17724b2..0000000000
--- a/tools/DFBrowser/DFBrowser_OpenApplication.cxx
+++ /dev/null
@@ -1,104 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_OpenApplication.hxx>
-
-#include <BinDrivers.hxx>
-#include <BinLDrivers.hxx>
-#include <BinXCAFDrivers.hxx>
-#include <PCDM_ReadWriter.hxx>
-#include <StdDrivers.hxx>
-#include <StdLDrivers.hxx>
-#include <STEPCAFControl_Reader.hxx>
-#include <STEPCAFControl_Controller.hxx>
-#include <TPrsStd_DriverTable.hxx>
-#include <XCAFApp_Application.hxx>
-#include <XCAFPrs_Driver.hxx>
-#include <XmlDrivers.hxx>
-#include <XmlLDrivers.hxx>
-#include <XmlXCAFDrivers.hxx>
-#include <UTL.hxx>
-
-namespace DFBrowser_OpenApplication
-{
-
-// =======================================================================
-// function : OpenApplication
-// purpose :
-// =======================================================================
-Handle(TDocStd_Application) OpenApplication(const TCollection_AsciiString& theFileName,
-                                            bool&                          isSTEPFile)
-{
-  Handle(TDocStd_Application) anApplication = CreateApplicationBySTEPFile(theFileName);
-  if (!anApplication.IsNull())
-  {
-    isSTEPFile = true;
-    return anApplication;
-  }
-
-  // Load static variables for STEPCAF (ssv; 16.08.2012)
-  STEPCAFControl_Controller::Init();
-
-  anApplication = new TDocStd_Application();
-  // Initialize standard document formats at creation - they should
-  // be available even if this DRAW plugin is not loaded by pload command
-  StdLDrivers::DefineFormat(anApplication);
-  BinLDrivers::DefineFormat(anApplication);
-  XmlLDrivers::DefineFormat(anApplication);
-  StdDrivers::DefineFormat(anApplication);
-  BinDrivers::DefineFormat(anApplication);
-  XmlDrivers::DefineFormat(anApplication);
-
-  // Initialize XCAF formats
-  BinXCAFDrivers::DefineFormat(anApplication);
-  XmlXCAFDrivers::DefineFormat(anApplication);
-
-  // Register driver in global table for displaying XDE documents
-  // in 3d viewer using OCAF mechanics
-  TPrsStd_DriverTable::Get()->AddDriver(XCAFPrs_Driver::GetID(), new XCAFPrs_Driver);
-
-  Handle(TDocStd_Document) aDocument;
-  PCDM_ReaderStatus        aStatus = anApplication->Open(theFileName, aDocument);
-  if (aStatus != PCDM_RS_OK)
-    return Handle(TDocStd_Application)();
-  return anApplication;
-}
-
-// =======================================================================
-// function : CreateApplicationBySTEPFile
-// purpose :
-// =======================================================================
-Handle(TDocStd_Application) CreateApplicationBySTEPFile(const TCollection_AsciiString& theFileName)
-{
-  if (!theFileName.EndsWith(".step") && !theFileName.EndsWith(".stp"))
-    return Handle(TDocStd_Application)();
-
-  Handle(TDocStd_Application) aTmpApplication = XCAFApp_Application::GetApplication();
-  STEPCAFControl_Reader       aStepReader;
-
-  const TCollection_AsciiString aStr(theFileName);
-  IFSelect_ReturnStatus         aStatus = aStepReader.ReadFile(aStr.ToCString());
-  if (aStatus != IFSelect_RetDone)
-    return Handle(TDocStd_Application)();
-
-  aStepReader.SetColorMode(Standard_True);
-  aStepReader.SetLayerMode(Standard_True);
-  aStepReader.SetNameMode(Standard_True);
-
-  Handle(TDocStd_Document) aDocument;
-  aTmpApplication->NewDocument("BinOcaf", aDocument);
-  return aStepReader.Transfer(aDocument) ? aTmpApplication : Handle(TDocStd_Application)();
-}
-} // namespace DFBrowser_OpenApplication
diff --git a/tools/DFBrowser/DFBrowser_OpenApplication.hxx b/tools/DFBrowser/DFBrowser_OpenApplication.hxx
deleted file mode 100644
index c020bce521..0000000000
--- a/tools/DFBrowser/DFBrowser_OpenApplication.hxx
+++ /dev/null
@@ -1,42 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_OpenApplication_H
-#define DFBrowser_OpenApplication_H
-
-#include <Standard.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <TDocStd_Application.hxx>
-
-//! \namespace DFBrowser_OpenApplication
-namespace DFBrowser_OpenApplication
-{
-
-//! Opens the application by the name.
-//! \param theFileName a name of the file initialized the application
-//! \param isSTEPFile an output parameter, true if the file name is a STEP file
-//! \return an opened application
-Standard_EXPORT Handle(TDocStd_Application) OpenApplication(
-  const TCollection_AsciiString& theFileName,
-  bool&                          isSTEPFile);
-
-//! Creates a new application if the name contains "stp" or "step" extension. The application is
-//! "BinOcaf", STEP reader transfers the file into the application \param theFileName a name of the
-//! file initialized the application \return a new application
-Standard_EXPORT Handle(TDocStd_Application) CreateApplicationBySTEPFile(
-  const TCollection_AsciiString& theFileName);
-} // namespace DFBrowser_OpenApplication
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_PropertyPanel.cxx b/tools/DFBrowser/DFBrowser_PropertyPanel.cxx
deleted file mode 100644
index d63905e0bf..0000000000
--- a/tools/DFBrowser/DFBrowser_PropertyPanel.cxx
+++ /dev/null
@@ -1,65 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_PropertyPanel.hxx>
-
-#include <inspector/DFBrowser_AttributePaneStack.hxx>
-#include <inspector/DFBrowser_Item.hxx>
-#include <inspector/DFBrowser_SearchView.hxx>
-#include <inspector/DFBrowser_Window.hxx>
-#include <inspector/DFBrowser_TreeLevelView.hxx>
-
-#include <inspector/TreeModel_ModelBase.hxx>
-
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractItemModel>
-#include <QGridLayout>
-#include <QItemSelectionModel>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowser_PropertyPanel::DFBrowser_PropertyPanel(QWidget* theParent)
-    : QObject(theParent),
-      myAttributesStack(0)
-{
-  myMainWindow = new QWidget(theParent);
-  ViewControl_Tools::SetWhiteBackground(myMainWindow);
-
-  QGridLayout* aLayout = new QGridLayout(myMainWindow);
-  aLayout->setContentsMargins(0, 0, 0, 0);
-
-  myAttributesStack = new DFBrowser_AttributePaneStack(this);
-  myAttributesStack->CreateWidget(myMainWindow);
-  aLayout->addWidget(myAttributesStack->GetWidget(), 0, 0);
-}
-
-// =======================================================================
-// function : UpdateBySelectionChanged
-// purpose :
-// =======================================================================
-void DFBrowser_PropertyPanel::UpdateBySelectionChanged(const QItemSelection& theSelected,
-                                                       const QItemSelection&)
-{
-  GetAttributesStack()->GetSearchView()->Reset();
-
-  QModelIndex anIndex = TreeModel_ModelBase::SingleSelected(theSelected.indexes(), 0);
-  myAttributesStack->SetCurrentItem(anIndex);
-}
diff --git a/tools/DFBrowser/DFBrowser_PropertyPanel.hxx b/tools/DFBrowser/DFBrowser_PropertyPanel.hxx
deleted file mode 100644
index 9802698188..0000000000
--- a/tools/DFBrowser/DFBrowser_PropertyPanel.hxx
+++ /dev/null
@@ -1,62 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_PropertyPanel_H
-#define DFBrowser_PropertyPanel_H
-
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <Standard.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QItemSelection>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowser_AttributePaneStack;
-
-class QAbstractItemModel;
-class QWidget;
-
-//! \class DFBrowser_PropertyPanel
-//! Control that contains attribute pane stack
-class DFBrowser_PropertyPanel : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowser_PropertyPanel(QWidget* theParent);
-
-  //! Destructor
-  virtual ~DFBrowser_PropertyPanel() {}
-
-  //! Returns main control
-  QWidget* GetControl() const { return myMainWindow; }
-
-  //! Returns instance of attributes stack
-  //! \return stack
-  DFBrowser_AttributePaneStack* GetAttributesStack() { return myAttributesStack; }
-
-  //! Fills attributes stack by selected index
-  //! \param theSelected selected items
-  //! \param theDeselected deselected items
-  Standard_EXPORT void UpdateBySelectionChanged(const QItemSelection& theSelected,
-                                                const QItemSelection& theDeselected);
-
-private:
-  QWidget*                      myMainWindow;      //!< parent of attribute stack control
-  DFBrowser_AttributePaneStack* myAttributesStack; //!< panes stack
-};
-#endif
diff --git a/tools/DFBrowser/DFBrowser_SearchItemInfo.hxx b/tools/DFBrowser/DFBrowser_SearchItemInfo.hxx
deleted file mode 100644
index b053275084..0000000000
--- a/tools/DFBrowser/DFBrowser_SearchItemInfo.hxx
+++ /dev/null
@@ -1,62 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_SearchItemInfo_H
-#define DFBrowser_SearchItemInfo_H
-
-#include <Standard_WarningsDisable.hxx>
-#include <QVariant>
-#include <QStringList>
-#include <QString>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class DFBrowser_SearchItemInfo
-//! Information of item in search model
-class DFBrowser_SearchItemInfo
-{
-public:
-  //! Constructor
-  DFBrowser_SearchItemInfo() {}
-
-  //! Constructor
-  DFBrowser_SearchItemInfo(const QVariant&    theIcon,
-                           const QString&     theName,
-                           const QStringList& thePath,
-                           const QString&     theSeparator)
-      : myIcon(theIcon),
-        myPath(thePath)
-  {
-    myPathUnited = QString("%1 \n%2").arg(theName).arg(myPath.join(theSeparator));
-  }
-
-  //! Destructor
-  virtual ~DFBrowser_SearchItemInfo() {}
-
-  //! Returns the item icon
-  const QVariant& Icon() const { return myIcon; }
-
-  //! Returns path to the item.
-  const QStringList& Path() const { return myPath; }
-
-  //! Returns united path to the item.
-  const QString& PathUnited() const { return myPathUnited; }
-
-private:
-  QVariant    myIcon;       //!< item icon
-  QStringList myPath;       //!< item path
-  QString     myPathUnited; //!< item name and item path
-};
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_SearchLine.cxx b/tools/DFBrowser/DFBrowser_SearchLine.cxx
deleted file mode 100644
index d7ba2bb6c4..0000000000
--- a/tools/DFBrowser/DFBrowser_SearchLine.cxx
+++ /dev/null
@@ -1,191 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_SearchLine.hxx>
-#include <inspector/DFBrowser_SearchLineModel.hxx>
-#include <inspector/DFBrowser_Window.hxx>
-
-#include <inspector/DFBrowserPane_Tools.hxx>
-#include <inspector/DFBrowser_Module.hxx>
-
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <TDocStd_Application.hxx>
-#include <TDocStd_Document.hxx>
-#include <TDF_AttributeIterator.hxx>
-#include <TDF_ChildIterator.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QStringList>
-#include <QWidget>
-#include <QHBoxLayout>
-#include <QLineEdit>
-#include <QToolButton>
-#include <QCompleter>
-#include <QIcon>
-#include <QPaintEvent>
-#include <QPainter>
-#include <QStyle>
-#include <Standard_WarningsRestore.hxx>
-
-//! class DFBrowser_LineEdit
-//! Extension of Qt line edit to visualize help text until the line edit control has not been filled
-//! yet
-class DFBrowser_LineEdit : public QLineEdit
-{
-public:
-  //! Constructor
-  DFBrowser_LineEdit(QWidget* theParent)
-      : QLineEdit(theParent)
-  {
-  }
-
-  //! Destructor
-  virtual ~DFBrowser_LineEdit() {}
-
-  //! Sets text that is shown in line edit it the text of this control is empty
-  //! \param theText a string value
-  void setPlaneHolder(const QString& theText) { myPlaceHolder = theText; }
-
-  //! Draws the line edit context, put plane holder if text is empty
-  //! \param theEvent a paint event
-  virtual void paintEvent(QPaintEvent* theEvent) Standard_OVERRIDE
-  {
-    QLineEdit::paintEvent(theEvent);
-    if (!text().isEmpty())
-      return;
-
-    QPainter      aPainter(this);
-    QFontMetrics  aFontMetrics = fontMetrics();
-    QRect         aLineRect    = rect();
-    Qt::Alignment anAlignment  = QStyle::visualAlignment(layoutDirection(), Qt::AlignLeft);
-
-    QColor aColor   = Qt::gray;
-    QPen   anOldpen = aPainter.pen();
-    aPainter.setPen(aColor);
-    aLineRect.adjust(4, 4, 0, 0);
-    QString anElidedText =
-      aFontMetrics.elidedText(myPlaceHolder, Qt::ElideRight, aLineRect.width());
-    aPainter.drawText(aLineRect, anAlignment, anElidedText);
-    aPainter.setPen(anOldpen);
-  }
-
-private:
-  QString myPlaceHolder; //!< text of filling line edit content if the text is empty
-};
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowser_SearchLine::DFBrowser_SearchLine(QWidget* theParent)
-    : QFrame(theParent)
-{
-  QHBoxLayout* aLayout = new QHBoxLayout(this);
-  aLayout->setContentsMargins(0, 0, 0, 0);
-  aLayout->setSpacing(0);
-
-  myLineControl = new DFBrowser_LineEdit(this);
-  ((DFBrowser_LineEdit*)myLineControl)->setPlaneHolder(QString(tr("Scanning application ...")));
-  mySearchButton = new QToolButton(this);
-  mySearchButton->setIcon(QIcon(":/icons/search.png"));
-
-  QCompleter* aCompleter = new QCompleter(this);
-  aCompleter->setCaseSensitivity(Qt::CaseInsensitive);
-  myLineControl->setCompleter(aCompleter);
-
-  aLayout->addWidget(myLineControl);
-  aLayout->addWidget(mySearchButton);
-
-  connect(myLineControl,
-          SIGNAL(textChanged(const QString&)),
-          this,
-          SLOT(onTextChanged(const QString&)));
-  connect(myLineControl, SIGNAL(returnPressed()), this, SLOT(onReturnPressed()));
-  connect(mySearchButton, SIGNAL(clicked()), this, SLOT(onSearchButtonClicked()));
-
-  ViewControl_Tools::SetWhiteBackground(this);
-}
-
-// =======================================================================
-// function : SetModule
-// purpose :
-// =======================================================================
-void DFBrowser_SearchLine::SetModule(DFBrowser_Module* theModule)
-{
-  DFBrowser_SearchLineModel* aModel = new DFBrowser_SearchLineModel(myLineControl, theModule);
-  myLineControl->completer()->setModel(aModel);
-}
-
-// =======================================================================
-// function : GetModule
-// purpose :
-// =======================================================================
-DFBrowser_Module* DFBrowser_SearchLine::GetModule()
-{
-  DFBrowser_SearchLineModel* aModel = dynamic_cast<DFBrowser_SearchLineModel*>(GetModel());
-  return aModel->GetModule();
-}
-
-// =======================================================================
-// function : SetValues
-// purpose :
-// =======================================================================
-void DFBrowser_SearchLine::SetValues(
-  const QMap<int, QMap<QString, DFBrowser_SearchItemInfo>>& theDocumentValues,
-  const QMap<int, QStringList>&                             theDocumentInfoValues)
-{
-  DFBrowser_SearchLineModel* aModel = dynamic_cast<DFBrowser_SearchLineModel*>(GetModel());
-  aModel->SetValues(theDocumentValues, theDocumentInfoValues);
-
-  QString aFirstValue =
-    !theDocumentInfoValues.empty() ? theDocumentInfoValues.begin().value().first() : "";
-  DFBrowser_LineEdit* aLineEdit = dynamic_cast<DFBrowser_LineEdit*>(myLineControl);
-  aLineEdit->setPlaneHolder(QString(tr("Search : %1")).arg(aFirstValue));
-}
-
-// =======================================================================
-// function : ClearValues
-// purpose :
-// =======================================================================
-void DFBrowser_SearchLine::ClearValues()
-{
-  DFBrowser_SearchLineModel* aModel = dynamic_cast<DFBrowser_SearchLineModel*>(GetModel());
-  aModel->ClearValues();
-
-  DFBrowser_LineEdit* aLineEdit = dynamic_cast<DFBrowser_LineEdit*>(myLineControl);
-  aLineEdit->setPlaneHolder(QString(tr("Scanning application ...")));
-}
-
-// =======================================================================
-// function : onTextChanged
-// purpose :
-// =======================================================================
-void DFBrowser_SearchLine::onTextChanged(const QString& theText)
-{
-  mySearchButton->setIcon(theText.isEmpty() ? QIcon(":/icons/search.png")
-                                            : QIcon(":/icons/search_cancel.png"));
-  emit searchActivated();
-}
-
-// =======================================================================
-// function : onSearchButtonClicked
-// purpose :
-// =======================================================================
-void DFBrowser_SearchLine::onSearchButtonClicked()
-{
-  if (!Text().isEmpty())
-    SetText(QString());
-}
diff --git a/tools/DFBrowser/DFBrowser_SearchLine.hxx b/tools/DFBrowser/DFBrowser_SearchLine.hxx
deleted file mode 100644
index 591ec28b62..0000000000
--- a/tools/DFBrowser/DFBrowser_SearchLine.hxx
+++ /dev/null
@@ -1,103 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_SearchLine_H
-#define DFBrowser_SearchLine_H
-
-#include <inspector/DFBrowser_SearchLineModel.hxx> // to include DFBrowser_SearchItemInfo
-
-#include <Standard.hxx>
-#include <TDocStd_Application.hxx>
-#include <TDF_Label.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QCompleter>
-#include <QFrame>
-#include <QLineEdit>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowser_Module;
-class DFBrowser_SearchLineModel;
-
-class QAbstractItemModel;
-class QLineEdit;
-class QToolButton;
-class QStringList;
-
-//! \class DFBrowser_SearchLine
-//! It contains a line edit control with auto completion and search button
-class DFBrowser_SearchLine : public QFrame
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowser_SearchLine(QWidget* theParent);
-
-  //! Destructor
-  virtual ~DFBrowser_SearchLine() {}
-
-  //! Creates search line model filled by the module. It is necessary for auto completion of line
-  //! edit \param theModule a current module
-  Standard_EXPORT void SetModule(DFBrowser_Module* theModule);
-
-  //! Returns the current module
-  Standard_EXPORT DFBrowser_Module* GetModule();
-
-  //! Fills the search line model by OCAF document values
-  //! \param theDocumentValues container of document index to container of entry/attribute name to
-  //! item information \param theDocumentInfoValues container of a document index to entry/attribute
-  //! name
-  Standard_EXPORT void SetValues(
-    const QMap<int, QMap<QString, DFBrowser_SearchItemInfo>>& theDocumentValues,
-    const QMap<int, QStringList>&                             theDocumentInfoValues);
-
-  //! Clears cache of values in search line model
-  Standard_EXPORT void ClearValues();
-
-  //! Returns completer model
-  QAbstractItemModel* GetModel() { return myLineControl->completer()->model(); }
-
-  //! Returns completion completer model
-  QAbstractItemModel* GetCompletionModel() { return myLineControl->completer()->completionModel(); }
-
-  //! Returns the current line edit text
-  QString Text() const { return myLineControl->text(); }
-
-  //! Sets the current text value
-  //! \param theValue a string value
-  void SetText(const QString& theValue) { myLineControl->setText(theValue); }
-
-signals:
-
-  //! Signals that is emitted by text changed in line edit control
-  void searchActivated();
-
-private slots:
-
-  //! Updates icon of search button depending on text is empty and emits searchActivated signal
-  void onTextChanged(const QString& theText);
-
-  //! Sets completion prefix in completer model
-  void onReturnPressed() { myLineControl->completer()->setCompletionPrefix(myLineControl->text()); }
-
-  //! Sets empty text if the current text is not empty: new search is started
-  void onSearchButtonClicked();
-
-private:
-  QLineEdit*   myLineControl;  //!< line editor control
-  QToolButton* mySearchButton; //!< search button
-};
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_SearchLineModel.cxx b/tools/DFBrowser/DFBrowser_SearchLineModel.cxx
deleted file mode 100644
index 9062e9b1d0..0000000000
--- a/tools/DFBrowser/DFBrowser_SearchLineModel.cxx
+++ /dev/null
@@ -1,213 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_SearchLineModel.hxx>
-
-#include <inspector/DFBrowser_Module.hxx>
-#include <inspector/DFBrowser_Tools.hxx>
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-#include <inspector/DFBrowserPane_ItemRole.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QDir>
-#include <QIcon>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowser_SearchLineModel::DFBrowser_SearchLineModel(QObject*          theParent,
-                                                     DFBrowser_Module* theModule)
-    : QAbstractTableModel(theParent),
-      myModule(theModule),
-      myRowCount(0)
-{
-}
-
-// =======================================================================
-// function : SetValues
-// purpose :
-// =======================================================================
-void DFBrowser_SearchLineModel::SetValues(
-  const QMap<int, QMap<QString, DFBrowser_SearchItemInfo>>& theDocumentValues,
-  const QMap<int, QStringList>&                             theDocumentInfoValues)
-{
-  myAdditionalValues   = theDocumentValues;
-  myDocumentInfoValues = theDocumentInfoValues;
-
-  myRowCount = 0;
-  for (QMap<int, QStringList>::const_iterator aValuesIt = myDocumentInfoValues.begin();
-       aValuesIt != myDocumentInfoValues.end();
-       aValuesIt++)
-    myRowCount += aValuesIt.value().size();
-}
-
-// =======================================================================
-// function : ClearValues
-// purpose :
-// =======================================================================
-void DFBrowser_SearchLineModel::ClearValues()
-{
-  myAdditionalValues.clear();
-  myDocumentInfoValues.clear();
-  myRowCount = 0;
-}
-
-// =======================================================================
-// function : GetPath
-// purpose :
-// =======================================================================
-QStringList DFBrowser_SearchLineModel::GetPath(const QModelIndex& theIndex) const
-{
-  int aRowInDocument;
-  int aDocumentId = getDocumentId(theIndex.row(), aRowInDocument);
-  if (aDocumentId < 0)
-    return QStringList();
-
-  const QMap<QString, DFBrowser_SearchItemInfo>& anAdditionalValues =
-    myAdditionalValues[aDocumentId];
-  const QStringList& anInfoValues = myDocumentInfoValues[aDocumentId];
-
-  return anAdditionalValues[anInfoValues[aRowInDocument]].Path();
-}
-
-// =======================================================================
-// function : GetValue
-// purpose :
-// =======================================================================
-QString DFBrowser_SearchLineModel::GetValue(const QModelIndex& theIndex) const
-{
-  int aRowInDocument;
-  int aDocumentId = getDocumentId(theIndex.row(), aRowInDocument);
-  if (aDocumentId < 0)
-    return QString();
-  QString aValue = myDocumentInfoValues[aDocumentId][aRowInDocument];
-  return aValue.mid(0, aValue.indexOf(SplitSeparator()));
-}
-
-// =======================================================================
-// function : index
-// purpose :
-// =======================================================================
-QModelIndex DFBrowser_SearchLineModel::index(int                theRow,
-                                             int                theColumn,
-                                             const QModelIndex& theParent) const
-{
-  if (!hasIndex(theRow, theColumn, theParent))
-    return QModelIndex();
-  return createIndex(theRow, theColumn);
-}
-
-// =======================================================================
-// function : data
-// purpose :
-// =======================================================================
-QVariant DFBrowser_SearchLineModel::data(const QModelIndex& theIndex, int theRole) const
-{
-  switch (theIndex.column())
-  {
-    case 0: {
-      if (theRole == Qt::DisplayRole || theRole == Qt::EditRole || theRole == Qt::ToolTipRole)
-      {
-        int aRowInDocument;
-        int aDocumentId = getDocumentId(theIndex.row(), aRowInDocument);
-        if (aDocumentId < 0)
-          return QVariant();
-        return myDocumentInfoValues[aDocumentId][aRowInDocument];
-      }
-      break;
-    }
-    case 1: {
-      if (theRole == Qt::DecorationRole)
-      {
-        int aRowInDocument;
-        int aDocumentId = getDocumentId(theIndex.row(), aRowInDocument);
-        if (aDocumentId < 0)
-          return QVariant();
-        QString  anInfoValue = myDocumentInfoValues[aDocumentId][aRowInDocument];
-        QVariant anIcon      = myAdditionalValues[aDocumentId][anInfoValue].Icon();
-        if (anIcon.isNull())
-        {
-          QString anAttributeName = anInfoValue.mid(0, anInfoValue.indexOf(SplitSeparator()));
-          anIcon = DFBrowser_Module::GetAttributeInfo(anAttributeName.toUtf8().data(),
-                                                      myModule,
-                                                      DFBrowserPane_ItemRole_Decoration_40x40,
-                                                      0);
-        }
-        else
-          anIcon = DFBrowser_Tools::GetLabelIcon(TDF_Label(), false);
-        return anIcon;
-      }
-      if (theRole == Qt::SizeHintRole)
-        return QSize(80, 80);
-      break;
-    }
-    case 2: {
-      if (theRole == Qt::DisplayRole || theRole == Qt::EditRole)
-      {
-        int aRowInDocument;
-        int aDocumentId = getDocumentId(theIndex.row(), aRowInDocument);
-        if (aDocumentId < 0)
-          return QVariant();
-        QString anInfoValue = myDocumentInfoValues[aDocumentId][aRowInDocument];
-        return myAdditionalValues[aDocumentId][anInfoValue].PathUnited();
-      }
-      break;
-    }
-    default:
-      break;
-  }
-  return QVariant();
-}
-
-// =======================================================================
-// function : emitLayoutChanged
-// purpose :
-// =======================================================================
-void DFBrowser_SearchLineModel::EmitLayoutChanged()
-{
-  emit layoutChanged();
-}
-
-// =======================================================================
-// function : getDocumentId
-// purpose :
-// =======================================================================
-int DFBrowser_SearchLineModel::getDocumentId(const int theRow, int& theRowInDocument) const
-{
-  theRowInDocument = 0;
-  int aDocumentId  = -1;
-
-  int aCurrentRow = theRow;
-  for (int aValueId = 0, aSize = myDocumentInfoValues.size(); aValueId < aSize; aValueId++)
-  {
-    int aValueIndex = aValueId + 1;
-    if (!myDocumentInfoValues.contains(aValueIndex))
-      continue;
-    QStringList aValues     = myDocumentInfoValues[aValueIndex];
-    int         aValuesSize = aValues.size();
-    if (aCurrentRow < aValuesSize)
-    {
-      aDocumentId      = aValueIndex;
-      theRowInDocument = aCurrentRow;
-    }
-    else
-      aCurrentRow = aCurrentRow - aValuesSize;
-  }
-  return aDocumentId;
-}
diff --git a/tools/DFBrowser/DFBrowser_SearchLineModel.hxx b/tools/DFBrowser/DFBrowser_SearchLineModel.hxx
deleted file mode 100644
index 269277390a..0000000000
--- a/tools/DFBrowser/DFBrowser_SearchLineModel.hxx
+++ /dev/null
@@ -1,129 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_SearchLineModel_H
-#define DFBrowser_SearchLineModel_H
-
-#include <inspector/DFBrowser_SearchItemInfo.hxx>
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <Standard.hxx>
-#include <TDF_Attribute.hxx>
-#include <TDF_Label.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractTableModel>
-#include <QMap>
-#include <QStringList>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-class QObject;
-class DFBrowser_Module;
-
-//! \class DFBrowser_SearchLineModel
-//! Table view model filled by OCAF labels and attributes. It contain information in the next form:
-//! <document index> into <document values container>
-//! <document values container> is key(attribute name or label entry) into item information
-//! The model contains 3 columns:
-//! - 0: information text
-//! - 1: icon size is [80, 80]
-//! - 2: information text that contains united path
-class DFBrowser_SearchLineModel : public QAbstractTableModel
-{
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowser_SearchLineModel(QObject* theParent, DFBrowser_Module* theModule);
-
-  //! Destructor
-  virtual ~DFBrowser_SearchLineModel() {}
-
-  //! Separator as attribute name is divided from the label entry in information text
-  static QString SplitSeparator() { return ": "; }
-
-  //! Returns the current module
-  DFBrowser_Module* GetModule() const { return myModule; }
-
-  //! Fills internal containers by the OCAF values. Updates number of rows value
-  //! \param theDocumentValues container of document index to container of entry/attribute name to
-  //! item information \param theDocumentInfoValues container of a document index to entry/attribute
-  //! name
-  Standard_EXPORT void SetValues(
-    const QMap<int, QMap<QString, DFBrowser_SearchItemInfo>>& theDocumentValues,
-    const QMap<int, QStringList>&                             theDocumentInfoValues);
-
-  //! Clears cache of values
-  Standard_EXPORT void ClearValues();
-
-  //! Returns path to attribute or label element of OCAF by the index.
-  //! \param theIndex a tree model index
-  Standard_EXPORT QStringList GetPath(const QModelIndex& theIndex) const;
-
-  //! Returns value(attribute name or label entry) of OCAF by the index
-  Standard_EXPORT QString GetValue(const QModelIndex& theIndex) const;
-
-  //! Emits the layoutChanged signal from outside of this class
-  Standard_EXPORT void EmitLayoutChanged();
-
-  //! Creates new model index
-  //! \param theRow the index row position
-  //! \param theColummn the index column position
-  //! \param theParent the parent index
-  //! \return the model index
-  Standard_EXPORT virtual QModelIndex index(int                theRow,
-                                            int                theColumn,
-                                            const QModelIndex& theParent = QModelIndex()) const
-    Standard_OVERRIDE;
-
-  //! Returns the data stored under the given role for the item referred to by the index.
-  //! \param theIndex a model index
-  //! \param theRole an enumeration value of role for data obtaining
-  Standard_EXPORT virtual QVariant data(const QModelIndex& theIndex,
-                                        int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
-
-  //! Returns the number of rows under the given parent.
-  //! \param theParent a parent model index
-  //! \return the number of rows
-
-  virtual int rowCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return myRowCount;
-  }
-
-  //! Returns the number of columns for the children of the given parent.
-  //! \param theParent a parent model index
-  //! \return the number of columns
-  virtual int columnCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return 3;
-  }
-
-protected:
-  //! Returns document index by a row index in table model
-  //! \param theRow a row index of a QModelIndex
-  //! \param theRowInDocument an output index, to obtain information from myDocumentInfoValues
-  int getDocumentId(const int theRow, int& theRowInDocument) const;
-
-private:
-  DFBrowser_Module*
-    myModule; //!< the current module
-              //! a document index to container of entry/attribute name to item information
-  QMap<int, QMap<QString, DFBrowser_SearchItemInfo>> myAdditionalValues;
-  QMap<int, QStringList> myDocumentInfoValues; //!< a document index to entry/attribute name
-  int myRowCount; //!< number of rows in the model: summ of row counts in all documents
-};
-#endif
diff --git a/tools/DFBrowser/DFBrowser_SearchView.cxx b/tools/DFBrowser/DFBrowser_SearchView.cxx
deleted file mode 100644
index 782246a20c..0000000000
--- a/tools/DFBrowser/DFBrowser_SearchView.cxx
+++ /dev/null
@@ -1,133 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_SearchView.hxx>
-
-#include <inspector/DFBrowser_HighlightDelegate.hxx>
-#include <inspector/DFBrowser_SearchLine.hxx>
-#include <inspector/DFBrowser_SearchLineModel.hxx>
-#include <inspector/DFBrowser_Window.hxx>
-
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <inspector/TreeModel_ModelBase.hxx>
-#include <inspector/TreeModel_Tools.hxx>
-
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractProxyModel>
-#include <QGridLayout>
-#include <QHeaderView>
-#include <QTableView>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-static const int DEFAULT_ICON_SIZE = 40;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowser_SearchView::DFBrowser_SearchView(QWidget* theParent)
-    : QObject(theParent)
-{
-  myMainWindow         = new QWidget(theParent);
-  QGridLayout* aLayout = new QGridLayout(myMainWindow);
-  aLayout->setContentsMargins(0, 0, 0, 0);
-
-  myTableView = new QTableView(myMainWindow);
-  myTableView->verticalHeader()->setVisible(false);
-  myTableView->verticalHeader()->setDefaultSectionSize(DEFAULT_ICON_SIZE
-                                                       + TreeModel_Tools::HeaderSectionMargin());
-  myTableView->setIconSize(QSize(DEFAULT_ICON_SIZE, DEFAULT_ICON_SIZE));
-  myTableView->horizontalHeader()->setVisible(false);
-  myTableView->horizontalHeader()->setStretchLastSection(true);
-
-  myTableView->viewport()->setAttribute(Qt::WA_Hover);
-  myTableView->setItemDelegate(new DFBrowser_HighlightDelegate(myTableView));
-
-  aLayout->addWidget(myTableView);
-
-  ViewControl_Tools::SetWhiteBackground(myTableView);
-  myTableView->setGridStyle(Qt::NoPen);
-}
-
-// =======================================================================
-// function : InitModels
-// purpose :
-// =======================================================================
-void DFBrowser_SearchView::InitModels()
-{
-  QAbstractItemModel* aModel = mySearchLine->GetCompletionModel();
-  myTableView->setModel(aModel);
-  myTableView->setColumnWidth(0, 0); // to hide column
-  myTableView->setColumnWidth(1, DEFAULT_ICON_SIZE + TreeModel_Tools::HeaderSectionMargin());
-
-  QItemSelectionModel* aSelectionModel = new QItemSelectionModel(aModel);
-  myTableView->setSelectionMode(QAbstractItemView::SingleSelection);
-  myTableView->setSelectionModel(aSelectionModel);
-  connect(aSelectionModel,
-          SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-          this,
-          SLOT(onTableSelectionChanged(const QItemSelection&, const QItemSelection&)));
-  connect(myTableView,
-          SIGNAL(doubleClicked(const QModelIndex&)),
-          this,
-          SLOT(onTableDoubleClicked(const QModelIndex&)));
-}
-
-// =======================================================================
-// function : onTableSelectionChanged
-// purpose :
-// =======================================================================
-void DFBrowser_SearchView::onTableSelectionChanged(const QItemSelection&, const QItemSelection&)
-{
-  QItemSelectionModel* aSelectionModel  = myTableView->selectionModel();
-  QModelIndexList      aSelectedIndices = aSelectionModel->selectedIndexes();
-  QModelIndex          aSelectedIndex   = TreeModel_ModelBase::SingleSelected(aSelectedIndices, 2);
-  if (!aSelectedIndex.isValid())
-    return;
-  QAbstractProxyModel* aTableModel = dynamic_cast<QAbstractProxyModel*>(myTableView->model());
-  if (!aTableModel)
-    return;
-  DFBrowser_SearchLineModel* aSourceModel =
-    dynamic_cast<DFBrowser_SearchLineModel*>(aTableModel->sourceModel());
-  if (!aSourceModel)
-    return;
-
-  QModelIndex aSourceSelectedIndex = aTableModel->mapToSource(aSelectedIndex);
-  emit        pathSelected(aSourceModel->GetPath(aSourceSelectedIndex),
-                    aSourceModel->GetValue(aSourceSelectedIndex));
-}
-
-// =======================================================================
-// function : onTableDoubleClicked
-// purpose :
-// =======================================================================
-void DFBrowser_SearchView::onTableDoubleClicked(const QModelIndex& theIndex)
-{
-  QAbstractProxyModel* aTableModel = dynamic_cast<QAbstractProxyModel*>(myTableView->model());
-  if (!aTableModel)
-    return;
-  DFBrowser_SearchLineModel* aSourceModel =
-    dynamic_cast<DFBrowser_SearchLineModel*>(aTableModel->sourceModel());
-  if (!aSourceModel)
-    return;
-
-  QModelIndex aSourceSelectedIndex = aTableModel->mapToSource(theIndex);
-  emit        pathDoubleClicked(aSourceModel->GetPath(aSourceSelectedIndex),
-                         aSourceModel->GetValue(aSourceSelectedIndex));
-}
diff --git a/tools/DFBrowser/DFBrowser_SearchView.hxx b/tools/DFBrowser/DFBrowser_SearchView.hxx
deleted file mode 100644
index 2dd0281a6e..0000000000
--- a/tools/DFBrowser/DFBrowser_SearchView.hxx
+++ /dev/null
@@ -1,88 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_SearchView_H
-#define DFBrowser_SearchView_H
-
-#include <inspector/DFBrowser_SearchLine.hxx>
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <Standard.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QItemSelection>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowser_SearchLine;
-class QTableView;
-class QWidget;
-
-//! \class DFBrowser_SearchView
-//! Container of search result. It has a table of values
-class DFBrowser_SearchView : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowser_SearchView(QWidget* theParent);
-
-  //! Destructor
-  virtual ~DFBrowser_SearchView() {}
-
-  //! Returns search parent control
-  QWidget* GetControl() const { return myMainWindow; }
-
-  //! Sets search line to connect to the search line completion model
-  void SetSearchLine(DFBrowser_SearchLine* theSearchLine) { mySearchLine = theSearchLine; }
-
-  //! Fills the table by values of search line completion model. The zero column of the table is
-  //! hidden, so it visualizes values of 1st and 2nd columns of this model. It creates selection
-  //! model and connects to selectionChanged and doubleClicked signals
-  Standard_EXPORT void InitModels();
-
-  //! Resets search line
-  void Reset() { mySearchLine->SetText(""); }
-
-signals:
-
-  //! Signal about selecting of an item in the view.
-  //! \param thePath path to the selected item (e.g. 0, 0:1, 0:1:1)
-  //! \param theValue value of the selected item (e.g. TDataStd_Name)
-  void pathSelected(const QStringList& thePath, const QString& theValue);
-
-  //! Signal about double click on an item in the view.
-  //! \param thePath path to the selected item (e.g. 0, 0:1, 0:1:1)
-  //! \param theValue value of the selected item (e.g. TDataStd_Name)
-  void pathDoubleClicked(const QStringList& thePath, const QString& theValue);
-
-protected slots:
-
-  //! Listens selection change and emits the pathSelected signal
-  //! \param theSelected selected items
-  //! \param theDeselected deselected items
-  void onTableSelectionChanged(const QItemSelection& theSelected,
-                               const QItemSelection& theDeselected);
-
-  //! Listens double click signal on table view
-  //! \theIndex a model index of double clicked item
-  void onTableDoubleClicked(const QModelIndex& theIndex);
-
-private:
-  QWidget*              myMainWindow; //!< control where table view is placed
-  QTableView*           myTableView;  //!< table view to visualize search values
-  DFBrowser_SearchLine* mySearchLine; //!< search line to have access to search model completor
-};
-#endif
diff --git a/tools/DFBrowser/DFBrowser_Tools.cxx b/tools/DFBrowser/DFBrowser_Tools.cxx
deleted file mode 100644
index 13b6afaef5..0000000000
--- a/tools/DFBrowser/DFBrowser_Tools.cxx
+++ /dev/null
@@ -1,105 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_Tools.hxx>
-
-#include <inspector/DFBrowser_ItemBase.hxx>
-
-#include <inspector/DFBrowserPane_AttributePaneCreator.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <TCollection_AsciiString.hxx>
-#include <TDF_Tool.hxx>
-#include <TDF_ChildIterator.hxx>
-#include <Standard_GUID.hxx>
-#include <TDataStd_Integer.hxx>
-#include <TDataStd_Real.hxx>
-#include <TDataStd_Name.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QColor>
-#include <QDir>
-#include <QPalette>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-namespace DFBrowser_Tools
-{
-// =======================================================================
-// function : IsEmptyLabel
-// purpose :
-// =======================================================================
-bool IsEmptyLabel(const TDF_Label& theLabel)
-{
-  if (theLabel.IsNull())
-    return true;
-
-  if (theLabel.IsRoot())
-    return false;
-
-  if (theLabel.NbAttributes() > 0)
-    return false;
-
-  for (TDF_ChildIterator aChildIt(theLabel); aChildIt.More(); aChildIt.Next())
-  {
-    if (!IsEmptyLabel(aChildIt.Value()))
-      return false;
-  }
-  return true;
-}
-
-// =======================================================================
-// function : GetLabelInfo
-// purpose :
-// =======================================================================
-QString GetLabelInfo(const TDF_Label& theLabel, const bool isUseShortInfo)
-{
-  QString aValue = DFBrowserPane_Tools::GetEntry(theLabel).ToCString();
-  if (!isUseShortInfo)
-    return aValue;
-
-  Handle(TDataStd_Name) aName;
-  if (!theLabel.FindAttribute(TDataStd_Name::GetID(), aName))
-    return aValue;
-
-  aValue += " ";
-  aValue += DFBrowserPane_Tools::ToString(aName->Get());
-
-  return aValue;
-}
-
-enum DFBrowser_IconType
-{
-  DFBrowser_IconType_16x16,
-  DFBrowser_IconType_40x40
-};
-
-static QMap<DFBrowser_IconType, QIcon> MyLabelIcons;
-
-// =======================================================================
-// function : GetLabelIcon
-// purpose :
-// =======================================================================
-QIcon GetLabelIcon(const TDF_Label& theLabel, bool isStandard16x16)
-{
-  (void)theLabel;
-  if (MyLabelIcons.empty())
-  {
-    MyLabelIcons[DFBrowser_IconType_16x16] = QIcon(":/icons/label_folder_16x16.png");
-    MyLabelIcons[DFBrowser_IconType_40x40] = QIcon(":/icons/label_folder_40x40.png");
-  }
-  return MyLabelIcons[isStandard16x16 ? DFBrowser_IconType_16x16 : DFBrowser_IconType_40x40];
-}
-} // namespace DFBrowser_Tools
diff --git a/tools/DFBrowser/DFBrowser_Tools.hxx b/tools/DFBrowser/DFBrowser_Tools.hxx
deleted file mode 100644
index 254313b730..0000000000
--- a/tools/DFBrowser/DFBrowser_Tools.hxx
+++ /dev/null
@@ -1,59 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_Tools_H
-#define DFBrowser_Tools_H
-
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <Standard.hxx>
-#include <Standard_GUID.hxx>
-#include <TDocStd_Document.hxx>
-#include <TDF_Label.hxx>
-#include <TDF_Attribute.hxx>
-#include <TopoDS_Shape.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractItemModel>
-#include <QColor>
-#include <QMap>
-#include <QModelIndex>
-#include <QPixmap>
-#include <QString>
-#include <QIcon>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowserPane_AttributePaneAPI;
-
-//! \namespace DFBrowser_Tools
-//! The namespace that gives auxiliary methods for TDF elements manipulation
-namespace DFBrowser_Tools
-{
-
-//! Returns true if the label is not root, has attribute or at least one sub-label with attribute
-//! \param theLabel a label
-//! \return boolean result
-Standard_EXPORT bool IsEmptyLabel(const TDF_Label& theLabel);
-
-//! Returns the label entry
-//! \param isUseShortInfo boolean value if value of name attribute should be included to result
-//! \return string value
-Standard_EXPORT QString GetLabelInfo(const TDF_Label& theLabel, const bool isUseShortInfo = true);
-
-//! Returns the label icon
-Standard_EXPORT QIcon GetLabelIcon(const TDF_Label& theLabel, bool isStandard16x16 = true);
-} // namespace DFBrowser_Tools
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_TreeLevelLine.cxx b/tools/DFBrowser/DFBrowser_TreeLevelLine.cxx
deleted file mode 100644
index 6c245c9b6b..0000000000
--- a/tools/DFBrowser/DFBrowser_TreeLevelLine.cxx
+++ /dev/null
@@ -1,263 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_TreeLevelLine.hxx>
-
-#include <inspector/DFBrowser_SearchLine.hxx>
-#include <inspector/DFBrowser_Window.hxx>
-#include <inspector/DFBrowser_TreeLevelLineDelegate.hxx>
-#include <inspector/DFBrowser_TreeLevelLineModel.hxx>
-
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <inspector/TreeModel_ModelBase.hxx>
-#include <inspector/TreeModel_Tools.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractItemModel>
-#include <QFrame>
-#include <QGridLayout>
-#include <QHeaderView>
-#include <QItemSelectionModel>
-#include <QPainter>
-#include <QScrollBar>
-#include <QTableView>
-#include <QToolButton>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-const int HISTORY_SIZE = 10;
-const int MARGIN_SIZE  = 2;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowser_TreeLevelLine::DFBrowser_TreeLevelLine(QWidget* theParent)
-    : QObject(theParent),
-      mySelectionProcessingBlocked(false),
-      myCurrentHistoryIndex(-1)
-{
-  myMainWindow         = new QWidget(theParent);
-  QGridLayout* aLayout = new QGridLayout(myMainWindow);
-  aLayout->setContentsMargins(MARGIN_SIZE, MARGIN_SIZE, MARGIN_SIZE, MARGIN_SIZE);
-
-  myBackwardButton = new QToolButton(myMainWindow);
-  myBackwardButton->setIcon(QIcon(":/icons/treeline_backward.png"));
-  myBackwardButton->setToolTip(tr("Backward"));
-  connect(myBackwardButton, SIGNAL(clicked()), this, SLOT(onActionClicked()));
-  aLayout->addWidget(myBackwardButton, 0, 0);
-
-  myForwardButton = new QToolButton(myMainWindow);
-  myForwardButton->setIcon(QIcon(":/icons/treeline_forward.png"));
-  myForwardButton->setToolTip(tr("Forward"));
-  connect(myForwardButton, SIGNAL(clicked()), this, SLOT(onActionClicked()));
-  aLayout->addWidget(myForwardButton, 0, 1);
-
-  myTableView = new QTableView(myMainWindow);
-  myTableView->horizontalHeader()->setVisible(false);
-  QHeaderView* aVHeader = myTableView->verticalHeader();
-  aVHeader->setVisible(false);
-  int aDefCellSize = aVHeader->minimumSectionSize() + TreeModel_Tools::HeaderSectionMargin();
-  aVHeader->setDefaultSectionSize(aDefCellSize);
-  aLayout->addWidget(myTableView, 0, 2);
-
-  myTableView->setFixedHeight(aDefCellSize);
-  myTableView->horizontalHeader()->setMinimumSectionSize(5); // it will be resized by context
-  myTableView->setHorizontalScrollMode(QAbstractItemView::ScrollPerItem);
-  myTableView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); //! TEMPORARY
-  myTableView->setShowGrid(false);
-
-  DFBrowser_TreeLevelLineModel* aHModel = new DFBrowser_TreeLevelLineModel(myTableView);
-  myTableView->setModel(aHModel);
-
-  QItemSelectionModel* aSelectionModel = new QItemSelectionModel(aHModel);
-  myTableView->setSelectionMode(QAbstractItemView::SingleSelection);
-  myTableView->setSelectionModel(aSelectionModel);
-  connect(aSelectionModel,
-          SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-          this,
-          SLOT(onTableSelectionChanged(const QItemSelection&, const QItemSelection&)));
-
-  // highlight for items
-  myTableView->viewport()->setAttribute(Qt::WA_Hover);
-  myTableView->setItemDelegate(new DFBrowser_TreeLevelLineDelegate(myTableView));
-
-  aLayout->setColumnStretch(2, 1);
-
-  myUpdateButton = new QToolButton(myMainWindow);
-  myUpdateButton->setIcon(QIcon(":/icons/treeline_update.png"));
-  myUpdateButton->setToolTip(tr("Update Tree Model"));
-  connect(myUpdateButton, SIGNAL(clicked()), this, SLOT(onActionClicked()));
-  aLayout->addWidget(myUpdateButton, 0, 3);
-
-  mySearchLine = new DFBrowser_SearchLine(myMainWindow);
-  aLayout->addWidget(mySearchLine, 0, 4);
-
-  updateActionsState();
-}
-
-// =======================================================================
-// function : clear
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelLine::ClearHistory()
-{
-  myHistoryIndices.clear();
-  setCurrentHistoryIndex(-1);
-}
-
-// =======================================================================
-// function : onSelectionChanged
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelLine::OnTreeViewSelectionChanged(const QItemSelection& theSelected,
-                                                         const QItemSelection&)
-{
-  QModelIndexList aSelectedIndices = theSelected.indexes();
-  QModelIndex     aSelectedIndex   = TreeModel_ModelBase::SingleSelected(aSelectedIndices, 0);
-
-  if (!mySelectionProcessingBlocked) // we're processing action click
-    setForwardIndex(aSelectedIndex);
-
-  bool isBlocked = mySelectionProcessingBlocked;
-  // block selection processing in order to avoid circling by processing table selection changing
-  mySelectionProcessingBlocked = true;
-  DFBrowser_TreeLevelLineModel* aModel =
-    dynamic_cast<DFBrowser_TreeLevelLineModel*>(myTableView->model());
-  aModel->Init(aSelectedIndex);
-  myTableView->selectionModel()->clearSelection();
-  myTableView->resizeColumnsToContents();
-
-  myTableView->scrollTo(myTableView->model()->index(0, myTableView->model()->columnCount() - 1));
-
-  mySelectionProcessingBlocked = isBlocked;
-}
-
-// =======================================================================
-// function : onTableSelectionChanged
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelLine::onTableSelectionChanged(const QItemSelection& theSelected,
-                                                      const QItemSelection&)
-{
-  if (mySelectionProcessingBlocked)
-    return;
-
-  DFBrowser_TreeLevelLineModel* aTableModel =
-    dynamic_cast<DFBrowser_TreeLevelLineModel*>(myTableView->model());
-  if (!aTableModel)
-    return;
-
-  QModelIndex aSelectedIndex =
-    TreeModel_ModelBase::SingleSelected(theSelected.indexes(), 0, Qt::Vertical);
-  emit indexSelected(aTableModel->GetTreeViewIndex(aSelectedIndex));
-}
-
-// =======================================================================
-// function : onActionClicked
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelLine::onActionClicked()
-{
-  QToolButton* aSender = (QToolButton*)sender();
-  if (aSender == myBackwardButton || aSender == myForwardButton)
-  {
-    bool aBlocked                = mySelectionProcessingBlocked;
-    mySelectionProcessingBlocked = true;
-    QModelIndex anIndex;
-    if (aSender == myBackwardButton)
-    {
-      anIndex = getBackwardIndex();
-      if (anIndex.isValid())
-        setCurrentHistoryIndex(myCurrentHistoryIndex - 1);
-    }
-    else
-    {
-      anIndex = getForwardIndex();
-      if (anIndex.isValid())
-        setCurrentHistoryIndex(myCurrentHistoryIndex + 1);
-    }
-    if (anIndex.isValid())
-      emit indexSelected(anIndex);
-    mySelectionProcessingBlocked = aBlocked;
-  }
-  else if (aSender == myUpdateButton)
-    emit updateClicked();
-}
-
-// =======================================================================
-// function : getBackwardIndex
-// purpose :
-// =======================================================================
-QModelIndex DFBrowser_TreeLevelLine::getBackwardIndex()
-{
-  return myCurrentHistoryIndex > 0 ? myHistoryIndices[myCurrentHistoryIndex - 1] : QModelIndex();
-}
-
-// =======================================================================
-// function : getForwardIndex
-// purpose :
-// =======================================================================
-QModelIndex DFBrowser_TreeLevelLine::getForwardIndex()
-{
-  return (myCurrentHistoryIndex >= 0 && myCurrentHistoryIndex + 1 < myHistoryIndices.count())
-           ? myHistoryIndices[myCurrentHistoryIndex + 1]
-           : QModelIndex();
-}
-
-// =======================================================================
-// function : setForwardIndex
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelLine::setForwardIndex(const QModelIndex& theIndex)
-{
-  while (myCurrentHistoryIndex != myHistoryIndices.count() - 1)
-    myHistoryIndices.removeLast();
-
-  myHistoryIndices.append(theIndex);
-  if (myHistoryIndices.size() > HISTORY_SIZE)
-    myHistoryIndices.removeFirst();
-
-  setCurrentHistoryIndex(myHistoryIndices.count() - 1);
-}
-
-// =======================================================================
-// function : setCurrentHistoryIndex
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelLine::setCurrentHistoryIndex(const int theIndexId)
-{
-  myCurrentHistoryIndex = theIndexId;
-  updateActionsState();
-}
-
-// =======================================================================
-// function : updateActionsState
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelLine::updateActionsState()
-{
-  if (myCurrentHistoryIndex < 0)
-  {
-    myBackwardButton->setEnabled(false);
-    myForwardButton->setEnabled(false);
-  }
-  else
-  {
-    myBackwardButton->setEnabled(myCurrentHistoryIndex > 0);
-    myForwardButton->setEnabled(myCurrentHistoryIndex < myHistoryIndices.size() - 1);
-  }
-}
diff --git a/tools/DFBrowser/DFBrowser_TreeLevelLine.hxx b/tools/DFBrowser/DFBrowser_TreeLevelLine.hxx
deleted file mode 100644
index 21273d42a1..0000000000
--- a/tools/DFBrowser/DFBrowser_TreeLevelLine.hxx
+++ /dev/null
@@ -1,133 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_TreeLevelLine_H
-#define DFBrowser_TreeLevelLine_H
-
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <Standard.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QItemSelection>
-#include <QObject>
-#include <QMap>
-#include <QModelIndex>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowser_SearchLine;
-
-class QAbstractItemModel;
-class QToolButton;
-class QTableView;
-class QWidget;
-
-//! \class DFBrowser_TreeLevelLine
-//! This is a control to visualize the current selected item of OCAF tree view.
-//! It contains history of previous selected items.
-//! The structure of this control is the next:
-//! <back button> <forward button> <selected item line> <update button> <search line>
-//! - <back button> allows moving to previously selected item (if it exists)
-//! - <forward button> allows moving to next selected item (if it exists)
-//! - <selected item line> path to currently selected item in OCAF tree view. Click on any level
-//! will select the clicked item in tree view.
-//! - <update button> will update content of OCAF tree model
-//! - <search line> allows type label entry or attribute name and see in search view the available
-//! elements
-class DFBrowser_TreeLevelLine : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowser_TreeLevelLine(QWidget* theParent);
-
-  //! Destructor
-  virtual ~DFBrowser_TreeLevelLine() {}
-
-  //! Clears history of selected items
-  Standard_EXPORT void ClearHistory();
-
-  //! Returns parent control
-  QWidget* GetControl() const { return myMainWindow; }
-
-  //! Returns current search line
-  DFBrowser_SearchLine* GetSearchLine() const { return mySearchLine; };
-
-signals:
-
-  //! Signal about selection of an item in tree level line
-  //! \param theIndex a tree view model index of selected item
-  void indexSelected(const QModelIndex& theIndex);
-
-  //! Signal about necessity to update OCAF tree model
-  void updateClicked();
-
-public slots:
-
-  //! Listens tree view selection model. Update tree level line by selected item. Stores
-  //! \param theSelected a list of selected items
-  //! \param theDeselected a list of deselected items
-  Standard_EXPORT void OnTreeViewSelectionChanged(const QItemSelection& theSelected,
-                                                  const QItemSelection& theDeselected);
-
-private slots:
-
-  //! Listens table view selection model. Gets selected tree view model index and emit indexSelected
-  //! signal. \param theSelected a list of selected items \param theDeselected a list of deselected
-  //! items
-  void onTableSelectionChanged(const QItemSelection& theSelected,
-                               const QItemSelection& theDeselected);
-
-  //! Listens actions and do the following:
-  //! - <backward>: moves history to the previous selection item, emits indexSelected signal
-  //! - <forward>: moves history to the next selection item, emits indexSelected signal
-  //! - <update>: emits updateClicked signal to update OCAF tree model
-  void onActionClicked();
-
-private:
-  //! Returns the previous index of history selection
-  QModelIndex getBackwardIndex();
-
-  //! Returns the next index of history selection
-  QModelIndex getForwardIndex();
-
-  //! Appends new history index, set it active, remove the first history index if the cache is out
-  //! of range \param theIndex a selected OCAF tree model index
-  void setForwardIndex(const QModelIndex& theIndex);
-
-  //! Updates enable state of backward/forward actions depending on the current item index
-  void updateActionsState();
-
-  //! Sets the current index and update actions state
-  //! \param theIndexId an item index, should be in range of history of indices
-  void setCurrentHistoryIndex(const int theIndexId);
-
-private:
-  bool mySelectionProcessingBlocked; //!< if true, table view selection is started but has not been
-                                     //!< finished yet
-  QList<QModelIndex> myHistoryIndices; //!< cached selected OCAF tree model indices
-  int
-    myCurrentHistoryIndex; //!< an index of the current history selected index from myHistoryIndices
-
-  QWidget*     myMainWindow;     //!< parent widget for controls
-  QToolButton* myBackwardButton; //!< backward button, to select previous selected item
-  QToolButton* myForwardButton;  //!< forward button, to select next selected item
-  QToolButton* myUpdateButton;   //!< update button, like F5, to update OCAF tree model content
-  QTableView*
-    myTableView; //!< container of path values to selected item, a path value is a label entry
-
-  DFBrowser_SearchLine* mySearchLine; //!< line of search
-};
-#endif
diff --git a/tools/DFBrowser/DFBrowser_TreeLevelLineDelegate.cxx b/tools/DFBrowser/DFBrowser_TreeLevelLineDelegate.cxx
deleted file mode 100644
index 3d28d64f44..0000000000
--- a/tools/DFBrowser/DFBrowser_TreeLevelLineDelegate.cxx
+++ /dev/null
@@ -1,57 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_TreeLevelLineDelegate.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QPainter>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowser_TreeLevelLineDelegate::DFBrowser_TreeLevelLineDelegate(QObject* theParent)
-    : QItemDelegate(theParent)
-{
-}
-
-// =======================================================================
-// function : paint
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelLineDelegate::paint(QPainter*                   thePainter,
-                                            const QStyleOptionViewItem& theOption,
-                                            const QModelIndex&          theIndex) const
-{
-  // highlight cell
-  if (theOption.state & QStyle::State_MouseOver)
-    thePainter->fillRect(theOption.rect, DFBrowserPane_Tools::LightHighlightColor());
-
-  // action icon for all indices before the last one
-  if (theIndex.column() < theIndex.model()->columnCount() - 1)
-  {
-    QIcon anIcon(":/icons/level_change.png");
-    QSize anIconSize(10, 20);
-    thePainter->drawPixmap(QRect(theOption.rect.right() - anIconSize.width(),
-                                 theOption.rect.top(),
-                                 anIconSize.width(),
-                                 anIconSize.height()),
-                           anIcon.pixmap(anIconSize.width(), anIconSize.height()));
-  }
-  // default paint
-  QItemDelegate::paint(thePainter, theOption, theIndex);
-}
diff --git a/tools/DFBrowser/DFBrowser_TreeLevelLineDelegate.hxx b/tools/DFBrowser/DFBrowser_TreeLevelLineDelegate.hxx
deleted file mode 100644
index c73bab4bcb..0000000000
--- a/tools/DFBrowser/DFBrowser_TreeLevelLineDelegate.hxx
+++ /dev/null
@@ -1,49 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_TreeLevelLineDelegate_H
-#define DFBrowser_TreeLevelLineDelegate_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QItemDelegate>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class DFBrowser_TreeLevelLineDelegate
-//! Extending standard item delegate by:
-//! - <level change.png> icon. It exists for all columns excepting the last column.
-//! - highlight cell by mouse move over the cell
-class DFBrowser_TreeLevelLineDelegate : public QItemDelegate
-{
-
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowser_TreeLevelLineDelegate(QObject* theParent = 0);
-
-  //! Destructor
-  virtual ~DFBrowser_TreeLevelLineDelegate() {}
-
-  //! Draws an icon in the cell and highlight cell if mouse is over the cell
-  //! \param thePainter a painter
-  //! \param theOption a paint options
-  //! \param theIndex a view index
-  Standard_EXPORT virtual void paint(QPainter*                   thePainter,
-                                     const QStyleOptionViewItem& theOption,
-                                     const QModelIndex&          theIndex) const Standard_OVERRIDE;
-};
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_TreeLevelLineModel.cxx b/tools/DFBrowser/DFBrowser_TreeLevelLineModel.cxx
deleted file mode 100644
index d9046ce652..0000000000
--- a/tools/DFBrowser/DFBrowser_TreeLevelLineModel.cxx
+++ /dev/null
@@ -1,100 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_TreeLevelLineModel.hxx>
-
-#include <inspector/DFBrowser_ItemBase.hxx>
-#include <inspector/TreeModel_ModelBase.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QIcon>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelLineModel::Init(const QModelIndex& theTreeIndex)
-{
-  myTreeIndex = theTreeIndex;
-  myLevelItems.clear();
-
-  if (theTreeIndex.isValid())
-  {
-    myLevelItems.prepend(theTreeIndex);
-    QModelIndex aParent = theTreeIndex.parent();
-    while (aParent.isValid())
-    {
-      myLevelItems.prepend(aParent);
-      aParent = aParent.parent();
-    }
-  }
-  emit layoutChanged();
-}
-
-// =======================================================================
-// function : data
-// purpose :
-// =======================================================================
-QVariant DFBrowser_TreeLevelLineModel::data(const QModelIndex& theIndex, int theRole) const
-{
-  QVariant aValue;
-  int      aColumns = theIndex.column();
-  if (aColumns < myLevelItems.size())
-  {
-    QModelIndex aTreeIndex = myLevelItems[aColumns];
-    if (theRole == Qt::DecorationRole) //! do not show icons presented in tree view
-      return aValue;
-    TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(aTreeIndex);
-    if (!anItemBase)
-      return aValue;
-
-    DFBrowser_ItemBasePtr aDBrowserItem = itemDynamicCast<DFBrowser_ItemBase>(anItemBase);
-    if (!aDBrowserItem)
-      return aValue;
-
-    bool aPrevValue = aDBrowserItem->SetUseAdditionalInfo(false);
-    aValue          = aDBrowserItem->data(aTreeIndex, theRole);
-    aDBrowserItem->SetUseAdditionalInfo(aPrevValue);
-
-    if (theRole == Qt::DisplayRole)
-      aValue = aValue.toString() + "  "; //! TEMPORARY to leave place for the action icon
-  }
-  return aValue;
-}
-
-// =======================================================================
-// function : headerData
-// purpose :
-// =======================================================================
-QVariant DFBrowser_TreeLevelLineModel::headerData(int             theSection,
-                                                  Qt::Orientation theOrientation,
-                                                  int             theRole) const
-{
-  QVariant aValue;
-  if (theOrientation == Qt::Horizontal && theSection < myLevelItems.size())
-  {
-    QModelIndex aTreeIndex = myLevelItems[theSection];
-    if (!aTreeIndex.isValid()) // level change action
-    {
-      if (theRole == Qt::SizeHintRole)
-        aValue = QSize(2, 2);
-      else if (theRole == Qt::DisplayRole)
-        aValue = "";
-    }
-  }
-  return aValue;
-}
diff --git a/tools/DFBrowser/DFBrowser_TreeLevelLineModel.hxx b/tools/DFBrowser/DFBrowser_TreeLevelLineModel.hxx
deleted file mode 100644
index 5380add71f..0000000000
--- a/tools/DFBrowser/DFBrowser_TreeLevelLineModel.hxx
+++ /dev/null
@@ -1,100 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_TreeLevelLineModel_H
-#define DFBrowser_TreeLevelLineModel_H
-
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <Standard.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractTableModel>
-#include <QObject>
-#include <QList>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class DFBrowser_TreeLevelLineModel
-//! Tree Model of tree line items. It is initialized by OCAF tree model index. Each element of the
-//! current model is an item of hierarchy of OCAF tree model index. So, on each level a label is
-//! presented, the last element may be an attribute. Information, presented for the item has no
-//! additional information (not as in OCAF tree model)
-class DFBrowser_TreeLevelLineModel : public QAbstractTableModel
-{
-public:
-  //! Constructor
-  DFBrowser_TreeLevelLineModel(QObject* theParent = 0)
-      : QAbstractTableModel(theParent)
-  {
-  }
-
-  //! Destructor
-  virtual ~DFBrowser_TreeLevelLineModel() {}
-
-  //! Resets the cached values
-  void Reset() { myLevelItems.clear(); }
-
-  //! Inits the model by the index
-  //! \param theTreeIndex an OCAF tree model index
-  Standard_EXPORT void Init(const QModelIndex& theTreeIndex);
-
-  //! Returns true if the tree model index is filled
-  bool IsInitialized() const { return myTreeIndex.isValid(); }
-
-  //! Returns OCAF tree view model index on level defined by column of the parameter index
-  //! \param theIndex a tree level view model index
-  //! \return model index
-  const QModelIndex& GetTreeViewIndex(const QModelIndex& theIndex) const
-  {
-    return myLevelItems[theIndex.column()];
-  }
-
-  //! Returns item information(short) for display role.
-  //! \param theIndex a model index
-  //! \param theRole a view role
-  //! \return value interpreted depending on the given role
-  Standard_EXPORT virtual QVariant data(const QModelIndex& theIndex,
-                                        int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
-
-  //! Returns the header data for the given role and section in the header with the specified
-  //! orientation. \param theSection the header section. For horizontal headers - column number, for
-  //! vertical headers - row number. \param theOrientation a header orientation \param theRole a
-  //! data role \return the header data
-  Standard_EXPORT virtual QVariant headerData(int             theSection,
-                                              Qt::Orientation theOrientation,
-                                              int             theRole = Qt::DisplayRole) const
-    Standard_OVERRIDE;
-
-  //! Returns number of tree level line items = columns in table view
-  virtual int columnCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return myLevelItems.size();
-  }
-
-  //! Returns only one row in table view
-  virtual int rowCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return 1;
-  }
-
-private:
-  QModelIndex myTreeIndex; //!< the current OCAF tree view model index
-  QList<QModelIndex>
-    myLevelItems; //!< cached parent indices of myTreeIndex for quick access to item information
-};
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_TreeLevelView.cxx b/tools/DFBrowser/DFBrowser_TreeLevelView.cxx
deleted file mode 100644
index bc11d05d6e..0000000000
--- a/tools/DFBrowser/DFBrowser_TreeLevelView.cxx
+++ /dev/null
@@ -1,167 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_TreeLevelView.hxx>
-
-#include <inspector/DFBrowser_Item.hxx>
-#include <inspector/DFBrowser_TreeLevelViewModel.hxx>
-#include <inspector/DFBrowser_Window.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-#include <inspector/TreeModel_ModelBase.hxx>
-
-#include <inspector/ViewControl_Tools.hxx>
-#include <Standard_WarningsDisable.hxx>
-#include <QItemSelectionModel>
-#include <QGridLayout>
-#include <QHeaderView>
-#include <QTableView>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-const int LABEL_OR_ATTRIBUTECOLUMN_WIDTH = 160;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowser_TreeLevelView::DFBrowser_TreeLevelView(QWidget* theParent)
-    : QObject(theParent)
-{
-  myMainWindow         = new QWidget(theParent);
-  QGridLayout* aLayout = new QGridLayout(myMainWindow);
-  aLayout->setContentsMargins(0, 0, 0, 0);
-
-  myTableView = new QTableView(myMainWindow);
-  myTableView->setModel(new DFBrowser_TreeLevelViewModel(myTableView));
-  myTableView->setColumnWidth(0, LABEL_OR_ATTRIBUTECOLUMN_WIDTH);
-  myTableView->setEditTriggers(QAbstractItemView::DoubleClicked);
-  myTableView->horizontalHeader()->setVisible(false);
-  QHeaderView* aVHeader = myTableView->verticalHeader();
-  aVHeader->setVisible(false);
-  aVHeader->setDefaultSectionSize(aVHeader->minimumSectionSize());
-  myTableView->horizontalHeader()->setStretchLastSection(true);
-  aLayout->addWidget(myTableView);
-
-  QItemSelectionModel* aSelectionModel = new QItemSelectionModel(myTableView->model());
-  myTableView->setSelectionMode(QAbstractItemView::SingleSelection);
-  myTableView->setSelectionModel(aSelectionModel);
-  myTableView->setSelectionBehavior(QAbstractItemView::SelectRows);
-  connect(aSelectionModel,
-          SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-          this,
-          SLOT(onTableSelectionChanged(const QItemSelection&, const QItemSelection&)));
-  connect(myTableView,
-          SIGNAL(doubleClicked(const QModelIndex&)),
-          this,
-          SLOT(onTableDoubleClicked(const QModelIndex&)));
-
-  ViewControl_Tools::SetWhiteBackground(myTableView);
-  myTableView->setGridStyle(Qt::NoPen);
-}
-
-// =======================================================================
-// function : clearSelection
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelView::ClearSelection()
-{
-  myTableView->selectionModel()->clearSelection();
-}
-
-// =======================================================================
-// function : ProcessItem
-// purpose :
-// =======================================================================
-bool DFBrowser_TreeLevelView::ProcessItem(const QModelIndex& theIndex)
-{
-  bool                  aResult    = false;
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(theIndex);
-  if (anItemBase)
-  {
-    // use this view for attribute/document/label items
-    DFBrowser_ItemPtr anItem = itemDynamicCast<DFBrowser_Item>(anItemBase);
-    if (anItem)
-      aResult = anItem && !anItem->HasAttribute();
-    else
-      aResult = true; // attribute or document item
-  }
-  return aResult;
-}
-
-// =======================================================================
-// function : UpdateByTreeSelectionChanged
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelView::UpdateByTreeSelectionChanged(const QItemSelection& theSelected,
-                                                           const QItemSelection&)
-{
-  QModelIndexList aSelectedIndices = theSelected.indexes();
-  QModelIndexList aFirstColumnSelectedIndices;
-  for (QModelIndexList::const_iterator aSelIt = aSelectedIndices.begin();
-       aSelIt != aSelectedIndices.end();
-       aSelIt++)
-  {
-    QModelIndex anIndex = *aSelIt;
-    if (anIndex.column() == 0)
-      aFirstColumnSelectedIndices.append(anIndex);
-  }
-
-  if (aFirstColumnSelectedIndices.size() != 1)
-    return;
-
-  DFBrowser_TreeLevelViewModel* aModel =
-    dynamic_cast<DFBrowser_TreeLevelViewModel*>(myTableView->model());
-  const QModelIndex& anIndex = aFirstColumnSelectedIndices.first();
-  if (DFBrowser_TreeLevelView::ProcessItem(anIndex)) // to Init
-    aModel->Init(anIndex);
-  else
-    aModel->Reset();
-}
-
-// =======================================================================
-// function : onTableSelectionChanged
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelView::onTableSelectionChanged(const QItemSelection& theSelected,
-                                                      const QItemSelection&)
-{
-  QModelIndexList aSelectedIndices = theSelected.indexes();
-  QModelIndex     aSelectedIndex   = TreeModel_ModelBase::SingleSelected(aSelectedIndices, 0);
-
-  DFBrowser_TreeLevelViewModel* aTableModel =
-    dynamic_cast<DFBrowser_TreeLevelViewModel*>(myTableView->model());
-  if (aTableModel && aTableModel->IsInitialized())
-  {
-    const QModelIndex& aTreeViewIndex = aTableModel->GetTreeViewIndex(aSelectedIndex);
-    if (aTreeViewIndex.isValid())
-      emit indexSelected(aTreeViewIndex);
-  }
-}
-
-// =======================================================================
-// function : onTableDoubleClicked
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelView::onTableDoubleClicked(const QModelIndex& theIndex)
-{
-  DFBrowser_TreeLevelViewModel* aTableModel =
-    dynamic_cast<DFBrowser_TreeLevelViewModel*>(myTableView->model());
-  if (!aTableModel)
-    return;
-
-  const QModelIndex& aTreeViewIndex = aTableModel->GetTreeViewIndex(theIndex);
-  if (aTreeViewIndex.isValid())
-    emit indexDoubleClicked(aTreeViewIndex);
-}
diff --git a/tools/DFBrowser/DFBrowser_TreeLevelView.hxx b/tools/DFBrowser/DFBrowser_TreeLevelView.hxx
deleted file mode 100644
index b5d61929f3..0000000000
--- a/tools/DFBrowser/DFBrowser_TreeLevelView.hxx
+++ /dev/null
@@ -1,90 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_TreeLevelView_H
-#define DFBrowser_TreeLevelView_H
-
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <Standard.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QItemSelection>
-#include <Standard_WarningsRestore.hxx>
-
-class QWidget;
-class QTableView;
-
-//! \class DFBrowser_TreeLevelView
-//! This is a control to visualize the current selected item of OCAF tree view in table view.
-//! The table contains two columns: name and value. The information is similar the one OCAF tree
-//! view label content: children and attributes for the current label. Selection or double click of
-//! item emits signals about this event.
-class DFBrowser_TreeLevelView : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowser_TreeLevelView(QWidget* theParent);
-
-  //! Destructor
-  virtual ~DFBrowser_TreeLevelView() {}
-
-  //! Returns parent control
-  QWidget* GetControl() const { return myMainWindow; }
-
-  //! Clears selection of the table view selection model
-  Standard_EXPORT void ClearSelection();
-
-  //! Returns true if this control may be filled by the index
-  //! It is possible if an item of the index is application, document or label
-  //! \param theIndex OCAF tree view model index
-  //! \return boolean result
-  Standard_EXPORT static bool ProcessItem(const QModelIndex& theIndex);
-
-  //! Inits view by the first selected item in OCAF tree view
-  //! \param theSelected selected items
-  //! \param theDeselected deselected items
-  Standard_EXPORT void UpdateByTreeSelectionChanged(const QItemSelection& theSelected,
-                                                    const QItemSelection& theDeselected);
-
-signals:
-
-  //! Signal about selection of an item in tree view
-  //! \param theIndex a tree view model index of selected item
-  void indexSelected(const QModelIndex& theIndex);
-
-  //! Signal about double click on an item in tree view
-  //! \param theIndex a tree view model index of selected item
-  void indexDoubleClicked(const QModelIndex& theIndex);
-
-private slots:
-
-  //! Listens table view selection model. Gets the first selected tree view model index and emit
-  //! indexSelected signal. \param theSelected a list of selected items \param theDeselected a list
-  //! of deselected items
-  void onTableSelectionChanged(const QItemSelection& theSelected,
-                               const QItemSelection& theDeselected);
-
-  //! Listens table view double click. Gets clicked index and emit indexDoubleClicked signal.
-  //! \param theIndex a tree view model index of selected item
-  void onTableDoubleClicked(const QModelIndex& theIndex);
-
-private:
-  QWidget*    myMainWindow; //!< parent control
-  QTableView* myTableView;  //!< current view
-};
-#endif
diff --git a/tools/DFBrowser/DFBrowser_TreeLevelViewModel.cxx b/tools/DFBrowser/DFBrowser_TreeLevelViewModel.cxx
deleted file mode 100644
index 2aeb877838..0000000000
--- a/tools/DFBrowser/DFBrowser_TreeLevelViewModel.cxx
+++ /dev/null
@@ -1,140 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_TreeLevelViewModel.hxx>
-
-#include <inspector/DFBrowser_Item.hxx>
-#include <inspector/DFBrowser_ItemRole.hxx>
-#include <inspector/DFBrowser_Module.hxx>
-#include <inspector/DFBrowser_Tools.hxx>
-#include <inspector/DFBrowser_TreeLevelView.hxx>
-
-#include <TDF_AttributeIterator.hxx>
-#include <TDF_ChildIterator.hxx>
-#include <TDF_Label.hxx>
-#include <inspector/TreeModel_ModelBase.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QColor>
-#include <QFont>
-#include <QIcon>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowser_TreeLevelViewModel::Init(const QModelIndex& theTreeIndex)
-{
-  myIndex                      = theTreeIndex;
-  TreeModel_ItemBasePtr anItem = TreeModel_ModelBase::GetItemByIndex(theTreeIndex);
-  myRowCount                   = anItem ? anItem->rowCount() : 0;
-  if (!anItem)
-    return;
-  EmitLayoutChanged();
-}
-
-// =======================================================================
-// function : GetTreeViewIndex
-// purpose :
-// =======================================================================
-QModelIndex DFBrowser_TreeLevelViewModel::GetTreeViewIndex(const QModelIndex& theIndex) const
-{
-  return myIndex.model()->index(theIndex.row(), 0, myIndex);
-}
-
-// =======================================================================
-// function : headerData
-// purpose :
-// =======================================================================
-QVariant DFBrowser_TreeLevelViewModel::headerData(int             theSection,
-                                                  Qt::Orientation theOrientation,
-                                                  int             theRole) const
-{
-  return (theOrientation == Qt::Horizontal && theRole == Qt::DisplayRole && theSection == 1)
-           ? QVariant(tr("Name"))
-           : QVariant();
-}
-
-// =======================================================================
-// function : index
-// purpose :
-// =======================================================================
-QModelIndex DFBrowser_TreeLevelViewModel::index(int                theRow,
-                                                int                theColumn,
-                                                const QModelIndex& theParent) const
-{
-  if (!hasIndex(theRow, theColumn, theParent))
-    return QModelIndex();
-  return createIndex(theRow, theColumn);
-}
-
-// =======================================================================
-// function : data
-// purpose :
-// =======================================================================
-QVariant DFBrowser_TreeLevelViewModel::data(const QModelIndex& theIndex, int theRole) const
-{
-  QModelIndex anIndex = myIndex.model()->index(theIndex.row(), 0, myIndex);
-
-  if (!anIndex.isValid())
-    return QVariant("undefined");
-
-  QVariant              aValue;
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-  if (theIndex.column() == 0)
-  {
-    DFBrowser_ItemBasePtr aDBrowserItem = itemDynamicCast<DFBrowser_ItemBase>(anItemBase);
-    if (!aDBrowserItem)
-      return QVariant();
-
-    bool aPrevValue = aDBrowserItem->SetUseAdditionalInfo(false);
-    aValue          = anItemBase->data(anIndex, theRole);
-    aDBrowserItem->SetUseAdditionalInfo(aPrevValue);
-  }
-  else
-  { // column = 1
-    if (theRole == Qt::DisplayRole || theRole == Qt::ToolTipRole)
-    {
-      DFBrowser_ItemPtr anItem = itemDynamicCast<DFBrowser_Item>(anItemBase);
-      if (anItem)
-        aValue = anItem->GetAttributeInfo(DFBrowser_ItemRole_AdditionalInfo);
-    }
-  }
-  if (theIndex.column() == 0 && theRole == Qt::FontRole) // method name is in italic
-  {
-    QFont aFont = qApp->font();
-    aFont.setItalic(true);
-    return aFont;
-  }
-  if (theIndex.column() == 0 && theRole == Qt::ForegroundRole) // method name is light gray
-    return QColor(Qt::darkGray).darker(150);
-
-  return aValue;
-}
-
-// =======================================================================
-// function : flags
-// purpose :
-// =======================================================================
-Qt::ItemFlags DFBrowser_TreeLevelViewModel::flags(const QModelIndex& theIndex) const
-{
-  if (!theIndex.isValid())
-    return Qt::NoItemFlags;
-  Qt::ItemFlags aFlags = Qt::ItemIsEnabled | Qt::ItemIsSelectable;
-
-  return aFlags;
-}
diff --git a/tools/DFBrowser/DFBrowser_TreeLevelViewModel.hxx b/tools/DFBrowser/DFBrowser_TreeLevelViewModel.hxx
deleted file mode 100644
index 89df7c4c18..0000000000
--- a/tools/DFBrowser/DFBrowser_TreeLevelViewModel.hxx
+++ /dev/null
@@ -1,113 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_TreeLevelViewModel_H
-#define DFBrowser_TreeLevelViewModel_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractTableModel>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-class QObject;
-
-//! \class DFBrowser_TreeLevelViewModel
-//! Tree Model of one level of OCAF tree view model. It is initialized by tree view index and
-//! contains children and attributes of this label.
-class DFBrowser_TreeLevelViewModel : public QAbstractTableModel
-{
-public:
-  //! Constructor
-  DFBrowser_TreeLevelViewModel(QObject* theParent)
-      : QAbstractTableModel(theParent),
-        myRowCount(0)
-  {
-  }
-
-  //! Destructor
-  virtual ~DFBrowser_TreeLevelViewModel() {}
-
-  //! Resets OCAF tree model index
-  void Reset() { myIndex = QModelIndex(); }
-
-  //! Fills OCAF tree model index
-  //! \param theTreeIndex an index
-  Standard_EXPORT void Init(const QModelIndex& theTreeIndex);
-
-  //! Returns true if the index is filled
-  bool IsInitialized() const { return myIndex.isValid(); }
-
-  //! Returns OCAF tree view model index on level defined by column of the parameter index
-  //! \param theIndex a tree level view model index
-  //! \return model index
-  Standard_EXPORT QModelIndex GetTreeViewIndex(const QModelIndex& theIndex) const;
-
-  //! Emits the layoutChanged signal from outside of this class
-  void EmitLayoutChanged() { emit layoutChanged(); }
-
-  //! Returns value only for DisplayRole for column = 1
-  //! \param theSection an index of value in the container
-  //! \param theIndex a model index
-  //! \param theRole a view role
-  //! \return value interpreted depending on the given role
-  Standard_EXPORT virtual QVariant headerData(int             theSection,
-                                              Qt::Orientation theOrientation,
-                                              int             theRole = Qt::DisplayRole) const
-    Standard_OVERRIDE;
-
-  //! Creates new model index
-  //! \param theRow the index row position
-  //! \param theColummn the index column position
-  //! \param theParent the parent index
-  //! \return the model index
-  Standard_EXPORT virtual QModelIndex index(int                theRow,
-                                            int                theColumn,
-                                            const QModelIndex& theParent = QModelIndex()) const
-    Standard_OVERRIDE;
-
-  //! Returns item information(short) for display role.
-  //! \param theIndex a model index
-  //! \param theRole a view role
-  //! \return value interpreted depending on the given role
-  Standard_EXPORT virtual QVariant data(const QModelIndex& theIndex,
-                                        int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
-
-  //! Returns Enabled and Selectable item for any index
-  //! \param theIndex a model index
-  //! \return flags
-  Standard_EXPORT virtual Qt::ItemFlags flags(const QModelIndex& theIndex) const Standard_OVERRIDE;
-
-  //! Returns number of rows
-  virtual int rowCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return myRowCount;
-  }
-
-  //! Returns 2 columns
-  virtual int columnCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return 2;
-  }
-
-private:
-  QModelIndex myIndex;    //!< OCAF tree view model index
-  int         myRowCount; //!< number of rows of item of treeview model index
-};
-#endif
diff --git a/tools/DFBrowser/DFBrowser_TreeModel.cxx b/tools/DFBrowser/DFBrowser_TreeModel.cxx
deleted file mode 100644
index f59d6b2d48..0000000000
--- a/tools/DFBrowser/DFBrowser_TreeModel.cxx
+++ /dev/null
@@ -1,300 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_TreeModel.hxx>
-
-#include <inspector/DFBrowser_Item.hxx>
-#include <inspector/DFBrowser_ItemApplication.hxx>
-#include <inspector/DFBrowser_ItemDocument.hxx>
-#include <inspector/DFBrowser_Module.hxx>
-#include <inspector/DFBrowser_Window.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-#include <NCollection_List.hxx>
-
-#include <TDocStd_Application.hxx>
-#include <TDocStd_Document.hxx>
-#include <TNaming_Builder.hxx>
-#include <TNaming_NamedShape.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractItemModel>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowser_TreeModel::DFBrowser_TreeModel(QObject* theParent)
-    : TreeModel_ModelBase(theParent)
-{
-}
-
-// =======================================================================
-// function : InitColumns
-// purpose :
-// =======================================================================
-void DFBrowser_TreeModel::InitColumns()
-{
-  setHeaderItem(0, TreeModel_HeaderSection("Name"));
-}
-
-// =======================================================================
-// function : SetModule
-// purpose :
-// =======================================================================
-void DFBrowser_TreeModel::SetModule(DFBrowser_Module* theModule)
-{
-  DFBrowser_ItemApplicationPtr aRootItem = itemDynamicCast<DFBrowser_ItemApplication>(RootItem(0));
-  aRootItem->SetModule(theModule);
-}
-
-// =======================================================================
-// function : createRootItem
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr DFBrowser_TreeModel::createRootItem(const int)
-{
-  return DFBrowser_ItemApplication::CreateItem(TreeModel_ItemBasePtr());
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowser_TreeModel::Init(const Handle(TDocStd_Application)& theApplication)
-{
-  DFBrowser_ItemApplicationPtr aRootItem = itemDynamicCast<DFBrowser_ItemApplication>(RootItem(0));
-  Reset();
-  aRootItem->SetApplication(theApplication);
-  EmitLayoutChanged();
-}
-
-// =======================================================================
-// function : GetTDocStdApplication
-// purpose :
-// =======================================================================
-Handle(TDocStd_Application) DFBrowser_TreeModel::GetTDocStdApplication() const
-{
-  DFBrowser_ItemApplicationPtr aRootItem = itemDynamicCast<DFBrowser_ItemApplication>(RootItem(0));
-  return aRootItem->GetApplication();
-}
-
-// =======================================================================
-// function : FindIndex
-// purpose :
-// =======================================================================
-QModelIndex DFBrowser_TreeModel::FindIndex(const TDF_Label& theLabel) const
-{
-  TDF_Label aRoot = theLabel.Root();
-
-  NCollection_List<TDF_Label> aLabels;
-  aLabels.Prepend(theLabel);
-  TDF_Label aFather = theLabel.Father();
-  if (!aFather.IsNull())
-  {
-    while (aFather != aRoot)
-    {
-      aLabels.Prepend(aFather);
-      aFather = aFather.Father();
-    }
-  }
-  bool                  aDocumentItemFound = false;
-  QModelIndex           aParentIndex       = index(0, 0);
-  TreeModel_ItemBasePtr aParentItem =
-    TreeModel_ModelBase::GetItemByIndex(aParentIndex); // application item
-  // find document, where label of document item is equal to Root label
-  for (int aChildId = 0, aCount = aParentItem->rowCount(); aChildId < aCount; aChildId++)
-  {
-    QModelIndex               anIndex    = index(aChildId, 0, aParentIndex);
-    TreeModel_ItemBasePtr     anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-    DFBrowser_ItemDocumentPtr anItem     = itemDynamicCast<DFBrowser_ItemDocument>(anItemBase);
-    if (anItem->GetLabel() == aRoot)
-    {
-      aParentItem        = anItem;
-      aParentIndex       = anIndex;
-      aDocumentItemFound = true;
-      break;
-    }
-  }
-  if (!aDocumentItemFound) // document is not found
-    return QModelIndex();
-
-  for (NCollection_List<TDF_Label>::const_iterator aLabelIt = aLabels.begin();
-       aLabelIt != aLabels.end() && aParentIndex.isValid();
-       aLabelIt++)
-  {
-    const TDF_Label aLabel = *aLabelIt;
-    for (int aParentChildId = 0, aCount = aParentItem->rowCount(); aParentChildId < aCount;
-         aParentChildId++)
-    {
-      QModelIndex       anIndex = index(aParentChildId, 0, aParentIndex);
-      DFBrowser_ItemPtr anItem =
-        itemDynamicCast<DFBrowser_Item>(TreeModel_ModelBase::GetItemByIndex(anIndex));
-      if (anItem->HasAttribute())
-        continue;
-
-      if (anItem->HasLabel() && anItem->GetLabel().IsEqual(aLabel))
-      {
-        aParentItem  = anItem;
-        aParentIndex = anIndex;
-        break;
-      }
-    }
-  }
-  return aParentIndex;
-}
-
-// =======================================================================
-// function : FindIndexByPath
-// purpose :
-// =======================================================================
-QModelIndex DFBrowser_TreeModel::FindIndexByPath(const QStringList& theLabelEntries,
-                                                 const QString&     theValue) const
-{
-  QModelIndex aFoundIndex;
-
-  QModelIndex           aRootIndex = index(0, 0);
-  TreeModel_ItemBasePtr aRootItem =
-    TreeModel_ModelBase::GetItemByIndex(aRootIndex); // application item
-  // find document, where label of document item is equal to Root label
-  for (int aDocItemId = 0, aNbDocItems = aRootItem->rowCount();
-       aDocItemId < aNbDocItems && !aFoundIndex.isValid();
-       aDocItemId++)
-  {
-    QModelIndex aParentIndex = index(aDocItemId, 0, aRootIndex);
-    if (!aParentIndex.isValid()) // OCAF document for this document item is not found
-      continue;
-    if (theLabelEntries.size() == 0)
-    {
-      aFoundIndex = aParentIndex;
-      break;
-    }
-    TreeModel_ItemBasePtr aParentItem = TreeModel_ModelBase::GetItemByIndex(aParentIndex);
-    for (int aPathId = 1, aPathCount = theLabelEntries.size(); aPathId < aPathCount + 1; aPathId++)
-    {
-      QString anEntry;
-      if (aPathId < aPathCount)
-        anEntry = theLabelEntries[aPathId];
-      else
-        anEntry = theValue;
-
-      bool aFoundEntry = false;
-      for (int aChildId = 0, aNbChildren = aParentItem->rowCount(); aChildId < aNbChildren;
-           aChildId++)
-      {
-        QModelIndex           anIndex    = index(aChildId, 0, aParentIndex);
-        TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-        DFBrowser_ItemPtr     anItem     = itemDynamicCast<DFBrowser_Item>(anItemBase);
-
-        if (aPathId == aPathCount && anItem->HasAttribute())
-        {
-          // processing attribute in theValue
-          DFBrowser_ItemApplicationPtr aRootAppItem =
-            itemDynamicCast<DFBrowser_ItemApplication>(RootItem(0));
-          QString anAttributeInfo = DFBrowser_Module::GetAttributeInfo(anItem->GetAttribute(),
-                                                                       aRootAppItem->GetModule(),
-                                                                       Qt::DisplayRole,
-                                                                       0)
-                                      .toString();
-          if (anAttributeInfo == anEntry)
-          {
-            aParentItem  = anItem;
-            aParentIndex = anIndex;
-            aFoundEntry  = true;
-            break;
-          }
-        }
-        else if (anItem->HasLabel()
-                 && anEntry
-                      == QString(DFBrowserPane_Tools::GetEntry(anItem->GetLabel()).ToCString()))
-        {
-          aParentItem  = anItem;
-          aParentIndex = anIndex;
-          aFoundEntry  = true;
-          break;
-        }
-      }
-      if (!aFoundEntry) // an entry is not found on some level tree, find it in other documents
-        break;
-      else
-        aFoundIndex = aParentIndex;
-    }
-  }
-  return aFoundIndex;
-}
-
-// =======================================================================
-// function : FindIndexByAttribute
-// purpose :
-// =======================================================================
-QModelIndex DFBrowser_TreeModel::FindIndexByAttribute(Handle(TDF_Attribute) theAttribute) const
-{
-  QModelIndex     aFoundIndex;
-  const TDF_Label aLabel = theAttribute->Label();
-
-  QModelIndex aParentIndex = FindIndex(aLabel);
-  if (!aParentIndex.isValid())
-    return aFoundIndex;
-
-  TreeModel_ItemBasePtr aParentItem = TreeModel_ModelBase::GetItemByIndex(aParentIndex);
-  for (int aChildId = 0, aCount = aParentItem->rowCount(); aChildId < aCount; aChildId++)
-  {
-    QModelIndex           anIndex    = index(aChildId, 0, aParentIndex);
-    TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-    DFBrowser_ItemPtr     anItem     = itemDynamicCast<DFBrowser_Item>(anItemBase);
-    if (anItem->GetAttribute() == theAttribute)
-    {
-      aFoundIndex = anIndex;
-      break;
-    }
-  }
-  return aFoundIndex;
-}
-
-// =======================================================================
-// function : ConvertToIndices
-// purpose :
-// =======================================================================
-void DFBrowser_TreeModel::ConvertToIndices(const NCollection_List<TDF_Label>& theReferences,
-                                           QModelIndexList&                   theIndices)
-{
-  for (NCollection_List<TDF_Label>::Iterator aLabelItr(theReferences); aLabelItr.More();
-       aLabelItr.Next())
-    theIndices.append(FindIndex(aLabelItr.Value()));
-}
-
-// =======================================================================
-// function : ConvertToIndices
-// purpose :
-// =======================================================================
-void DFBrowser_TreeModel::ConvertToIndices(
-  const NCollection_List<Handle(TDF_Attribute)>& theReferences,
-  QModelIndexList&                               theIndices)
-{
-  for (NCollection_List<Handle(TDF_Attribute)>::Iterator anAttrItr(theReferences); anAttrItr.More();
-       anAttrItr.Next())
-    theIndices.append(FindIndexByAttribute(anAttrItr.Value()));
-}
-
-// =======================================================================
-// function : data
-// purpose :
-// =======================================================================
-QVariant DFBrowser_TreeModel::data(const QModelIndex& theIndex, int theRole) const
-{
-  if (theRole == Qt::BackgroundRole && myHighlightedIndices.contains(theIndex))
-    return DFBrowserPane_Tools::LightHighlightColor();
-  return TreeModel_ModelBase::data(theIndex, theRole);
-}
diff --git a/tools/DFBrowser/DFBrowser_TreeModel.hxx b/tools/DFBrowser/DFBrowser_TreeModel.hxx
deleted file mode 100644
index c9a741e24a..0000000000
--- a/tools/DFBrowser/DFBrowser_TreeModel.hxx
+++ /dev/null
@@ -1,121 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_TreeModel_H
-#define DFBrowser_TreeModel_H
-
-#include <inspector/DFBrowser_ItemBase.hxx>
-#include <inspector/TreeModel_ModelBase.hxx>
-
-#include <NCollection_List.hxx>
-#include <Standard.hxx>
-#include <TDF_Label.hxx>
-#include <TDocStd_Application.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QByteArray>
-#include <QHash>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowser_Module;
-class DFBrowser_TreeModel;
-
-//! \class DFBrowser_TreeModel
-//! Tree model that has items described TDocStd_Application. The structure of items is the
-//! following:
-//! -  <DFBrowser_ItemApplication>: for TDocStd_Application
-//! -    <DFBrowser_ItemDocument>: for TDocStd_Document
-//!-       <DFBrowser_Item>: for either TDF_Label or TDF_Attribute
-//! It is possible to visualize some items as highlighted.
-class DFBrowser_TreeModel : public TreeModel_ModelBase
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowser_TreeModel(QObject* theParent);
-
-  //! Destructor
-  virtual ~DFBrowser_TreeModel() {}
-
-  //! Creates model columns and root items.
-  Standard_EXPORT virtual void InitColumns() Standard_OVERRIDE;
-
-  //! Fills the root item by the application
-  Standard_EXPORT void Init(const Handle(TDocStd_Application)& theApplication);
-
-  //! Fills root item by the module
-  Standard_EXPORT void SetModule(DFBrowser_Module* theModule);
-
-  //! Returns an OCAF application or NULL
-  //! \return an application instance
-  Standard_EXPORT Handle(TDocStd_Application) GetTDocStdApplication() const;
-
-  //! Returns true if the tree view model contains highlighted items. This highlight is set
-  //! manually.
-  bool HasHighlighted() { return !myHighlightedIndices.isEmpty(); }
-
-  //! Sets items of the indices highlighted in the model.
-  //! \param theIndices a list of tree model indices
-  void SetHighlighted(const QModelIndexList& theIndices = QModelIndexList())
-  {
-    myHighlightedIndices = theIndices;
-  }
-
-  //! Returns tree model index of the label item. It creates container of the label fathers and
-  //! starting from the rools label it descends by the found labels till the parameter label.
-  //! \param theLabel an OCAF label
-  //! \return model index if the value is found or Null model index
-  Standard_EXPORT QModelIndex FindIndex(const TDF_Label& theLabel) const;
-
-  //! Returns tree model index by list of label entries and (possible) attribute name.
-  //! \param theLabelEntries a container of label entries starting from root till searched label
-  //! \param theValue a label entry or attribute name
-  //! \return model index if the value is found or Null model index
-  Standard_EXPORT QModelIndex FindIndexByPath(const QStringList& theLabelEntries,
-                                              const QString&     theValue) const;
-
-  //! Returns tree model index of the attribute item. It gets the attributes label, find index of
-  //! the label and after find under this item attribute child item. \param theAttribute an OCAF
-  //! attribute \return model index if the value is found or Null model index
-  Standard_EXPORT QModelIndex FindIndexByAttribute(Handle(TDF_Attribute) theAttribute) const;
-
-  //! Returns tree model indices for the labels.
-  Standard_EXPORT void ConvertToIndices(const NCollection_List<TDF_Label>& theReferences,
-                                        QModelIndexList&                   theIndices);
-
-  //! Returns tree model indices of references
-  Standard_EXPORT void ConvertToIndices(
-    const NCollection_List<Handle(TDF_Attribute)>& theReferences,
-    QModelIndexList&                               theIndices);
-
-  //! Returns the data stored under the given role for the current item
-  //! \param theIndex the item model index
-  //! \param theRole the item model role
-  Standard_EXPORT virtual QVariant data(const QModelIndex& theIndex,
-                                        int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
-
-protected:
-  //! Creates root item
-  //! \param theColumnId index of a column
-  Standard_EXPORT virtual TreeModel_ItemBasePtr createRootItem(const int theColumnId)
-    Standard_OVERRIDE;
-
-private:
-  QModelIndexList
-    myHighlightedIndices; //!< tree model indices that should be visualized as highlighted
-};
-
-#endif
diff --git a/tools/DFBrowser/DFBrowser_Window.cxx b/tools/DFBrowser/DFBrowser_Window.cxx
deleted file mode 100644
index 5845f8ad7c..0000000000
--- a/tools/DFBrowser/DFBrowser_Window.cxx
+++ /dev/null
@@ -1,1120 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowser_Window.hxx>
-
-#include <AIS_InteractiveContext.hxx>
-#include <AIS_InteractiveObject.hxx>
-#include <AIS_ListOfInteractive.hxx>
-
-#include <inspector/DFBrowserPane_AttributePaneAPI.hxx>
-
-#include <inspector/DFBrowser_AttributePaneStack.hxx>
-#include <inspector/DFBrowser_AttributePaneType.hxx>
-#include <inspector/DFBrowser_DumpView.hxx>
-#include <inspector/DFBrowser_Item.hxx>
-#include <inspector/DFBrowser_ItemApplication.hxx>
-#include <inspector/DFBrowser_Module.hxx>
-#include <inspector/DFBrowser_OpenApplication.hxx>
-#include <inspector/DFBrowser_PropertyPanel.hxx>
-#include <inspector/DFBrowser_SearchLine.hxx>
-#include <inspector/DFBrowser_SearchView.hxx>
-#include <inspector/DFBrowser_Tools.hxx>
-#include <inspector/DFBrowser_TreeLevelLine.hxx>
-#include <inspector/DFBrowser_TreeLevelView.hxx>
-#include <inspector/DFBrowser_TreeModel.hxx>
-
-#include <inspector/DFBrowserPane_AttributePaneSelector.hxx>
-#include <inspector/DFBrowserPane_SelectionKind.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <inspector/TreeModel_ContextMenu.hxx>
-#include <inspector/TreeModel_Tools.hxx>
-
-#include <inspector/ViewControl_PropertyView.hxx>
-#include <inspector/ViewControl_TreeView.hxx>
-
-#include <OSD_Directory.hxx>
-#include <OSD_Environment.hxx>
-#include <OSD_Protection.hxx>
-
-#include <inspector/View_Displayer.hxx>
-#include <inspector/View_ToolBar.hxx>
-#include <inspector/View_Viewer.hxx>
-#include <inspector/View_Window.hxx>
-
-#include <TDF_Tool.hxx>
-#include <inspector/ViewControl_MessageDialog.hxx>
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAction>
-#include <QApplication>
-#include <QComboBox>
-#include <QDir>
-#include <QDockWidget>
-#include <QGridLayout>
-#include <QList>
-#include <QMainWindow>
-#include <QItemSelectionModel>
-#include <QPushButton>
-#include <QTabWidget>
-#include <QToolBar>
-#include <QTreeView>
-#include <QMenu>
-#include <QMessageBox>
-#include <QStatusBar>
-#include <QWidget>
-#if QT_VERSION < 0x050000
-  #include <QWindowsStyle>
-#else
-  #include <QStyleFactory>
-#endif
-#include <Standard_WarningsRestore.hxx>
-
-const int DFBROWSER_DEFAULT_TREE_VIEW_WIDTH  = 325;
-const int DFBROWSER_DEFAULT_TREE_VIEW_HEIGHT = 500;
-const int DFBROWSER_DEFAULT_VIEW_WIDTH       = 400;
-const int DFBROWSER_DEFAULT_VIEW_HEIGHT      = 300;
-
-static Standard_Boolean MyIsUseDumpJson = Standard_False;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowser_Window::DFBrowser_Window()
-    : myModule(0),
-      myParent(0),
-      myPropertyPanel(0),
-      myExportToShapeViewDialog(0)
-{
-  myMainWindow = new QMainWindow(0);
-
-  // tree view
-  myTreeView = new ViewControl_TreeView(myMainWindow);
-  myTreeView->setContextMenuPolicy(Qt::CustomContextMenu);
-  connect(myTreeView,
-          SIGNAL(customContextMenuRequested(const QPoint&)),
-          this,
-          SLOT(onTreeViewContextMenuRequested(const QPoint&)));
-  new TreeModel_ContextMenu(myTreeView);
-  ((ViewControl_TreeView*)myTreeView)
-    ->SetPredefinedSize(
-      QSize(DFBROWSER_DEFAULT_TREE_VIEW_WIDTH, DFBROWSER_DEFAULT_TREE_VIEW_HEIGHT));
-  myTreeView->setHeaderHidden(true);
-  myTreeView->setSortingEnabled(Standard_False);
-  myMainWindow->setCentralWidget(myTreeView);
-
-#if QT_VERSION < 0x050000
-  myTreeView->setStyle(new QWindowsStyle);
-#else
-  myTreeView->setStyle(QStyleFactory::create("Windows"));
-#endif
-
-  myTreeLevelLine = new DFBrowser_TreeLevelLine(myMainWindow);
-  connect(myTreeLevelLine->GetSearchLine(),
-          SIGNAL(searchActivated()),
-          this,
-          SLOT(onSearchActivated()));
-  connect(myTreeLevelLine,
-          SIGNAL(indexSelected(const QModelIndex&)),
-          this,
-          SLOT(onTreeLevelLineSelected(const QModelIndex&)));
-  connect(myTreeLevelLine, SIGNAL(updateClicked()), this, SLOT(onUpdateClicked()));
-
-  QDockWidget* aTreeLineDockWidget = new QDockWidget(tr("Tree Level Line"), myMainWindow);
-  aTreeLineDockWidget->setObjectName(aTreeLineDockWidget->windowTitle());
-  aTreeLineDockWidget->setTitleBarWidget(new QWidget(myMainWindow));
-  aTreeLineDockWidget->setWidget(myTreeLevelLine->GetControl());
-  myMainWindow->addDockWidget(Qt::TopDockWidgetArea, aTreeLineDockWidget);
-
-  // property panel
-  myPropertyPanel                                    = new DFBrowser_PropertyPanel(myMainWindow);
-  DFBrowser_AttributePaneStack* anAttributePaneStack = myPropertyPanel->GetAttributesStack();
-  anAttributePaneStack->GetSearchView()->SetSearchLine(myTreeLevelLine->GetSearchLine());
-
-  connect(
-    anAttributePaneStack->GetPaneSelector(),
-    SIGNAL(
-      tableSelectionChanged(const QItemSelection&, const QItemSelection&, QItemSelectionModel*)),
-    this,
-    SLOT(
-      onPaneSelectionChanged(const QItemSelection&, const QItemSelection&, QItemSelectionModel*)));
-
-  DFBrowser_SearchView* aSearchView = anAttributePaneStack->GetSearchView();
-  connect(aSearchView,
-          SIGNAL(pathSelected(const QStringList&, const QString&)),
-          this,
-          SLOT(onSearchPathSelected(const QStringList&, const QString&)));
-  connect(aSearchView,
-          SIGNAL(pathDoubleClicked(const QStringList&, const QString&)),
-          this,
-          SLOT(onSearchPathDoubleClicked(const QStringList&, const QString&)));
-
-  DFBrowser_TreeLevelView* aLevelView = anAttributePaneStack->GetTreeLevelView();
-  connect(aLevelView,
-          SIGNAL(indexSelected(const QModelIndex&)),
-          this,
-          SLOT(onLevelSelected(const QModelIndex&)));
-  connect(aLevelView,
-          SIGNAL(indexDoubleClicked(const QModelIndex&)),
-          this,
-          SLOT(onLevelDoubleClicked(const QModelIndex&)));
-
-  // property custom panel with specific parameters of attributes
-  QDockWidget* aPropertyPanelWidget = new QDockWidget(tr("PropertyPanel (custom)"), myMainWindow);
-  aPropertyPanelWidget->setObjectName(aPropertyPanelWidget->windowTitle());
-  aPropertyPanelWidget->setTitleBarWidget(new QWidget(myMainWindow));
-  aPropertyPanelWidget->setWidget(myPropertyPanel->GetControl());
-  myMainWindow->addDockWidget(Qt::RightDockWidgetArea, aPropertyPanelWidget);
-
-  // property panel
-  myUseDumpJson             = new QWidget(myMainWindow);
-  QVBoxLayout* aLay         = new QVBoxLayout(myUseDumpJson);
-  QPushButton* aUseDumpJson = new QPushButton("Use DumpJson", myMainWindow);
-  aLay->addWidget(aUseDumpJson);
-  aLay->addStretch(1);
-  connect(aUseDumpJson, SIGNAL(clicked(bool)), this, SLOT(onUseDumpJson()));
-  myUseDumpJson->setVisible(false);
-
-  myPropertyPanelWidget = new QDockWidget(tr("PropertyPanel"), myMainWindow);
-  myPropertyView        = new ViewControl_PropertyView(
-    myMainWindow,
-    QSize(DFBROWSER_DEFAULT_VIEW_WIDTH, DFBROWSER_DEFAULT_VIEW_HEIGHT));
-  myPropertyPanelWidget->setObjectName(myPropertyPanelWidget->windowTitle());
-  myPropertyPanelWidget->setTitleBarWidget(new QWidget(myMainWindow));
-  myPropertyPanelWidget->setWidget(myPropertyView->GetControl());
-  updatePropertyPanelWidget();
-  myMainWindow->addDockWidget(Qt::RightDockWidgetArea, myPropertyPanelWidget);
-
-  // dump view window
-  QWidget*     aDumpWidget = new QWidget(myMainWindow);
-  QVBoxLayout* aDumpLay    = new QVBoxLayout(aDumpWidget);
-  aDumpLay->setMargin(0);
-  myDumpView = new DFBrowser_DumpView(aDumpWidget);
-  aDumpLay->addWidget(myDumpView->GetControl());
-  QDockWidget* aDumpDockWidget = new QDockWidget(tr("Dump"), myMainWindow);
-  aDumpDockWidget->setObjectName(aDumpDockWidget->windowTitle());
-
-  aDumpDockWidget->setWidget(aDumpWidget);
-  myMainWindow->addDockWidget(Qt::RightDockWidgetArea, aDumpDockWidget);
-
-  // view
-  myViewWindow = new View_Window(myMainWindow);
-  myViewWindow->SetPredefinedSize(DFBROWSER_DEFAULT_VIEW_WIDTH, DFBROWSER_DEFAULT_VIEW_HEIGHT);
-
-  QDockWidget* aViewDockWidget = new QDockWidget(tr("View"), myMainWindow);
-  aViewDockWidget->setObjectName(aViewDockWidget->windowTitle());
-  aViewDockWidget->setTitleBarWidget(myViewWindow->ViewToolBar()->GetControl());
-  aViewDockWidget->setWidget(myViewWindow);
-  myMainWindow->addDockWidget(Qt::RightDockWidgetArea, aViewDockWidget);
-
-  QColor aHColor(229, 243, 255);
-  myViewWindow->Displayer()->SetAttributeColor(Quantity_Color(aHColor.red() / 255.,
-                                                              aHColor.green() / 255.,
-                                                              aHColor.blue() / 255.,
-                                                              Quantity_TOC_sRGB),
-                                               View_PresentationType_Additional);
-
-  myMainWindow->splitDockWidget(myPropertyPanelWidget, aViewDockWidget, Qt::Vertical);
-  myMainWindow->tabifyDockWidget(myPropertyPanelWidget, aPropertyPanelWidget);
-
-  myMainWindow->tabifyDockWidget(aDumpDockWidget, aViewDockWidget);
-
-  myTreeView->resize(DFBROWSER_DEFAULT_TREE_VIEW_WIDTH, DFBROWSER_DEFAULT_TREE_VIEW_HEIGHT);
-}
-
-// =======================================================================
-// function : Destructor
-// purpose :
-// =======================================================================
-DFBrowser_Window::~DFBrowser_Window()
-{
-  delete myModule;
-}
-
-// =======================================================================
-// function : SetParent
-// purpose :
-// =======================================================================
-void DFBrowser_Window::SetParent(void* theParent)
-{
-  myParent = (QWidget*)theParent;
-  if (myParent)
-  {
-    QLayout* aLayout = myParent->layout();
-    if (aLayout)
-      aLayout->addWidget(GetMainWindow());
-
-    if (!myOpenedFileName.isEmpty())
-      myParent->setObjectName(myOpenedFileName);
-  }
-}
-
-// =======================================================================
-// function : FillActionsMenu
-// purpose :
-// =======================================================================
-void DFBrowser_Window::FillActionsMenu(void* theMenu)
-{
-  QMenu*              aMenu        = (QMenu*)theMenu;
-  QList<QDockWidget*> aDockwidgets = myMainWindow->findChildren<QDockWidget*>();
-  for (QList<QDockWidget*>::iterator it = aDockwidgets.begin(); it != aDockwidgets.end(); ++it)
-  {
-    QDockWidget* aDockWidget = *it;
-    if (aDockWidget->parentWidget() == myMainWindow)
-      aMenu->addAction(aDockWidget->toggleViewAction());
-  }
-}
-
-// =======================================================================
-// function : GetPreferences
-// purpose :
-// =======================================================================
-void DFBrowser_Window::GetPreferences(TInspectorAPI_PreferencesDataMap& theItem)
-{
-  theItem.Bind("geometry",
-               TreeModel_Tools::ToString(myMainWindow->saveState()).toStdString().c_str());
-
-  QMap<QString, QString> anItems;
-  TreeModel_Tools::SaveState(myTreeView, anItems);
-  View_Window::SaveState(myViewWindow, anItems);
-
-  for (QMap<QString, QString>::const_iterator anItemsIt = anItems.begin();
-       anItemsIt != anItems.end();
-       anItemsIt++)
-    theItem.Bind(anItemsIt.key().toStdString().c_str(), anItemsIt.value().toStdString().c_str());
-}
-
-// =======================================================================
-// function : SetPreferences
-// purpose :
-// =======================================================================
-void DFBrowser_Window::SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem)
-{
-  if (theItem.IsEmpty())
-  {
-    TreeModel_Tools::SetDefaultHeaderSections(myTreeView);
-    return;
-  }
-
-  for (TInspectorAPI_IteratorOfPreferencesDataMap anItemIt(theItem); anItemIt.More();
-       anItemIt.Next())
-  {
-    if (anItemIt.Key().IsEqual("geometry"))
-      myMainWindow->restoreState(TreeModel_Tools::ToByteArray(anItemIt.Value().ToCString()));
-    else if (TreeModel_Tools::RestoreState(myTreeView,
-                                           anItemIt.Key().ToCString(),
-                                           anItemIt.Value().ToCString()))
-      continue;
-    else if (View_Window::RestoreState(myViewWindow,
-                                       anItemIt.Key().ToCString(),
-                                       anItemIt.Value().ToCString()))
-      continue;
-  }
-}
-
-// =======================================================================
-// function : UpdateContent
-// purpose :
-// =======================================================================
-void DFBrowser_Window::UpdateContent()
-{
-  TCollection_AsciiString aName = "TKDFBrowser";
-
-  if (myParameters->FindParameters(aName))
-    Init(myParameters->Parameters(aName));
-  else
-    Init(NCollection_List<Handle(Standard_Transient)>());
-
-  if (myParameters->FindFileNames(aName))
-  {
-    NCollection_List<TCollection_AsciiString> aFileNames = myParameters->FileNames(aName);
-    if (aFileNames.Extent() > 0) // only one document file might be opened
-      OpenFile(aFileNames.First());
-    myParameters->SetFileNames(aName, NCollection_List<TCollection_AsciiString>());
-  }
-  onUpdateClicked();
-
-  // make parameter items selected if defined
-  if (myParameters->FindSelectedNames(aName))
-  {
-    const NCollection_List<TCollection_AsciiString>& aSelected =
-      myParameters->GetSelectedNames(aName);
-
-    DFBrowser_TreeModel* aTreeModel = dynamic_cast<DFBrowser_TreeModel*>(myTreeView->model());
-    Handle(TDocStd_Application) anApplication = aTreeModel->GetTDocStdApplication();
-
-    QItemSelectionModel* aSelectionModel = myTreeView->selectionModel();
-    aSelectionModel->clear();
-
-    NCollection_List<TCollection_AsciiString>::Iterator aSelectedIt(aSelected);
-    if (aSelectedIt.More())
-    {
-      TCollection_AsciiString aLabelEntry = aSelectedIt.Value();
-
-      TDF_Label aLabel;
-      for (Standard_Integer aDocId = 1, aNbDoc = anApplication->NbDocuments(); aDocId <= aNbDoc;
-           aDocId++)
-      {
-        Handle(TDocStd_Document) aDocument;
-        anApplication->GetDocument(aDocId, aDocument);
-
-        TDF_Tool::Label(aDocument->GetData(), aLabelEntry.ToCString(), aLabel, Standard_False);
-        if (!aLabel.IsNull())
-          break;
-      }
-      if (!aLabel.IsNull())
-      {
-        QModelIndex anIndexToBeSelected = aTreeModel->FindIndex(aLabel);
-
-        TCollection_AsciiString anAttributeType;
-        aSelectedIt.Next();
-        // find attribute by attribute type on the given label
-        if (aSelectedIt.More())
-        {
-          anAttributeType = aSelectedIt.Value();
-
-          TreeModel_ItemBasePtr aLabelItem =
-            TreeModel_ModelBase::GetItemByIndex(anIndexToBeSelected);
-          // DFBrowser_ItemPtr anItem = itemDynamicCast<DFBrowser_Item> (anItemBase);
-          for (int aChildId = 0, aNbChildren = aLabelItem->rowCount(); aChildId < aNbChildren;
-               aChildId++)
-          {
-            QModelIndex           anIndex    = aTreeModel->index(aChildId, 0, anIndexToBeSelected);
-            TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-            DFBrowser_ItemPtr     anItem     = itemDynamicCast<DFBrowser_Item>(anItemBase);
-            if (anItem->HasAttribute())
-            {
-              // processing attribute in theValue
-              DFBrowser_ItemApplicationPtr aRootAppItem =
-                itemDynamicCast<DFBrowser_ItemApplication>(aTreeModel->RootItem(0));
-              QString anAttributeInfo =
-                DFBrowser_Module::GetAttributeInfo(anItem->GetAttribute(),
-                                                   aRootAppItem->GetModule(),
-                                                   Qt::DisplayRole,
-                                                   0)
-                  .toString();
-              if (anAttributeInfo == anAttributeType.ToCString())
-              {
-                anIndexToBeSelected = anIndex;
-                break;
-              }
-            }
-          }
-        }
-        aSelectionModel->select(anIndexToBeSelected, QItemSelectionModel::Select);
-        myTreeView->scrollTo(anIndexToBeSelected);
-      }
-    }
-
-    myParameters->SetSelectedNames(aName, NCollection_List<TCollection_AsciiString>());
-  }
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowser_Window::Init(const NCollection_List<Handle(Standard_Transient)>& theParameters)
-{
-  Handle(TDocStd_Application) anApplication;
-  if (myModule)
-  {
-    DFBrowser_TreeModel* anOCAFViewModel =
-      dynamic_cast<DFBrowser_TreeModel*>(myModule->GetOCAFViewModel());
-    if (anOCAFViewModel)
-      anApplication = anOCAFViewModel->GetTDocStdApplication();
-  }
-  Handle(AIS_InteractiveContext) aContext;
-  if (myModule)
-    aContext = myModule->GetExternalContext();
-
-  bool aSameApplication = !anApplication.IsNull(), aSameContext = !aContext.IsNull();
-  for (NCollection_List<Handle(Standard_Transient)>::Iterator aParametersIt(theParameters);
-       aParametersIt.More();
-       aParametersIt.Next())
-  {
-    Handle(Standard_Transient) anObject = aParametersIt.Value();
-    // check if the object is an application
-    Handle(TDocStd_Application) anIApplication = Handle(TDocStd_Application)::DownCast(anObject);
-    if (!anIApplication.IsNull())
-    {
-      aSameApplication = anApplication == anIApplication;
-      if (!aSameApplication)
-        anApplication = anIApplication;
-    }
-    // check if the object is an interactive context
-    Handle(AIS_InteractiveContext) anIContext = Handle(AIS_InteractiveContext)::DownCast(anObject);
-    if (!anIContext.IsNull())
-    {
-      aSameContext = aContext == anIContext;
-      if (!aSameContext)
-        aContext = anIContext;
-    }
-  }
-  if (aSameApplication)
-  {
-    if (!aSameContext && !aContext.IsNull())
-    {
-      myModule->SetExternalContext(aContext);
-      myViewWindow->SetContext(View_ContextType_External, aContext);
-    }
-    return;
-  }
-
-  myModule = new DFBrowser_Module();
-  myModule->CreateViewModel(myMainWindow);
-
-  myPropertyPanel->GetAttributesStack()->SetModule(myModule);
-
-  // model should be set after the attribute pane stack is initialized by module
-  QAbstractItemModel* aModel = myModule->GetOCAFViewModel();
-  setOCAFModel(aModel);
-  myModule->SetOCAFViewSelectionModel(myTreeView->selectionModel());
-  myTreeLevelLine->GetSearchLine()->SetModule(myModule);
-  myPropertyPanel->GetAttributesStack()->GetSearchView()->InitModels();
-
-  connect(myModule, SIGNAL(beforeUpdateTreeModel()), this, SLOT(onBeforeUpdateTreeModel()));
-
-  if (!aContext.IsNull())
-  {
-    myModule->SetExternalContext(aContext);
-    myViewWindow->SetContext(View_ContextType_External, aContext);
-  }
-
-  myModule->SetApplication(anApplication);
-  //! expand first three levels: CUSTOM
-  QModelIndex aParentIndex = aModel->index(0, 0);
-  setExpandedLevels(myTreeView, aParentIndex, 3 /*levels*/);
-
-  myModule->SetInitialTreeViewSelection();
-}
-
-// =======================================================================
-// function : OpenFile
-// purpose :
-// =======================================================================
-void DFBrowser_Window::OpenFile(const TCollection_AsciiString& theFileName)
-{
-  QApplication::setOverrideCursor(Qt::WaitCursor);
-
-  myTreeLevelLine->ClearHistory();
-  QItemSelectionModel* aSelectionModel = myModule->GetOCAFViewSelectionModel();
-  if (aSelectionModel)
-  {
-    aSelectionModel->clearSelection();
-    QModelIndex anIndex;
-    aSelectionModel->select(anIndex, QItemSelectionModel::ClearAndSelect);
-  }
-
-  myTreeLevelLine->ClearHistory();
-
-  DFBrowser_TreeModel* anOCAFViewModel =
-    dynamic_cast<DFBrowser_TreeModel*>(myModule->GetOCAFViewModel());
-  anOCAFViewModel->Reset();
-
-  //! close previous documents to open new document
-  Handle(TDocStd_Application) anApplication = myModule->GetTDocStdApplication();
-  if (!anApplication.IsNull())
-  {
-    for (int aDocId = 1, aNbDocuments = anApplication->NbDocuments(); aDocId <= aNbDocuments;
-         aDocId++)
-    {
-      Handle(TDocStd_Document) aDocument;
-      anApplication->GetDocument(aDocId, aDocument);
-      if (!aDocument.IsNull())
-        anApplication->Close(aDocument);
-    }
-  }
-
-  //! open new document
-  bool isSTEPFileName = false;
-  anApplication       = DFBrowser_OpenApplication::OpenApplication(theFileName, isSTEPFileName);
-
-  if (myParent)
-    myParent->setObjectName(isSTEPFileName
-                              ? QString(TCollection_AsciiString(theFileName).ToCString())
-                              : getWindowTitle());
-  else
-    myOpenedFileName =
-      isSTEPFileName ? QString(TCollection_AsciiString(theFileName).ToCString()) : getWindowTitle();
-
-  if (anApplication.IsNull())
-  {
-    QApplication::restoreOverrideCursor();
-    QMessageBox::information(0,
-                             "Error",
-                             QString("File %1 can't be opened by OCAF application")
-                               .arg(TCollection_AsciiString(theFileName).ToCString()));
-  }
-  else
-  {
-    myModule->SetApplication(anApplication);
-    //! expand first three levels: CUSTOM
-    QModelIndex aParentIndex = anOCAFViewModel->index(0, 0);
-    setExpandedLevels(myTreeView, aParentIndex, 3 /*levels*/);
-
-    myModule->SetInitialTreeViewSelection();
-    QApplication::restoreOverrideCursor();
-  }
-}
-
-// =======================================================================
-// function : getWindowTitle
-// purpose :
-// =======================================================================
-QString DFBrowser_Window::getWindowTitle() const
-{
-  DFBrowser_TreeModel* anOCAFViewModel =
-    dynamic_cast<DFBrowser_TreeModel*>(myModule->GetOCAFViewModel());
-  if (!anOCAFViewModel)
-    return "";
-
-  Handle(TDocStd_Application) anApplication = anOCAFViewModel->GetTDocStdApplication();
-  if (anApplication.IsNull() || anApplication->NbDocuments() == 0)
-    return "";
-
-  Handle(TDocStd_Document) aDocument;
-  anApplication->GetDocument(1, aDocument);
-  if (aDocument.IsNull() || !aDocument->IsSaved())
-    return "";
-
-  return DFBrowserPane_Tools::ToString(aDocument->GetPath());
-}
-
-// =======================================================================
-// function : setExpandedLevels
-// purpose :
-// =======================================================================
-void DFBrowser_Window::setExpandedLevels(QTreeView*         theTreeView,
-                                         const QModelIndex& theParentIndex,
-                                         const int          theLevels)
-{
-  if (theLevels <= 0)
-    return;
-
-  QAbstractItemModel* aModel = theTreeView->model();
-  if (!aModel)
-    return;
-
-  theTreeView->setExpanded(theParentIndex, true);
-  for (int aRowId = 0, aRows = aModel->rowCount(theParentIndex); aRowId < aRows; aRowId++)
-    setExpandedLevels(theTreeView, aModel->index(aRowId, 0, theParentIndex), theLevels - 1);
-}
-
-// =======================================================================
-// function : setOCAFModel
-// purpose :
-// =======================================================================
-void DFBrowser_Window::setOCAFModel(QAbstractItemModel* theModel)
-{
-  myTreeView->setModel(theModel);
-
-  QItemSelectionModel* aSelectionModel = new QItemSelectionModel(theModel);
-  myTreeView->setSelectionModel(aSelectionModel);
-
-  connect(aSelectionModel,
-          SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-          myTreeLevelLine,
-          SLOT(OnTreeViewSelectionChanged(const QItemSelection&, const QItemSelection&)));
-  connect(aSelectionModel,
-          SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-          myDumpView,
-          SLOT(OnTreeViewSelectionChanged(const QItemSelection&, const QItemSelection&)));
-  connect(aSelectionModel,
-          SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-          this,
-          SLOT(onTreeViewSelectionChanged(const QItemSelection&, const QItemSelection&)));
-}
-
-// =======================================================================
-// function : onBeforeUpdateTreeModel
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onBeforeUpdateTreeModel()
-{
-  myTreeLevelLine->ClearHistory();
-}
-
-// =======================================================================
-// function : TmpDirectory
-// purpose :
-// =======================================================================
-TCollection_AsciiString DFBrowser_Window::TmpDirectory()
-{
-  TCollection_AsciiString aTmpDir;
-#ifdef _WIN32
-  OSD_Environment anEnvironment("TEMP");
-  aTmpDir = anEnvironment.Value();
-  if (aTmpDir.IsEmpty())
-  {
-    anEnvironment.SetName("TMP");
-    aTmpDir = anEnvironment.Value();
-    if (aTmpDir.IsEmpty())
-      aTmpDir = "C:\\";
-  }
-  OSD_Path      aTmpPath(aTmpDir);
-  OSD_Directory aTmpDirectory(aTmpPath);
-  if (!aTmpDirectory.Exists())
-    aTmpDirectory.Build(OSD_Protection());
-#else
-  OSD_Directory aTmpDirectory = OSD_Directory::BuildTemporary();
-  OSD_Path      aTmpPath;
-  aTmpDirectory.Path(aTmpPath);
-  aTmpPath.SystemName(aTmpDir);
-#endif
-
-  return aTmpDir;
-}
-
-// =======================================================================
-// function : SetUseDumpJson
-// purpose :
-// =======================================================================
-void DFBrowser_Window::SetUseDumpJson(const Standard_Boolean theValue)
-{
-  MyIsUseDumpJson = theValue;
-}
-
-// =======================================================================
-// function : IsUseDumpJson
-// purpose :
-// =======================================================================
-Standard_Boolean DFBrowser_Window::IsUseDumpJson()
-{
-  return MyIsUseDumpJson;
-}
-
-// =======================================================================
-// function : onTreeViewContextMenuRequested
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onTreeViewContextMenuRequested(const QPoint& thePosition)
-{
-  QMenu* aMenu = new QMenu(GetMainWindow());
-  aMenu->addAction(
-    ViewControl_Tools::CreateAction(tr("Expand"), SLOT(onExpand()), GetMainWindow(), this));
-  aMenu->addAction(
-    ViewControl_Tools::CreateAction(tr("Expand All"), SLOT(onExpandAll()), GetMainWindow(), this));
-  aMenu->addAction(ViewControl_Tools::CreateAction(tr("Collapse All"),
-                                                   SLOT(onCollapseAll()),
-                                                   GetMainWindow(),
-                                                   this));
-
-  aMenu->addSeparator();
-  QAction* aUseDumpJsonAction = ViewControl_Tools::CreateAction(tr("Use DumpJson"),
-                                                                SLOT(onUseDumpJson()),
-                                                                GetMainWindow(),
-                                                                this);
-  aUseDumpJsonAction->setCheckable(true);
-  aUseDumpJsonAction->setChecked(IsUseDumpJson());
-  aMenu->addAction(aUseDumpJsonAction);
-
-  QPoint aPoint = myTreeView->mapToGlobal(thePosition);
-  aMenu->exec(aPoint);
-}
-
-// =======================================================================
-// function : onExpand
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onExpand()
-{
-  QApplication::setOverrideCursor(Qt::WaitCursor);
-
-  QItemSelectionModel* aSelectionModel  = myTreeView->selectionModel();
-  QModelIndexList      aSelectedIndices = aSelectionModel->selectedIndexes();
-  for (int aSelectedId = 0, aSize = aSelectedIndices.size(); aSelectedId < aSize; aSelectedId++)
-  {
-    int aLevels = 2;
-    TreeModel_Tools::SetExpanded(myTreeView, aSelectedIndices[aSelectedId], true, aLevels);
-  }
-  QApplication::restoreOverrideCursor();
-}
-
-// =======================================================================
-// function : onExpandAll
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onExpandAll()
-{
-  QApplication::setOverrideCursor(Qt::WaitCursor);
-
-  QItemSelectionModel* aSelectionModel  = myTreeView->selectionModel();
-  QModelIndexList      aSelectedIndices = aSelectionModel->selectedIndexes();
-  for (int aSelectedId = 0, aSize = aSelectedIndices.size(); aSelectedId < aSize; aSelectedId++)
-  {
-    int aLevels = -1;
-    TreeModel_Tools::SetExpanded(myTreeView, aSelectedIndices[aSelectedId], true, aLevels);
-  }
-  QApplication::restoreOverrideCursor();
-}
-
-// =======================================================================
-// function : onCollapseAll
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onCollapseAll()
-{
-  QItemSelectionModel* aSelectionModel  = myTreeView->selectionModel();
-  QModelIndexList      aSelectedIndices = aSelectionModel->selectedIndexes();
-  for (int aSelectedId = 0, aSize = aSelectedIndices.size(); aSelectedId < aSize; aSelectedId++)
-  {
-    int aLevels = -1;
-    TreeModel_Tools::SetExpanded(myTreeView, aSelectedIndices[aSelectedId], false, aLevels);
-  }
-}
-
-// =======================================================================
-// function : onUseDumpJson
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onUseDumpJson()
-{
-  SetUseDumpJson(!IsUseDumpJson());
-  updatePropertyPanelWidget();
-
-  QApplication::setOverrideCursor(Qt::WaitCursor);
-  myModule->UpdateTreeModel();
-  QApplication::restoreOverrideCursor();
-}
-
-// =======================================================================
-// function : onTreeViewSelectionChanged
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onTreeViewSelectionChanged(const QItemSelection& theSelected,
-                                                  const QItemSelection& theDeselected)
-{
-  if (!myModule)
-    return;
-
-  if (IsUseDumpJson() && myPropertyPanelWidget->toggleViewAction()->isChecked())
-  {
-    myPropertyView->Init(ViewControl_Tools::CreateTableModelValues(myTreeView->selectionModel()));
-  }
-
-  // previuos selection should be cleared in the panel selectors
-  DFBrowser_AttributePaneStack* anAttributePaneStack = myPropertyPanel->GetAttributesStack();
-  anAttributePaneStack->GetPaneSelector()->ClearSelected();
-
-  myPropertyPanel->UpdateBySelectionChanged(theSelected, theDeselected);
-  anAttributePaneStack->GetTreeLevelView()->UpdateByTreeSelectionChanged(theSelected,
-                                                                         theDeselected);
-
-  QModelIndexList aSelectedIndices = theSelected.indexes();
-  QModelIndex     aSelectedIndex   = TreeModel_ModelBase::SingleSelected(aSelectedIndices, 0);
-
-  myTreeView->scrollTo(aSelectedIndex);
-  View_Displayer* aDisplayer = myViewWindow->Displayer();
-
-  aDisplayer->ErasePresentations(View_PresentationType_Additional, false);
-  aDisplayer->DisplayPresentation(findPresentation(aSelectedIndex), View_PresentationType_Main);
-}
-
-// =======================================================================
-// function : onSearchActivated
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onSearchActivated()
-{
-  myPropertyPanel->GetAttributesStack()->SetPaneMode(
-    (myTreeLevelLine->GetSearchLine()->Text().isEmpty() ? DFBrowser_AttributePaneType_ItemView
-                                                        : DFBrowser_AttributePaneType_SearchView));
-}
-
-// =======================================================================
-// function : onPaneSelectionChanged
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onPaneSelectionChanged(const QItemSelection&,
-                                              const QItemSelection&,
-                                              QItemSelectionModel* theModel)
-{
-  DFBrowserPane_AttributePaneAPI* anAttributePane =
-    myPropertyPanel->GetAttributesStack()->GetCurrentPane();
-  switch (anAttributePane->GetSelectionKind(theModel))
-  {
-    case DFBrowserPane_SelectionKind_ExportToShapeViewer: {
-      QItemSelectionModel* aSelectionModel  = theModel;
-      QModelIndexList      aSelectedIndices = aSelectionModel->selectedIndexes();
-      if (aSelectedIndices.size() != 1)
-        return;
-
-      TCollection_AsciiString                      aPluginName("TKShapeView");
-      NCollection_List<Handle(Standard_Transient)> aParameters;
-      if (myParameters->FindParameters(aPluginName))
-        aParameters = myParameters->Parameters(aPluginName);
-
-      NCollection_List<TCollection_AsciiString> anItemNames;
-      if (myParameters->FindSelectedNames(aPluginName))
-        anItemNames = myParameters->GetSelectedNames(aPluginName);
-
-      int aParametersCount = aParameters.Extent();
-      anAttributePane->GetSelectionParameters(aSelectionModel, aParameters, anItemNames);
-      if (aParametersCount != aParameters.Extent()) // some TShapes are added
-      {
-        TCollection_AsciiString aPluginShortName = aPluginName.SubString(3, aPluginName.Length());
-        QString                 aMessage         = QString("TShape %1 is sent to %2.")
-                             .arg(Standard_Dump::GetPointerInfo(aParameters.Last()).ToCString())
-                             .arg(aPluginShortName.ToCString());
-        QString aQuestion = QString("Would you like to activate %1 immediately?\n")
-                              .arg(aPluginShortName.ToCString())
-                              .toStdString()
-                              .c_str();
-        if (!myExportToShapeViewDialog)
-          myExportToShapeViewDialog = new ViewControl_MessageDialog(myParent, aMessage, aQuestion);
-        else
-          myExportToShapeViewDialog->SetInformation(aMessage);
-        myExportToShapeViewDialog->Start();
-
-        myParameters->SetSelectedNames(aPluginName, anItemNames);
-        myParameters->SetParameters(aPluginName,
-                                    aParameters,
-                                    myExportToShapeViewDialog->IsAccepted());
-      }
-      return;
-    }
-    case DFBrowserPane_SelectionKind_ExportToBREP:
-    case DFBrowserPane_SelectionKind_LabelReferences:
-    case DFBrowserPane_SelectionKind_AttributeReferences:
-    default:
-      break;
-  }
-
-  QItemSelectionModel* aSelectionModel  = myTreeView->selectionModel();
-  QModelIndexList      aSelectedIndices = aSelectionModel->selectedIndexes();
-  if (aSelectedIndices.size() != 1)
-    return;
-
-  // make the shape visualized
-  QModelIndex     aSelectedIndex = aSelectedIndices.first();
-  View_Displayer* aDisplayer     = myViewWindow->Displayer();
-  aDisplayer->DisplayPresentation(findPresentation(aSelectedIndex), View_PresentationType_Main);
-
-  // highlight and scroll to the referenced item if it exists
-  Handle(TDF_Attribute)       anAttribute = myModule->FindAttribute(aSelectedIndex);
-  NCollection_List<TDF_Label> aReferences;
-  Handle(Standard_Transient)  aPresentation;
-  anAttributePane->GetReferences(anAttribute, aReferences, aPresentation);
-  QModelIndexList      anIndices;
-  DFBrowser_TreeModel* aTreeModel = dynamic_cast<DFBrowser_TreeModel*>(myTreeView->model());
-  if (!aReferences.IsEmpty())
-    aTreeModel->ConvertToIndices(aReferences, anIndices);
-  else
-  {
-    NCollection_List<Handle(TDF_Attribute)> anAttributeReferences;
-    anAttributePane->GetAttributeReferences(anAttribute, anAttributeReferences, aPresentation);
-    aTreeModel->ConvertToIndices(anAttributeReferences, anIndices);
-  }
-  highlightIndices(anIndices);
-  // display either the reference presentation of the panel or find a presentation if the reference
-  // is an attribute
-  if (!aPresentation.IsNull())
-    aDisplayer->DisplayPresentation(aPresentation, View_PresentationType_Additional);
-  else
-  {
-    aDisplayer->ErasePresentations(View_PresentationType_Additional, false);
-    AIS_ListOfInteractive aDisplayed;
-    findPresentations(anIndices, aDisplayed);
-    for (AIS_ListIteratorOfListOfInteractive aDisplayedIt(aDisplayed); aDisplayedIt.More();
-         aDisplayedIt.Next())
-      aDisplayer->DisplayPresentation(aDisplayedIt.Value(),
-                                      View_PresentationType_Additional,
-                                      false);
-
-    aDisplayer->UpdateViewer();
-  }
-}
-
-// =======================================================================
-// function : onTreeLevelLineSelected
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onTreeLevelLineSelected(const QModelIndex& theIndex)
-{
-  QItemSelectionModel* aSelectionModel = myTreeView->selectionModel();
-  if (theIndex.isValid())
-    aSelectionModel->select(theIndex, QItemSelectionModel::ClearAndSelect);
-  else
-    aSelectionModel->clearSelection();
-}
-
-// =======================================================================
-// function : onUpdateClicked
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onUpdateClicked()
-{
-  if (myModule)
-    myModule->UpdateTreeModel();
-}
-
-// =======================================================================
-// function : onSearchPathSelected
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onSearchPathSelected(const QStringList& thePath, const QString& theValue)
-{
-  DFBrowser_TreeModel* aDFBrowserModel = dynamic_cast<DFBrowser_TreeModel*>(myTreeView->model());
-  const QModelIndex&   anIndex         = aDFBrowserModel->FindIndexByPath(thePath, theValue);
-
-  if (anIndex.isValid())
-  {
-    QModelIndexList anIndices;
-    anIndices.append(anIndex);
-    highlightIndices(anIndices);
-  }
-}
-
-// =======================================================================
-// function : onSearchPathDoubleClicked
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onSearchPathDoubleClicked(const QStringList& thePath,
-                                                 const QString&     theValue)
-{
-  DFBrowser_TreeModel* aDFBrowserModel = dynamic_cast<DFBrowser_TreeModel*>(myTreeView->model());
-  const QModelIndex&   anIndex         = aDFBrowserModel->FindIndexByPath(thePath, theValue);
-
-  QItemSelectionModel* aSelectionModel = myTreeView->selectionModel();
-  if (anIndex.isValid())
-    aSelectionModel->select(anIndex, QItemSelectionModel::ClearAndSelect);
-  else
-    aSelectionModel->clearSelection();
-}
-
-// =======================================================================
-// function : onLevelSelected
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onLevelSelected(const QModelIndex& theIndex)
-{
-  if (!theIndex.isValid())
-    return;
-
-  QModelIndexList anIndices;
-  anIndices.append(theIndex);
-  highlightIndices(anIndices);
-  View_Displayer* aDisplayer = myViewWindow->Displayer();
-  aDisplayer->ErasePresentations(View_PresentationType_Additional, false);
-  aDisplayer->DisplayPresentation(findPresentation(theIndex), View_PresentationType_Main);
-}
-
-// =======================================================================
-// function : onLevelDoubleClicked
-// purpose :
-// =======================================================================
-void DFBrowser_Window::onLevelDoubleClicked(const QModelIndex& theIndex)
-{
-  QItemSelectionModel* aSelectionModel = myTreeView->selectionModel();
-  if (theIndex.isValid())
-    aSelectionModel->select(theIndex, QItemSelectionModel::ClearAndSelect);
-  else
-    aSelectionModel->clearSelection();
-}
-
-// =======================================================================
-// function : highlightIndices
-// purpose :
-// =======================================================================
-void DFBrowser_Window::highlightIndices(const QModelIndexList& theIndices)
-{
-  QAbstractItemModel* aModel = myTreeView->model();
-  if (!aModel)
-    return;
-
-  DFBrowser_TreeModel* aTreeModel = dynamic_cast<DFBrowser_TreeModel*>(aModel);
-  if (!aTreeModel)
-    return;
-
-  aTreeModel->SetHighlighted(theIndices);
-
-  QModelIndex anIndexToScroll;
-  if (!theIndices.isEmpty())
-    anIndexToScroll = theIndices.last(); // scroll to last selected index
-  else
-  {
-    // scroll to tree selected item
-    QItemSelectionModel* aSelectionModel  = myTreeView->selectionModel();
-    QModelIndexList      aSelectedIndices = aSelectionModel->selectedIndexes();
-    if (aSelectedIndices.size() == 1)
-      anIndexToScroll = aSelectedIndices.first();
-  }
-  if (anIndexToScroll.isValid())
-    myTreeView->scrollTo(anIndexToScroll);
-
-  if (theIndices.isEmpty())
-    myTreeView->setFocus(); // to see the selected item in active palette color
-
-  aTreeModel->EmitLayoutChanged();
-}
-
-// =======================================================================
-// function : findPresentation
-// purpose :
-// =======================================================================
-Handle(AIS_InteractiveObject) DFBrowser_Window::findPresentation(const QModelIndex& theIndex)
-{
-  Handle(AIS_InteractiveObject) aPresentation;
-
-  QModelIndexList anIndices;
-  anIndices.append(theIndex);
-  AIS_ListOfInteractive aDisplayed;
-  findPresentations(anIndices, aDisplayed);
-  if (!aDisplayed.IsEmpty())
-    aPresentation = aDisplayed.First();
-
-  return aPresentation;
-}
-
-// =======================================================================
-// function : findPresentations
-// purpose :
-// =======================================================================
-void DFBrowser_Window::findPresentations(const QModelIndexList& theIndices,
-                                         AIS_ListOfInteractive& thePresentations)
-{
-  for (int anIndexId = 0, aCount = theIndices.size(); anIndexId < aCount; anIndexId++)
-  {
-    Handle(AIS_InteractiveObject) aPresentation;
-    Handle(TDF_Attribute)         anAttribute = myModule->FindAttribute(theIndices[anIndexId]);
-    if (anAttribute.IsNull())
-      continue;
-    DFBrowserPane_AttributePaneAPI* anAttributePane = myModule->GetAttributePane(anAttribute);
-    if (!anAttributePane)
-      continue;
-    aPresentation =
-      Handle(AIS_InteractiveObject)::DownCast(anAttributePane->GetPresentation(anAttribute));
-    if (aPresentation.IsNull())
-      continue;
-
-    thePresentations.Append(aPresentation);
-  }
-}
-
-// =======================================================================
-// function : updatePropertyPanelWidget
-// purpose :
-// =======================================================================
-void DFBrowser_Window::updatePropertyPanelWidget()
-{
-  bool aUseDumpJson = IsUseDumpJson();
-
-  myUseDumpJson->setVisible(!aUseDumpJson);
-  myPropertyPanelWidget->setWidget(aUseDumpJson ? myPropertyView->GetControl() : myUseDumpJson);
-}
diff --git a/tools/DFBrowser/DFBrowser_Window.hxx b/tools/DFBrowser/DFBrowser_Window.hxx
deleted file mode 100644
index 232b17290c..0000000000
--- a/tools/DFBrowser/DFBrowser_Window.hxx
+++ /dev/null
@@ -1,249 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_Window_H
-#define DFBrowser_Window_H
-
-#include <inspector/TInspectorAPI_PluginParameters.hxx>
-
-#include <AIS_InteractiveObject.hxx>
-#include <AIS_ListOfInteractive.hxx>
-#include <NCollection_List.hxx>
-#include <Standard.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <TDF_Label.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QItemSelection>
-#include <QMainWindow>
-#include <QModelIndexList>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowser_DumpView;
-class DFBrowser_Module;
-class DFBrowser_PropertyPanel;
-class DFBrowser_TreeLevelLine;
-
-class ViewControl_MessageDialog;
-class ViewControl_PropertyView;
-
-class View_ToolBar;
-class View_Window;
-
-class QAbstractItemModel;
-class QAction;
-class QDockWidget;
-class QTreeView;
-class QWidget;
-
-//! \class DFBrowser_Window
-//! Window that unites all DFBrowser controls.
-//! External functionality : it processes plugin parameters, updates controls content and places
-//! itself in parent layout. It Synchronizes controls content depending on current selection. It
-//! shows context popup menu for OCAF tree view.
-class DFBrowser_Window : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowser_Window();
-
-  //! Destructor
-  Standard_EXPORT virtual ~DFBrowser_Window();
-
-  //! Appends main window into layout of the parent if the parent is child of QWidget
-  //! \param theParent a parent class
-  Standard_EXPORT void SetParent(void* theParent);
-
-  //! Sets parameters container, it should be used when the plugin is initialized or in update
-  //! content \param theParameters a parameters container
-  void SetParameters(const Handle(TInspectorAPI_PluginParameters)& theParameters)
-  {
-    myParameters = theParameters;
-  }
-
-  //! Provides container for actions available in inspector on general level
-  //! \param theMenu if Qt implementation, it is QMenu object
-  Standard_EXPORT virtual void FillActionsMenu(void* theMenu);
-
-  //! Returns plugin preferences: dock widgets state, tree view columns.
-  //! \param theItem container of preference elements
-  Standard_EXPORT void GetPreferences(TInspectorAPI_PreferencesDataMap& theItem);
-
-  //! Applies plugin preferences
-  //! \param theItem container of preference elements
-  Standard_EXPORT void SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem);
-
-  //! Applies parameters to Init controls, opens files if there are in parameters, updates OCAF tree
-  //! view model
-  Standard_EXPORT void UpdateContent();
-
-  //! Fills controls of the plugin by parameters:
-  //! - Find TDocStd_Application and fills OCAF tree model if it differs from the current
-  //! application
-  //! - Fine AIS_InteractiveObject and fills View if it if it differs from the current context
-  //! - If it is the first call, it creates module, fills selection models
-  //! \param theParameters a parameters container
-  Standard_EXPORT void Init(const NCollection_List<Handle(Standard_Transient)>& theParameters);
-
-  //! Opens application by the name, it may be either OCAF document or STEP file.
-  //! Before opening it cleans tree view history, current selections,
-  //! reset OCAF tree view model. After opening document, it fills all controls by the created
-  //! application. \param theFileName a file name to be opened
-  Standard_EXPORT void OpenFile(const TCollection_AsciiString& theFileName);
-
-  //! Returns main control
-  QWidget* GetMainWindow() const { return myMainWindow; }
-
-  //! Returns the current module
-  DFBrowser_Module* GetModule() const { return myModule; }
-
-  //! Returns tree level line control
-  DFBrowser_TreeLevelLine* GetTreeLevelLine() const { return myTreeLevelLine; }
-
-  //! Returns temporary directory defined by environment variables TEMP or TMP
-  //! \return string value
-  Standard_EXPORT static TCollection_AsciiString TmpDirectory();
-
-  //! Sets whether DumpJson is used when the tree view is generated
-  Standard_EXPORT static void SetUseDumpJson(const Standard_Boolean theValue);
-
-  //! Returns whether DumpJson is used when the tree view is generated
-  Standard_EXPORT static Standard_Boolean IsUseDumpJson();
-
-private slots:
-
-  //! Cleans history in tree level line
-  void onBeforeUpdateTreeModel();
-
-  //! Shows context menu for tree view selected item. It contains clear view or BREP operations
-  //! items \param thePosition a clicked point
-  void onTreeViewContextMenuRequested(const QPoint& thePosition);
-
-  //! Expands two next levels for all selected item
-  void onExpand();
-
-  //! Expands all levels for all selected items
-  void onExpandAll();
-
-  //! Collapses all levels for all selected items
-  void onCollapseAll();
-
-  //! Setting flag whether DumpJSon should be applied to build tree model items structure
-  void onUseDumpJson();
-
-  //! Updates all controls by changed selection in OCAF tree view
-  //! \param theSelected list of selected tree view items
-  //! \param theDeselected list of deselected tree view items
-  void onTreeViewSelectionChanged(const QItemSelection& theSelected,
-                                  const QItemSelection& theDeselected);
-
-  //! Changes attribute pane stack content depending on search control text
-  void onSearchActivated();
-
-  //! Processes selection change in attribute pane. Depending on selection kind, it will:
-  //! - export to shape viewer
-  //! - display presentation of the pane
-  //! - display references
-  void onPaneSelectionChanged(const QItemSelection& theSelected,
-                              const QItemSelection& theDeselected,
-                              QItemSelectionModel*  theModel);
-
-  //! Selects the item in OCAF tree view
-  //! \param theIndex OCAF tree view index
-  void onTreeLevelLineSelected(const QModelIndex& theIndex);
-
-  //! Updates OCAF tree model
-  void onUpdateClicked();
-
-  //! Highlights OCAF tree model item
-  //! \param thePath a container of entries to the item
-  //! \param theValue a label entry or attribute name
-  void onSearchPathSelected(const QStringList& thePath, const QString& theValue);
-
-  //! Selects OCAF tree model item
-  //! \param thePath a container of entries to the item
-  //! \param theValue a label entry or attribute name
-  void onSearchPathDoubleClicked(const QStringList& thePath, const QString& theValue);
-
-  //! Highlights OCAF tree model item
-  //! \param theIndex an OCAF tree model index
-  void onLevelSelected(const QModelIndex& theIndex);
-
-  //! Selects OCAF tree model item
-  //! \param theIndex an OCAF tree model index
-  void onLevelDoubleClicked(const QModelIndex& theIndex);
-
-private:
-  //! Inits OCAF tree view with the given model
-  //! \param theModel a model
-  void setOCAFModel(QAbstractItemModel* theModel);
-
-  //! Sets expanded levels in OCAF tree view. Do recursive expand of items.
-  //! \param theTreeView an OCAF tree view
-  //! \param theParentIndex an index which children should be expanded
-  //! \param theLevels a number of levels to be expanded, or -1 for all levels
-  static void setExpandedLevels(QTreeView*         theTreeView,
-                                const QModelIndex& theParentIndex,
-                                const int          theLevels);
-
-  //! Marks items highlighted in OCAF tree view model and move view scroll to the first item
-  //! \param theIndices a container of OCAF tree view model indices
-  void highlightIndices(const QModelIndexList& theIndices);
-
-  //! Returns candidate to be the window title. It is either name of opened STEP file or the
-  //! application path \return string value
-  QString getWindowTitle() const;
-
-protected:
-  //! Returns presentation for the OCAF tree model index. To do this, it uses attribute pane for
-  //! this item \param theIndex a model index \return presentation or NULL
-  Handle(AIS_InteractiveObject) findPresentation(const QModelIndex& theIndex);
-
-  //! Returns presentations for the OCAF tree model indices. To do this, it uses attribute pane for
-  //! this items \param theIndex a model index \return container of presentations or NULL
-  void findPresentations(const QModelIndexList& theIndices,
-                         AIS_ListOfInteractive& thePresentations);
-
-  //! Updates content of Property Panel dock widget. It contains button to activate DumpJson or view
-  //! with content of it.
-  void updatePropertyPanelWidget();
-
-private:
-  DFBrowser_Module* myModule; //!< current module
-  QWidget* myParent; //!< widget, comes when Init window, the window control lays in the layout,
-                     //!< updates window title
-  QMainWindow*             myMainWindow;    //!< main control for all components
-  DFBrowser_TreeLevelLine* myTreeLevelLine; //!< navigate line of tree levels to the selected item
-  QTreeView*               myTreeView;      //!< OCAF tree view
-  QDockWidget*             myPropertyPanelWidget; //!< property pane dockable widget
-  QWidget*                 myUseDumpJson; //!< button to activate/deactivate using of DumpJson
-  DFBrowser_PropertyPanel*
-    myPropertyPanel; //!< property panel shows full information about attribute or search view
-  ViewControl_PropertyView*
-               myPropertyView; //!< property control to display model item values if exist
-  View_Window* myViewWindow; //!< V3d view to visualize presentations/references if it can be build
-                             //!< for a selected item
-  DFBrowser_DumpView* myDumpView; //!< Text editor where "Dump" method output is shown
-  ViewControl_MessageDialog*
-    myExportToShapeViewDialog; //!< dialog about exporting TopoDS_Shape to ShapeView plugin
-  Handle(TInspectorAPI_PluginParameters)
-          myParameters;     //!< contains application, context, files that should be opened
-  QString myOpenedFileName; //!< cached name of opened file between parent is set, apply it by
-                            //!< parent setting and nullify
-};
-
-#endif
diff --git a/tools/DFBrowser/FILES b/tools/DFBrowser/FILES
deleted file mode 100644
index d4d1f2b2cf..0000000000
--- a/tools/DFBrowser/FILES
+++ /dev/null
@@ -1,48 +0,0 @@
-DFBrowser.qrc
-DFBrowser_AttributePaneStack.cxx
-DFBrowser_AttributePaneStack.hxx
-DFBrowser_AttributePaneType.hxx
-DFBrowser_Communicator.cxx
-DFBrowser_Communicator.hxx
-DFBrowser_DumpView.cxx
-DFBrowser_DumpView.hxx
-DFBrowser_HighlightDelegate.cxx
-DFBrowser_HighlightDelegate.hxx
-DFBrowser_Item.cxx
-DFBrowser_Item.hxx
-DFBrowser_ItemApplication.cxx
-DFBrowser_ItemApplication.hxx
-DFBrowser_ItemBase.cxx
-DFBrowser_ItemBase.hxx
-DFBrowser_ItemDocument.cxx
-DFBrowser_ItemDocument.hxx
-DFBrowser_ItemRole.hxx
-DFBrowser_Module.cxx
-DFBrowser_Module.hxx
-DFBrowser_OpenApplication.cxx
-DFBrowser_OpenApplication.hxx
-DFBrowser_PropertyPanel.cxx
-DFBrowser_PropertyPanel.hxx
-DFBrowser_SearchItemInfo.hxx
-DFBrowser_SearchLine.cxx
-DFBrowser_SearchLine.hxx
-DFBrowser_SearchLineModel.cxx
-DFBrowser_SearchLineModel.hxx
-DFBrowser_SearchView.cxx
-DFBrowser_SearchView.hxx
-DFBrowser_Tools.cxx
-DFBrowser_Tools.hxx
-DFBrowser_TreeLevelLine.cxx
-DFBrowser_TreeLevelLine.hxx
-DFBrowser_TreeLevelLineDelegate.cxx
-DFBrowser_TreeLevelLineDelegate.hxx
-DFBrowser_TreeLevelLineModel.cxx
-DFBrowser_TreeLevelLineModel.hxx
-DFBrowser_TreeLevelView.cxx
-DFBrowser_TreeLevelView.hxx
-DFBrowser_TreeLevelViewModel.cxx
-DFBrowser_TreeLevelViewModel.hxx
-DFBrowser_TreeModel.cxx
-DFBrowser_TreeModel.hxx
-DFBrowser_Window.cxx
-DFBrowser_Window.hxx
diff --git a/tools/DFBrowser/icons/attribute.png b/tools/DFBrowser/icons/attribute.png
deleted file mode 100644
index c9c43c22e3..0000000000
Binary files a/tools/DFBrowser/icons/attribute.png and /dev/null differ
diff --git a/tools/DFBrowser/icons/attribute_40x40.png b/tools/DFBrowser/icons/attribute_40x40.png
deleted file mode 100644
index 6446f323d6..0000000000
Binary files a/tools/DFBrowser/icons/attribute_40x40.png and /dev/null differ
diff --git a/tools/DFBrowser/icons/export_shape.png b/tools/DFBrowser/icons/export_shape.png
deleted file mode 100644
index add5920d46..0000000000
Binary files a/tools/DFBrowser/icons/export_shape.png and /dev/null differ
diff --git a/tools/DFBrowser/icons/folder_export.png b/tools/DFBrowser/icons/folder_export.png
deleted file mode 100644
index 5f45f993dc..0000000000
Binary files a/tools/DFBrowser/icons/folder_export.png and /dev/null differ
diff --git a/tools/DFBrowser/icons/item_type_folder.png b/tools/DFBrowser/icons/item_type_folder.png
deleted file mode 100644
index 078dd3453f..0000000000
Binary files a/tools/DFBrowser/icons/item_type_folder.png and /dev/null differ
diff --git a/tools/DFBrowser/icons/item_type_folder_40x40.png b/tools/DFBrowser/icons/item_type_folder_40x40.png
deleted file mode 100644
index 2628a0a097..0000000000
Binary files a/tools/DFBrowser/icons/item_type_folder_40x40.png and /dev/null differ
diff --git a/tools/DFBrowser/icons/level_change.png b/tools/DFBrowser/icons/level_change.png
deleted file mode 100644
index 83fb11a09c..0000000000
Binary files a/tools/DFBrowser/icons/level_change.png and /dev/null differ
diff --git a/tools/DFBrowser/icons/named_shape.png b/tools/DFBrowser/icons/named_shape.png
deleted file mode 100644
index c0f1d338cd..0000000000
Binary files a/tools/DFBrowser/icons/named_shape.png and /dev/null differ
diff --git a/tools/DFBrowser/icons/named_shape_40x40.png b/tools/DFBrowser/icons/named_shape_40x40.png
deleted file mode 100644
index 8d928d190b..0000000000
Binary files a/tools/DFBrowser/icons/named_shape_40x40.png and /dev/null differ
diff --git a/tools/DFBrowser/icons/search.png b/tools/DFBrowser/icons/search.png
deleted file mode 100644
index 0ea1e77330..0000000000
Binary files a/tools/DFBrowser/icons/search.png and /dev/null differ
diff --git a/tools/DFBrowser/icons/search_cancel.png b/tools/DFBrowser/icons/search_cancel.png
deleted file mode 100644
index 74ab69df68..0000000000
Binary files a/tools/DFBrowser/icons/search_cancel.png and /dev/null differ
diff --git a/tools/DFBrowser/icons/treeline_backward.png b/tools/DFBrowser/icons/treeline_backward.png
deleted file mode 100644
index 94ef3f60dd..0000000000
Binary files a/tools/DFBrowser/icons/treeline_backward.png and /dev/null differ
diff --git a/tools/DFBrowser/icons/treeline_forward.png b/tools/DFBrowser/icons/treeline_forward.png
deleted file mode 100644
index 1b18e42caa..0000000000
Binary files a/tools/DFBrowser/icons/treeline_forward.png and /dev/null differ
diff --git a/tools/DFBrowser/icons/treeline_update.png b/tools/DFBrowser/icons/treeline_update.png
deleted file mode 100644
index 134d316403..0000000000
Binary files a/tools/DFBrowser/icons/treeline_update.png and /dev/null differ
diff --git a/tools/DFBrowserPane/DFBrowserPane_AttributePane.cxx b/tools/DFBrowserPane/DFBrowserPane_AttributePane.cxx
deleted file mode 100644
index 621a88410e..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_AttributePane.cxx
+++ /dev/null
@@ -1,192 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-#include <inspector/DFBrowserPane_ItemRole.hxx>
-#include <inspector/DFBrowserPane_TableView.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-#include <inspector/DFBrowserPane_AttributePaneModel.hxx>
-
-#include <AIS_InteractiveObject.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QGridLayout>
-#include <QHeaderView>
-#include <QItemSelectionModel>
-#include <QTableView>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowserPane_AttributePane::DFBrowserPane_AttributePane()
-    : DFBrowserPane_AttributePaneAPI(),
-      myMainWidget(0),
-      myTableView(0)
-{
-  myPaneModel = new DFBrowserPane_AttributePaneModel();
-
-  getPaneModel()->SetColumnCount(getColumnCount());
-  getPaneModel()->SetHeaderValues(getHeaderValues(Qt::Horizontal), Qt::Horizontal);
-
-  mySelectionModels.push_back(new QItemSelectionModel(myPaneModel));
-}
-
-// =======================================================================
-// function : GetWidget
-// purpose :
-// =======================================================================
-QWidget* DFBrowserPane_AttributePane::GetWidget(QWidget* theParent, const bool isToCreate)
-{
-  if (!myMainWidget && isToCreate)
-    myMainWidget = CreateWidget(theParent);
-  return myMainWidget;
-}
-
-// =======================================================================
-// function : CreateWidget
-// purpose :
-// =======================================================================
-QWidget* DFBrowserPane_AttributePane::CreateWidget(QWidget* theParent)
-{
-  QWidget* aMainWidget = new QWidget(theParent);
-  aMainWidget->setVisible(false);
-
-  myTableView = new DFBrowserPane_TableView(aMainWidget, getTableColumnWidths());
-  myTableView->SetModel(myPaneModel);
-  QTableView*                       aTableView = myTableView->GetTableView();
-  DFBrowserPane_AttributePaneModel* aPaneModel =
-    dynamic_cast<DFBrowserPane_AttributePaneModel*>(myPaneModel);
-  if (aPaneModel)
-  {
-    if (aPaneModel->GetOrientation() == Qt::Vertical)
-      aTableView->horizontalHeader()->setVisible(
-        !aPaneModel->HeaderValues(Qt::Horizontal).isEmpty());
-    else
-      aTableView->verticalHeader()->setVisible(!aPaneModel->HeaderValues(Qt::Vertical).isEmpty());
-  }
-  aTableView->setSelectionModel(mySelectionModels.front());
-  aTableView->setSelectionBehavior(QAbstractItemView::SelectRows);
-
-  QGridLayout* aLay = new QGridLayout(aMainWidget);
-  aLay->setContentsMargins(0, 0, 0, 0);
-  aLay->addWidget(myTableView);
-
-  return aMainWidget;
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowserPane_AttributePane::Init(const Handle(TDF_Attribute)& theAttribute)
-{
-  QList<QVariant> aValues;
-  GetValues(theAttribute, aValues);
-  getPaneModel()->Init(aValues);
-
-  if (myTableView)
-    myTableView->GetTableView()->resizeColumnToContents(0);
-}
-
-// =======================================================================
-// function : GetAttributeInfo
-// purpose :
-// =======================================================================
-QVariant DFBrowserPane_AttributePane::GetAttributeInfo(const Handle(TDF_Attribute)& theAttribute,
-                                                       int                          theRole,
-                                                       int                          theColumnId)
-{
-  switch (theRole)
-  {
-    case DFBrowserPane_ItemRole_ShortInfo: {
-      QList<QVariant> aValues;
-      GetShortAttributeInfo(theAttribute, aValues);
-      QStringList anInfoList;
-      for (QList<QVariant>::const_iterator aValuesIt = aValues.begin(); aValuesIt != aValues.end();
-           aValuesIt++)
-        anInfoList.append(aValuesIt->toString());
-      return QVariant(anInfoList.join(", "));
-    }
-    default:
-      return DFBrowserPane_AttributePane::GetAttributeInfoByType(
-        theAttribute.IsNull() ? "" : theAttribute->DynamicType()->Name(),
-        theRole,
-        theColumnId);
-  }
-}
-
-// =======================================================================
-// function : GetShortAttributeInfo
-// purpose :
-// =======================================================================
-void DFBrowserPane_AttributePane::GetShortAttributeInfo(const Handle(TDF_Attribute)& theAttribute,
-                                                        QList<QVariant>&             theValues)
-{
-  QList<QVariant> aValues;
-  GetValues(theAttribute, aValues);
-
-  for (int aValuesEvenId = 1; aValuesEvenId < aValues.size(); aValuesEvenId = aValuesEvenId + 2)
-    theValues.append(aValues[aValuesEvenId]);
-}
-
-// =======================================================================
-// function : GetAttributeInfoByType
-// purpose :
-// =======================================================================
-QVariant DFBrowserPane_AttributePane::GetAttributeInfoByType(Standard_CString theAttributeName,
-                                                             int              theRole,
-                                                             int              theColumnId)
-{
-  if (theColumnId != 0)
-    return QVariant();
-
-  switch (theRole)
-  {
-    case Qt::DisplayRole:
-    case Qt::ToolTipRole:
-      return QVariant(theAttributeName);
-    case Qt::DecorationRole:
-      return QIcon(":/icons/attribute.png");
-    case DFBrowserPane_ItemRole_Decoration_40x40:
-      return QIcon(":/icons/attribute_40x40.png");
-    default:
-      break;
-  }
-  return QVariant();
-}
-
-// =======================================================================
-// function : getPaneModel
-// purpose :
-// =======================================================================
-DFBrowserPane_AttributePaneModel* DFBrowserPane_AttributePane::getPaneModel() const
-{
-  return dynamic_cast<DFBrowserPane_AttributePaneModel*>(myPaneModel);
-}
-
-// =======================================================================
-// function : getTableColumnWidths
-// purpose :
-// =======================================================================
-QMap<int, int> DFBrowserPane_AttributePane::getTableColumnWidths() const
-{
-  QMap<int, int> aValues;
-  for (int aColumnId = 0, aCount = getPaneModel()->columnCount(); aColumnId < aCount; aColumnId++)
-    aValues.insert(aColumnId, DFBrowserPane_Tools::DefaultPanelColumnWidth(aColumnId));
-  return aValues;
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_AttributePane.hxx b/tools/DFBrowserPane/DFBrowserPane_AttributePane.hxx
deleted file mode 100644
index 9ce2793016..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_AttributePane.hxx
+++ /dev/null
@@ -1,138 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_AttributePane_H
-#define DFBrowserPane_AttributePane_H
-
-#include <inspector/DFBrowserPane_AttributePaneAPI.hxx>
-
-#include <TDF_Attribute.hxx>
-#include <TDF_Label.hxx>
-#include <Standard.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QList>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowserPane_AttributePaneModel;
-class DFBrowserPane_TableView;
-
-class QAbstractTableModel;
-class QItemSelectionModel;
-
-//! \class DFBrowserPane_AttributePane
-//! \brief This is an extension of base attribute pane:
-//! - GetWidget() creates table view, view model and selection model. Table is vertical with one
-//! column.
-//! - Init() obtains GetValues and give it to the table view model
-//! If standard pane with such a table is used, only GetValues() should be redefined in children
-class DFBrowserPane_AttributePane : public DFBrowserPane_AttributePaneAPI
-{
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowserPane_AttributePane();
-
-  //! Destructor
-  virtual ~DFBrowserPane_AttributePane() {}
-
-  //! Creates a new widget
-  //! \param theParent a parent widget
-  //! \return pane widget
-  Standard_EXPORT virtual QWidget* CreateWidget(QWidget* theParent);
-
-  //! Creates widget if it was not created and isToCreate is true
-  //! \param theParent a parent widget
-  //! \param isToCreate flag if the widget should be created if it is NULL
-  //! \return pane widget
-  Standard_EXPORT virtual QWidget* GetWidget(QWidget*   theParent,
-                                             const bool isToCreate) Standard_OVERRIDE;
-
-  //! Gets values of attribute using GetValues() and Init the view model
-  //! \param theAttribute a current attribute
-  Standard_EXPORT virtual void Init(const Handle(TDF_Attribute)& theAttribute) Standard_OVERRIDE;
-
-  //! Returns values to fill the table view model
-  //! \param theAttribute a current attribute
-  //! \param theValues a container of values
-  virtual void GetValues(const Handle(TDF_Attribute)& theAttribute, QList<QVariant>& theValues)
-  {
-    (void)theAttribute;
-    (void)theValues;
-  };
-
-  //! Returns common information for the given attribute kind
-  //! \param theAttributeName a kind of attribute
-  //! \param theRole a role of information, used by tree model (e.g. DisplayRole, icon, background
-  //! and so on) \param theColumnId a tree model column \return value, interpreted by tree model
-  //! depending on the role
-  Standard_EXPORT static QVariant GetAttributeInfoByType(Standard_CString theAttributeName,
-                                                         int              theRole,
-                                                         int              theColumnId);
-
-  //! Returns information for the given attribute
-  //! \param theAttribute a current attribute
-  //! \param theRole a role of information, used by tree model (e.g. DisplayRole, icon, background
-  //! and so on) \param theColumnId a tree model column \return value, interpreted by tree model
-  //! depending on the role
-  Standard_EXPORT virtual QVariant GetAttributeInfo(const Handle(TDF_Attribute)& theAttribute,
-                                                    int                          theRole,
-                                                    int                          theColumnId);
-
-  //! Returns brief attribute information. In general case, it returns even values of GetValues()
-  //! result. \param theAttribute a current attribute \param theValues a result list of values
-  Standard_EXPORT virtual void GetShortAttributeInfo(const Handle(TDF_Attribute)& theAttribute,
-                                                     QList<QVariant>&             theValues);
-
-  //! Returns list of selection models. In default implementation it contains a selection model for
-  //! the table view \returns container of models
-  virtual std::list<QItemSelectionModel*> GetSelectionModels() Standard_OVERRIDE
-  {
-    return mySelectionModels;
-  }
-
-protected:
-  //! Returns converted table view model
-  Standard_EXPORT DFBrowserPane_AttributePaneModel* getPaneModel() const;
-
-  //! Returns converted table view
-  DFBrowserPane_TableView* getTableView() const { return myTableView; }
-
-  //! Returns header text values for 0...n table cells in parameter orientation
-  //! \param theOrientation defines horizontal or vertical values
-  //! \param theValues output container of values
-  virtual QList<QVariant> getHeaderValues(const Qt::Orientation theOrientation)
-  {
-    (void)theOrientation;
-    return QList<QVariant>();
-  }
-
-  //! Returns number of columns in internal table. By default it returns 2 : method name for method
-  //! value. \return integer value
-  virtual int getColumnCount() const { return 2; }
-
-  //! Defines widths of table columns
-  //! \return container of widths
-  Standard_EXPORT virtual QMap<int, int> getTableColumnWidths() const;
-
-protected:
-  QWidget*                 myMainWidget; //!< widget created in this pane
-  DFBrowserPane_TableView* myTableView;  //!< table for visualization of attribute parameters
-  QAbstractTableModel*
-    myPaneModel; //!< table view model. It is created before the table view, so we need to cache it
-  std::list<QItemSelectionModel*> mySelectionModels; //! selection models
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_AttributePaneAPI.hxx b/tools/DFBrowserPane/DFBrowserPane_AttributePaneAPI.hxx
deleted file mode 100644
index 76e620f82d..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_AttributePaneAPI.hxx
+++ /dev/null
@@ -1,126 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_AttributePaneAPI_H
-#define DFBrowserPane_AttributePaneAPI_H
-
-#include <TDF_Attribute.hxx>
-#include <NCollection_List.hxx>
-#include <TDF_Label.hxx>
-#include <TDF_LabelList.hxx>
-#include <Standard.hxx>
-#include <Standard_Transient.hxx>
-
-#include <list>
-
-class QWidget;
-class QItemSelectionModel;
-
-//! \class DFBrowserPane_AttributePane
-//! \brief This is a base class for attribute pane. It defines methods that should be redefined in
-//! chindren. The kinds of information provided by the methods:
-//! - widget, a control that should be shown for this kind of attribute
-//! - Init method to fill control by the attribute context
-//! - selection models that are active, the application can connect to the models to react to
-//! selection change
-//! - presentation/references/attribute references of attribute custom information about this
-//! attribute
-class DFBrowserPane_AttributePaneAPI
-{
-public:
-  //! Constructor
-  DFBrowserPane_AttributePaneAPI() {}
-
-  //! Destructor
-  virtual ~DFBrowserPane_AttributePaneAPI() {}
-
-  //! Creates widget to visualize values of this kind of attribute
-  //! \param theParent a parent for the widget
-  //! \param isToCreate flag whether the widget should be created
-  virtual QWidget* GetWidget(QWidget* theParent, const bool isToCreate)
-  {
-    (void)theParent;
-    (void)isToCreate;
-    return 0;
-  }
-
-  //! Initializes the content of the pane by the parameter attribute
-  //! \param theAttribute an OCAF attribute
-  virtual void Init(const Handle(TDF_Attribute)& theAttribute) { (void)theAttribute; };
-
-  //! Returns selections models of the pane, if the selection is possible in the pane controls
-  virtual std::list<QItemSelectionModel*> GetSelectionModels()
-  {
-    return std::list<QItemSelectionModel*>();
-  }
-
-  //! Returns selection kind for the model, it may be General selection or Additional selection for
-  //! example \param theModel one of selection models provided by this pane \return selection kind
-  virtual int GetSelectionKind(QItemSelectionModel* theModel)
-  {
-    (void)theModel;
-    return -1;
-  }
-
-  //! Returns selection parameters, that may be useful for communicate between tools
-  //! \param theModel one of selection models provided by this pane
-  //! \theParameters a container of parameters, might be extended depending on the pane state(e.g.
-  //! selection) \theItemNames names to be selected for each selection parameter
-  virtual void GetSelectionParameters(QItemSelectionModel*                          theModel,
-                                      NCollection_List<Handle(Standard_Transient)>& theParameters,
-                                      NCollection_List<TCollection_AsciiString>&    theItemNames)
-  {
-    (void)theModel;
-    (void)theParameters;
-    (void)theItemNames;
-  }
-
-  //! Returns presentation of the attribute to be visualized in the view
-  //! \param theAttribute a current attribute
-  //! \return handle of presentation if the attribute has, to be visualized
-  virtual Handle(Standard_Transient) GetPresentation(const Handle(TDF_Attribute)& theAttribute)
-  {
-    (void)theAttribute;
-    return Handle(Standard_Transient)();
-  }
-
-  //! Returns container of Label references to the attribute
-  //! \param theAttribute a current attribute
-  //! \param theRefLabels a container of label references, to be selected in tree view
-  //! \param theRefPresentation handle of presentation for the references, to be visualized
-  virtual void GetReferences(const Handle(TDF_Attribute)& theAttribute,
-                             NCollection_List<TDF_Label>& theRefLabels,
-                             Handle(Standard_Transient)&  theRefPresentation)
-  {
-    (void)theAttribute;
-    (void)theRefLabels;
-    (void)theRefPresentation;
-  }
-
-  //! Returns container of Attribute references to the attribute
-  //! \param theAttribute a current attribute
-  //! \param theRefAttributes a container of attribute references, to be selected in tree view
-  //! \param theRefPresentation handle of presentation for the references, to be visualized
-  virtual void GetAttributeReferences(const Handle(TDF_Attribute)&             theAttribute,
-                                      NCollection_List<Handle(TDF_Attribute)>& theRefAttributes,
-                                      Handle(Standard_Transient)&              theRefPresentation)
-  {
-    (void)theAttribute;
-    (void)theRefAttributes;
-    (void)theRefPresentation;
-  }
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_AttributePaneCreator.cxx b/tools/DFBrowserPane/DFBrowserPane_AttributePaneCreator.cxx
deleted file mode 100644
index bc5605b8ef..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_AttributePaneCreator.cxx
+++ /dev/null
@@ -1,61 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_AttributePaneCreator.hxx>
-
-#include <TDF_Attribute.hxx>
-#include <TDF_Reference.hxx>
-
-#include <TDataStd_TreeNode.hxx>
-#include <TDataStd_ReferenceList.hxx>
-#include <TDataStd_ReferenceArray.hxx>
-
-#include <TNaming_NamedShape.hxx>
-#include <TNaming_Naming.hxx>
-#include <TNaming_UsedShapes.hxx>
-
-#include <inspector/DFBrowserPane_TDFReference.hxx>
-#include <inspector/DFBrowserPane_TDataStdReferenceList.hxx>
-#include <inspector/DFBrowserPane_TDataStdReferenceArray.hxx>
-#include <inspector/DFBrowserPane_TDataStdTreeNode.hxx>
-#include <inspector/DFBrowserPane_TNamingNamedShape.hxx>
-#include <inspector/DFBrowserPane_TNamingNaming.hxx>
-#include <inspector/DFBrowserPane_TNamingUsedShapes.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowserPane_AttributePaneAPI* DFBrowserPane_AttributePaneCreator::CreateAttributePane(
-  Standard_CString theAttributeName)
-{
-  DFBrowserPane_AttributePaneAPI* aPane = 0;
-  if (theAttributeName == STANDARD_TYPE(TDF_Reference)->Name())
-    aPane = new DFBrowserPane_TDFReference();
-  else if (theAttributeName == STANDARD_TYPE(TDataStd_TreeNode)->Name())
-    aPane = new DFBrowserPane_TDataStdTreeNode();
-  else if (theAttributeName == STANDARD_TYPE(TDataStd_ReferenceList)->Name())
-    aPane = new DFBrowserPane_TDataStdReferenceList();
-  else if (theAttributeName == STANDARD_TYPE(TDataStd_ReferenceArray)->Name())
-    aPane = new DFBrowserPane_TDataStdReferenceArray();
-  else if (theAttributeName == STANDARD_TYPE(TNaming_NamedShape)->Name())
-    aPane = new DFBrowserPane_TNamingNamedShape();
-  else if (theAttributeName == STANDARD_TYPE(TNaming_Naming)->Name())
-    aPane = new DFBrowserPane_TNamingNaming();
-  else if (theAttributeName == STANDARD_TYPE(TNaming_UsedShapes)->Name())
-    aPane = new DFBrowserPane_TNamingUsedShapes();
-
-  return aPane;
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_AttributePaneCreator.hxx b/tools/DFBrowserPane/DFBrowserPane_AttributePaneCreator.hxx
deleted file mode 100644
index a91532b9da..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_AttributePaneCreator.hxx
+++ /dev/null
@@ -1,46 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_AttributePaneCreator_H
-#define DFBrowserPane_AttributePaneCreator_H
-
-#include <inspector/DFBrowserPane_AttributePaneAPI.hxx>
-#include <inspector/DFBrowserPane_AttributePaneCreatorAPI.hxx>
-
-#include <Standard.hxx>
-
-//! \class DFBrowserPane_AttributePaneCreator
-//! \brief This class can creates attribute pane for attribute name.
-class DFBrowserPane_AttributePaneCreator : public DFBrowserPane_AttributePaneCreatorAPI
-{
-public:
-  //! Constructor
-  DFBrowserPane_AttributePaneCreator()
-      : DFBrowserPane_AttributePaneCreatorAPI()
-  {
-  }
-
-  //! Destructor
-  virtual ~DFBrowserPane_AttributePaneCreator() Standard_OVERRIDE {}
-
-public:
-  //! Creates attribute pane for TDF, TDataStd, TDocStd, TPrsStd, TNaming and TFunction attribute
-  //! types \param theAttributeName a standard type of attribute \return an attribute pane if it can
-  //! be created for this type
-  Standard_EXPORT virtual DFBrowserPane_AttributePaneAPI* CreateAttributePane(
-    Standard_CString theAttributeName) Standard_OVERRIDE;
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_AttributePaneCreatorAPI.hxx b/tools/DFBrowserPane/DFBrowserPane_AttributePaneCreatorAPI.hxx
deleted file mode 100644
index 73881bf548..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_AttributePaneCreatorAPI.hxx
+++ /dev/null
@@ -1,42 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_AttributePaneCreatorAPI_H
-#define DFBrowserPane_AttributePaneCreatorAPI_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-class DFBrowserPane_AttributePaneAPI;
-
-//! \class DFBrowserPane_AttributePaneCreatorAPI
-//! \brief An interface to create attribute panes by attribute name.
-class DFBrowserPane_AttributePaneCreatorAPI
-{
-public:
-  //! Constructor
-  DFBrowserPane_AttributePaneCreatorAPI() {}
-
-  //! Destructor
-  virtual ~DFBrowserPane_AttributePaneCreatorAPI() {}
-
-  //! Creates attribute pane for attribute types
-  //! \param theAttributeName a standard type of attribute
-  //! \return an attribute pane if it can be created for this type
-  virtual DFBrowserPane_AttributePaneAPI* CreateAttributePane(
-    Standard_CString theAttributeName) = 0;
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_AttributePaneModel.cxx b/tools/DFBrowserPane/DFBrowserPane_AttributePaneModel.cxx
deleted file mode 100644
index bdf83756f6..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_AttributePaneModel.cxx
+++ /dev/null
@@ -1,168 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_AttributePaneModel.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QFont>
-#include <QColor>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowserPane_AttributePaneModel::DFBrowserPane_AttributePaneModel(QObject* theParent)
-    : QAbstractTableModel(theParent),
-      myOrientation(Qt::Vertical),
-      myColumnCount(1)
-{
-  myItalicColumns.append(0);
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowserPane_AttributePaneModel::Init(const QList<QVariant>& theValues)
-{
-  myValuesMap.clear();
-
-  if (myOrientation == Qt::Vertical)
-  {
-    int             aRows = theValues.size() / myColumnCount;
-    QList<QVariant> aRowValues;
-    int             aValuesIndex = 0;
-    for (int aRowId = 0; aRowId < aRows; aRowId++)
-    {
-      aRowValues.clear();
-      for (int aColumnId = 0; aColumnId < myColumnCount; aColumnId++)
-      {
-        aRowValues.append(theValues[aValuesIndex]);
-        aValuesIndex++;
-      }
-      myValuesMap[aRowId] = aRowValues;
-    }
-  }
-  else
-  {
-    int             aCols = theValues.size() / myColumnCount;
-    QList<QVariant> aColValues;
-    int             aValuesIndex = 0;
-    for (int aColumnId = 0; aColumnId < aCols; aColumnId++)
-    {
-      aColValues.clear();
-      for (int aRowId = 0; aRowId < myColumnCount; aRowId++)
-      {
-        aColValues.append(theValues[aValuesIndex]);
-        aValuesIndex++;
-      }
-      myValuesMap[aColumnId] = aColValues;
-    }
-  }
-  emit layoutChanged();
-}
-
-// =======================================================================
-// function : SetHeaderValues
-// purpose :
-// =======================================================================
-void DFBrowserPane_AttributePaneModel::SetHeaderValues(const QList<QVariant>& theValues,
-                                                       Qt::Orientation        theOrientation)
-{
-  if (theOrientation == Qt::Horizontal)
-    myHorizontalHeaderValues = theValues;
-  else
-    myVerticalHeaderValues = theValues;
-}
-
-// =======================================================================
-// function : columnCount
-// purpose :
-// =======================================================================
-int DFBrowserPane_AttributePaneModel::columnCount(const QModelIndex& /* theParent*/) const
-{
-  return myOrientation == Qt::Vertical ? myColumnCount : myValuesMap.size();
-}
-
-// =======================================================================
-// function : rowCount
-// purpose :
-// =======================================================================
-int DFBrowserPane_AttributePaneModel::rowCount(const QModelIndex& /* theParent*/) const
-{
-  return myOrientation == Qt::Vertical ? myValuesMap.size() : myColumnCount;
-}
-
-// =======================================================================
-// function : data
-// purpose :
-// =======================================================================
-QVariant DFBrowserPane_AttributePaneModel::data(const QModelIndex& theIndex, int theRole) const
-{
-  QVariant aValue;
-
-  if (theRole == Qt::DisplayRole)
-  {
-    if (myOrientation == Qt::Vertical)
-    {
-      int             aRowId     = theIndex.row();
-      QList<QVariant> aRowValues = myValuesMap[aRowId];
-      aValue                     = aRowValues.at(theIndex.column());
-    }
-    else
-    {
-      int             aColId     = theIndex.column();
-      QList<QVariant> aColValues = myValuesMap[aColId];
-      aValue                     = aColValues.at(theIndex.row());
-    }
-  }
-  if (myItalicColumns.contains(theIndex.column()) && theRole == Qt::FontRole)
-  {
-    QFont aFont = qApp->font();
-    aFont.setItalic(true);
-    return aFont;
-  }
-  if (myItalicColumns.contains(theIndex.column()) && theRole == Qt::ForegroundRole)
-    return QColor(Qt::darkGray).darker(150);
-
-  return aValue;
-}
-
-// =======================================================================
-// function : headerData
-// purpose :
-// =======================================================================
-QVariant DFBrowserPane_AttributePaneModel::headerData(int             theSection,
-                                                      Qt::Orientation theOrientation,
-                                                      int             theRole) const
-{
-  QVariant aValue = QAbstractTableModel::headerData(theSection, theOrientation, theRole);
-  if (theRole == Qt::DisplayRole)
-  {
-    if (theOrientation == Qt::Horizontal)
-    {
-      if (!myHorizontalHeaderValues.empty() && theSection < myHorizontalHeaderValues.size())
-        aValue = myHorizontalHeaderValues[theSection];
-    }
-    else
-    { // vertical
-      if (!myVerticalHeaderValues.empty() && theSection < myVerticalHeaderValues.size())
-        aValue = myVerticalHeaderValues[theSection];
-    }
-  }
-  return aValue;
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_AttributePaneModel.hxx b/tools/DFBrowserPane/DFBrowserPane_AttributePaneModel.hxx
deleted file mode 100644
index d5f5a6693c..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_AttributePaneModel.hxx
+++ /dev/null
@@ -1,125 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_AttributePaneModel_H
-#define DFBrowserPane_AttributePaneModel_H
-
-#include <Standard.hxx>
-#include <TDocStd_Document.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractTableModel>
-#include <QList>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class DFBrowserPane_AttributePaneModel
-//! \brief This is an extension of table model to visualize a container of values
-//! It is possible to:
-//! - set orientation to interpret the values.
-//! - set table view header values.
-//! Items of the view are enabled and selectable.
-class DFBrowserPane_AttributePaneModel : public QAbstractTableModel
-{
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowserPane_AttributePaneModel(QObject* theParent = 0);
-
-  //! Destructor
-  virtual ~DFBrowserPane_AttributePaneModel() {}
-
-  //! Sets direction of the values applying, whether it should be placed by rows or by columns
-  //! \param theOrientation if horizontal, the values are applied by rows, otherwise by columns
-  void SetOrientation(const Qt::Orientation& theOrientation) { myOrientation = theOrientation; }
-
-  //! Returns table orientation for setting data values
-  //! \return thye current orientation
-  Qt::Orientation GetOrientation() const { return myOrientation; }
-
-  //! Sets number of columns
-  //! \param theColumnCount a column count
-  void SetColumnCount(const int theColumnCount) { myColumnCount = theColumnCount; }
-
-  //! Fills the model with the values. Store the values in a cache.
-  //! \param theValues a container of values
-  Standard_EXPORT void Init(const QList<QVariant>& theValues);
-
-  //! Fills the model header values for orientation.
-  //! \param theValues a container of header text values
-  //! \param theOrientation an orientation of header
-  Standard_EXPORT void SetHeaderValues(const QList<QVariant>& theValues,
-                                       Qt::Orientation        theOrientation);
-
-  //! Returns header values for orientation.
-  //! \param theValues a container of header text values
-  //! \param theOrientation an orientation of header
-  const QList<QVariant>& HeaderValues(Qt::Orientation theOrientation)
-  {
-    return theOrientation == Qt::Horizontal ? myHorizontalHeaderValues : myVerticalHeaderValues;
-  }
-
-  //! Returns indices of italic columns
-  //! \return indices of columns
-  const QList<int>& GetItalicColumns() const { return myItalicColumns; }
-
-  //! Sets indices of italic columns
-  //! \param theValues indices of columns
-  void SetItalicColumns(const QList<int>& theValues) { myItalicColumns = theValues; }
-
-  //! Returns number of columns, depending on orientation: myColumnCount or size of values container
-  //! \param theParent an index of the parent item
-  //! \return an integer value
-  Standard_EXPORT virtual int columnCount(const QModelIndex& theParent = QModelIndex()) const
-    Standard_OVERRIDE;
-
-  //! Returns number of rows, depending on orientation: myColumnCount or size of values container
-  //! \param theParent an index of the parent item
-  //! \return an integer value
-  Standard_EXPORT virtual int rowCount(const QModelIndex& theParent = QModelIndex()) const
-    Standard_OVERRIDE;
-
-  //! Returns content of the model index for the given role, it is obtained from internal container
-  //! of values It returns value only for DisplayRole. \param theIndex a model index \param theRole
-  //! a view role \return value interpreted depending on the given role
-  Standard_EXPORT virtual QVariant data(const QModelIndex& theIndex,
-                                        int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
-
-  //! Returns content of the model index for the given role, it is obtainer from internal container
-  //! of header values It returns value only for DisplayRole. \param theSection an index of value in
-  //! the container \param theIndex a model index \param theRole a view role \return value
-  //! interpreted depending on the given role
-  Standard_EXPORT virtual QVariant headerData(int             theSection,
-                                              Qt::Orientation theOrientation,
-                                              int             theRole = Qt::DisplayRole) const
-    Standard_OVERRIDE;
-
-  //! Returns flags for the item: ItemIsEnabled | Qt::ItemIsSelectable
-  //! \param theIndex a model index
-  //! \return flags
-  virtual Qt::ItemFlags flags(const QModelIndex& theIndex) const Standard_OVERRIDE
-  {
-    return theIndex.isValid() ? Qt::ItemIsEnabled | Qt::ItemIsSelectable : Qt::NoItemFlags;
-  }
-
-private:
-  Qt::Orientation myOrientation; //!< orientation how the values should fill the current table view
-  int             myColumnCount; //!< number of table columns
-  QMap<int, QList<QVariant>> myValuesMap; //!< container of values, filled in Init(), used in data()
-  QList<QVariant>            myHorizontalHeaderValues; //!< table horizontal header values
-  QList<QVariant>            myVerticalHeaderValues;   //!< table vertical header values
-  QList<int> myItalicColumns; //!< indices of columns that should be visualized in gray and italic
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_AttributePaneSelector.cxx b/tools/DFBrowserPane/DFBrowserPane_AttributePaneSelector.cxx
deleted file mode 100644
index 0ff46304a5..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_AttributePaneSelector.cxx
+++ /dev/null
@@ -1,94 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_AttributePaneSelector.hxx>
-
-#include <QItemSelectionModel>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowserPane_AttributePaneSelector::DFBrowserPane_AttributePaneSelector(QObject* theParent)
-    : QObject(theParent),
-      mySendSelectionChangeBlocked(false)
-{
-}
-
-// =======================================================================
-// function : Destructor
-// purpose :
-// =======================================================================
-DFBrowserPane_AttributePaneSelector::~DFBrowserPane_AttributePaneSelector()
-{
-  SetCurrentSelectionModels(std::list<QItemSelectionModel*>());
-}
-
-// =======================================================================
-// function : SetCurrentSelectionModels
-// purpose :
-// =======================================================================
-void DFBrowserPane_AttributePaneSelector::SetCurrentSelectionModels(
-  const std::list<QItemSelectionModel*>& theModels)
-{
-  for (std::list<QItemSelectionModel*>::const_iterator anModelsIt = mySelectionModels.begin(),
-                                                       aLast      = mySelectionModels.end();
-       anModelsIt != aLast;
-       anModelsIt++)
-    disconnect(*anModelsIt,
-               SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-               this,
-               SLOT(onTableSelectionChanged(const QItemSelection&, const QItemSelection&)));
-
-  mySelectionModels = theModels;
-  for (std::list<QItemSelectionModel*>::const_iterator anModelsIt = mySelectionModels.begin(),
-                                                       aLast      = mySelectionModels.end();
-       anModelsIt != aLast;
-       anModelsIt++)
-    connect(*anModelsIt,
-            SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-            this,
-            SLOT(onTableSelectionChanged(const QItemSelection&, const QItemSelection&)));
-}
-
-// =======================================================================
-// function : ClearSelected
-// purpose :
-// =======================================================================
-void DFBrowserPane_AttributePaneSelector::ClearSelected()
-{
-  mySendSelectionChangeBlocked = true;
-  for (std::list<QItemSelectionModel*>::const_iterator anModelsIt = mySelectionModels.begin(),
-                                                       aLast      = mySelectionModels.end();
-       anModelsIt != aLast;
-       anModelsIt++)
-    (*anModelsIt)->clearSelection();
-  mySendSelectionChangeBlocked = false;
-}
-
-// =======================================================================
-// function :
-// purpose :
-// =======================================================================
-void DFBrowserPane_AttributePaneSelector::onTableSelectionChanged(
-  const QItemSelection& theSelected,
-  const QItemSelection& theDeselected)
-{
-  if (mySendSelectionChangeBlocked)
-    return;
-
-  QItemSelectionModel* aModel = (QItemSelectionModel*)sender();
-  emit                 tableSelectionChanged(theSelected, theDeselected, aModel);
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_AttributePaneSelector.hxx b/tools/DFBrowserPane/DFBrowserPane_AttributePaneSelector.hxx
deleted file mode 100644
index 817fc045c7..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_AttributePaneSelector.hxx
+++ /dev/null
@@ -1,72 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_AttributePaneSelector_H
-#define DFBrowserPane_AttributePaneSelector_H
-
-#include <Standard.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QItemSelection>
-#include <Standard_WarningsRestore.hxx>
-
-#include <list>
-
-class QItemSelectionModel;
-
-//! \class DFBrowserPane_AttributePaneSelector
-//! \brief Container of active selection models. It connects to selection changed signal of the
-//! models and emits one signal for any selection.
-class DFBrowserPane_AttributePaneSelector : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowserPane_AttributePaneSelector(QObject* theParent);
-
-  //! Destructor
-  Standard_EXPORT virtual ~DFBrowserPane_AttributePaneSelector();
-
-  //! Fills the pane selection by the given models. Disconnect it from the previous model and
-  //! connect to new models \param theModels a list of selection models
-  Standard_EXPORT void SetCurrentSelectionModels(const std::list<QItemSelectionModel*>& theModels);
-
-  //! Clears selection in all selection models using block for selection changed flag
-  Standard_EXPORT void ClearSelected();
-
-signals:
-
-  //! Signal about selection changed in the model
-  //! \param theSelected selected items
-  //! \param theDeselected deselected items
-  //! \param theModel a selection model where the selection happens
-  void tableSelectionChanged(const QItemSelection& theSelected,
-                             const QItemSelection& theDeselected,
-                             QItemSelectionModel*  theModel);
-protected slots:
-
-  //! Listens selectionChanged() of the model and emits signal tableSelectionChanged filled with the
-  //! selection model \param theSelected selected items \param theDeselected deselected items
-  void onTableSelectionChanged(const QItemSelection& theSelected,
-                               const QItemSelection& theDeselected);
-
-private:
-  std::list<QItemSelectionModel*> mySelectionModels; //!< container of selection models
-  bool mySendSelectionChangeBlocked; //!< flag is selection processing should not performed, avoid
-                                     //!< cyclic dependency
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_HelperArray.cxx b/tools/DFBrowserPane/DFBrowserPane_HelperArray.cxx
deleted file mode 100644
index 0a49833ea2..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_HelperArray.cxx
+++ /dev/null
@@ -1,94 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_HelperArray.hxx>
-#include <inspector/DFBrowserPane_TableView.hxx>
-
-#include <inspector/DFBrowserPane_AttributePaneModel.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QHeaderView>
-#include <QGridLayout>
-#include <QList>
-#include <QTableView>
-#include <QVariant>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowserPane_HelperArray::DFBrowserPane_HelperArray(
-  DFBrowserPane_AttributePaneModel* theValuesModel)
-    : myValuesModel(theValuesModel),
-      myArrayBounds(0),
-      myValuesView(0)
-{
-  myBoundsModel = new DFBrowserPane_AttributePaneModel();
-  myBoundsModel->SetColumnCount(2);
-}
-
-// =======================================================================
-// function : CreateWidget
-// purpose :
-// =======================================================================
-void DFBrowserPane_HelperArray::CreateWidget(QWidget*                 theParent,
-                                             DFBrowserPane_TableView* theValuesView)
-{
-  myValuesView  = theValuesView;
-  myArrayBounds = new DFBrowserPane_TableView(theParent);
-  myArrayBounds->SetModel(myBoundsModel);
-  DFBrowserPane_TableView::SetFixedRowCount(2, myArrayBounds->GetTableView());
-
-  QGridLayout* aLay = new QGridLayout(theParent);
-  aLay->setContentsMargins(0, 0, 0, 0);
-  aLay->addWidget(myArrayBounds);
-  aLay->addWidget(theValuesView);
-  aLay->setRowStretch(1, 1);
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowserPane_HelperArray::Init(const QList<QVariant>& theValues)
-{
-  QList<QVariant> aTmpValues;
-  aTmpValues << "Lower" << theValues[0] << "Upper" << theValues[1];
-  myBoundsModel->Init(aTmpValues);
-
-  aTmpValues.clear();
-  int aLower = theValues[0].toInt();
-  for (int aValueIt = 2, aSize = theValues.size(); aValueIt < aSize; aValueIt++)
-    aTmpValues << QString("Value (%1)").arg(aValueIt - 2 + aLower) << theValues[aValueIt];
-  myValuesModel->Init(aTmpValues);
-
-  if (myArrayBounds)
-    myArrayBounds->GetTableView()->resizeColumnToContents(0);
-  if (myValuesView)
-    myValuesView->GetTableView()->resizeColumnToContents(0);
-}
-
-// =======================================================================
-// function : GetShortAttributeInfo
-// purpose :
-// =======================================================================
-void DFBrowserPane_HelperArray::GetShortAttributeInfo(const Handle(TDF_Attribute)& /*theAttribute*/,
-                                                      QList<QVariant>& theValues)
-{
-  for (int aRowId = 0, aRows = myValuesModel->rowCount(); aRowId < aRows; aRowId++)
-    theValues.append(myValuesModel->data(myValuesModel->index(aRowId, 1)));
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_HelperArray.hxx b/tools/DFBrowserPane/DFBrowserPane_HelperArray.hxx
deleted file mode 100644
index 04499dcc05..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_HelperArray.hxx
+++ /dev/null
@@ -1,67 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_HelperArray_H
-#define DFBrowserPane_HelperArray_H
-
-#include <Standard.hxx>
-#include <TDF_Attribute.hxx>
-
-class DFBrowserPane_AttributePaneModel;
-class DFBrowserPane_TableView;
-
-class QWidget;
-
-#include <Standard_WarningsDisable.hxx>
-#include <QList>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class DFBrowserPane_HelperArray
-//! \brief Class that is used for list and array attributes. Two tables, the first for bounds, the
-//! second for values. Bound table contains two values: Lower and Upper values of the container. So,
-//! the first and the second values in GetValue() are these bounds, other values are used to fill
-//! usual table view.
-class DFBrowserPane_HelperArray
-{
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowserPane_HelperArray(DFBrowserPane_AttributePaneModel* theValuesModel);
-
-  //! Destructor
-  virtual ~DFBrowserPane_HelperArray() {}
-
-  //! Creates bounds table view and grid layout, where the bounds view and the values view are shown
-  //! \param theParent a parent widget
-  //! \param theValuesView a view of values(table view filled by myValuesModel)
-  Standard_EXPORT void CreateWidget(QWidget* theParent, DFBrowserPane_TableView* theValuesView);
-
-  //! Fills bounds model by first and second values, fills values model by left values
-  //! \param theValues values to fill views
-  Standard_EXPORT void Init(const QList<QVariant>& theValues);
-
-  //! Returns only values of values view model
-  //! \param theAttribute a current attribute
-  //! \param theValues a container of result values
-  Standard_EXPORT virtual void GetShortAttributeInfo(const Handle(TDF_Attribute)& theAttribute,
-                                                     QList<QVariant>&             theValues);
-
-private:
-  DFBrowserPane_AttributePaneModel* myValuesModel; //!< model of table view
-  DFBrowserPane_AttributePaneModel* myBoundsModel; //!< model of bounds view
-  DFBrowserPane_TableView*          myArrayBounds; //!< bounds view
-  DFBrowserPane_TableView*          myValuesView;  //!< values view
-};
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_HelperExport.cxx b/tools/DFBrowserPane/DFBrowserPane_HelperExport.cxx
deleted file mode 100644
index 2c8f1d97d6..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_HelperExport.cxx
+++ /dev/null
@@ -1,74 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_HelperExport.hxx>
-
-#include <BRepTools.hxx>
-#include <TCollection_AsciiString.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QFileDialog>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : AddShape
-// purpose :
-// =======================================================================
-void DFBrowserPane_HelperExport::AddShape(const TopoDS_Shape&    theShape,
-                                          const QModelIndexList& theIndices)
-{
-  for (int anIndicesIt = 0, aCount = theIndices.size(); anIndicesIt < aCount; anIndicesIt++)
-    myShapes[theIndices[anIndicesIt]] = theShape;
-}
-
-// =======================================================================
-// function : OnButtonPressed
-// purpose :
-// =======================================================================
-void DFBrowserPane_HelperExport::OnButtonPressed(const QModelIndex& theIndex)
-{
-  if (!myShapes.contains(theIndex))
-    return;
-
-  const TopoDS_Shape& aShape = myShapes[theIndex];
-
-  if (aShape.IsNull())
-    return;
-
-  QString aFileExtension = ".brep";
-
-#if QT_VERSION < 0x050000
-  QString aFilter(tr("BREP file (*%1*)").arg(aFileExtension));
-#else
-  QString aFilter;
-#endif
-  QString aSelectedFilter;
-  QString aFileName = QFileDialog::getSaveFileName(0,
-                                                   tr("Export shape to BREP file"),
-                                                   QString(),
-                                                   aFilter,
-                                                   &aSelectedFilter);
-  if (!aFileName.isEmpty())
-  {
-    QApplication::setOverrideCursor(Qt::WaitCursor);
-    if (aFileName.indexOf(aFileExtension) < 0)
-      aFileName += QString(aFileExtension);
-
-    const TCollection_AsciiString anAsciiName(aFileName.toUtf8().data());
-    BRepTools::Write(aShape, anAsciiName.ToCString());
-    QApplication::restoreOverrideCursor();
-  }
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_HelperExport.hxx b/tools/DFBrowserPane/DFBrowserPane_HelperExport.hxx
deleted file mode 100644
index 7fe9f653d5..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_HelperExport.hxx
+++ /dev/null
@@ -1,77 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_HelperExport_H
-#define DFBrowserPane_HelperExport_H
-
-#include <TopoDS_Shape.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QModelIndex>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class DFBrowserPane_HelperExport
-//! \brief It performs export to BREP of a shape by button is pressed
-//! It contains a container of shapes for model indices. If button is pressed for index where the
-//! shape exists, this shape is exported to BREP file.
-//! It contains a container of shapes, it is important to clear this helper after using.
-class DFBrowserPane_HelperExport : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  DFBrowserPane_HelperExport(QObject* theParent) { (void)theParent; }
-
-  //! Destructor
-  virtual ~DFBrowserPane_HelperExport() Standard_OVERRIDE {}
-
-  //! Clears current shapes
-  void Clear() { myShapes.clear(); }
-
-  //! Append a shape to be exported if pressed button on item from the given list
-  //! \param theShape a shape
-  //! \param theIndicies a list of indices for this shape
-  void AddShape(const TopoDS_Shape& theShape, const QModelIndexList& theIndices);
-
-  //! Returns whether the map of shapes contains a shape for the index
-  //! \param theIndex a model index
-  //! \return true if the map contains shape
-  bool HasShape(const QModelIndex& theIndex) const { return myShapes.contains(theIndex); }
-
-  //! Returns shape for the index
-  //! \param theIndex a model view index
-  //! \return a cached shape
-  const TopoDS_Shape& Shape(const QModelIndex& theIndex) { return myShapes[theIndex]; }
-
-public slots:
-
-  //! Slot that processing button press for the model index
-  //! \param theIndex a model index
-  void OnButtonPressed(const QModelIndex& theIndex);
-
-private:
-#ifdef _MSC_VER
-  #pragma warning(                                                                                 \
-    push,                                                                                          \
-    0) // 4251: class 'QMap<QModelIndex,TopoDS_Shape>' needs to have dll-interface...
-#endif
-  QMap<QModelIndex, TopoDS_Shape> myShapes; //!< a container of shapes
-#ifdef _MSC_VER
-  #pragma warning(pop)
-#endif
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_ItemDelegateButton.cxx b/tools/DFBrowserPane/DFBrowserPane_ItemDelegateButton.cxx
deleted file mode 100644
index cd74e066bc..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_ItemDelegateButton.cxx
+++ /dev/null
@@ -1,69 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_ItemDelegateButton.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractItemModel>
-#include <QEvent>
-#include <QPainter>
-#include <Standard_WarningsRestore.hxx>
-
-const int ICON_SIZE = 20;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowserPane_ItemDelegateButton::DFBrowserPane_ItemDelegateButton(QObject*       theParent,
-                                                                   const QString& theIcon)
-    : QStyledItemDelegate(theParent)
-{
-  myIcon = QIcon(theIcon);
-}
-
-// =======================================================================
-// function : paint
-// purpose :
-// =======================================================================
-void DFBrowserPane_ItemDelegateButton::paint(QPainter*                   thePainter,
-                                             const QStyleOptionViewItem& theOption,
-                                             const QModelIndex&          theIndex) const
-{
-  if (myFreeRows.contains(theIndex.row()))
-    return;
-
-  int    aWidth   = std::min(theOption.rect.width(), ICON_SIZE);
-  int    aHeight  = std::min(theOption.rect.height(), ICON_SIZE);
-  QPoint aTopLeft = theOption.rect.topLeft();
-  thePainter->drawPixmap(
-    QRect(theOption.rect.topLeft(), QPoint(aTopLeft.x() + aWidth, aTopLeft.y() + aHeight)),
-    myIcon.pixmap(ICON_SIZE, ICON_SIZE));
-}
-
-// =======================================================================
-// function : editorEvent
-// purpose :
-// =======================================================================
-bool DFBrowserPane_ItemDelegateButton::editorEvent(QEvent*                     theEvent,
-                                                   QAbstractItemModel*         theModel,
-                                                   const QStyleOptionViewItem& theOption,
-                                                   const QModelIndex&          theIndex)
-{
-  if (theEvent->type() == QEvent::MouseButtonPress && !myFreeRows.contains(theIndex.row()))
-    emit buttonPressed(theIndex);
-
-  return QStyledItemDelegate::editorEvent(theEvent, theModel, theOption, theIndex);
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_ItemDelegateButton.hxx b/tools/DFBrowserPane/DFBrowserPane_ItemDelegateButton.hxx
deleted file mode 100644
index c524d87b2f..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_ItemDelegateButton.hxx
+++ /dev/null
@@ -1,83 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_ItemDelegateButton_H
-#define DFBrowserPane_ItemDelegateButton_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QStyledItemDelegate>
-#include <QStyleOptionViewItem>
-#include <QModelIndex>
-#include <QString>
-#include <QIcon>
-#include <Standard_WarningsRestore.hxx>
-
-class QObject;
-class QPainter;
-class QEvent;
-class QAbstractItemModel;
-
-//! \class DFBrowserPane_ItemDelegateButton
-//! \brief It paints an icon in all rows of the view in a separate column.
-//! It is possible to set rows where this icon is not shown.
-//! Click on the cell where the icon exists emits buttonPressed signal
-class DFBrowserPane_ItemDelegateButton : public QStyledItemDelegate
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowserPane_ItemDelegateButton(QObject* theParent, const QString& theIcon);
-
-  //! Destructor
-  virtual ~DFBrowserPane_ItemDelegateButton() {}
-
-public:
-  //! Stores indices of rows where the icon should not be shown
-  //! \param theRows an indices of rows
-  void SetFreeRows(const QList<int>& theRows) { myFreeRows = theRows; }
-
-  //! Draw an icon in the cell
-  //! \param thePainter a painter
-  //! \param theOption a paint options
-  //! \param theIndex a view index
-  Standard_EXPORT virtual void paint(QPainter*                   thePainter,
-                                     const QStyleOptionViewItem& theOption,
-                                     const QModelIndex&          theIndex) const Standard_OVERRIDE;
-
-  //! Emits pressed signal if event type is mouse button pressed and there is icon for this index
-  //! After signal it calls the parent method
-  //! \param theEvent a processed event
-  //! \param theModel a current view model
-  //! \param theOption display options
-  //! \param theIndex an edited item
-  Standard_EXPORT virtual bool editorEvent(QEvent*                     theEvent,
-                                           QAbstractItemModel*         theModel,
-                                           const QStyleOptionViewItem& theOption,
-                                           const QModelIndex&          theIndex) Standard_OVERRIDE;
-signals:
-
-  //! Signal about button pressing
-  //! \param theIndex an index of clicked item
-  void buttonPressed(const QModelIndex& theIndex);
-
-private:
-  QIcon      myIcon;     //!< an item icon
-  QList<int> myFreeRows; //!< container of row indices where icon is not used
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_ItemRole.hxx b/tools/DFBrowserPane/DFBrowserPane_ItemRole.hxx
deleted file mode 100644
index f5f1c8c5ed..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_ItemRole.hxx
+++ /dev/null
@@ -1,33 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_ItemRole_H
-#define DFBrowserPane_ItemRole_H
-
-#include <inspector/TreeModel_ItemRole.hxx>
-
-//! Custom item role for attribute pane
-enum DFBrowserPane_ItemRole
-{
-  DFBrowserPane_ItemRole_ShortInfo =
-    TreeModel_ItemRole_LastTreeRole + 1,   //!< not full information of an attribute
-  DFBrowserPane_ItemRole_Decoration_40x40, //!< icon with greater size
-  DFBrowserPane_ItemRole_DisplayExtended, // extended item information (with additional information)
-                                          // for Qt::DisplayRole
-  DFBrowserPane_ItemRole_ToolTipExtended, // extended tool tip information for Qt::ToolTipRole
-  DFBrowserPane_ItemRole_LastTreeRole     //! last enumeration value to use outside incremented
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_OcctEnumType.hxx b/tools/DFBrowserPane/DFBrowserPane_OcctEnumType.hxx
deleted file mode 100644
index 576e250e72..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_OcctEnumType.hxx
+++ /dev/null
@@ -1,34 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_OcctEnumType_H
-#define DFBrowserPane_OcctEnumType_H
-
-//! Information for OCCT enumeration type
-enum DFBrowserPane_OcctEnumType
-{
-  DB_CONSTRAINT_TYPE  = 0, //!< TDataXtd_ConstraintEnum values
-  DB_NAMING_TYPE      = 1, //!< TNaming_NameType values
-  DB_SHAPE_TYPE       = 2, //!< TopAbs_ShapeEnum values
-  DB_NS_TYPE          = 3, //!< TNaming_Evolution values
-  DB_GEOM_TYPE        = 4, //!< TDataXtd_GeometryEnum values
-  DB_DIMENSION_TYPE   = 5, //!< TDataStd_RealEnum values
-  DB_MATERIAL_TYPE    = 6, //!< Graphic3d_NameOfMaterial values
-  DB_DISPLAY_MODE     = 7, //!< AIS_DisplayMode values
-  DB_ORIENTATION_TYPE = 8, //!< TopAbs_Orientation values
-  DB_CDM_CAN_CLOSE_STATUS  //!< CDM_CanCloseStatus values
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_SelectionKind.hxx b/tools/DFBrowserPane/DFBrowserPane_SelectionKind.hxx
deleted file mode 100644
index ba053b090e..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_SelectionKind.hxx
+++ /dev/null
@@ -1,28 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_SelectionKind_H
-#define DFBrowserPane_SelectionKind_H
-
-//! Selection kinds returned by attribute pane
-enum DFBrowserPane_SelectionKind
-{
-  DFBrowserPane_SelectionKind_ExportToBREP,        //!< Click on "Export to BREP" button
-  DFBrowserPane_SelectionKind_ExportToShapeViewer, //!< Click on "Export to ShapeViewer" button
-  DFBrowserPane_SelectionKind_LabelReferences,     //!< Select label's reference (reserved)
-  DFBrowserPane_SelectionKind_AttributeReferences  //!< Select Attribute reference (reserved)
-};
-
-#endif // _DFBrowserPane_SelectionKind_H
diff --git a/tools/DFBrowserPane/DFBrowserPane_TDFReference.cxx b/tools/DFBrowserPane/DFBrowserPane_TDFReference.cxx
deleted file mode 100644
index bba3c5e6f1..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TDFReference.cxx
+++ /dev/null
@@ -1,61 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_TDFReference.hxx>
-
-#include <inspector/DFBrowserPane_TableView.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <TDF_Reference.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QVariant>
-#include <QTableView>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : GetValues
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDFReference::GetValues(const Handle(TDF_Attribute)& theAttribute,
-                                           QList<QVariant>&             theValues)
-{
-  Handle(TDF_Reference) anAttribute = Handle(TDF_Reference)::DownCast(theAttribute);
-  if (anAttribute.IsNull())
-    return;
-
-  TDF_Label aLabel = anAttribute->Get();
-  theValues.append("Get");
-  theValues.append(DFBrowserPane_Tools::GetEntry(aLabel).ToCString());
-}
-
-// =======================================================================
-// function : GetReferences
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDFReference::GetReferences(const Handle(TDF_Attribute)& theAttribute,
-                                               NCollection_List<TDF_Label>& theRefLabels,
-                                               Handle(Standard_Transient)& /*theRefPresentation*/)
-{
-  Handle(TDF_Reference) anAttribute = Handle(TDF_Reference)::DownCast(theAttribute);
-  if (anAttribute.IsNull())
-    return;
-
-  QTableView*          aTableView       = getTableView()->GetTableView();
-  QItemSelectionModel* aSelectionModel  = aTableView->selectionModel();
-  QModelIndexList      aSelectedIndices = aSelectionModel->selectedIndexes();
-  if (aSelectedIndices.size() > 0)
-    theRefLabels.Append(anAttribute->Get());
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_TDFReference.hxx b/tools/DFBrowserPane/DFBrowserPane_TDFReference.hxx
deleted file mode 100644
index 07443dea89..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TDFReference.hxx
+++ /dev/null
@@ -1,50 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_TDFReference_H
-#define DFBrowserPane_TDFReference_H
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-
-#include <Standard.hxx>
-
-//! \class DFBrowserPane_TDFReference
-//! \brief The class to manipulate of TDF_Reference attribute
-class DFBrowserPane_TDFReference : public DFBrowserPane_AttributePane
-{
-public:
-  //! Constructor
-  DFBrowserPane_TDFReference() {}
-
-  //! Destructor
-  virtual ~DFBrowserPane_TDFReference() {}
-
-  //! Returns values to fill the table view model
-  //! \param theAttribute a current attribute
-  //! \param theValues a container of values
-  Standard_EXPORT virtual void GetValues(const Handle(TDF_Attribute)& theAttribute,
-                                         QList<QVariant>&             theValues) Standard_OVERRIDE;
-
-  //! Returns container of Label references to the attribute
-  //! \param theAttribute a current attribute
-  //! \param theRefLabels a container of label references, to be selected in tree view
-  //! \param theRefPresentation handle of presentation for the references, to be visualized
-  Standard_EXPORT virtual void GetReferences(const Handle(TDF_Attribute)& theAttribute,
-                                             NCollection_List<TDF_Label>& theRefLabels,
-                                             Handle(Standard_Transient)&  theRefPresentation)
-    Standard_OVERRIDE;
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_TDataStdReferenceArray.cxx b/tools/DFBrowserPane/DFBrowserPane_TDataStdReferenceArray.cxx
deleted file mode 100644
index 390cf8b6ff..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TDataStdReferenceArray.cxx
+++ /dev/null
@@ -1,117 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_TDataStdReferenceArray.hxx>
-
-#include <inspector/DFBrowserPane_AttributePaneModel.hxx>
-#include <inspector/DFBrowserPane_HelperArray.hxx>
-#include <inspector/DFBrowserPane_TableView.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <TDataStd_ReferenceArray.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QGridLayout>
-#include <QItemSelectionModel>
-#include <QTableView>
-#include <QVariant>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : CreateWidget
-// purpose :
-// =======================================================================
-QWidget* DFBrowserPane_TDataStdReferenceArray::CreateWidget(QWidget* theParent)
-{
-  QWidget* aMainWidget = new QWidget(theParent);
-  myTableView          = new DFBrowserPane_TableView(aMainWidget);
-  myTableView->SetModel(getPaneModel());
-  myTableView->GetTableView()->setSelectionModel(mySelectionModels.front());
-
-  myArrayTableHelper.CreateWidget(aMainWidget, myTableView);
-
-  return aMainWidget;
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdReferenceArray::Init(const Handle(TDF_Attribute)& theAttribute)
-{
-  QList<QVariant> aValues;
-  GetValues(theAttribute, aValues);
-  myArrayTableHelper.Init(aValues);
-}
-
-// =======================================================================
-// function : GetValues
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdReferenceArray::GetValues(const Handle(TDF_Attribute)& theAttribute,
-                                                     QList<QVariant>&             theValues)
-{
-  Handle(TDataStd_ReferenceArray) anAttribute =
-    Handle(TDataStd_ReferenceArray)::DownCast(theAttribute);
-  if (anAttribute.IsNull())
-    return;
-
-  theValues.append(anAttribute->Lower());
-  theValues.append(anAttribute->Upper());
-  for (int aValueId = anAttribute->Lower(); aValueId <= anAttribute->Upper(); aValueId++)
-    theValues.append(DFBrowserPane_Tools::GetEntry(anAttribute->Value(aValueId)).ToCString());
-}
-
-// =======================================================================
-// function : GetShortAttributeInfo
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdReferenceArray::GetShortAttributeInfo(
-  const Handle(TDF_Attribute)& theAttribute,
-  QList<QVariant>&             theValues)
-{
-  QList<QVariant> aValues;
-  GetValues(theAttribute, aValues);
-  myArrayTableHelper.Init(aValues);
-  return myArrayTableHelper.GetShortAttributeInfo(theAttribute, theValues);
-}
-
-// =======================================================================
-// function : GetReferences
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdReferenceArray::GetReferences(
-  const Handle(TDF_Attribute)& theAttribute,
-  NCollection_List<TDF_Label>& theRefLabels,
-  Handle(Standard_Transient)& /*theRefPresentation*/)
-{
-  if (!getTableView())
-    return;
-  QStringList aSelectedEntries =
-    DFBrowserPane_TableView::GetSelectedColumnValues(getTableView()->GetTableView(), 1);
-
-  Handle(TDataStd_ReferenceArray) anAttribute =
-    Handle(TDataStd_ReferenceArray)::DownCast(theAttribute);
-  if (anAttribute.IsNull())
-    return;
-
-  for (int aValueId = anAttribute->Lower(); aValueId <= anAttribute->Upper(); aValueId++)
-  {
-    TDF_Label aLabel = anAttribute->Value(aValueId);
-    if (aSelectedEntries.contains(DFBrowserPane_Tools::GetEntry(aLabel).ToCString()))
-      theRefLabels.Append(aLabel);
-  }
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_TDataStdReferenceArray.hxx b/tools/DFBrowserPane/DFBrowserPane_TDataStdReferenceArray.hxx
deleted file mode 100644
index 47983db2fa..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TDataStdReferenceArray.hxx
+++ /dev/null
@@ -1,73 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_TDataStdReferenceArray_H
-#define DFBrowserPane_TDataStdReferenceArray_H
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-#include <inspector/DFBrowserPane_HelperArray.hxx>
-
-#include <Standard.hxx>
-
-//! \class DFBrowserPane_TDataStdReferenceArray
-//! \brief The class to manipulate of TDataStd_ReferenceArray attribute
-class DFBrowserPane_TDataStdReferenceArray : public DFBrowserPane_AttributePane
-{
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowserPane_TDataStdReferenceArray()
-      : DFBrowserPane_AttributePane(),
-        myArrayTableHelper(getPaneModel())
-  {
-  }
-
-  //! Destructor
-  Standard_EXPORT virtual ~DFBrowserPane_TDataStdReferenceArray() {}
-
-  //! Creates table view and call create widget of array table helper
-  //! \param theParent a parent widget
-  //! \return a new widget
-  Standard_EXPORT virtual QWidget* CreateWidget(QWidget* theParent) Standard_OVERRIDE;
-
-  //! Calls Init of array table helper
-  //! \param theAttribute a current attribute
-  Standard_EXPORT virtual void Init(const Handle(TDF_Attribute)& theAttribute) Standard_OVERRIDE;
-
-  //! Returns short attribute information using array table helper
-  //! \param theAttribute a current attribute
-  //! \param theValues container of output values
-  Standard_EXPORT virtual void GetShortAttributeInfo(const Handle(TDF_Attribute)& theAttribute,
-                                                     QList<QVariant>& theValues) Standard_OVERRIDE;
-
-  //! Returns values to fill the table view model
-  //! \param theAttribute a current attribute
-  //! \param theValues a container of values
-  Standard_EXPORT virtual void GetValues(const Handle(TDF_Attribute)& theAttribute,
-                                         QList<QVariant>&             theValues) Standard_OVERRIDE;
-
-  //! Returns container of Label references to the attribute
-  //! \param theAttribute a current attribute
-  //! \param theRefLabels a container of label references, to be selected in tree view
-  //! \param theRefPresentation handle of presentation for the references, to be visualized
-  Standard_EXPORT virtual void GetReferences(const Handle(TDF_Attribute)& theAttribute,
-                                             NCollection_List<TDF_Label>& theRefLabels,
-                                             Handle(Standard_Transient)&  theRefPresentation)
-    Standard_OVERRIDE;
-
-private:
-  DFBrowserPane_HelperArray myArrayTableHelper; //!< common interface to fill array pane
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_TDataStdReferenceList.cxx b/tools/DFBrowserPane/DFBrowserPane_TDataStdReferenceList.cxx
deleted file mode 100644
index d61e70c2ff..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TDataStdReferenceList.cxx
+++ /dev/null
@@ -1,69 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_TDataStdReferenceList.hxx>
-
-#include <inspector/DFBrowserPane_TableView.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <TDataStd_ReferenceList.hxx>
-#include <TDF_ListIteratorOfLabelList.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QVariant>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : GetValues
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdReferenceList::GetValues(const Handle(TDF_Attribute)& theAttribute,
-                                                    QList<QVariant>&             theValues)
-{
-  Handle(TDataStd_ReferenceList) anAttribute =
-    Handle(TDataStd_ReferenceList)::DownCast(theAttribute);
-  if (anAttribute.IsNull())
-    return;
-
-  for (TDF_ListIteratorOfLabelList aLabelIt(anAttribute->List()); aLabelIt.More(); aLabelIt.Next())
-  {
-    theValues.append("Value");
-    theValues.append(DFBrowserPane_Tools::GetEntry(aLabelIt.Value()).ToCString());
-  }
-}
-
-// =======================================================================
-// function : GetReferences
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdReferenceList::GetReferences(
-  const Handle(TDF_Attribute)& theAttribute,
-  NCollection_List<TDF_Label>& theRefLabels,
-  Handle(Standard_Transient)& /*theRefPresentation*/)
-{
-  QStringList aSelectedEntries =
-    DFBrowserPane_TableView::GetSelectedColumnValues(getTableView()->GetTableView(), 1);
-  Handle(TDataStd_ReferenceList) anAttribute =
-    Handle(TDataStd_ReferenceList)::DownCast(theAttribute);
-  if (anAttribute.IsNull())
-    return;
-  for (TDF_ListIteratorOfLabelList aLabelIt(anAttribute->List()); aLabelIt.More(); aLabelIt.Next())
-  {
-    const TDF_Label& aLabel = aLabelIt.Value();
-    if (aSelectedEntries.contains(DFBrowserPane_Tools::GetEntry(aLabel).ToCString()))
-      theRefLabels.Append(aLabel);
-  }
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_TDataStdReferenceList.hxx b/tools/DFBrowserPane/DFBrowserPane_TDataStdReferenceList.hxx
deleted file mode 100644
index 5d69f01a5f..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TDataStdReferenceList.hxx
+++ /dev/null
@@ -1,50 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_TDataStdReferenceList_H
-#define DFBrowserPane_TDataStdReferenceList_H
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-
-#include <Standard.hxx>
-
-//! \class DFBrowserPane_TDataStdReferenceList
-//! \brief The class to manipulate of TDataStd_ReferenceList attribute
-class DFBrowserPane_TDataStdReferenceList : public DFBrowserPane_AttributePane
-{
-public:
-  //! Constructor
-  DFBrowserPane_TDataStdReferenceList() {}
-
-  //! Destructor
-  virtual ~DFBrowserPane_TDataStdReferenceList() {}
-
-  //! Returns values to fill the table view model
-  //! \param theAttribute a current attribute
-  //! \param theValues a container of values
-  Standard_EXPORT virtual void GetValues(const Handle(TDF_Attribute)& theAttribute,
-                                         QList<QVariant>&             theValues) Standard_OVERRIDE;
-
-  //! Returns container of Label references to the attribute
-  //! \param theAttribute a current attribute
-  //! \param theRefLabels a container of label references, to be selected in tree view
-  //! \param theRefPresentation handle of presentation for the references, to be visualized
-  Standard_EXPORT virtual void GetReferences(const Handle(TDF_Attribute)& theAttribute,
-                                             NCollection_List<TDF_Label>& theRefLabels,
-                                             Handle(Standard_Transient)&  theRefPresentation)
-    Standard_OVERRIDE;
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNode.cxx b/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNode.cxx
deleted file mode 100644
index 32be226eb7..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNode.cxx
+++ /dev/null
@@ -1,192 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_TDataStdTreeNode.hxx>
-
-#include <inspector/DFBrowserPane_AttributePaneModel.hxx>
-#include <inspector/DFBrowserPane_TableView.hxx>
-#include <inspector/DFBrowserPane_TDataStdTreeNodeItem.hxx>
-#include <inspector/DFBrowserPane_TDataStdTreeNodeModel.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <TDataStd_TreeNode.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QHeaderView>
-#include <QVariant>
-#include <QTableView>
-#include <QTreeView>
-#include <QVBoxLayout>
-#include <QWidget>
-#include <QItemSelectionModel>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowserPane_TDataStdTreeNode::DFBrowserPane_TDataStdTreeNode()
-    : DFBrowserPane_AttributePane(),
-      myTreeNodeView(0)
-{
-  myModel = new DFBrowserPane_TDataStdTreeNodeModel(0);
-  myModel->InitColumns();
-  mySelectionModels.clear(); // do not use selection model of parent pane
-  mySelectionModels.push_back(new QItemSelectionModel(myModel));
-}
-
-// =======================================================================
-// function : CreateWidget
-// purpose :
-// =======================================================================
-QWidget* DFBrowserPane_TDataStdTreeNode::CreateWidget(QWidget* theParent)
-{
-  QWidget* aMainWidget = new QWidget(theParent);
-  aMainWidget->setVisible(false);
-
-  myTableView = new DFBrowserPane_TableView(aMainWidget, getTableColumnWidths());
-  myTableView->SetVisibleHorizontalHeader(false);
-  DFBrowserPane_TableView::SetFixedRowCount(1, myTableView->GetTableView());
-  myTableView->SetModel(myPaneModel);
-
-  QVBoxLayout* aLay = new QVBoxLayout(aMainWidget);
-  aLay->setContentsMargins(0, 0, 0, 0);
-  aLay->addWidget(myTableView);
-
-  myTreeNodeView = new QTreeView(theParent);
-  myTreeNodeView->header()->setVisible(false);
-  myTreeNodeView->setModel(myModel);
-  myTreeNodeView->setSelectionModel(mySelectionModels.front());
-  myTreeNodeView->setSelectionBehavior(QAbstractItemView::SelectRows);
-
-  aLay->addWidget(myTreeNodeView);
-  aLay->setStretch(1, 1);
-  return aMainWidget;
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdTreeNode::Init(const Handle(TDF_Attribute)& theAttribute)
-{
-  Handle(TDataStd_TreeNode) aTreeNode = Handle(TDataStd_TreeNode)::DownCast(theAttribute);
-
-  bool aDefaultGUID = aTreeNode->ID() != aTreeNode->GetDefaultTreeID();
-  if (myTableView)
-    myTableView->setVisible(!aDefaultGUID);
-
-  if (!aDefaultGUID)
-  {
-    QList<QVariant> aValues;
-    char            aStr[256];
-    aTreeNode->ID().ToCString(aStr);
-    TCollection_AsciiString aString(aStr);
-    aValues << "GetDefaultTreeID" << DFBrowserPane_Tools::ToString(aString);
-    getPaneModel()->Init(aValues);
-    if (myTableView)
-      myTableView->GetTableView()->resizeColumnToContents(0);
-  }
-
-  myModel->Reset();
-
-  if (!aTreeNode.IsNull())
-  {
-    Handle(TDataStd_TreeNode) aRootItem = aTreeNode->Root();
-    myModel->SetAttribute(aRootItem);
-
-    QModelIndex anIndex = myModel->FindIndex(theAttribute, QModelIndex());
-    if (myTreeNodeView && anIndex.isValid())
-    {
-      myTreeNodeView->setExpanded(anIndex.parent(), true);
-      myTreeNodeView->scrollTo(anIndex);
-
-      TreeModel_ItemBasePtr anAttributeItem = TreeModel_ModelBase::GetItemByIndex(anIndex);
-      DFBrowserPane_TDataStdTreeNodeItemPtr anAttributeNodeItem =
-        itemDynamicCast<DFBrowserPane_TDataStdTreeNodeItem>(anAttributeItem);
-      anAttributeNodeItem->setCurrentAttribute(true);
-    }
-  }
-  myModel->EmitLayoutChanged();
-}
-
-// =======================================================================
-// function : GetShortAttributeInfo
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdTreeNode::GetShortAttributeInfo(
-  const Handle(TDF_Attribute)& theAttribute,
-  QList<QVariant>&             theValues)
-{
-  Handle(TDataStd_TreeNode) aTNAttribute = Handle(TDataStd_TreeNode)::DownCast(theAttribute);
-  bool                      aDefaultGUID = aTNAttribute->ID() != aTNAttribute->GetDefaultTreeID();
-  QString                   aGUIDPrefix;
-  if (!aDefaultGUID)
-  {
-    QList<QVariant> aValues;
-    char            aStr[256];
-    aTNAttribute->ID().ToCString(aStr);
-    TCollection_AsciiString aString(aStr);
-    aGUIDPrefix = DFBrowserPane_Tools::ToString(aString);
-  }
-
-  if (aTNAttribute->HasFather())
-  {
-    TDF_Label aLabel = aTNAttribute->Father()->Label();
-    theValues.append(
-      QString("%1 ==> %2").arg(aGUIDPrefix).arg(DFBrowserPane_Tools::GetEntry(aLabel).ToCString()));
-  }
-  else
-  {
-    Handle(TDataStd_TreeNode) aFirstChild = aTNAttribute->First();
-    QStringList               aRefs;
-    while (!aFirstChild.IsNull())
-    {
-      TDF_Label aLabel = aFirstChild->Label();
-      aRefs.append(DFBrowserPane_Tools::GetEntry(aLabel).ToCString());
-      aFirstChild = aFirstChild->Next();
-    }
-    theValues.append(QString("%1 <== (%2)").arg(aGUIDPrefix).arg(aRefs.join(", ")));
-  }
-}
-
-// =======================================================================
-// function : GetReferences
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdTreeNode::GetReferences(const Handle(TDF_Attribute)& theAttribute,
-                                                   NCollection_List<TDF_Label>& theRefLabels,
-                                                   Handle(Standard_Transient)&)
-{
-  Handle(TDataStd_TreeNode) anAttribute = Handle(TDataStd_TreeNode)::DownCast(theAttribute);
-  if (anAttribute.IsNull())
-    return;
-
-  QModelIndexList aSelectedIndices = myTreeNodeView->selectionModel()->selectedIndexes();
-  for (int aSelectedId = 0, aSize = aSelectedIndices.size(); aSelectedId < aSize; aSelectedId++)
-  {
-    QModelIndex anIndex = aSelectedIndices[aSelectedId];
-
-    TreeModel_ItemBasePtr anAttributeItem = TreeModel_ModelBase::GetItemByIndex(anIndex);
-    DFBrowserPane_TDataStdTreeNodeItemPtr anAttributeNodeItem =
-      itemDynamicCast<DFBrowserPane_TDataStdTreeNodeItem>(anAttributeItem);
-
-    Handle(TDF_Attribute) aNodeAttribute = anAttributeNodeItem->GetAttribute();
-    if (aNodeAttribute.IsNull())
-      continue;
-
-    theRefLabels.Append(aNodeAttribute->Label());
-  }
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNode.hxx b/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNode.hxx
deleted file mode 100644
index f008ada19f..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNode.hxx
+++ /dev/null
@@ -1,76 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_TDataStdTreeNode_H
-#define DFBrowserPane_TDataStdTreeNode_H
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-
-#include <Standard.hxx>
-
-class DFBrowserPane_TDataStdTreeNodeModel;
-class QTreeView;
-
-//! \class DFBrowserPane_TDataStdTreeNode
-//! \brief The class to manipulate of TDataStd_TreeNode attribute
-class DFBrowserPane_TDataStdTreeNode : public DFBrowserPane_AttributePane
-{
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowserPane_TDataStdTreeNode();
-
-  //! Destructor
-  virtual ~DFBrowserPane_TDataStdTreeNode() {}
-
-  //! Creates table view and call create widget of array table helper
-  //! \param theParent a parent widget
-  //! \return a new widget
-  Standard_EXPORT virtual QWidget* CreateWidget(QWidget* theParent) Standard_OVERRIDE;
-
-  //! Initializes the content of the pane by the parameter attribute
-  //! \param theAttribute an OCAF attribute
-  Standard_EXPORT virtual void Init(const Handle(TDF_Attribute)& theAttribute) Standard_OVERRIDE;
-
-  //! Returns brief attribute information. In general case, it returns GetValues() result.
-  //! \param theAttribute a current attribute
-  //! \param theValues a result list of values
-  Standard_EXPORT virtual void GetShortAttributeInfo(const Handle(TDF_Attribute)& theAttribute,
-                                                     QList<QVariant>& theValues) Standard_OVERRIDE;
-
-  //! Returns values to fill the table view model
-  //! \param theAttribute a current attribute
-  //! \param theValues a container of values
-  virtual void GetValues(const Handle(TDF_Attribute)& theAttribute,
-                         QList<QVariant>&             theValues) Standard_OVERRIDE
-  {
-    (void)theAttribute;
-    (void)theValues;
-  }
-
-  //! Returns container of Label references to the attribute
-  //! \param theAttribute a current attribute
-  //! \param theRefLabels a container of label references, to be selected in tree view
-  //! \param theRefPresentation handle of presentation for the references, to be visualized
-  Standard_EXPORT virtual void GetReferences(const Handle(TDF_Attribute)& theAttribute,
-                                             NCollection_List<TDF_Label>& theRefLabels,
-                                             Handle(Standard_Transient)&  theRefPresentation)
-    Standard_OVERRIDE;
-
-private:
-  DFBrowserPane_TDataStdTreeNodeModel* myModel;
-  QTreeView*                           myTreeNodeView;
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNodeItem.cxx b/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNodeItem.cxx
deleted file mode 100644
index 00efbb3492..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNodeItem.cxx
+++ /dev/null
@@ -1,151 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_TDataStdTreeNodeItem.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <inspector/DFBrowser_Module.hxx>
-#include <inspector/DFBrowser_Tools.hxx>
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <TDataStd_TreeNode.hxx>
-#include <TDataStd_ChildNodeIterator.hxx>
-#include <TDF_AttributeIterator.hxx>
-#include <TDF_ChildIterator.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QIcon>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdTreeNodeItem::Init()
-{
-  DFBrowserPane_TDataStdTreeNodeItemPtr aParentItem =
-    itemDynamicCast<DFBrowserPane_TDataStdTreeNodeItem>(Parent());
-  // if aParentItem is empty, it is the root item, an attribute field is already filled by
-  // SetAttribute method
-  if (aParentItem)
-    myAttribute = aParentItem->getChildAttribute(Row());
-
-  Handle(TDataStd_TreeNode) aTreeNode = Handle(TDataStd_TreeNode)::DownCast(myAttribute);
-  if (aTreeNode.IsNull())
-    return;
-
-  TreeModel_ItemBase::Init();
-
-  myRowCount  = aTreeNode->NbChildren(false);
-  myLabelName = QString(DFBrowserPane_Tools::GetEntry(aTreeNode->Label()).ToCString());
-}
-
-// =======================================================================
-// function : Reset
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdTreeNodeItem::Reset()
-{
-  DFBrowserPane_TDataStdTreeNodeItemPtr aParentItem =
-    itemDynamicCast<DFBrowserPane_TDataStdTreeNodeItem>(Parent());
-  if (aParentItem)
-  {
-    Handle(TDF_Attribute) anAttribute;
-    SetAttribute(anAttribute);
-    myRowCount  = 0;
-    myLabelName = QString();
-  }
-  myIsCurrentItem = false;
-  TreeModel_ItemBase::Reset();
-}
-
-// =======================================================================
-// function : data
-// purpose :
-// =======================================================================
-QVariant DFBrowserPane_TDataStdTreeNodeItem::initValue(const int theRole) const
-{
-  if (Column() != 0)
-    return QVariant();
-
-  switch (theRole)
-  {
-    case Qt::DisplayRole:
-    case Qt::ToolTipRole:
-      return getName();
-    case Qt::ForegroundRole:
-      return myIsCurrentItem ? QColor(Qt::darkBlue) : QColor(Qt::black);
-    case Qt::BackgroundRole:
-      return myIsCurrentItem ? DFBrowserPane_Tools::LightHighlightColor() : QVariant();
-    default:
-      break;
-  }
-  return QVariant();
-}
-
-// =======================================================================
-// function : createChild
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr DFBrowserPane_TDataStdTreeNodeItem::createChild(int theRow, int theColumn)
-{
-  return DFBrowserPane_TDataStdTreeNodeItem::CreateItem(currentItem(), theRow, theColumn);
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdTreeNodeItem::initItem() const
-{
-  if (IsInitialized())
-    return;
-  const_cast<DFBrowserPane_TDataStdTreeNodeItem*>(this)->Init();
-}
-
-// =======================================================================
-// function : getChildAttribute
-// purpose :
-// =======================================================================
-Handle(TDF_Attribute) DFBrowserPane_TDataStdTreeNodeItem::getChildAttribute(
-  const int theChildRow) const
-{
-  Handle(TDF_Attribute) aResult;
-
-  Handle(TDataStd_TreeNode) aTreeNode    = Handle(TDataStd_TreeNode)::DownCast(myAttribute);
-  int                       aChildNodeId = 0;
-  for (TDataStd_ChildNodeIterator aChildIt(aTreeNode); aChildIt.More();
-       aChildIt.Next(), aChildNodeId++)
-  {
-    if (aChildNodeId != theChildRow)
-      continue;
-    aResult = aChildIt.Value();
-    break;
-  }
-  return aResult;
-}
-
-// =======================================================================
-// function : getRowCount
-// purpose :
-// =======================================================================
-int DFBrowserPane_TDataStdTreeNodeItem::getRowCount() const
-{
-  initItem();
-  return myRowCount;
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNodeItem.hxx b/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNodeItem.hxx
deleted file mode 100644
index c42efaaf32..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNodeItem.hxx
+++ /dev/null
@@ -1,133 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_TDataStdTreeNodeItem_H
-#define DFBrowserPane_TDataStdTreeNodeItem_H
-
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <Standard.hxx>
-#include <TDF_Attribute.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QList>
-#include <QMap>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowserPane_TDataStdTreeNodeItem;
-typedef QExplicitlySharedDataPointer<DFBrowserPane_TDataStdTreeNodeItem>
-  DFBrowserPane_TDataStdTreeNodeItemPtr;
-
-//! \class DFBrowserPane_TDataStdTreeNodeItem
-//! An item connected to TDataStd_TreeNode attribute. Parent is NULL or tree node item.
-//! Childrens are items for children of tree node attribute.
-class DFBrowserPane_TDataStdTreeNodeItem : public TreeModel_ItemBase
-{
-
-public:
-  //! Creates an item wrapped by a shared pointer
-  //! \param theRow the item row position in the parent item
-  //! \param theColumn the item column position in the parent item
-  //! \return the pointer to the created item
-  static DFBrowserPane_TDataStdTreeNodeItemPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                                          const int             theRow,
-                                                          const int             theColumn)
-  {
-    return DFBrowserPane_TDataStdTreeNodeItemPtr(
-      new DFBrowserPane_TDataStdTreeNodeItem(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~DFBrowserPane_TDataStdTreeNodeItem() Standard_OVERRIDE {}
-
-  //! Store a current attribute
-  //! \param theAttribute an attribute
-  void SetAttribute(const Handle(TDF_Attribute)& theAttribute) { myAttribute = theAttribute; }
-
-  //! Returns the current attribute
-  //! \return an attribute
-  Handle(TDF_Attribute) GetAttribute() const
-  {
-    initItem();
-    return myAttribute;
-  }
-
-  //! Set state if the attribute is current(corresponds to the selected attribute in tree)
-  //! \param theCurrent boolean state
-  void setCurrentAttribute(const bool theCurrent)
-  {
-    Reset();
-    myIsCurrentItem = theCurrent;
-  }
-
-  //! Returns child attribute of the current attribute
-  //! \param theChildRow an index of a child attribute
-  //! \returns an attribute
-  Standard_EXPORT Handle(TDF_Attribute) getChildAttribute(const int theChildRow) const;
-
-  //! Inits the item, fills internal containers
-  Standard_EXPORT virtual void Init() Standard_OVERRIDE;
-
-  //! Resets the cached item values. Throws down the initialized state of the item.
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-protected:
-  //! Returns the data stored under the given role for the current item.
-  //! \param theRole an enumeration value of role for data obtaining
-  virtual QVariant initValue(const int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
-
-  //! \return number of children.
-  virtual int initRowCount() const Standard_OVERRIDE { return getRowCount(); }
-
-  //! Creates a child item in the given position.
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \return the created item
-  virtual TreeModel_ItemBasePtr createChild(int theRow, int theColumn) Standard_OVERRIDE;
-
-protected:
-  //! Constructor
-  //! \param theParent a parent item
-  //! \param theRow the item row position in the parent item
-  //! \param theColumn the item column position in the parent item
-  DFBrowserPane_TDataStdTreeNodeItem(TreeModel_ItemBasePtr theParent,
-                                     const int             theRow,
-                                     const int             theColumn)
-      : TreeModel_ItemBase(theParent, theRow, theColumn),
-        myIsCurrentItem(false)
-  {
-  }
-
-  //! Initializes the current item. It creates a backup of the specific item information
-  virtual void initItem() const Standard_OVERRIDE;
-
-  //! Returns number of children attributes, initializes item is necessary
-  int getRowCount() const;
-
-  //! Returns entry of the label of the current attribute tree node
-  QString getName() const { return myLabelName; }
-
-private:
-  Handle(TDF_Attribute) myAttribute; //! current attribute in tree node hierarchy
-  bool myIsCurrentItem; //! state whether this attribute is active in DFBrowser selected attribute
-                        //! in tree
-
-  int myRowCount; //! cached value of rows count
-  QString
-    myLabelName; //! cached value of label name of the label of the current tree node attribute
-};
-
-#endif
\ No newline at end of file
diff --git a/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNodeModel.cxx b/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNodeModel.cxx
deleted file mode 100644
index 4d56615791..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNodeModel.cxx
+++ /dev/null
@@ -1,100 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_TDataStdTreeNodeModel.hxx>
-#include <inspector/DFBrowserPane_TDataStdTreeNodeItem.hxx>
-
-#include <TDataStd_TreeNode.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractItemModel>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowserPane_TDataStdTreeNodeModel::DFBrowserPane_TDataStdTreeNodeModel(QObject* theParent)
-    : TreeModel_ModelBase(theParent)
-{
-}
-
-// =======================================================================
-// function : InitColumns
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdTreeNodeModel::InitColumns()
-{
-  setHeaderItem(0, TreeModel_HeaderSection("Name"));
-}
-
-// =======================================================================
-// function : createRootItem
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr DFBrowserPane_TDataStdTreeNodeModel::createRootItem(const int theColumnId)
-{
-  return DFBrowserPane_TDataStdTreeNodeItem::CreateItem(TreeModel_ItemBasePtr(), 0, theColumnId);
-}
-
-// =======================================================================
-// function : SetAttribute
-// purpose :
-// =======================================================================
-void DFBrowserPane_TDataStdTreeNodeModel::SetAttribute(const Handle(TDF_Attribute)& theAttribute)
-{
-  DFBrowserPane_TDataStdTreeNodeItemPtr aRootItem =
-    itemDynamicCast<DFBrowserPane_TDataStdTreeNodeItem>(RootItem(0));
-  Reset();
-  aRootItem->SetAttribute(theAttribute);
-  EmitLayoutChanged();
-}
-
-// =======================================================================
-// function : FindIndex
-// purpose :
-// =======================================================================
-QModelIndex DFBrowserPane_TDataStdTreeNodeModel::FindIndex(
-  const Handle(TDF_Attribute)& theAttribute,
-  const QModelIndex            theParentIndex)
-{
-  QModelIndex aParentIndex = theParentIndex;
-
-  if (!aParentIndex.isValid())
-    aParentIndex = index(0, 0);
-
-  DFBrowserPane_TDataStdTreeNodeItemPtr aParentItem =
-    itemDynamicCast<DFBrowserPane_TDataStdTreeNodeItem>(
-      TreeModel_ModelBase::GetItemByIndex(aParentIndex));
-
-  if (aParentItem->GetAttribute() == theAttribute)
-    return aParentIndex;
-
-  for (int aChildId = 0, aCount = aParentItem->rowCount(); aChildId < aCount; aChildId++)
-  {
-    QModelIndex                           anIndex    = index(aChildId, 0, aParentIndex);
-    TreeModel_ItemBasePtr                 anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-    DFBrowserPane_TDataStdTreeNodeItemPtr anItem =
-      itemDynamicCast<DFBrowserPane_TDataStdTreeNodeItem>(anItemBase);
-
-    if (anItem->GetAttribute() == theAttribute)
-      return anIndex;
-
-    QModelIndex aSubIndex = FindIndex(theAttribute, anIndex);
-    if (aSubIndex.isValid())
-      return aSubIndex;
-  }
-  return QModelIndex();
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNodeModel.hxx b/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNodeModel.hxx
deleted file mode 100644
index 7be35f4777..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNodeModel.hxx
+++ /dev/null
@@ -1,75 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_TDataStdTreeNodeMode_H
-#define DFBrowserPane_TDataStdTreeNodeMode_H
-
-#include <inspector/TreeModel_ModelBase.hxx>
-
-#include <Standard.hxx>
-#include <TDF_Attribute.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QHash>
-#include <QByteArray>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class DFBrowserPane_TDataStdTreeNodeModel
-//! \brief It builds a tree of items for the given tree node attribute.
-class DFBrowserPane_TDataStdTreeNodeModel : public TreeModel_ModelBase
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowserPane_TDataStdTreeNodeModel(QObject* theParent);
-
-  //! Destructor
-  virtual ~DFBrowserPane_TDataStdTreeNodeModel() Standard_OVERRIDE {}
-
-  //! Creates model columns and root items.
-  Standard_EXPORT virtual void InitColumns() Standard_OVERRIDE;
-
-  //! Initializes the tree model by the attribute
-  //! \param theAttribute a current attribute
-  Standard_EXPORT void SetAttribute(const Handle(TDF_Attribute)& theAttribute);
-
-  //! Returns model index by the attribute. The method is recursive.
-  //! \param theAttribute an attribute that is searched
-  //! \param theParentIndex an index of the parent item
-  //! \return the model index
-  QModelIndex FindIndex(const Handle(TDF_Attribute)& theAttribute,
-                        const QModelIndex            theParentIndex);
-
-  //! Returns count of columns in the model.
-  //! \param theParent an index of the parent item
-  //! \return integer value
-  virtual int columnCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return 1;
-  }
-
-protected:
-  //! Creates root item
-  //! \param theColumnId index of a column
-  Standard_EXPORT virtual TreeModel_ItemBasePtr createRootItem(const int theColumnId)
-    Standard_OVERRIDE;
-
-private:
-  Handle(TDF_Attribute) myAttribute; //! the parent attribute
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_TNamingNamedShape.cxx b/tools/DFBrowserPane/DFBrowserPane_TNamingNamedShape.cxx
deleted file mode 100644
index 70ab329aec..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TNamingNamedShape.cxx
+++ /dev/null
@@ -1,520 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_TNamingNamedShape.hxx>
-
-#include <inspector/DFBrowserPane_AttributePaneModel.hxx>
-#include <inspector/DFBrowserPane_ItemDelegateButton.hxx>
-#include <inspector/DFBrowserPane_ItemRole.hxx>
-#include <inspector/DFBrowserPane_HelperExport.hxx>
-#include <inspector/DFBrowserPane_SelectionKind.hxx>
-#include <inspector/DFBrowserPane_TableView.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-#include <inspector/TInspectorAPI_PluginParameters.hxx>
-
-#include <AIS_InteractiveObject.hxx>
-#include <AIS_Shape.hxx>
-#include <BRep_Builder.hxx>
-#include <BRepTools.hxx>
-#include <TNaming_Builder.hxx>
-#include <TNaming_Iterator.hxx>
-#include <TNaming_NamedShape.hxx>
-#include <TNaming_Tool.hxx>
-#include <TopoDS_Shape.hxx>
-#include <TopoDS_Compound.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QFileDialog>
-#include <QGridLayout>
-#include <QEvent>
-#include <QHeaderView>
-#include <QIcon>
-#include <QMap>
-#include <QPainter>
-#include <QStyledItemDelegate>
-#include <QTableView>
-#include <QVariant>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-static const int COLUMN_EXPORT_WIDTH = 20;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowserPane_TNamingNamedShape::DFBrowserPane_TNamingNamedShape()
-    : DFBrowserPane_AttributePane(),
-      myEvolutionTableView(0),
-      myHelperExport(0)
-{
-  getPaneModel()->SetColumnCount(5);
-
-  myEvolutionPaneModel = new DFBrowserPane_AttributePaneModel();
-  myEvolutionPaneModel->SetColumnCount(10);
-  QList<int> anItalicColumns;
-  anItalicColumns << 1 << 5;
-  myEvolutionPaneModel->SetItalicColumns(anItalicColumns);
-  QItemSelectionModel* aSelectionModel = new QItemSelectionModel(myEvolutionPaneModel);
-  mySelectionModels.push_back(aSelectionModel);
-}
-
-// =======================================================================
-// function : CreateWidget
-// purpose :
-// =======================================================================
-QWidget* DFBrowserPane_TNamingNamedShape::CreateWidget(QWidget* theParent)
-{
-  QWidget* aMainWidget = new QWidget(theParent);
-  aMainWidget->setVisible(false);
-
-  myTableView = new DFBrowserPane_TableView(aMainWidget);
-  myTableView->GetTableView()->verticalHeader()->setVisible(false);
-  myTableView->SetModel(myPaneModel);
-  QTableView* aTableView = myTableView->GetTableView();
-  aTableView->setSelectionBehavior(QAbstractItemView::SelectItems);
-  std::list<QItemSelectionModel*>::const_iterator aSelectionModelsIt = mySelectionModels.begin();
-  aTableView->setSelectionModel(*aSelectionModelsIt);
-  aSelectionModelsIt++;
-
-  aTableView->horizontalHeader()->setStretchLastSection(false);
-  aTableView->setColumnWidth(3, COLUMN_EXPORT_WIDTH);
-  aTableView->setColumnWidth(4, COLUMN_EXPORT_WIDTH);
-  DFBrowserPane_ItemDelegateButton* anItemDelegate =
-    new DFBrowserPane_ItemDelegateButton(aTableView, ":/icons/export_shape.png");
-  QList<int> aRows;
-  aRows << 0 << 1;
-  anItemDelegate->SetFreeRows(aRows);
-  QObject::connect(anItemDelegate,
-                   SIGNAL(buttonPressed(const QModelIndex&)),
-                   &myHelperExport,
-                   SLOT(OnButtonPressed(const QModelIndex&)));
-  aTableView->setItemDelegateForColumn(3, anItemDelegate);
-
-  DFBrowserPane_ItemDelegateButton* anItemDelegate2 =
-    new DFBrowserPane_ItemDelegateButton(aTableView, ":/icons/folder_export.png");
-  anItemDelegate2->SetFreeRows(aRows);
-  aTableView->setItemDelegateForColumn(4, anItemDelegate2);
-
-  myEvolutionTableView = new DFBrowserPane_TableView(aMainWidget);
-  myEvolutionTableView->SetModel(myEvolutionPaneModel);
-  aTableView = myEvolutionTableView->GetTableView();
-
-  aTableView->setSelectionModel(*aSelectionModelsIt);
-
-  aTableView->horizontalHeader()->setStretchLastSection(false);
-  aTableView->setColumnWidth(4, COLUMN_EXPORT_WIDTH);
-  aTableView->setColumnWidth(9, COLUMN_EXPORT_WIDTH);
-
-  anItemDelegate = new DFBrowserPane_ItemDelegateButton(myEvolutionTableView->GetTableView(),
-                                                        ":/icons/export_shape.png");
-  QObject::connect(anItemDelegate,
-                   SIGNAL(buttonPressed(const QModelIndex&)),
-                   &myHelperExport,
-                   SLOT(OnButtonPressed(const QModelIndex&)));
-  myEvolutionTableView->GetTableView()->setItemDelegateForColumn(4, anItemDelegate);
-
-  anItemDelegate = new DFBrowserPane_ItemDelegateButton(myEvolutionTableView->GetTableView(),
-                                                        ":/icons/export_shape.png");
-  QObject::connect(anItemDelegate,
-                   SIGNAL(buttonPressed(const QModelIndex&)),
-                   &myHelperExport,
-                   SLOT(OnButtonPressed(const QModelIndex&)));
-  myEvolutionTableView->GetTableView()->setItemDelegateForColumn(9, anItemDelegate);
-
-  QGridLayout* aLay = new QGridLayout(aMainWidget);
-  aLay->setContentsMargins(0, 0, 0, 0);
-  aLay->addWidget(myTableView, 0, 0);
-  aLay->addWidget(myEvolutionTableView, 1, 0);
-
-  return aMainWidget;
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowserPane_TNamingNamedShape::Init(const Handle(TDF_Attribute)& theAttribute)
-{
-  Handle(TNaming_NamedShape) aShapeAttr = Handle(TNaming_NamedShape)::DownCast(theAttribute);
-  myHelperExport.Clear();
-
-  QList<QVariant> aValues;
-  aValues << "Version" << QString::number(aShapeAttr->Version()) << "" << "" << "";
-  aValues << "Evolution"
-          << DFBrowserPane_Tools::ToName(DB_NS_TYPE, aShapeAttr->Evolution()).ToCString() << ""
-          << "" << "";
-
-  NCollection_List<TopoDS_Shape> aShapes;
-  QList<int>                     aFreeRows;
-  aFreeRows << 0 << 1;
-
-  TopoDS_Shape            aShape = aShapeAttr->Get();
-  TCollection_AsciiString aShapeInfo =
-    !aShape.IsNull() ? Standard_Dump::GetPointerInfo(aShape.TShape()) : "";
-  aValues << "Shape" << aShapeInfo.ToCString() << DFBrowserPane_Tools::ShapeTypeInfo(aShape) << ""
-          << "";
-  aShapes.Append(aShape);
-  if (aShape.IsNull())
-    aFreeRows << 2;
-
-  TopoDS_Shape            aCurrentShape = TNaming_Tool::CurrentShape(aShapeAttr);
-  TCollection_AsciiString aCurrentShapeInfo =
-    !aCurrentShape.IsNull() ? Standard_Dump::GetPointerInfo(aCurrentShape.TShape()) : "";
-  aValues << "CurrentShape" << aCurrentShapeInfo.ToCString()
-          << DFBrowserPane_Tools::ShapeTypeInfo(aCurrentShape) << "" << "";
-  aShapes.Append(aCurrentShape);
-  if (aCurrentShape.IsNull())
-    aFreeRows << 3;
-
-  TopoDS_Shape            anOriginalShape = TNaming_Tool::OriginalShape(aShapeAttr);
-  TCollection_AsciiString anOriginalShapeInfo =
-    !anOriginalShape.IsNull() ? Standard_Dump::GetPointerInfo(anOriginalShape.TShape()) : "";
-  aValues << "OriginalShape" << anOriginalShapeInfo.ToCString()
-          << DFBrowserPane_Tools::ShapeTypeInfo(anOriginalShape) << "" << "";
-  aShapes.Append(anOriginalShape);
-  if (anOriginalShape.IsNull())
-    aFreeRows << 4;
-
-  DFBrowserPane_AttributePaneModel* aModel = getPaneModel();
-  aModel->Init(aValues);
-  if (myTableView)
-  {
-    QTableView* aTableView = myTableView->GetTableView();
-    for (int i = 0; i < aModel->columnCount(); i++)
-    {
-      if (i == 3 || i == 4)
-        dynamic_cast<DFBrowserPane_ItemDelegateButton*>(aTableView->itemDelegateForColumn(3))
-          ->SetFreeRows(aFreeRows);
-      else
-        aTableView->resizeColumnToContents(i);
-    }
-  }
-  QModelIndexList anIndices;
-  int             aRowId = 2;
-  for (NCollection_List<TopoDS_Shape>::Iterator aShapeIt(aShapes); aShapeIt.More();
-       aShapeIt.Next(), aRowId++)
-  {
-    if (aShapeIt.Value().IsNull())
-      continue;
-    anIndices.clear();
-    anIndices << aModel->index(aRowId, 1) << aModel->index(aRowId, 2) << aModel->index(aRowId, 3)
-              << aModel->index(aRowId, 4);
-    myHelperExport.AddShape(aShapeIt.Value(), anIndices);
-  }
-
-  // evolution table view filling
-  aValues.clear();
-  aRowId            = 0;
-  bool aHasModified = false;
-  for (TNaming_Iterator aShapeAttrIt(aShapeAttr); aShapeAttrIt.More();
-       aShapeAttrIt.Next(), aRowId++)
-  {
-    const TopoDS_Shape& anOldShape = aShapeAttrIt.OldShape();
-    const TopoDS_Shape& aNewShape  = aShapeAttrIt.NewShape();
-
-    Handle(TNaming_NamedShape) anOldAttr =
-      TNaming_Tool::NamedShape(anOldShape, aShapeAttr->Label());
-    aValues << DFBrowserPane_Tools::ToName(DB_NS_TYPE, aShapeAttrIt.Evolution()).ToCString();
-    aHasModified = aHasModified | aShapeAttrIt.IsModification();
-
-    aValues << "New:";
-
-    QString aLabelInfo;
-    if (!anOldAttr.IsNull())
-    {
-      TDF_Label anOldLabel = anOldAttr->Label();
-      if (!anOldLabel.IsNull())
-        aLabelInfo = QString(DFBrowserPane_Tools::GetEntry(anOldLabel).ToCString());
-    }
-    if (!aNewShape.IsNull())
-      aValues << Standard_Dump::GetPointerInfo(aNewShape.TShape()->This()).ToCString()
-              << DFBrowserPane_Tools::ShapeTypeInfo(aNewShape) << "";
-    else
-      aValues << "-" << "-" << "";
-    aValues << "Old:";
-    if (!anOldShape.IsNull())
-      aValues << Standard_Dump::GetPointerInfo(anOldShape.TShape()->This()).ToCString()
-              << DFBrowserPane_Tools::ShapeTypeInfo(anOldShape) << aLabelInfo << "";
-    else
-      aValues << "-" << "-" << "-" << "";
-  }
-
-  if (myEvolutionTableView)
-  {
-    myEvolutionTableView->setVisible(aValues.size() > 0);
-    myEvolutionTableView->GetTableView()->setColumnHidden(1, !aHasModified);
-    myEvolutionPaneModel->Init(aValues);
-
-    aRowId = 0;
-    for (TNaming_Iterator aShapeAttrIt(aShapeAttr); aShapeAttrIt.More();
-         aShapeAttrIt.Next(), aRowId++)
-    {
-      const TopoDS_Shape& anOldShape = aShapeAttrIt.OldShape();
-      const TopoDS_Shape& aNewShape  = aShapeAttrIt.NewShape();
-
-      if (!aNewShape.IsNull())
-      {
-        anIndices.clear();
-        anIndices << myEvolutionPaneModel->index(aRowId, 2)
-                  << myEvolutionPaneModel->index(aRowId, 3)
-                  << myEvolutionPaneModel->index(aRowId, 4);
-        myHelperExport.AddShape(aNewShape, anIndices);
-      }
-      if (!anOldShape.IsNull())
-      {
-        anIndices.clear();
-        anIndices << myEvolutionPaneModel->index(aRowId, 6)
-                  << myEvolutionPaneModel->index(aRowId, 7)
-                  << myEvolutionPaneModel->index(aRowId, 9);
-        myHelperExport.AddShape(anOldShape, anIndices);
-      }
-    }
-    for (int i = 0; i < myEvolutionPaneModel->columnCount(); i++)
-    {
-      if (i == 5 || i == 10)
-        continue;
-      myEvolutionTableView->GetTableView()->resizeColumnToContents(i);
-    }
-  }
-}
-
-// =======================================================================
-// function : GetValues
-// purpose :
-// =======================================================================
-void DFBrowserPane_TNamingNamedShape::GetValues(const Handle(TDF_Attribute)&, QList<QVariant>&) {}
-
-// =======================================================================
-// function : GetAttributeInfo
-// purpose :
-// =======================================================================
-QVariant DFBrowserPane_TNamingNamedShape::GetAttributeInfo(
-  const Handle(TDF_Attribute)& theAttribute,
-  int                          theRole,
-  int                          theColumnId)
-{
-  if (theColumnId != 0)
-    return DFBrowserPane_AttributePane::GetAttributeInfo(theAttribute, theRole, theColumnId);
-
-  switch (theRole)
-  {
-    case Qt::DecorationRole:
-      return QIcon(":/icons/named_shape.png");
-    case DFBrowserPane_ItemRole_Decoration_40x40:
-      return QIcon(":/icons/named_shape_40x40.png");
-    case Qt::ForegroundRole: {
-      TopoDS_Shape               aShape;
-      Handle(TNaming_NamedShape) anAttribute = Handle(TNaming_NamedShape)::DownCast(theAttribute);
-      if (!anAttribute.IsNull())
-        aShape = anAttribute->Get();
-      if (aShape.IsNull())
-        return QColor(Qt::black);
-
-      return QColor(aShape.Orientation() == TopAbs_FORWARD    ? Qt::darkGray
-                    : aShape.Orientation() == TopAbs_REVERSED ? QColor(Qt::gray)
-                                                              : Qt::black);
-    }
-    default:
-      break;
-  }
-  return DFBrowserPane_AttributePane::GetAttributeInfo(theAttribute, theRole, theColumnId);
-}
-
-// =======================================================================
-// function : GetShortAttributeInfo
-// purpose :
-// =======================================================================
-void DFBrowserPane_TNamingNamedShape::GetShortAttributeInfo(
-  const Handle(TDF_Attribute)& theAttribute,
-  QList<QVariant>&             theValues)
-{
-  Handle(TNaming_NamedShape) aShapeAttribute = Handle(TNaming_NamedShape)::DownCast(theAttribute);
-
-  if (aShapeAttribute->Get().IsNull())
-    theValues.append("EMPTY SHAPE");
-  else
-  {
-    theValues.append(
-      QString("%1 : %2")
-        .arg(DFBrowserPane_Tools::ToName(DB_SHAPE_TYPE, aShapeAttribute->Get().ShapeType())
-               .ToCString())
-        .arg(DFBrowserPane_Tools::ToName(DB_NS_TYPE, aShapeAttribute->Evolution()).ToCString()));
-  }
-}
-
-// =======================================================================
-// function : GetSelectionKind
-// purpose :
-// =======================================================================
-int DFBrowserPane_TNamingNamedShape::GetSelectionKind(QItemSelectionModel* theModel)
-{
-  int aKind = DFBrowserPane_AttributePaneAPI::GetSelectionKind(theModel);
-
-  QTableView* aTableView = myTableView->GetTableView();
-  if (aTableView->selectionModel() != theModel)
-    return aKind;
-
-  QModelIndexList aSelectedIndices = theModel->selectedIndexes();
-  if (aSelectedIndices.size() != 1)
-    return aKind;
-
-  QModelIndex aSelectedIndex = aSelectedIndices.first();
-  int         aRow           = aSelectedIndex.row();
-  if (aRow == 0 || aRow == 1)
-    return aKind;
-
-  if (aSelectedIndex.column() == 4)
-    aKind = DFBrowserPane_SelectionKind_ExportToShapeViewer;
-
-  return aKind;
-}
-
-// =======================================================================
-// function : GetSelectionParameters
-// purpose :
-// =======================================================================
-void DFBrowserPane_TNamingNamedShape::GetSelectionParameters(
-  QItemSelectionModel*                          theModel,
-  NCollection_List<Handle(Standard_Transient)>& theParameters,
-  NCollection_List<TCollection_AsciiString>&    theItemNames)
-{
-  QTableView* aTableView = myTableView->GetTableView();
-  if (aTableView->selectionModel() != theModel)
-    return;
-
-  QModelIndexList aSelectedIndices = theModel->selectedIndexes();
-  if (aSelectedIndices.size() != 1)
-    return;
-
-  QModelIndex aSelectedIndex = aSelectedIndices.first();
-  if (aSelectedIndex.column() != 4)
-    return;
-
-  const TopoDS_Shape& aShape = myHelperExport.Shape(aSelectedIndex);
-  if (aShape.IsNull())
-    return;
-  theParameters.Append(aShape.TShape());
-  theItemNames.Append(TInspectorAPI_PluginParameters::ParametersToString(aShape));
-}
-
-// =======================================================================
-// function : GetReferences
-// purpose :
-// =======================================================================
-void DFBrowserPane_TNamingNamedShape::GetReferences(const Handle(TDF_Attribute)& theAttribute,
-                                                    NCollection_List<TDF_Label>& theRefLabels,
-                                                    Handle(Standard_Transient)&  theRefPresentation)
-{
-  if (!myEvolutionTableView)
-    return;
-  QStringList aSelectedEntries =
-    DFBrowserPane_TableView::GetSelectedColumnValues(myEvolutionTableView->GetTableView(), 9);
-
-  Handle(TNaming_NamedShape) aShapeAttr = Handle(TNaming_NamedShape)::DownCast(theAttribute);
-  for (TNaming_Iterator aShapeAttrIt(aShapeAttr); aShapeAttrIt.More(); aShapeAttrIt.Next())
-  {
-    const TopoDS_Shape& anOldShape = aShapeAttrIt.OldShape();
-
-    Handle(TNaming_NamedShape) anOldAttr =
-      TNaming_Tool::NamedShape(anOldShape, aShapeAttr->Label());
-    QString aLabelInfo;
-    if (!anOldAttr.IsNull())
-    {
-      TDF_Label anOldLabel = anOldAttr->Label();
-      if (!anOldLabel.IsNull())
-      {
-        if (aSelectedEntries.contains(DFBrowserPane_Tools::GetEntry(anOldLabel).ToCString()))
-          theRefLabels.Append(anOldLabel);
-      }
-    }
-  }
-  TopoDS_Shape aShape = getSelectedShapes();
-  if (!aShape.IsNull())
-  {
-    Handle(AIS_Shape) aPresentation = new AIS_Shape(aShape);
-    aPresentation->Attributes()->SetAutoTriangulation(Standard_False);
-    theRefPresentation = aPresentation;
-  }
-}
-
-// =======================================================================
-// function : GetPresentation
-// purpose :
-// =======================================================================
-Handle(Standard_Transient) DFBrowserPane_TNamingNamedShape::GetPresentation(
-  const Handle(TDF_Attribute)& theAttribute)
-{
-  Handle(Standard_Transient) aPresentation;
-  Handle(TNaming_NamedShape) aShapeAttr = Handle(TNaming_NamedShape)::DownCast(theAttribute);
-  if (aShapeAttr.IsNull())
-    return aPresentation;
-
-  TopoDS_Shape aShape = aShapeAttr->Get();
-  if (aShape.IsNull())
-    return aPresentation;
-
-  aPresentation = new AIS_Shape(aShape);
-  return aPresentation;
-}
-
-// =======================================================================
-// function : getSelectedShapes
-// purpose :
-// =======================================================================
-TopoDS_Shape DFBrowserPane_TNamingNamedShape::getSelectedShapes()
-{
-  TopoDS_Shape aShape;
-
-  if (!myTableView && !myEvolutionTableView)
-    return aShape;
-
-  // table view selected shapes
-  QItemSelectionModel* aTableViewSelModel = myTableView->GetTableView()->selectionModel();
-  QModelIndexList      anIndices          = aTableViewSelModel->selectedIndexes();
-
-  BRep_Builder    aBuilder;
-  TopoDS_Compound aComp;
-  aBuilder.MakeCompound(aComp);
-  bool aHasShapes = false;
-  for (QModelIndexList::const_iterator anIt = anIndices.begin(), aLast = anIndices.end();
-       anIt != aLast;
-       anIt++)
-  {
-    QModelIndex anIndex = *anIt;
-    if (!myHelperExport.HasShape(anIndex))
-      continue;
-    aBuilder.Add(aComp, myHelperExport.Shape(anIndex));
-    aHasShapes = true;
-  }
-
-  // evolution table selected shapes
-  aTableViewSelModel = myEvolutionTableView->GetTableView()->selectionModel();
-  anIndices.clear();
-  anIndices = aTableViewSelModel->selectedIndexes();
-  for (QModelIndexList::const_iterator anIt = anIndices.begin(), aLast = anIndices.end();
-       anIt != aLast;
-       anIt++)
-  {
-    QModelIndex anIndex = *anIt;
-    if (!myHelperExport.HasShape(anIndex))
-      continue;
-    aBuilder.Add(aComp, myHelperExport.Shape(anIndex));
-    aHasShapes = true;
-  }
-  if (aHasShapes)
-    aShape = aComp;
-  return aShape;
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_TNamingNamedShape.hxx b/tools/DFBrowserPane/DFBrowserPane_TNamingNamedShape.hxx
deleted file mode 100644
index 2023152e51..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TNamingNamedShape.hxx
+++ /dev/null
@@ -1,116 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_TNamingNamedShape_H
-#define DFBrowserPane_TNamingNamedShape_H
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-#include <inspector/DFBrowserPane_HelperExport.hxx>
-
-#include <Standard.hxx>
-#include <TDF_Attribute.hxx>
-#include <TNaming_NamedShape.hxx>
-#include <TopoDS_Shape.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QMap>
-#include <QModelIndex>
-#include <Standard_WarningsRestore.hxx>
-
-class DFBrowserPane_TableView;
-class DFBrowserPane_AttributePaneModel;
-
-//! \class DFBrowserPane_TNamingNamedShape
-//! \brief The class to manipulate of TNaming_NamedShape attribute
-class DFBrowserPane_TNamingNamedShape : public DFBrowserPane_AttributePane
-{
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowserPane_TNamingNamedShape();
-
-  //! Destructor
-  Standard_EXPORT virtual ~DFBrowserPane_TNamingNamedShape() {}
-
-  //! Creates table view and call create widget of array table helper
-  //! \param theParent a parent widget
-  //! \return a new widget
-  Standard_EXPORT virtual QWidget* CreateWidget(QWidget* theParent) Standard_OVERRIDE;
-
-  //! Initializes the content of the pane by the parameter attribute
-  //! \param theAttribute an OCAF attribute
-  Standard_EXPORT virtual void Init(const Handle(TDF_Attribute)& theAttribute) Standard_OVERRIDE;
-
-  //! Returns information for the given attribute
-  //! \param theAttribute a current attribute
-  //! \param theRole a role of information, used by tree model (e.g. DisplayRole, icon, background
-  //! and so on) \param theColumnId a tree model column \return value, interpreted by tree model
-  //! depending on the role
-  Standard_EXPORT virtual QVariant GetAttributeInfo(const Handle(TDF_Attribute)& theAttribute,
-                                                    int                          theRole,
-                                                    int theColumnId) Standard_OVERRIDE;
-
-  //! Returns brief attribute information. In general case, it returns GetValues() result.
-  //! \param theAttribute a current attribute
-  //! \param theValues a result list of values
-  Standard_EXPORT virtual void GetShortAttributeInfo(const Handle(TDF_Attribute)& theAttribute,
-                                                     QList<QVariant>& theValues) Standard_OVERRIDE;
-
-  //! Returns selection kind for the model, it may be General selection or Additional selection for
-  //! example \param theModel one of selection models provided by this pane \return selection kind
-  Standard_EXPORT virtual int GetSelectionKind(QItemSelectionModel* theModel) Standard_OVERRIDE;
-
-  //! Returns selection parameters, that may be useful for communicate between tools
-  //! \param theModel one of selection models provided by this pane
-  //! \theParameters a container of parameters, might be extended depending on the pane state(e.g.
-  //! selection) \theItemNames names to be selected for each selection parameter
-  Standard_EXPORT virtual void GetSelectionParameters(
-    QItemSelectionModel*                          theModel,
-    NCollection_List<Handle(Standard_Transient)>& theParameters,
-    NCollection_List<TCollection_AsciiString>&    theItemNames) Standard_OVERRIDE;
-
-  //! Returns container of Label references to the attribute
-  //! \param theAttribute a current attribute
-  //! \param theRefLabels a container of label references, to be selected in tree view
-  //! \param theRefPresentation handle of presentation for the references, to be visualized
-  Standard_EXPORT virtual void GetReferences(const Handle(TDF_Attribute)& theAttribute,
-                                             NCollection_List<TDF_Label>& theRefLabels,
-                                             Handle(Standard_Transient)&  theRefPresentation)
-    Standard_OVERRIDE;
-
-  //! Returns presentation of the attribute to be visualized in the view
-  //! \param theAttribute a current attribute
-  //! \return handle of presentation if the attribute has, to be visualized
-  Standard_EXPORT virtual Handle(Standard_Transient) GetPresentation(
-    const Handle(TDF_Attribute)& theAttribute) Standard_OVERRIDE;
-
-  //! Returns values to fill the table view model
-  //! \param theAttribute a current attribute
-  //! \param theValues a container of values
-  Standard_EXPORT virtual void GetValues(const Handle(TDF_Attribute)& theAttribute,
-                                         QList<QVariant>&             theValues) Standard_OVERRIDE;
-
-protected:
-  //! Returns a compound of selected shapes in both, values and evolution tables
-  //! \return shape or NULL
-  TopoDS_Shape getSelectedShapes();
-
-private:
-  DFBrowserPane_TableView*          myEvolutionTableView; //!< table view for evolution shapes
-  DFBrowserPane_AttributePaneModel* myEvolutionPaneModel; //!< view model for evolution shapes
-
-  DFBrowserPane_HelperExport myHelperExport; //!<! helper to perform export to BREP
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_TNamingNaming.cxx b/tools/DFBrowserPane/DFBrowserPane_TNamingNaming.cxx
deleted file mode 100644
index 04d15d6de7..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TNamingNaming.cxx
+++ /dev/null
@@ -1,221 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_TNamingNaming.hxx>
-
-#include <AIS_Shape.hxx>
-#include <BRep_Builder.hxx>
-
-#include <inspector/DFBrowserPane_AttributePaneModel.hxx>
-#include <inspector/DFBrowserPane_TableView.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <TDF_Label.hxx>
-#include <TNaming_ListIteratorOfListOfNamedShape.hxx>
-#include <TNaming_Name.hxx>
-#include <TNaming_Naming.hxx>
-#include <TNaming_NamedShape.hxx>
-
-#include <TopoDS_Compound.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QGridLayout>
-#include <QHeaderView>
-#include <QTableView>
-#include <QVariant>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowserPane_TNamingNaming::DFBrowserPane_TNamingNaming()
-    : DFBrowserPane_AttributePane(),
-      myNamingView(0)
-{
-  myNamingModel = new DFBrowserPane_AttributePaneModel();
-  myNamingModel->SetColumnCount(2);
-}
-
-// =======================================================================
-// function : CreateWidget
-// purpose :
-// =======================================================================
-QWidget* DFBrowserPane_TNamingNaming::CreateWidget(QWidget* theParent)
-{
-  QWidget* aMainWidget = new QWidget(theParent);
-
-  myNamingView = new DFBrowserPane_TableView(aMainWidget);
-  myNamingView->GetTableView()->verticalHeader()->setVisible(false);
-  myNamingView->GetTableView()->horizontalHeader()->setVisible(false);
-  myNamingView->SetModel(myNamingModel);
-
-  myTableView = new DFBrowserPane_TableView(aMainWidget);
-  myTableView->SetModel(getPaneModel());
-  myTableView->GetTableView()->setSelectionModel(mySelectionModels.front());
-
-  QGridLayout* aLay = new QGridLayout(aMainWidget);
-  aLay->setContentsMargins(0, 0, 0, 0);
-  aLay->addWidget(myNamingView);
-  aLay->addWidget(myTableView);
-  aLay->setRowStretch(1, 1);
-
-  return aMainWidget;
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void DFBrowserPane_TNamingNaming::Init(const Handle(TDF_Attribute)& theAttribute)
-{
-  QList<QVariant> aValues;
-  GetValues(theAttribute, aValues);
-
-  QList<QVariant> aNamingValues;
-  for (int anValueId = 0; anValueId < 14; anValueId++)
-    aNamingValues.append(aValues[anValueId]);
-  myNamingModel->Init(aNamingValues);
-  if (myNamingView)
-    myNamingView->GetTableView()->resizeColumnToContents(0);
-
-  QList<QVariant> aNamedShapesValues;
-  for (int anValueId = 14, aCount = aValues.size(); anValueId < aCount; anValueId++)
-    aNamedShapesValues.append(aValues[anValueId]);
-
-  getPaneModel()->Init(aNamedShapesValues);
-  if (myTableView)
-    myTableView->GetTableView()->resizeColumnToContents(0);
-}
-
-// =======================================================================
-// function : GetValues
-// purpose :
-// =======================================================================
-void DFBrowserPane_TNamingNaming::GetValues(const Handle(TDF_Attribute)& theAttribute,
-                                            QList<QVariant>&             theValues)
-{
-  Handle(TNaming_Naming) anAttribute = Handle(TNaming_Naming)::DownCast(theAttribute);
-  if (anAttribute.IsNull())
-    return;
-
-  TNaming_Name aNamingName = anAttribute->GetName();
-
-  // values from 0-13
-  theValues.append("Type");
-  theValues.append(DFBrowserPane_Tools::ToName(DB_NAMING_TYPE, aNamingName.Type()).ToCString());
-  theValues.append("ShapeType");
-  theValues.append(DFBrowserPane_Tools::ToName(DB_SHAPE_TYPE, aNamingName.ShapeType()).ToCString());
-  Handle(TNaming_NamedShape) aStopShape = aNamingName.StopNamedShape();
-  theValues.append("StopNamedShape");
-  theValues.append(
-    !aStopShape.IsNull() ? DFBrowserPane_Tools::GetEntry(aStopShape->Label()).ToCString() : "");
-  theValues.append("Index");
-  theValues.append(QString::number(aNamingName.Index()));
-  TopoDS_Shape aShape = aNamingName.Shape();
-  theValues.append("Shape(TShape)");
-  theValues.append(
-    !aShape.IsNull() ? Standard_Dump::GetPointerInfo(aShape.TShape()->This()).ToCString() : "");
-  TDF_Label aContextLabel = aNamingName.ContextLabel();
-  theValues.append("ContextLabel");
-  theValues.append(
-    !aContextLabel.IsNull() ? DFBrowserPane_Tools::GetEntry(aContextLabel).ToCString() : "");
-  theValues.append("Orientation");
-  theValues.append(
-    DFBrowserPane_Tools::ToName(DB_ORIENTATION_TYPE, aNamingName.Orientation()).ToCString());
-
-  // values from 14 till count of arguments
-  int anArgIndex = 1;
-  for (TNaming_ListIteratorOfListOfNamedShape anArgIt(aNamingName.Arguments()); anArgIt.More();
-       anArgIt.Next(), anArgIndex++)
-  {
-    theValues << "Argument";
-    theValues.append(DFBrowserPane_Tools::GetEntry(anArgIt.Value()->Label()).ToCString());
-  }
-}
-
-// =======================================================================
-// function : GetPresentation
-// purpose :
-// =======================================================================
-Handle(Standard_Transient) DFBrowserPane_TNamingNaming::GetPresentation(
-  const Handle(TDF_Attribute)& theAttribute)
-{
-  Handle(Standard_Transient) aPresentation;
-  Handle(TNaming_Naming)     anAttribute = Handle(TNaming_Naming)::DownCast(theAttribute);
-  if (anAttribute.IsNull())
-    return aPresentation;
-
-  DFBrowserPane_TableView* aTableView = getTableView();
-  if (!aTableView) // the pane is not visualized yet
-    return aPresentation;
-
-  QStringList aSelectedEntries =
-    DFBrowserPane_TableView::GetSelectedColumnValues(aTableView->GetTableView(), 1);
-  TNaming_Name aNamingName = anAttribute->GetName();
-
-  BRep_Builder    aBuilder;
-  TopoDS_Compound aComp;
-  aBuilder.MakeCompound(aComp);
-  bool aHasShapes = false;
-  for (TNaming_ListIteratorOfListOfNamedShape aNamingIt(aNamingName.Arguments()); aNamingIt.More();
-       aNamingIt.Next())
-  {
-    Handle(TNaming_NamedShape) aShapeAttr = aNamingIt.Value();
-    if (aShapeAttr.IsNull())
-      continue;
-    TDF_Label aLabel = aShapeAttr->Label();
-    if (!aSelectedEntries.contains(DFBrowserPane_Tools::GetEntry(aLabel).ToCString()))
-      continue;
-    aBuilder.Add(aComp, aShapeAttr->Get());
-    aHasShapes = true;
-  }
-  TopoDS_Shape aShape = aComp;
-  if (!aShape.IsNull() && aHasShapes)
-  {
-    Handle(AIS_Shape) aPrs = new AIS_Shape(aShape);
-    aPrs->Attributes()->SetAutoTriangulation(Standard_False);
-    aPresentation = aPrs;
-  }
-  return aPresentation;
-}
-
-// =======================================================================
-// function : GetReferences
-// purpose :
-// =======================================================================
-void DFBrowserPane_TNamingNaming::GetReferences(const Handle(TDF_Attribute)& theAttribute,
-                                                NCollection_List<TDF_Label>& theRefLabels,
-                                                Handle(Standard_Transient)&)
-{
-  Handle(TNaming_Naming) anAttribute = Handle(TNaming_Naming)::DownCast(theAttribute);
-  if (anAttribute.IsNull())
-    return;
-
-  QStringList aSelectedEntries =
-    DFBrowserPane_TableView::GetSelectedColumnValues(getTableView()->GetTableView(), 1);
-  for (TNaming_ListIteratorOfListOfNamedShape aNamingIt(anAttribute->GetName().Arguments());
-       aNamingIt.More();
-       aNamingIt.Next())
-  {
-    Handle(TNaming_NamedShape) aShapeAttr = aNamingIt.Value();
-    if (aShapeAttr.IsNull())
-      continue;
-    TDF_Label aLabel = aShapeAttr->Label();
-    if (aSelectedEntries.contains(DFBrowserPane_Tools::GetEntry(aLabel).ToCString()))
-      theRefLabels.Append(aLabel);
-  }
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_TNamingNaming.hxx b/tools/DFBrowserPane/DFBrowserPane_TNamingNaming.hxx
deleted file mode 100644
index a86ed5b45e..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TNamingNaming.hxx
+++ /dev/null
@@ -1,74 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_TNamingNaming_H
-#define DFBrowserPane_TNamingNaming_H
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-
-#include <Standard.hxx>
-
-class DFBrowserPane_AttributePaneModel;
-class DFBrowserPane_TableView;
-
-class QWidget;
-
-//! \class DFBrowserPane_TNamingNaming
-//! \brief The class to manipulate of TNaming_Naming attribute
-class DFBrowserPane_TNamingNaming : public DFBrowserPane_AttributePane
-{
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowserPane_TNamingNaming();
-
-  //! Destructor
-  virtual ~DFBrowserPane_TNamingNaming() {}
-
-  //! Creates table view and call create widget of array table helper
-  //! \param theParent a parent widget
-  //! \return a new widget
-  Standard_EXPORT virtual QWidget* CreateWidget(QWidget* theParent) Standard_OVERRIDE;
-
-  //! Initializes the content of the pane by the parameter attribute
-  //! \param theAttribute an OCAF attribute
-  Standard_EXPORT virtual void Init(const Handle(TDF_Attribute)& theAttribute) Standard_OVERRIDE;
-
-  //! Returns values to fill the table view model
-  //! \param theAttribute a current attribute
-  //! \param theValues a container of values
-  Standard_EXPORT virtual void GetValues(const Handle(TDF_Attribute)& theAttribute,
-                                         QList<QVariant>&             theValues) Standard_OVERRIDE;
-
-  //! Returns presentation of the attribute to be visualized in the view
-  //! \param theAttribute a current attribute
-  //! \return handle of presentation if the attribute has, to be visualized
-  Standard_EXPORT virtual Handle(Standard_Transient) GetPresentation(
-    const Handle(TDF_Attribute)& theAttribute) Standard_OVERRIDE;
-
-  //! Returns container of Label references to the attribute
-  //! \param theAttribute a current attribute
-  //! \param theRefLabels a container of label references, to be selected in tree view
-  //! \param theRefPresentation handle of presentation for the references, to be visualized
-  Standard_EXPORT virtual void GetReferences(const Handle(TDF_Attribute)& theAttribute,
-                                             NCollection_List<TDF_Label>& theRefLabels,
-                                             Handle(Standard_Transient)&  theRefPresentation)
-    Standard_OVERRIDE;
-
-private:
-  DFBrowserPane_TableView*          myNamingView;  //!< naming table view
-  DFBrowserPane_AttributePaneModel* myNamingModel; //!< naming parameters model
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.cxx b/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.cxx
deleted file mode 100644
index fa7ec8bc8d..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.cxx
+++ /dev/null
@@ -1,159 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_TNamingUsedShapes.hxx>
-
-#include <AIS_Shape.hxx>
-#include <BRep_Builder.hxx>
-
-#include <inspector/DFBrowserPane_AttributePaneModel.hxx>
-#include <inspector/DFBrowserPane_AttributePaneSelector.hxx>
-#include <inspector/DFBrowserPane_TableView.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <TDF_Label.hxx>
-
-#include <TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape.hxx>
-#include <TNaming_NamedShape.hxx>
-#include <TNaming_PtrRefShape.hxx>
-#include <TNaming_RefShape.hxx>
-#include <TNaming_UsedShapes.hxx>
-
-#include <TopoDS_Compound.hxx>
-#include <TopoDS_Shape.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QItemSelectionModel>
-#include <QTableView>
-#include <QVariant>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-const int COLUMN_TYPE_WIDTH      = 70;
-const int COLUMN_POINTER_WIDTH   = 90;
-const int COLUMN_REFERENCE_WIDTH = 90;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowserPane_TNamingUsedShapes::DFBrowserPane_TNamingUsedShapes()
-    : DFBrowserPane_AttributePane()
-{
-  getPaneModel()->SetColumnCount(4);
-  getPaneModel()->SetItalicColumns(QList<int>());
-
-  QList<QVariant> aValues;
-  aValues << "ShapeType" << "TShape" << "Label" << "RefShape";
-  getPaneModel()->SetHeaderValues(aValues, Qt::Horizontal);
-}
-
-// =======================================================================
-// function : GetValues
-// purpose :
-// =======================================================================
-void DFBrowserPane_TNamingUsedShapes::GetValues(const Handle(TDF_Attribute)& theAttribute,
-                                                QList<QVariant>&             theValues)
-{
-  Handle(TNaming_UsedShapes) anAttribute = Handle(TNaming_UsedShapes)::DownCast(theAttribute);
-  if (anAttribute.IsNull())
-    return;
-
-  std::list<TCollection_AsciiString> aReferences;
-  TNaming_DataMapOfShapePtrRefShape& aMap = anAttribute->Map();
-  for (TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape aRefIt(aMap); aRefIt.More();
-       aRefIt.Next())
-  {
-    TopoDS_Shape        aShape       = aRefIt.Key();
-    TNaming_PtrRefShape aPtrRefShape = aRefIt.Value();
-
-    if (!aShape.IsNull())
-    {
-      theValues.append(DFBrowserPane_Tools::ToName(DB_SHAPE_TYPE, aShape.ShapeType()).ToCString());
-      theValues.append(Standard_Dump::GetPointerInfo(aShape.TShape()->This()).ToCString());
-    }
-    else
-      theValues << "EMPTY SHAPE" << "";
-
-    if (aPtrRefShape && aPtrRefShape->FirstUse())
-    {
-      theValues.append(DFBrowserPane_Tools::GetEntry(aPtrRefShape->Label()).ToCString());
-      const TopoDS_Shape& aValueShape = aPtrRefShape->Shape();
-      theValues.append(!aValueShape.IsNull()
-                         ? Standard_Dump::GetPointerInfo(aValueShape.TShape()->This()).ToCString()
-                         : "");
-    }
-    else
-      theValues << "" << "";
-  }
-}
-
-// =======================================================================
-// function : GetShortAttributeInfo
-// purpose :
-// =======================================================================
-void DFBrowserPane_TNamingUsedShapes::GetShortAttributeInfo(
-  const Handle(TDF_Attribute)& theAttribute,
-  QList<QVariant>&             theValues)
-{
-  Handle(TNaming_UsedShapes) anAttribute = Handle(TNaming_UsedShapes)::DownCast(theAttribute);
-  if (anAttribute.IsNull())
-    return;
-
-  theValues.append(QString("%1").arg(anAttribute->Map().Extent()));
-}
-
-// =======================================================================
-// function : GetAttributeReferences
-// purpose :
-// =======================================================================
-void DFBrowserPane_TNamingUsedShapes::GetAttributeReferences(
-  const Handle(TDF_Attribute)&             theAttribute,
-  NCollection_List<Handle(TDF_Attribute)>& theRefAttributes,
-  Handle(Standard_Transient)& /*theRefPresentation*/)
-{
-  Handle(TNaming_UsedShapes) anAttribute = Handle(TNaming_UsedShapes)::DownCast(theAttribute);
-  if (anAttribute.IsNull())
-    return;
-
-  QStringList aSelectedEntries =
-    DFBrowserPane_TableView::GetSelectedColumnValues(getTableView()->GetTableView(), 2);
-  if (aSelectedEntries.isEmpty())
-    return;
-
-  for (TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape aRefIt(anAttribute->Map()); aRefIt.More();
-       aRefIt.Next())
-  {
-    TNaming_PtrRefShape aPtrRefShape = aRefIt.Value();
-    if (!aPtrRefShape || !aPtrRefShape->FirstUse())
-      continue;
-
-    if (aSelectedEntries.contains(DFBrowserPane_Tools::GetEntry(aPtrRefShape->Label()).ToCString()))
-      theRefAttributes.Append(aPtrRefShape->NamedShape());
-  }
-}
-
-// =======================================================================
-// function : getTableColumnWidths
-// purpose :
-// =======================================================================
-QMap<int, int> DFBrowserPane_TNamingUsedShapes::getTableColumnWidths() const
-{
-  QMap<int, int> aValues;
-  aValues[0] = COLUMN_TYPE_WIDTH;      // "ShapeType"
-  aValues[1] = COLUMN_POINTER_WIDTH;   // "Key_TShape"
-  aValues[2] = COLUMN_REFERENCE_WIDTH; // "Label Entry"
-  return aValues;
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.hxx b/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.hxx
deleted file mode 100644
index af49be405d..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.hxx
+++ /dev/null
@@ -1,64 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_TNamingUsedShapes_H
-#define DFBrowserPane_TNamingUsedShapes_H
-
-#include <inspector/DFBrowserPane_AttributePane.hxx>
-
-#include <Standard.hxx>
-#include <TCollection_AsciiString.hxx>
-
-class QWidget;
-
-//! \class DFBrowserPane_TNamingUsedShapes
-//! \brief The class to manipulate of TNaming_UsedShapes attribute
-class DFBrowserPane_TNamingUsedShapes : public DFBrowserPane_AttributePane
-{
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowserPane_TNamingUsedShapes();
-
-  //! Destructor
-  virtual ~DFBrowserPane_TNamingUsedShapes() {}
-
-  //! Returns values to fill the table view model
-  //! \param theAttribute a current attribute
-  //! \param theValues a container of values
-  Standard_EXPORT virtual void GetValues(const Handle(TDF_Attribute)& theAttribute,
-                                         QList<QVariant>&             theValues) Standard_OVERRIDE;
-
-  //! Returns brief attribute information. In general case, it returns GetValues() result.
-  //! \param theAttribute a current attribute
-  //! \param theValues a result list of values
-  Standard_EXPORT virtual void GetShortAttributeInfo(const Handle(TDF_Attribute)& theAttribute,
-                                                     QList<QVariant>& theValues) Standard_OVERRIDE;
-
-  //! Returns container of Attribute references to the attribute
-  //! \param theAttribute a current attribute
-  //! \param theRefAttributes a container of attribute references, to be selected in tree view
-  //! \param theRefPresentation handle of presentation for the references, to be visualized
-  Standard_EXPORT virtual void GetAttributeReferences(
-    const Handle(TDF_Attribute)&             theAttribute,
-    NCollection_List<Handle(TDF_Attribute)>& theRefAttributes,
-    Handle(Standard_Transient)&              theRefPresentation) Standard_OVERRIDE;
-
-protected:
-  //! Defines widths of table columns
-  //! \return container of widths
-  Standard_EXPORT virtual QMap<int, int> getTableColumnWidths() const Standard_OVERRIDE;
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_TableView.cxx b/tools/DFBrowserPane/DFBrowserPane_TableView.cxx
deleted file mode 100644
index 570499a2f7..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TableView.cxx
+++ /dev/null
@@ -1,116 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_TableView.hxx>
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <inspector/TreeModel_Tools.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractTableModel>
-#include <QHeaderView>
-#include <QHBoxLayout>
-#include <QScrollBar>
-#include <QTableView>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-DFBrowserPane_TableView::DFBrowserPane_TableView(QWidget*              theParent,
-                                                 const QMap<int, int>& theDefaultColumnWidths)
-    : QWidget(theParent)
-{
-  QHBoxLayout* aLay = new QHBoxLayout(this);
-  aLay->setContentsMargins(0, 0, 0, 0);
-
-  myTableView = new QTableView(theParent);
-  myTableView->setShowGrid(false);
-
-  QHeaderView* aVHeader = myTableView->verticalHeader();
-  aVHeader->setVisible(false);
-  aVHeader->setDefaultSectionSize(aVHeader->minimumSectionSize());
-
-  myTableView->horizontalHeader()->setStretchLastSection(true);
-  myTableView->horizontalHeader()->setVisible(false);
-  aLay->addWidget(myTableView);
-  myDefaultColumnWidths = theDefaultColumnWidths;
-}
-
-// =======================================================================
-// function : SetModel
-// purpose :
-// =======================================================================
-void DFBrowserPane_TableView::SetModel(QAbstractTableModel* theModel)
-{
-  myTableView->setModel(theModel);
-
-  for (int aColumnId = 0, aCount = theModel->columnCount(); aColumnId < aCount; aColumnId++)
-    myTableView->setColumnWidth(aColumnId,
-                                myDefaultColumnWidths.contains(aColumnId)
-                                  ? myDefaultColumnWidths[aColumnId]
-                                  : DFBrowserPane_Tools::DefaultPanelColumnWidth(aColumnId));
-}
-
-// =======================================================================
-// function : SetFixedRowCount
-// purpose :
-// =======================================================================
-void DFBrowserPane_TableView::SetFixedRowCount(const int   theCount,
-                                               QTableView* theView,
-                                               const bool  theScroll)
-{
-  int aHeight = theView->verticalHeader()->defaultSectionSize() * theCount
-                + TreeModel_Tools::HeaderSectionMargin();
-  if (theScroll)
-    aHeight += theView->horizontalScrollBar()->sizeHint().height();
-
-  theView->setMaximumHeight(aHeight);
-}
-
-// =======================================================================
-// function : SetVisibleHorizontalHeader
-// purpose :
-// =======================================================================
-void DFBrowserPane_TableView::SetVisibleHorizontalHeader(const bool& theVisible)
-{
-  myTableView->horizontalHeader()->setVisible(theVisible);
-}
-
-// =======================================================================
-// function : GetSelectedColumnValues
-// purpose :
-// =======================================================================
-QStringList DFBrowserPane_TableView::GetSelectedColumnValues(QTableView* theTableView,
-                                                             const int   theColumnId)
-{
-  QAbstractItemModel* aModel           = theTableView->model();
-  QModelIndexList     aSelectedIndices = theTableView->selectionModel()->selectedIndexes();
-
-  QStringList aSelectedEntries;
-  for (QModelIndexList::const_iterator aSelectedIt = aSelectedIndices.begin();
-       aSelectedIt != aSelectedIndices.end();
-       aSelectedIt++)
-  {
-    QModelIndex anIndex = *aSelectedIt;
-    if (theColumnId == anIndex.column())
-      aSelectedEntries.append(
-        aModel->data(aModel->index(anIndex.row(), theColumnId, anIndex.parent()), Qt::DisplayRole)
-          .toString());
-  }
-  return aSelectedEntries;
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_TableView.hxx b/tools/DFBrowserPane/DFBrowserPane_TableView.hxx
deleted file mode 100644
index 7f80283f82..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_TableView.hxx
+++ /dev/null
@@ -1,76 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_TableView_H
-#define DFBrowserPane_TableView_H
-
-#include <Standard.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QWidget>
-#include <QMap>
-#include <Standard_WarningsRestore.hxx>
-
-class QTableView;
-class QAbstractTableModel;
-
-//! \class DFBrowserPane_TableView
-//! \brief The widget that contains table view with some settings:
-//! - table grid is hidden
-//! - vertical header is hidden
-//! - stretch last column by horizontal
-//! - default width of columns.
-class DFBrowserPane_TableView : public QWidget
-{
-public:
-  //! Constructor
-  Standard_EXPORT DFBrowserPane_TableView(
-    QWidget*              theParent,
-    const QMap<int, int>& theDefaultColumnWidths = QMap<int, int>());
-
-  //! Destructor
-  virtual ~DFBrowserPane_TableView() {}
-
-  //! Sets model into table view. After, set column widths for view
-  Standard_EXPORT void SetModel(QAbstractTableModel* theModel);
-
-  //! Returns the current table view
-  QTableView* GetTableView() const { return myTableView; }
-
-  //! Set horizontal header shown or hidden
-  //! \param theVisible visibility flag
-  Standard_EXPORT void SetVisibleHorizontalHeader(const bool& theVisible);
-
-  //! Updates table view height to contain the given number of rows only
-  //! \param theCount a row count
-  //! \param theView a table view, which size will be changed
-  //! \param theScroll flag whether add scroll height to size
-  Standard_EXPORT static void SetFixedRowCount(const int   theCount,
-                                               QTableView* theView,
-                                               const bool  theScroll = false);
-
-  //! Returns names of selected items in the view
-  //! \param theView a table view
-  //! \param theColumnId a column index
-  //! \return container of strings
-  Standard_EXPORT static QStringList GetSelectedColumnValues(QTableView* theTable,
-                                                             const int   theColumnId);
-
-private:
-  QTableView*    myTableView;           //!< the current table view
-  QMap<int, int> myDefaultColumnWidths; //!< container of default widths of columns
-};
-
-#endif
diff --git a/tools/DFBrowserPane/DFBrowserPane_Tools.cxx b/tools/DFBrowserPane/DFBrowserPane_Tools.cxx
deleted file mode 100644
index e7d714a60e..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_Tools.cxx
+++ /dev/null
@@ -1,166 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/DFBrowserPane_Tools.hxx>
-
-#include <AIS_DisplayMode.hxx>
-#include <CDM_CanCloseStatus.hxx>
-#include <Graphic3d_MaterialAspect.hxx>
-#include <Graphic3d_NameOfMaterial.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <TDataStd.hxx>
-#include <TDataStd_RealEnum.hxx>
-#include <TDataXtd.hxx>
-#include <TDataXtd_ConstraintEnum.hxx>
-#include <TDataXtd_GeometryEnum.hxx>
-#include <TDF_Tool.hxx>
-#include <TNaming.hxx>
-#include <TNaming_NameType.hxx>
-#include <TNaming_Evolution.hxx>
-#include <TopAbs.hxx>
-#include <TopAbs_ShapeEnum.hxx>
-#include <TopAbs_Orientation.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QPalette>
-#include <QStringList>
-#include <QStyle>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-#include <sstream>
-
-const int TABLE_COLUMN_0_WIDTH     = 200;
-const int TABLE_COLUMN_OTHER_WIDTH = 120;
-
-// =======================================================================
-// function : DefaultPanelColumnWidth
-// purpose :
-// =======================================================================
-int DFBrowserPane_Tools::DefaultPanelColumnWidth(const int theColumnId)
-{
-  return theColumnId == 0 ? TABLE_COLUMN_0_WIDTH : TABLE_COLUMN_OTHER_WIDTH;
-}
-
-// =======================================================================
-// function : GetEntry
-// purpose :
-// =======================================================================
-TCollection_AsciiString DFBrowserPane_Tools::GetEntry(const TDF_Label& theLabel)
-{
-  if (theLabel.IsNull())
-    return "Null";
-
-  TCollection_AsciiString anAsciiEntry;
-  TDF_Tool::Entry(theLabel, anAsciiEntry);
-  return anAsciiEntry;
-}
-
-// =======================================================================
-// function : ShapeTypeInfo
-// purpose :
-// =======================================================================
-QVariant DFBrowserPane_Tools::ShapeTypeInfo(const TopoDS_Shape& theShape)
-{
-  return theShape.IsNull()
-           ? QString("Empty")
-           : QString(DFBrowserPane_Tools::ToName(DB_SHAPE_TYPE, theShape.ShapeType()).ToCString());
-}
-
-// =======================================================================
-// function : LightHighlightColor
-// purpose :
-// =======================================================================
-QColor DFBrowserPane_Tools::LightHighlightColor()
-{
-  QWidget  aWidget;
-  QPalette aPalette = aWidget.palette();
-  return aPalette.highlight().color().lighter();
-}
-
-// =======================================================================
-// function : ToName
-// purpose :
-// =======================================================================
-TCollection_AsciiString DFBrowserPane_Tools::ToName(const DFBrowserPane_OcctEnumType& theType,
-                                                    const Standard_Integer&           theEnumId)
-{
-  Standard_SStream aSStream;
-  switch (theType)
-  {
-    case DB_CONSTRAINT_TYPE: {
-      TDataXtd::Print((TDataXtd_ConstraintEnum)theEnumId, aSStream);
-      break;
-    }
-    case DB_NAMING_TYPE: {
-      TNaming::Print((TNaming_NameType)theEnumId, aSStream);
-      break;
-    }
-    case DB_SHAPE_TYPE: {
-      TopAbs::Print((TopAbs_ShapeEnum)theEnumId, aSStream);
-      break;
-    }
-    case DB_NS_TYPE: {
-      TNaming::Print((TNaming_Evolution)theEnumId, aSStream);
-      break;
-    }
-    case DB_GEOM_TYPE: {
-      TDataXtd::Print((TDataXtd_GeometryEnum)theEnumId, aSStream);
-      break;
-    }
-    case DB_DIMENSION_TYPE: {
-      TDataStd::Print((TDataStd_RealEnum)theEnumId, aSStream);
-      break;
-    }
-    case DB_MATERIAL_TYPE:
-      return Graphic3d_MaterialAspect::MaterialName(theEnumId + 1);
-    case DB_DISPLAY_MODE: {
-      switch (theEnumId)
-      {
-        case AIS_WireFrame:
-          return "WireFrame";
-        case AIS_Shaded:
-          return "Shaded";
-        default:
-          return "UNKNOWN DISPLAY MODE";
-      }
-      break;
-    }
-    case DB_ORIENTATION_TYPE: {
-      TopAbs::Print((TopAbs_Orientation)theEnumId, aSStream);
-      break;
-    }
-    case DB_CDM_CAN_CLOSE_STATUS: {
-      switch (theEnumId)
-      {
-        case CDM_CCS_OK:
-          return "OK";
-        case CDM_CCS_NotOpen:
-          return "NotOpen";
-        case CDM_CCS_UnstoredReferenced:
-          return "UnstoredReferenced";
-        case CDM_CCS_ReferenceRejection:
-          return "ReferenceRejection";
-        default:
-          return "UNKNOWN CDM_CanCloseStatus";
-      }
-      break;
-    }
-    default:
-      return "UNKNOWN PARAMETER";
-  }
-  return aSStream.str().c_str();
-}
diff --git a/tools/DFBrowserPane/DFBrowserPane_Tools.hxx b/tools/DFBrowserPane/DFBrowserPane_Tools.hxx
deleted file mode 100644
index 8055ec8fa4..0000000000
--- a/tools/DFBrowserPane/DFBrowserPane_Tools.hxx
+++ /dev/null
@@ -1,83 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowserPane_Tools_H
-#define DFBrowserPane_Tools_H
-
-#include <inspector/DFBrowserPane_OcctEnumType.hxx>
-
-#include <Standard.hxx>
-#include <TCollection_ExtendedString.hxx>
-#include <TDF_Label.hxx>
-#include <TopLoc_Location.hxx>
-#include <TopoDS_Shape.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QString>
-#include <QString>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-#define PROPERTY_TABLE_ROW_COUNT 200
-
-//! \class DFBrowserPane_Tools
-//! \brief The tool that gives auxiliary methods for TDocStd elements manipulation
-class DFBrowserPane_Tools
-{
-public:
-  //! Returns default value for table view model: width[0] = 200, width[others] = 120
-  //! \param theColumnId a column index
-  //! \returns value
-  Standard_EXPORT static int DefaultPanelColumnWidth(const int theColumnId);
-
-  //! Returns a string presentation of the label
-  //! \param theLabel a label object
-  //! \return the string value
-  Standard_EXPORT static TCollection_AsciiString GetEntry(const TDF_Label& theLabel);
-
-  //! Returns string value corresponded to the shape type if it is not null.
-  //! \param theShape a checked shape
-  //! \return string value or empty string value
-  Standard_EXPORT static QVariant ShapeTypeInfo(const TopoDS_Shape& theShape);
-
-  //! Returns "true" or "false" text for the given boolean state
-  //! \param theValue a boolean value
-  //! \return string value
-  Standard_EXPORT static QString BoolToStr(const bool theValue)
-  {
-    return theValue ? "true" : "false";
-  }
-
-  //! Converts a Qt string to OCCT extended string
-  //! \param theValue a converted string
-  //! \return the extended string value
-  Standard_EXPORT static QString ToString(const TCollection_ExtendedString& theValue)
-  {
-    return QString::fromUtf16((uint16_t*)theValue.ToExtString());
-  }
-
-  //! Returns light highlight color
-  //! \returns Qt color
-  static Standard_EXPORT QColor LightHighlightColor();
-
-  //! Converts enumeration value into string text
-  //! \param theType an enumeration kind
-  //! \param theEnumId an enumeration value
-  //! \return string presentation
-  Standard_EXPORT static TCollection_AsciiString ToName(const DFBrowserPane_OcctEnumType& theType,
-                                                        const Standard_Integer& theEnumId);
-};
-
-#endif
diff --git a/tools/DFBrowserPane/FILES b/tools/DFBrowserPane/FILES
deleted file mode 100644
index e07ebdaec0..0000000000
--- a/tools/DFBrowserPane/FILES
+++ /dev/null
@@ -1,41 +0,0 @@
-DFBrowserPane_AttributePane.cxx
-DFBrowserPane_AttributePane.hxx
-DFBrowserPane_AttributePaneAPI.hxx
-DFBrowserPane_AttributePaneCreator.cxx
-DFBrowserPane_AttributePaneCreator.hxx
-DFBrowserPane_AttributePaneCreatorAPI.hxx
-DFBrowserPane_AttributePaneModel.cxx
-DFBrowserPane_AttributePaneModel.hxx
-DFBrowserPane_AttributePaneSelector.cxx
-DFBrowserPane_AttributePaneSelector.hxx
-DFBrowserPane_HelperArray.cxx
-DFBrowserPane_HelperArray.hxx
-DFBrowserPane_HelperExport.cxx
-DFBrowserPane_HelperExport.hxx
-DFBrowserPane_ItemDelegateButton.cxx
-DFBrowserPane_ItemDelegateButton.hxx
-DFBrowserPane_ItemRole.hxx
-DFBrowserPane_OcctEnumType.hxx
-DFBrowserPane_SelectionKind.hxx
-DFBrowserPane_TableView.cxx
-DFBrowserPane_TableView.hxx
-DFBrowserPane_TDataStdReferenceArray.cxx
-DFBrowserPane_TDataStdReferenceArray.hxx
-DFBrowserPane_TDataStdReferenceList.cxx
-DFBrowserPane_TDataStdReferenceList.hxx
-DFBrowserPane_TDataStdTreeNode.cxx
-DFBrowserPane_TDataStdTreeNode.hxx
-DFBrowserPane_TDataStdTreeNodeItem.cxx
-DFBrowserPane_TDataStdTreeNodeItem.hxx
-DFBrowserPane_TDataStdTreeNodeModel.cxx
-DFBrowserPane_TDataStdTreeNodeModel.hxx
-DFBrowserPane_TDFReference.cxx
-DFBrowserPane_TDFReference.hxx
-DFBrowserPane_TNamingNamedShape.cxx
-DFBrowserPane_TNamingNamedShape.hxx
-DFBrowserPane_TNamingNaming.cxx
-DFBrowserPane_TNamingNaming.hxx
-DFBrowserPane_TNamingUsedShapes.cxx
-DFBrowserPane_TNamingUsedShapes.hxx
-DFBrowserPane_Tools.cxx
-DFBrowserPane_Tools.hxx
\ No newline at end of file
diff --git a/tools/MessageModel/FILES b/tools/MessageModel/FILES
deleted file mode 100644
index dd94755372..0000000000
--- a/tools/MessageModel/FILES
+++ /dev/null
@@ -1,14 +0,0 @@
-MessageModel.qrc
-MessageModel_Actions.cxx
-MessageModel_Actions.hxx
-MessageModel_ActionType.hxx
-MessageModel_ItemAlert.cxx
-MessageModel_ItemAlert.hxx
-MessageModel_ItemBase.cxx
-MessageModel_ItemBase.hxx
-MessageModel_ItemReport.cxx
-MessageModel_ItemReport.hxx
-MessageModel_ItemRoot.cxx
-MessageModel_ItemRoot.hxx
-MessageModel_TreeModel.cxx
-MessageModel_TreeModel.hxx
diff --git a/tools/MessageModel/MessageModel.qrc b/tools/MessageModel/MessageModel.qrc
deleted file mode 100644
index 8b794a8599..0000000000
--- a/tools/MessageModel/MessageModel.qrc
+++ /dev/null
@@ -1,6 +0,0 @@
-<!DOCTYPE RCC><RCC version="1.0">
-    <qresource>
-        <file>icons/item_shape.png</file>
-        <file>icons/item_streamValues.png</file>
-    </qresource>
-</RCC>
diff --git a/tools/MessageModel/MessageModel_ActionType.hxx b/tools/MessageModel/MessageModel_ActionType.hxx
deleted file mode 100644
index b5d7fb3ac1..0000000000
--- a/tools/MessageModel/MessageModel_ActionType.hxx
+++ /dev/null
@@ -1,32 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 MessageModel_ActionType_H
-#define MessageModel_ActionType_H
-
-//! Kind of action type for tree view context menu item
-enum MessageModel_ActionType
-{
-  MessageModel_ActionType_Activate,          //!< set Message_Report active
-  MessageModel_ActionType_Deactivate,        //!< set Message_Report not active
-  MessageModel_ActionType_Clear,             //!< clear Message_Report alerts
-  MessageModel_ActionType_ExportToShapeView, //!< export TopoDS_Shape of selected item into
-                                             //!< TKShapeView plugin
-  MessageModel_ActionType_TestMetric,        //!< test alerts
-  MessageModel_ActionType_TestMessenger,     //!< test message view on messenger printer to report
-  MessageModel_ActionType_TestReportTree     //!< test message view on hierarchical report
-};
-
-#endif
diff --git a/tools/MessageModel/MessageModel_Actions.cxx b/tools/MessageModel/MessageModel_Actions.cxx
deleted file mode 100644
index 3008360cd3..0000000000
--- a/tools/MessageModel/MessageModel_Actions.cxx
+++ /dev/null
@@ -1,280 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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.
-
-#include <inspector/MessageModel_Actions.hxx>
-
-#include <inspector/MessageModel_ItemReport.hxx>
-#include <inspector/MessageModel_ItemRoot.hxx>
-#include <inspector/MessageModel_ItemAlert.hxx>
-#include <inspector/MessageModel_TreeModel.hxx>
-#include <inspector/TInspectorAPI_PluginParameters.hxx>
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <BRepBuilderAPI_MakeEdge.hxx>
-#include <Message.hxx>
-#include <Message_AlertExtended.hxx>
-#include <Message_Messenger.hxx>
-#include <Message_PrinterToReport.hxx>
-#include <OSD_Chronometer.hxx>
-#include <Quantity_Color.hxx>
-#include <Quantity_ColorRGBA.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <TopoDS_AlertAttribute.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAction>
-#include <QFileDialog>
-#include <QItemSelectionModel>
-#include <QMenu>
-#include <QMessageBox>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-MessageModel_Actions::MessageModel_Actions(QWidget*                theParent,
-                                           MessageModel_TreeModel* theTreeModel,
-                                           QItemSelectionModel*    theModel)
-    : QObject(theParent),
-      myTreeModel(theTreeModel),
-      mySelectionModel(theModel)
-{
-  myActions.insert(
-    MessageModel_ActionType_Activate,
-    ViewControl_Tools::CreateAction(tr("Activate"), SLOT(OnActivateReport()), parent(), this));
-  myActions.insert(
-    MessageModel_ActionType_Deactivate,
-    ViewControl_Tools::CreateAction(tr("Deactivate"), SLOT(OnDeactivateReport()), parent(), this));
-  myActions.insert(
-    MessageModel_ActionType_Clear,
-    ViewControl_Tools::CreateAction(tr("Clear"), SLOT(OnClearReport()), parent(), this));
-  myActions.insert(MessageModel_ActionType_ExportToShapeView,
-                   ViewControl_Tools::CreateAction(tr("Export to ShapeView"),
-                                                   SLOT(OnExportToShapeView()),
-                                                   parent(),
-                                                   this));
-}
-
-// =======================================================================
-// function : GetAction
-// purpose :
-// =======================================================================
-QAction* MessageModel_Actions::GetAction(const MessageModel_ActionType& theType)
-{
-  return myActions.contains(theType) ? myActions[theType] : 0;
-}
-
-// =======================================================================
-// function : AddMenuActions
-// purpose :
-// =======================================================================
-void MessageModel_Actions::AddMenuActions(const QModelIndexList& theSelectedIndices, QMenu* theMenu)
-{
-  MessageModel_ItemRootPtr   aRootItem;
-  MessageModel_ItemReportPtr aReportItem;
-  MessageModel_ItemAlertPtr  anAlertItem;
-  for (QModelIndexList::const_iterator aSelIt = theSelectedIndices.begin();
-       aSelIt != theSelectedIndices.end();
-       aSelIt++)
-  {
-    QModelIndex anIndex = *aSelIt;
-    if (anIndex.column() != 0)
-      continue;
-
-    TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-    if (!anItemBase)
-      continue;
-
-    aRootItem = itemDynamicCast<MessageModel_ItemRoot>(anItemBase);
-    if (aRootItem)
-      break;
-
-    aReportItem = itemDynamicCast<MessageModel_ItemReport>(anItemBase);
-    if (aReportItem)
-      break;
-
-    anAlertItem = itemDynamicCast<MessageModel_ItemAlert>(anItemBase);
-    if (anAlertItem)
-      break;
-  }
-
-  if (aReportItem && !aReportItem->GetReport().IsNull())
-  {
-    theMenu->addAction(myActions[MessageModel_ActionType_Deactivate]);
-    theMenu->addAction(myActions[MessageModel_ActionType_Activate]);
-    theMenu->addAction(myActions[MessageModel_ActionType_Clear]);
-  }
-  else if (anAlertItem)
-  {
-    theMenu->addAction(myActions[MessageModel_ActionType_ExportToShapeView]);
-  }
-
-  theMenu->addSeparator();
-}
-
-// =======================================================================
-// function : getSelectedReport
-// purpose :
-// =======================================================================
-Handle(Message_Report) MessageModel_Actions::getSelectedReport(QModelIndex& theReportIndex) const
-{
-  MessageModel_ItemReportPtr aReportItem;
-  QModelIndexList            aSelectedIndices = mySelectionModel->selectedIndexes();
-  for (QModelIndexList::const_iterator aSelIt = aSelectedIndices.begin();
-       aSelIt != aSelectedIndices.end();
-       aSelIt++)
-  {
-    QModelIndex anIndex = *aSelIt;
-    if (anIndex.column() != 0)
-      continue;
-
-    TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-    if (!anItemBase)
-      continue;
-
-    aReportItem    = itemDynamicCast<MessageModel_ItemReport>(anItemBase);
-    theReportIndex = anIndex;
-    if (aReportItem)
-      break;
-  }
-  if (!aReportItem)
-    return NULL;
-
-  return aReportItem->GetReport();
-}
-
-// =======================================================================
-// function : OnActivateReport
-// purpose :
-// =======================================================================
-static Handle(Message_PrinterToReport) MyPrinterToReport;
-static Message_SequenceOfPrinters      MyDeactivatedPrinters;
-
-void MessageModel_Actions::OnActivateReport()
-{
-  if (MyPrinterToReport.IsNull())
-    MyPrinterToReport = new Message_PrinterToReport();
-
-  if (MyPrinterToReport->Report()->IsActiveInMessenger())
-    return;
-
-  MyDeactivatedPrinters = Message::DefaultMessenger()->Printers();
-  Message::DefaultMessenger()->ChangePrinters().Clear();
-
-  Message::DefaultMessenger()->AddPrinter(MyPrinterToReport);
-  Message::DefaultReport()->UpdateActiveInMessenger();
-
-  myTreeModel->UpdateTreeModel();
-}
-
-// =======================================================================
-// function : OnDeactivateReport
-// purpose :
-// =======================================================================
-void MessageModel_Actions::OnDeactivateReport()
-{
-  if (MyPrinterToReport.IsNull() || !MyPrinterToReport->Report()->IsActiveInMessenger())
-    return;
-
-  Message::DefaultMessenger()->RemovePrinter(MyPrinterToReport);
-  Message::DefaultMessenger()->ChangePrinters().Assign(MyDeactivatedPrinters);
-
-  myTreeModel->UpdateTreeModel();
-}
-
-// =======================================================================
-// function : OnClearReport
-// purpose :
-// =======================================================================
-void MessageModel_Actions::OnClearReport()
-{
-  QModelIndex            aReportIndex;
-  Handle(Message_Report) aReport = getSelectedReport(aReportIndex);
-  if (aReport.IsNull())
-    return;
-
-  aReport->Clear();
-  myTreeModel->UpdateTreeModel();
-}
-
-// =======================================================================
-// function : OnExportToShapeView
-// purpose :
-// =======================================================================
-void MessageModel_Actions::OnExportToShapeView()
-{
-  TCollection_AsciiString aPluginName("TKShapeView");
-
-  NCollection_List<Handle(Standard_Transient)> aPluginParameters;
-  if (myParameters->FindParameters(aPluginName))
-    aPluginParameters = myParameters->Parameters(aPluginName);
-  NCollection_List<TCollection_AsciiString> anItemNames;
-  if (myParameters->FindSelectedNames(aPluginName))
-    anItemNames = myParameters->GetSelectedNames(aPluginName);
-
-  QModelIndexList aSelectedIndices = mySelectionModel->selectedIndexes();
-  QStringList     anExportedPointers;
-  for (QModelIndexList::const_iterator aSelIt = aSelectedIndices.begin();
-       aSelIt != aSelectedIndices.end();
-       aSelIt++)
-  {
-    QModelIndex anIndex = *aSelIt;
-    if (anIndex.column() != 0)
-      continue;
-
-    TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-    if (!anItemBase)
-      continue;
-
-    MessageModel_ItemAlertPtr anAlertItem = itemDynamicCast<MessageModel_ItemAlert>(anItemBase);
-    if (!anAlertItem)
-      continue;
-
-    Handle(Message_Alert) anAlert = anAlertItem->GetAlert();
-    if (anAlert.IsNull())
-      continue;
-
-    Handle(Message_AlertExtended) anExtAlert = Handle(Message_AlertExtended)::DownCast(anAlert);
-    if (anExtAlert.IsNull())
-      continue;
-
-    Handle(Message_Attribute) anAttribute = anExtAlert->Attribute();
-    if (anAttribute.IsNull())
-      continue;
-
-    if (!anAttribute->IsKind(STANDARD_TYPE(TopoDS_AlertAttribute)))
-      continue;
-
-    const TopoDS_Shape aShape = Handle(TopoDS_AlertAttribute)::DownCast(anAttribute)->GetShape();
-    if (aShape.IsNull())
-      continue;
-    aPluginParameters.Append(aShape.TShape());
-    anItemNames.Append(TInspectorAPI_PluginParameters::ParametersToString(aShape));
-
-    anExportedPointers.append(Standard_Dump::GetPointerInfo(aShape.TShape(), true).ToCString());
-  }
-
-  if (anExportedPointers.empty())
-    return;
-  myParameters->SetSelectedNames(aPluginName, anItemNames);
-  myParameters->SetParameters(aPluginName, aPluginParameters);
-  QMessageBox::information(0,
-                           "Information",
-                           QString("TShapes '%1' are sent to %2 tool.")
-                             .arg(anExportedPointers.join(", "))
-                             .arg(QString(aPluginName.ToCString())));
-}
diff --git a/tools/MessageModel/MessageModel_Actions.hxx b/tools/MessageModel/MessageModel_Actions.hxx
deleted file mode 100644
index 973436dbd0..0000000000
--- a/tools/MessageModel/MessageModel_Actions.hxx
+++ /dev/null
@@ -1,99 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 MessageModel_Actions_H
-#define MessageModel_Actions_H
-
-#include <Standard.hxx>
-#include <Standard_Transient.hxx>
-
-#include <inspector/MessageModel_ActionType.hxx>
-#include <inspector/TInspectorAPI_PluginParameters.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QMap>
-#include <QModelIndexList>
-#include <QPoint>
-#include <QString>
-#include <Standard_WarningsRestore.hxx>
-
-class Message_Report;
-class MessageModel_TreeModel;
-
-class QAction;
-class QItemSelectionModel;
-class QMenu;
-class QWidget;
-
-//! \class MessageModel_Actions
-//! \brief This is a listener of popup context menu items and selection change in message model
-class MessageModel_Actions : public QObject
-{
-  Q_OBJECT
-
-public:
-  //! Constructor
-  Standard_EXPORT MessageModel_Actions(QWidget*                theParent,
-                                       MessageModel_TreeModel* theTreeModel,
-                                       QItemSelectionModel*    theModel);
-
-  //! Destructor
-  virtual ~MessageModel_Actions() Standard_OVERRIDE {}
-
-  //! Returns action by the type
-  //! \param theType an action type
-  //! \return an action instance if it exists
-  Standard_EXPORT QAction* GetAction(const MessageModel_ActionType& theType);
-
-  //! Fills popup menu with actions depending on the current selection
-  //! \param theSelectedIndices tree model selected indices
-  //! \param theMenu menu to be filled
-  Standard_EXPORT void AddMenuActions(const QModelIndexList& theSelectedIndices, QMenu* theMenu);
-
-  //! Sets parameters container, it should be used when the plugin is initialized or in update
-  //! content \param theParameters a parameters container
-  void SetParameters(const Handle(TInspectorAPI_PluginParameters)& theParameters)
-  {
-    myParameters = theParameters;
-  }
-
-public slots:
-  //! Set selected report active
-  void OnActivateReport();
-
-  //! Set selected report not active
-  void OnDeactivateReport();
-
-  //! Clears container of alerts of selected report
-  void OnClearReport();
-
-  //! Exports the first selected shape into ShapeViewer plugin.
-  void OnExportToShapeView();
-
-protected:
-  //! Returns report of selected tree view item if a report item is selected
-  //! \param theReportIndex tree model index of the found report
-  //! \return report instance or NULL
-  Handle(Message_Report) getSelectedReport(QModelIndex& theReportIndex) const;
-
-protected:
-  MessageModel_TreeModel*                 myTreeModel;      //< tree model
-  QItemSelectionModel*                    mySelectionModel; //< selection model
-  Handle(TInspectorAPI_PluginParameters)  myParameters;     //!< plugins parameters container
-  QMap<MessageModel_ActionType, QAction*> myActions;        //!< container of all actions
-};
-
-#endif
diff --git a/tools/MessageModel/MessageModel_ItemAlert.cxx b/tools/MessageModel/MessageModel_ItemAlert.cxx
deleted file mode 100644
index ca48f098a3..0000000000
--- a/tools/MessageModel/MessageModel_ItemAlert.cxx
+++ /dev/null
@@ -1,338 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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.
-
-#include <inspector/MessageModel_ItemAlert.hxx>
-
-#include <inspector/MessageModel_ItemRoot.hxx>
-#include <inspector/MessageModel_ItemReport.hxx>
-#include <inspector/MessageModel_TreeModel.hxx>
-
-#include <inspector/Convert_TransientShape.hxx>
-#include <inspector/TreeModel_ItemProperties.hxx>
-#include <inspector/TreeModel_Tools.hxx>
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <Message_AlertExtended.hxx>
-#include <Message_AttributeMeter.hxx>
-#include <Message_AttributeStream.hxx>
-#include <Message_CompositeAlerts.hxx>
-#include <Precision.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <TopoDS_AlertAttribute.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QColor>
-#include <QIcon>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant MessageModel_ItemAlert::initValue(const int theRole) const
-{
-  QVariant aParentValue = MessageModel_ItemBase::initValue(theRole);
-  if (aParentValue.isValid())
-    return aParentValue;
-
-  MessageModel_ItemReportPtr aReportItem = MessageModel_ItemReport::FindReportItem(Parent());
-  if (!aReportItem)
-    return QVariant();
-
-  Handle(Message_Report) aReport = aReportItem->GetReport();
-  if (aReport.IsNull())
-    return QVariant();
-
-  if (theRole == Qt::ForegroundRole)
-  {
-    if (!aReport->IsActiveInMessenger())
-      return QColor(Qt::darkGray);
-
-    return QVariant();
-  }
-
-  Handle(Message_Alert)         anAlert         = getAlert();
-  Handle(Message_AlertExtended) anExtendedAlert = Handle(Message_AlertExtended)::DownCast(anAlert);
-
-  // if the alert is composite, process the real alert
-  if (theRole == Qt::DecorationRole && Column() == 0)
-  {
-    if (anExtendedAlert.IsNull())
-      return QVariant();
-
-    Handle(Message_Attribute) anAttribute = anExtendedAlert->Attribute();
-    if (anAttribute.IsNull())
-      return QVariant();
-
-    if (anAttribute->IsKind(STANDARD_TYPE(TopoDS_AlertAttribute)))
-      return QIcon(":/icons/item_shape.png");
-    else if (!Handle(Message_AttributeStream)::DownCast(anAttribute).IsNull())
-      return QIcon(":/icons/item_streamValues.png");
-    else
-      return QVariant();
-  }
-
-  if (theRole != Qt::DisplayRole && theRole != Qt::ToolTipRole)
-    return QVariant();
-
-  if (anAlert.IsNull())
-    return QVariant();
-
-  if (Column() == 0)
-  {
-    if (theRole == Qt::DisplayRole)
-    {
-      TCollection_AsciiString aMessageKey = anAlert->GetMessageKey();
-      if (aMessageKey.IsEmpty() && !Properties().IsNull())
-        aMessageKey = Properties()->Key();
-      return aMessageKey.ToCString();
-    }
-    else
-      return anAlert->DynamicType()->Name();
-  }
-
-  Message_MetricType aMetricType;
-  int                aPosition;
-  if (MessageModel_TreeModel::IsMetricColumn(Column(), aMetricType, aPosition))
-  {
-    if (anExtendedAlert.IsNull())
-      return QVariant();
-
-    Handle(Message_AttributeMeter) anAttribute =
-      Handle(Message_AttributeMeter)::DownCast(anExtendedAlert->Attribute());
-    if (anAttribute.IsNull() || !anAttribute->HasMetric(aMetricType))
-      return QVariant();
-
-    if (!anAttribute->IsMetricValid(aMetricType))
-      return QVariant("in process");
-
-    if (aMetricType == Message_MetricType_ProcessCPUUserTime
-        || aMetricType == Message_MetricType_ProcessCPUSystemTime
-        || aMetricType == Message_MetricType_WallClock)
-    {
-      Standard_Real aCumulativeMetric =
-        anAttribute->StopValue(aMetricType) - anAttribute->StartValue(aMetricType);
-      if (fabs(aCumulativeMetric) < Precision::Confusion())
-        return QVariant();
-
-      if (aPosition == 0)
-        return aCumulativeMetric;
-      else if (aPosition == 1)
-      {
-        Standard_Real aReportCumulativeMetric =
-          MessageModel_ItemReport::CumulativeMetric(aReport, aMetricType);
-        if (fabs(aReportCumulativeMetric) > Precision::Confusion())
-          return 100. * aCumulativeMetric / aReportCumulativeMetric;
-        else
-          return QVariant();
-      }
-    }
-    else
-    {
-      if (aPosition == 0)
-        return anAttribute->StopValue(aMetricType);
-      else if (aPosition == 1)
-      {
-        Standard_Real aCumulativeMetric =
-          anAttribute->StopValue(aMetricType) - anAttribute->StartValue(aMetricType);
-        if (fabs(aCumulativeMetric) < Precision::Confusion())
-          return QVariant();
-        else
-          return aCumulativeMetric;
-      }
-    }
-  }
-  return QVariant();
-}
-
-// =======================================================================
-// function : initRowCount
-// purpose :
-// =======================================================================
-int MessageModel_ItemAlert::initRowCount() const
-{
-  const Handle(Message_Alert)& anAlert = getAlert();
-  if (anAlert.IsNull())
-    return 0;
-
-  Handle(Message_AlertExtended) anExtendedAlert = Handle(Message_AlertExtended)::DownCast(anAlert);
-  if (anExtendedAlert.IsNull())
-    return 0;
-
-  Handle(Message_CompositeAlerts) aCompositeAlert = anExtendedAlert->CompositeAlerts();
-  if (aCompositeAlert.IsNull())
-    return 0;
-
-  MessageModel_ItemAlert* aCurrentItem = (MessageModel_ItemAlert*)this;
-  for (int aGravityId = Message_Trace; aGravityId <= Message_Fail; aGravityId++)
-  {
-    const Message_ListOfAlert& anAlerts = aCompositeAlert->Alerts((Message_Gravity)aGravityId);
-    {
-      for (Message_ListOfAlert::Iterator anIt(anAlerts); anIt.More(); anIt.Next())
-      {
-        Message_ListOfAlert aCurAlerts;
-        aCurAlerts.Append(anIt.Value());
-        aCurrentItem->myChildAlerts.Bind(myChildAlerts.Size(), aCurAlerts);
-      }
-    }
-  }
-  return aCurrentItem->myChildAlerts.Size();
-}
-
-// =======================================================================
-// function : initStream
-// purpose :
-// =======================================================================
-void MessageModel_ItemAlert::initStream(Standard_OStream& theOStream) const
-{
-  Handle(Message_AlertExtended) anExtendedAlert =
-    Handle(Message_AlertExtended)::DownCast(getAlert());
-  if (anExtendedAlert.IsNull() || anExtendedAlert->Attribute().IsNull())
-    return;
-
-  Handle(Message_Attribute) anAttribute = anExtendedAlert->Attribute();
-  if (anAttribute.IsNull())
-    return;
-
-  if (Handle(Message_AttributeStream)::DownCast(anAttribute).IsNull())
-    return;
-
-  Handle(Message_AttributeStream) anAttributeStream =
-    Handle(Message_AttributeStream)::DownCast(anExtendedAlert->Attribute());
-  theOStream << anAttributeStream->Stream().str();
-}
-
-// =======================================================================
-// function : SetStream
-// purpose :
-// =======================================================================
-bool MessageModel_ItemAlert::SetStream(const Standard_SStream& theSStream,
-                                       Standard_Integer&       theStartPos,
-                                       Standard_Integer&       theLastPos) const
-{
-  Handle(Message_AlertExtended) anExtendedAlert =
-    Handle(Message_AlertExtended)::DownCast(getAlert());
-  if (anExtendedAlert.IsNull() || anExtendedAlert->Attribute().IsNull())
-    return false;
-
-  Handle(Message_Attribute) anAttribute = anExtendedAlert->Attribute();
-  if (anAttribute.IsNull())
-    return false;
-
-  if (Handle(Message_AttributeStream)::DownCast(anAttribute).IsNull())
-    return false;
-
-  Handle(Message_AttributeStream) anAttributeStream =
-    Handle(Message_AttributeStream)::DownCast(anExtendedAlert->Attribute());
-  TCollection_AsciiString aStreamValue = Standard_Dump::Text(anAttributeStream->Stream());
-
-  TCollection_AsciiString aNewValue = Standard_Dump::Text(theSStream);
-
-  Standard_SStream aStream;
-  aStream << aStreamValue.SubString(1, theStartPos - 1);
-  aStream << aNewValue;
-  if (theLastPos + 1 <= aStreamValue.Length())
-    aStream << aStreamValue.SubString(theLastPos + 1, aStreamValue.Length());
-
-  anAttributeStream->SetStream(aStream);
-
-  return true;
-}
-
-// =======================================================================
-// function : createChild
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr MessageModel_ItemAlert::createChild(int theRow, int theColumn)
-{
-  return MessageModel_ItemAlert::CreateItem(currentItem(), theRow, theColumn);
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void MessageModel_ItemAlert::Init()
-{
-  MessageModel_ItemReportPtr aReportItem = itemDynamicCast<MessageModel_ItemReport>(Parent());
-  MessageModel_ItemAlertPtr  anAlertItem;
-  Handle(Message_Alert)      anAlert;
-  if (aReportItem)
-  {
-    Message_ListOfAlert anAlerts;
-    if (aReportItem->GetChildAlerts(Row(), anAlerts))
-    {
-      myAlert = anAlerts.First();
-    }
-  }
-  else
-  {
-    anAlertItem = itemDynamicCast<MessageModel_ItemAlert>(Parent());
-    if (anAlertItem)
-    {
-      Message_ListOfAlert anAlerts;
-      if (anAlertItem->GetChildAlerts(Row(), anAlerts))
-      {
-        myAlert = anAlerts.First();
-      }
-    }
-  }
-
-  Handle(Message_AlertExtended) anExtendedAlert = Handle(Message_AlertExtended)::DownCast(myAlert);
-  if (!anExtendedAlert.IsNull() && !anExtendedAlert->Attribute().IsNull())
-  {
-    Handle(Message_Attribute) anAttribute = anExtendedAlert->Attribute();
-    if (!anAttribute.IsNull())
-    {
-      if (anAttribute->IsKind(STANDARD_TYPE(TopoDS_AlertAttribute)))
-        myPresentation = new Convert_TransientShape(
-          Handle(TopoDS_AlertAttribute)::DownCast(anAttribute)->GetShape());
-    }
-  }
-  MessageModel_ItemBase::Init();
-}
-
-// =======================================================================
-// function : Reset
-// purpose :
-// =======================================================================
-void MessageModel_ItemAlert::Reset()
-{
-  MessageModel_ItemBase::Reset();
-  myAlert = Handle(Message_Alert)();
-  myChildAlerts.Clear();
-  myPresentation = NULL;
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void MessageModel_ItemAlert::initItem() const
-{
-  if (IsInitialized())
-    return;
-  const_cast<MessageModel_ItemAlert*>(this)->Init();
-}
-
-// =======================================================================
-// function : getAlert
-// purpose :
-// =======================================================================
-const Handle(Message_Alert)& MessageModel_ItemAlert::getAlert() const
-{
-  initItem();
-  return myAlert;
-}
diff --git a/tools/MessageModel/MessageModel_ItemAlert.hxx b/tools/MessageModel/MessageModel_ItemAlert.hxx
deleted file mode 100644
index 77f3e1abaa..0000000000
--- a/tools/MessageModel/MessageModel_ItemAlert.hxx
+++ /dev/null
@@ -1,131 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 MessageModel_ItemAlert_H
-#define MessageModel_ItemAlert_H
-
-#include <inspector/MessageModel_ItemBase.hxx>
-
-#include <Message_Alert.hxx>
-#include <Message_ListOfAlert.hxx>
-#include <Message_Report.hxx>
-#include <NCollection_DataMap.hxx>
-#include <NCollection_List.hxx>
-#include <NCollection_Vector.hxx>
-#include <Standard.hxx>
-#include <TopoDS_Shape.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QMap>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-class QAbstractTableModel;
-class MessageModel_ItemAlert;
-
-typedef QExplicitlySharedDataPointer<MessageModel_ItemAlert> MessageModel_ItemAlertPtr;
-
-//! \class MessageModel_ItemAlert
-//! This item is connected to Message_Alert.
-//! Parent is either MessageModel_ItemRoot or MessageModel_ItemAlert, children are
-//! MessageModel_ItemAlert or no children
-class MessageModel_ItemAlert : public MessageModel_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  //! \param theRow the item row positition in the parent item
-  //! \param theColumn the item column positition in the parent item
-  //! \return the pointer to the created item
-  static MessageModel_ItemAlertPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                              const int             theRow,
-                                              const int             theColumn)
-  {
-    return MessageModel_ItemAlertPtr(new MessageModel_ItemAlert(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~MessageModel_ItemAlert() Standard_OVERRIDE {};
-
-  //! Returns the current shape
-  const Handle(Message_Alert)& GetAlert() const { return myAlert; }
-
-  //! Returns alert of the report for the parameter row
-  Standard_Boolean GetChildAlerts(const int theRow, Message_ListOfAlert& theAlerts) const
-  {
-    return myChildAlerts.Find(theRow, theAlerts);
-  }
-
-  //! Inits the item, fills internal containers
-  Standard_EXPORT virtual void Init() Standard_OVERRIDE;
-
-  //! Resets cached values
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-  //! Return data value for the role.
-  //! \param theRole a value role
-  //! \return the value
-  Standard_EXPORT virtual QVariant initValue(const int theRole) const Standard_OVERRIDE;
-
-  //! \return number of children.
-  Standard_EXPORT virtual int initRowCount() const Standard_OVERRIDE;
-
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  Standard_EXPORT virtual bool SetStream(const Standard_SStream& theSStream,
-                                         Standard_Integer&       theStartPos,
-                                         Standard_Integer& theLastPos) const Standard_OVERRIDE;
-
-  //! Returns presentation of the attribute to be visualized in the view
-  //! \thePresentations[out]  container of presentation handles to be visualized
-  virtual void Presentations(NCollection_List<Handle(Standard_Transient)>& thePresentations)
-    Standard_OVERRIDE
-  {
-    TreeModel_ItemBase::Presentations(thePresentations);
-    thePresentations.Append(myPresentation);
-  }
-
-protected:
-  //! Initialize the current item.
-  virtual void initItem() const Standard_OVERRIDE;
-
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  Standard_EXPORT virtual void initStream(Standard_OStream& theOStream) const Standard_OVERRIDE;
-
-  //! Creates a child item in the given position.
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \return the created item
-  virtual TreeModel_ItemBasePtr createChild(int theRow, int theColumn) Standard_OVERRIDE;
-
-  //! Returns current alert, initialized item if it has not been initialized yet
-  //! \return alert value
-  const Handle(Message_Alert)& getAlert() const;
-
-private:
-  //! Constructor
-  MessageModel_ItemAlert(TreeModel_ItemBasePtr theParent, const int theRow, const int theColumn)
-      : MessageModel_ItemBase(theParent, theRow, theColumn)
-  {
-  }
-
-private:
-  Handle(Message_Alert) myAlert; //!< current alert item
-  NCollection_DataMap<Standard_Integer, Message_ListOfAlert>
-                             myChildAlerts;  //!< container of child alerts
-  Handle(Standard_Transient) myPresentation; //!< item presentation
-};
-
-#endif
diff --git a/tools/MessageModel/MessageModel_ItemBase.cxx b/tools/MessageModel/MessageModel_ItemBase.cxx
deleted file mode 100644
index 7e7c7b2f7f..0000000000
--- a/tools/MessageModel/MessageModel_ItemBase.cxx
+++ /dev/null
@@ -1,35 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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.
-
-#include <inspector/MessageModel_ItemBase.hxx>
-#include <inspector/MessageModel_ItemRoot.hxx>
-
-// =======================================================================
-// function : GetRootItem
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr MessageModel_ItemBase::GetRootItem() const
-{
-  TreeModel_ItemBasePtr anItem = Parent();
-  while (anItem)
-  {
-    if (MessageModel_ItemRootPtr aThisRootItem = itemDynamicCast<MessageModel_ItemRoot>(anItem))
-    {
-      return aThisRootItem;
-    }
-    anItem = anItem->Parent();
-  }
-  return TreeModel_ItemBasePtr();
-}
diff --git a/tools/MessageModel/MessageModel_ItemBase.hxx b/tools/MessageModel/MessageModel_ItemBase.hxx
deleted file mode 100644
index 98ce50cf1d..0000000000
--- a/tools/MessageModel/MessageModel_ItemBase.hxx
+++ /dev/null
@@ -1,52 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 MessageModel_ItemBase_H
-#define MessageModel_ItemBase_H
-
-#include <Standard.hxx>
-#include <TopoDS_Shape.hxx>
-#include <inspector/TreeModel_ItemBase.hxx>
-
-class MessageModel_ItemBase;
-typedef QExplicitlySharedDataPointer<MessageModel_ItemBase> MessageModel_ItemBasePtr;
-
-//! \class MessageModel_ItemBase
-// \brief Declaration of the tree model base item.
-class MessageModel_ItemBase : public TreeModel_ItemBase
-{
-public:
-  //! Resets cached values
-  virtual void Reset() Standard_OVERRIDE { TreeModel_ItemBase::Reset(); }
-
-protected:
-  //! Initialize the current item. It creates a backup of the specific item information
-  virtual void initItem() const Standard_OVERRIDE {};
-
-  //! Constructor
-  //! param theParent a parent item
-  //! \param theRow the item row positition in the parent item
-  //! \param theColumn the item column positition in the parent item
-  MessageModel_ItemBase(TreeModel_ItemBasePtr theParent, const int theRow, const int theColumn)
-      : TreeModel_ItemBase(theParent, theRow, theColumn)
-  {
-  }
-
-  //! Return root item
-  //! \return an item instance
-  TreeModel_ItemBasePtr GetRootItem() const;
-};
-
-#endif
\ No newline at end of file
diff --git a/tools/MessageModel/MessageModel_ItemReport.cxx b/tools/MessageModel/MessageModel_ItemReport.cxx
deleted file mode 100644
index 470aedffb8..0000000000
--- a/tools/MessageModel/MessageModel_ItemReport.cxx
+++ /dev/null
@@ -1,243 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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.
-
-#include <inspector/MessageModel_ItemReport.hxx>
-
-#include <inspector/MessageModel_ItemAlert.hxx>
-#include <inspector/MessageModel_ItemRoot.hxx>
-#include <inspector/MessageModel_TreeModel.hxx>
-
-#include <Message.hxx>
-#include <Message_Alert.hxx>
-#include <Message_AttributeMeter.hxx>
-#include <Message_Messenger.hxx>
-#include <Message_PrinterToReport.hxx>
-#include <OSD_Path.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QColor>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant MessageModel_ItemReport::initValue(const int theRole) const
-{
-  QVariant aParentValue = MessageModel_ItemBase::initValue(theRole);
-  if (aParentValue.isValid())
-    return aParentValue;
-
-  const Handle(Message_Report)& aReport = getReport();
-  if (aReport.IsNull())
-    return QVariant();
-
-  if (theRole == Qt::ForegroundRole)
-  {
-    if (!aReport->IsActiveInMessenger())
-      return QColor(Qt::darkGray);
-
-    return QVariant();
-  }
-  if (theRole == Qt::ToolTipRole && !myDescription.IsEmpty()
-      && Column() == 0) // display the exported file name in tool tip
-  {
-    OSD_Path aPath(myDescription);
-    return QString("%1%2").arg(aPath.Name().ToCString()).arg(aPath.Extension().ToCString());
-  }
-
-  if (theRole != Qt::DisplayRole)
-    return QVariant();
-
-  if (Column() == 0)
-    return aReport->DynamicType()->Name();
-
-  Message_MetricType aMetricType;
-  int                aPosition;
-  if (MessageModel_TreeModel::IsMetricColumn(Column(), aMetricType, aPosition)
-      && (aMetricType == Message_MetricType_ProcessCPUUserTime
-          || aMetricType == Message_MetricType_ProcessCPUSystemTime
-          || aMetricType == Message_MetricType_WallClock))
-  {
-    if (aPosition == 0)
-      return CumulativeMetric(aReport, aMetricType);
-    else if (aPosition == 1)
-      return "100";
-  }
-  return QVariant();
-}
-
-// =======================================================================
-// function : initRowCount
-// purpose :
-// =======================================================================
-int MessageModel_ItemReport::initRowCount() const
-{
-  const Handle(Message_Report)& aReport = getReport();
-  if (aReport.IsNull())
-    return 0;
-
-  MessageModel_ItemReport* aCurrentItem = (MessageModel_ItemReport*)this;
-  for (int aGravityId = Message_Trace; aGravityId <= Message_Fail; aGravityId++)
-  {
-    const Message_ListOfAlert& anAlerts = aReport->GetAlerts((Message_Gravity)aGravityId);
-    for (Message_ListOfAlert::Iterator anIt(anAlerts); anIt.More(); anIt.Next())
-    {
-      Message_ListOfAlert aCurAlerts;
-      aCurAlerts.Append(anIt.Value());
-      aCurrentItem->myChildAlerts.Bind(myChildAlerts.Size(), aCurAlerts);
-    }
-  }
-  return aCurrentItem->myChildAlerts.Size();
-}
-
-// =======================================================================
-// function : createChild
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr MessageModel_ItemReport::createChild(int theRow, int theColumn)
-{
-  return MessageModel_ItemAlert::CreateItem(currentItem(), theRow, theColumn);
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void MessageModel_ItemReport::Init()
-{
-  MessageModel_ItemRootPtr aRootItem = itemDynamicCast<MessageModel_ItemRoot>(Parent());
-  myReport = aRootItem ? aRootItem->GetReport(Row(), myDescription) : Handle(Message_Report)();
-
-  MessageModel_ItemBase::Init();
-}
-
-// =======================================================================
-// function : getReport
-// purpose :
-// =======================================================================
-const Handle(Message_Report)& MessageModel_ItemReport::getReport() const
-{
-  initItem();
-  return myReport;
-}
-
-// =======================================================================
-// function : Reset
-// purpose :
-// =======================================================================
-void MessageModel_ItemReport::Reset()
-{
-  MessageModel_ItemBase::Reset();
-  myReport = Handle(Message_Report)();
-  myChildAlerts.Clear();
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void MessageModel_ItemReport::initItem() const
-{
-  if (IsInitialized())
-    return;
-  const_cast<MessageModel_ItemReport*>(this)->Init();
-}
-
-// =======================================================================
-// function : FindReportItem
-// purpose :
-// =======================================================================
-MessageModel_ItemReportPtr MessageModel_ItemReport::FindReportItem(
-  const TreeModel_ItemBasePtr& theItem)
-{
-  TreeModel_ItemBasePtr anItem = theItem;
-  while (anItem)
-  {
-    if (MessageModel_ItemReportPtr aReportItem = itemDynamicCast<MessageModel_ItemReport>(anItem))
-      return aReportItem;
-
-    anItem = anItem->Parent();
-  }
-  return MessageModel_ItemReportPtr();
-}
-
-// =======================================================================
-// function : FindReport
-// purpose :
-// =======================================================================
-Handle(Message_Report) MessageModel_ItemReport::FindReport(const MessageModel_ItemBasePtr& theItem)
-{
-  Handle(Message_Report) aReport;
-
-  MessageModel_ItemBasePtr anItem = theItem;
-  while (anItem)
-  {
-    MessageModel_ItemReportPtr aReportItem = itemDynamicCast<MessageModel_ItemReport>(anItem);
-
-    if (aReportItem)
-      return aReportItem->GetReport();
-
-    anItem = itemDynamicCast<MessageModel_ItemBase>(anItem->Parent());
-  }
-  return NULL;
-}
-
-// =======================================================================
-// function : CumulativeMetric
-// purpose :
-// =======================================================================
-Standard_Real MessageModel_ItemReport::CumulativeMetric(const Handle(Message_Report)& theReport,
-                                                        const Message_MetricType      theMetricType)
-{
-  if (!theReport->ActiveMetrics().Contains(theMetricType))
-    return 0;
-
-  Standard_Real aMetric = 0;
-  for (int iGravity = Message_Trace; iGravity <= Message_Fail; ++iGravity)
-  {
-    const Message_ListOfAlert&     anAlerts = theReport->GetAlerts((Message_Gravity)iGravity);
-    Handle(Message_AttributeMeter) aFirstAttribute /*, aLastAttribute*/;
-    for (Message_ListOfAlert::Iterator anAlertsIterator(anAlerts); anAlertsIterator.More();
-         anAlertsIterator.Next())
-    {
-      Handle(Message_AlertExtended) anAlert =
-        Handle(Message_AlertExtended)::DownCast(anAlertsIterator.Value());
-      if (anAlert.IsNull())
-        continue;
-      Handle(Message_AttributeMeter) anAttribute =
-        Handle(Message_AttributeMeter)::DownCast(anAlert->Attribute());
-      if (anAttribute.IsNull() || !anAttribute->HasMetric(theMetricType)
-          || !anAttribute->IsMetricValid(theMetricType))
-        continue;
-
-      // if (aFirstAttribute.IsNull())
-      //   aFirstAttribute = anAttribute;
-      // else
-      //{
-      // aLastAttribute = anAttribute;
-      //}
-      aMetric += anAttribute->StopValue(theMetricType) - anAttribute->StartValue(theMetricType);
-    }
-    // if (aFirstAttribute.IsNull())
-    //   continue;
-    // if (aLastAttribute.IsNull())
-    //   aLastAttribute = aFirstAttribute;
-
-    // aMetric += aLastAttribute->StopValue (theMetricType) - aFirstAttribute->StartValue
-    // (theMetricType);
-  }
-  return aMetric;
-}
diff --git a/tools/MessageModel/MessageModel_ItemReport.hxx b/tools/MessageModel/MessageModel_ItemReport.hxx
deleted file mode 100644
index 6fe8c9afeb..0000000000
--- a/tools/MessageModel/MessageModel_ItemReport.hxx
+++ /dev/null
@@ -1,126 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 MessageModel_ItemReport_H
-#define MessageModel_ItemReport_H
-
-#include <inspector/MessageModel_ItemBase.hxx>
-#include <Standard.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <Message_Alert.hxx>
-#include <Message_Report.hxx>
-#include <NCollection_DataMap.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QMap>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-class MessageModel_ItemReport;
-typedef QExplicitlySharedDataPointer<MessageModel_ItemReport> MessageModel_ItemReportPtr;
-
-//! \class MessageModel_ItemReport
-//! This item is connected to Message_Alert.
-//! Parent is MessageModel_ItemRoot, children are MessageModel_ItemAlert or no children
-class MessageModel_ItemReport : public MessageModel_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  //! \param theRow the item row positition in the parent item
-  //! \param theColumn the item column positition in the parent item
-  //! \return the pointer to the created item
-  static MessageModel_ItemReportPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                               const int             theRow,
-                                               const int             theColumn)
-  {
-    return MessageModel_ItemReportPtr(new MessageModel_ItemReport(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~MessageModel_ItemReport() Standard_OVERRIDE {};
-
-  //! Returns the current shape
-  const Handle(Message_Report)& GetReport() const { return myReport; }
-
-  //! Returns alert of the report for the parameter row
-  Standard_Boolean GetChildAlerts(const int theRow, Message_ListOfAlert& theAlerts) const
-  {
-    return myChildAlerts.Find(theRow, theAlerts);
-  }
-
-  //! Returns the report description or NULL
-  const TCollection_AsciiString& GetDescription() const { return myDescription; }
-
-  //! Inits the item, fills internal containers
-  Standard_EXPORT virtual void Init() Standard_OVERRIDE;
-
-  //! Resets cached values
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-  //! Return data value for the role.
-  //! \param theRole a value role
-  //! \return the value
-  Standard_EXPORT virtual QVariant initValue(const int theRole) const Standard_OVERRIDE;
-
-  //! \return number of children.
-  Standard_EXPORT virtual int initRowCount() const Standard_OVERRIDE;
-
-  //! Returns report of the tree model item. Iterates up by parents intil the report item is found.
-  //! \return an item or NULL
-  Standard_EXPORT static MessageModel_ItemReportPtr FindReportItem(
-    const TreeModel_ItemBasePtr& theItem);
-
-  //! Returns report of the item
-  static Handle(Message_Report) FindReport(const MessageModel_ItemBasePtr& thetItem);
-
-  //! Returns report cumulative metric as stop time of the last alert minus start time of the first
-  //! alert
-  Standard_EXPORT static Standard_Real CumulativeMetric(const Handle(Message_Report)& theReport,
-                                                        const Message_MetricType theMetricType);
-
-protected:
-  //! Initialize the current item.
-  virtual void initItem() const Standard_OVERRIDE;
-
-  //! Creates a child item in the given position.
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \return the created item
-  virtual TreeModel_ItemBasePtr createChild(int theRow, int theColumn) Standard_OVERRIDE;
-
-  //! Returns number of child shapes. Init item if it is not initialized
-  //! \return integer value
-  int getRowCount() const;
-
-  //! Returns current shape, initialized item if it has not been initialized yet
-  //! \return shape value
-  const Handle(Message_Report)& getReport() const;
-
-private:
-  //! Constructor
-  MessageModel_ItemReport(TreeModel_ItemBasePtr theParent, const int theRow, const int theColumn)
-      : MessageModel_ItemBase(theParent, theRow, theColumn)
-  {
-  }
-
-private:
-  NCollection_DataMap<Standard_Integer, Message_ListOfAlert>
-    myChildAlerts; //!< container of child alerts
-
-  Handle(Message_Report)  myReport;      //!< current report
-  TCollection_AsciiString myDescription; //!< description
-};
-
-#endif
diff --git a/tools/MessageModel/MessageModel_ItemRoot.cxx b/tools/MessageModel/MessageModel_ItemRoot.cxx
deleted file mode 100644
index 77a85baa8b..0000000000
--- a/tools/MessageModel/MessageModel_ItemRoot.cxx
+++ /dev/null
@@ -1,96 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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.
-
-#include <inspector/MessageModel_ItemRoot.hxx>
-#include <inspector/MessageModel_ItemReport.hxx>
-
-// =======================================================================
-// function : SetReport
-// purpose :
-// =======================================================================
-void MessageModel_ItemRoot::SetReport(const int                      theRowId,
-                                      const Handle(Message_Report)&  theReport,
-                                      const TCollection_AsciiString& theReportDescription)
-{
-  NCollection_List<MessageModel_ReportInformation>::Iterator aReportsIt(myReports);
-  for (int aRowId = 0; aReportsIt.More(); aReportsIt.Next(), aRowId++)
-  {
-    if (aRowId == theRowId)
-      break;
-  }
-  aReportsIt.ChangeValue().myReport      = theReport;
-  aReportsIt.ChangeValue().myDescription = theReportDescription;
-}
-
-// =======================================================================
-// function : GetReport
-// purpose :
-// =======================================================================
-const Handle(Message_Report)& MessageModel_ItemRoot::GetReport(
-  const int                theRowId,
-  TCollection_AsciiString& theReportDescription)
-{
-  NCollection_List<MessageModel_ReportInformation>::Iterator aReportsIt(myReports);
-  for (int aRowId = 0; aReportsIt.More(); aReportsIt.Next(), aRowId++)
-  {
-    if (aRowId == theRowId)
-      break;
-  }
-  theReportDescription = aReportsIt.Value().myDescription;
-  return aReportsIt.Value().myReport;
-}
-
-// =======================================================================
-// function : HasReport
-// purpose :
-// =======================================================================
-Standard_Boolean MessageModel_ItemRoot::HasReport(const Handle(Message_Report)& theReport)
-{
-  NCollection_List<MessageModel_ReportInformation>::Iterator aReportsIt(myReports);
-  for (int aRowId = 0; aReportsIt.More(); aReportsIt.Next(), aRowId++)
-  {
-    if (aReportsIt.Value().myReport == theReport)
-      return Standard_True;
-  }
-  return Standard_False;
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant MessageModel_ItemRoot::initValue(const int theRole) const
-{
-  QVariant aParentValue = MessageModel_ItemBase::initValue(theRole);
-  if (aParentValue.isValid())
-    return aParentValue;
-
-  if (Column() != 0)
-    return QVariant();
-
-  if (theRole == Qt::DisplayRole)
-    return myName.IsEmpty() ? "Message_Reports" : myName.ToCString();
-
-  return QVariant();
-}
-
-// =======================================================================
-// function : createChild
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr MessageModel_ItemRoot::createChild(int theRow, int theColumn)
-{
-  return MessageModel_ItemReport::CreateItem(currentItem(), theRow, theColumn);
-}
diff --git a/tools/MessageModel/MessageModel_ItemRoot.hxx b/tools/MessageModel/MessageModel_ItemRoot.hxx
deleted file mode 100644
index 202d70a22f..0000000000
--- a/tools/MessageModel/MessageModel_ItemRoot.hxx
+++ /dev/null
@@ -1,129 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 MessageModel_ItemRoot_H
-#define MessageModel_ItemRoot_H
-
-#include <Message_Alert.hxx>
-#include <Message_Report.hxx>
-#include <NCollection_List.hxx>
-#include <Standard.hxx>
-#include <TCollection_AsciiString.hxx>
-
-#include <inspector/MessageModel_ItemBase.hxx>
-
-class MessageModel_ItemRoot;
-typedef QExplicitlySharedDataPointer<MessageModel_ItemRoot> MessageModel_ItemRootPtr;
-
-//! \struct to extend report by description
-struct MessageModel_ReportInformation
-{
-  //! Constructor
-  MessageModel_ReportInformation(Handle(Message_Report)         theReport,
-                                 const TCollection_AsciiString& theDescription)
-      : myReport(theReport),
-        myDescription(theDescription)
-  {
-  }
-
-  Handle(Message_Report)  myReport;      //! report
-  TCollection_AsciiString myDescription; //! report description
-};
-
-//! \class MessageModel_ItemRoot
-//! Collects message reports that should be visualized in tree view. Reports are cached and if
-//! reports are not needed, cache should be cleared using RemoveAllReports Parent is NULL, children
-//! are MessageModel_ItemReport items.
-class MessageModel_ItemRoot : public MessageModel_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  static MessageModel_ItemRootPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                             const int             theRow,
-                                             const int             theColumn)
-  {
-    return MessageModel_ItemRootPtr(new MessageModel_ItemRoot(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~MessageModel_ItemRoot() Standard_OVERRIDE {};
-
-  //! Appends new report
-  //! \param theReport a report instance
-  //! \param theReportDescription an additional report information
-  void AddReport(const Handle(Message_Report)&  theReport,
-                 const TCollection_AsciiString& theReportDescription)
-  {
-    myReports.Append(MessageModel_ReportInformation(theReport, theReportDescription));
-  }
-
-  //! Set report, se it into the given row index
-  //! \param theRowId a report child row
-  //! \param theReport a report instance
-  //! \param theReportDescription an additional report information
-  Standard_EXPORT void SetReport(const int                      theRowId,
-                                 const Handle(Message_Report)&  theReport,
-                                 const TCollection_AsciiString& theReportDescription = "");
-
-  //! Returns true if report exists is in the list of the current reports
-  //! \param theReport a report instance
-  //! \return boolean value
-  Standard_EXPORT Standard_Boolean HasReport(const Handle(Message_Report)& theReport);
-
-  //!< Returns processed reports
-  const NCollection_List<MessageModel_ReportInformation>& Reports() const { return myReports; }
-
-  //! Clears internal container of added reports
-  void RemoveAllReports() { myReports.Clear(); }
-
-  //! Returns report by the number
-  //! \param theRowId an index of the report in the internal container.
-  Standard_EXPORT const Handle(Message_Report)& GetReport(
-    const int                theRowId,
-    TCollection_AsciiString& theReportDescription);
-
-  //! Set the item name
-  //! \param theName text value
-  void SetName(const TCollection_AsciiString& theName) { myName = theName; }
-
-protected:
-  //! Return data value for the role.
-  //! \param theRole a value role
-  //! \return the value
-  virtual QVariant initValue(const int theRole) const Standard_OVERRIDE;
-
-  //! \return number of children.
-  virtual int initRowCount() const Standard_OVERRIDE { return myReports.Size(); }
-
-  //! Creates a child item in the given position.
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \return the created item
-  virtual TreeModel_ItemBasePtr createChild(int theRow, int theColumn) Standard_OVERRIDE;
-
-private:
-  //! Constructor
-  //! param theParent a parent item
-  MessageModel_ItemRoot(TreeModel_ItemBasePtr theParent, const int theRow, const int theColumn)
-      : MessageModel_ItemBase(theParent, theRow, theColumn)
-  {
-  }
-
-private:
-  NCollection_List<MessageModel_ReportInformation> myReports; //!< reports sent by algorithms
-  TCollection_AsciiString                          myName;    //!< DisplayRole data, if defined
-};
-
-#endif
diff --git a/tools/MessageModel/MessageModel_TreeModel.cxx b/tools/MessageModel/MessageModel_TreeModel.cxx
deleted file mode 100644
index 89861d1a71..0000000000
--- a/tools/MessageModel/MessageModel_TreeModel.cxx
+++ /dev/null
@@ -1,209 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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.
-
-#include <inspector/MessageModel_TreeModel.hxx>
-
-#include <inspector/MessageModel_ItemAlert.hxx>
-#include <inspector/MessageModel_ItemRoot.hxx>
-#include <inspector/MessageModel_ItemReport.hxx>
-#include <inspector/TreeModel_ColumnType.hxx>
-
-#include <Message.hxx>
-
-const int COLUMN_NAME_WIDTH = 230;
-const int COLUMN_SIZE_WIDTH = 30;
-
-const int COLUMN_REAL_VALUE_WIDTH    = 115;
-const int COLUMN_PERCENT_VALUE_WIDTH = 50;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-MessageModel_TreeModel::MessageModel_TreeModel(QObject* theParent)
-    : TreeModel_ModelBase(theParent)
-{
-}
-
-// =======================================================================
-// function : InitColumns
-// purpose :
-// =======================================================================
-void MessageModel_TreeModel::InitColumns()
-{
-  // 0 - Name, 1 - visibility, 2 - Row
-  setHeaderItem(TreeModel_ColumnType_Name, TreeModel_HeaderSection("Name", COLUMN_NAME_WIDTH));
-  setHeaderItem(
-    TreeModel_ColumnType_Visibility,
-    TreeModel_HeaderSection("Visibility", TreeModel_ModelBase::ColumnVisibilityWidth()));
-  setHeaderItem(TreeModel_ColumnType_Row,
-                TreeModel_HeaderSection("Row", COLUMN_SIZE_WIDTH, Standard_True /*hidden*/));
-
-  int aNextIndex = 3;
-  for (int aMetricId = (int)Message_MetricType_None + 1;
-       aMetricId <= (int)Message_MetricType_MemHeapUsage;
-       aMetricId++)
-  {
-    Message_MetricType   aMetricType = (Message_MetricType)aMetricId;
-    OSD_MemInfo::Counter aMemInfo;
-    bool                 isMemInfo = Message::ToOSDMetric(aMetricType, aMemInfo);
-
-    setHeaderItem(
-      aNextIndex++,
-      TreeModel_HeaderSection(
-        QString("%1 [%2]").arg(Message::MetricToString(aMetricType)).arg(isMemInfo ? "Mb" : "s"),
-        COLUMN_REAL_VALUE_WIDTH));
-    setHeaderItem(aNextIndex++,
-                  TreeModel_HeaderSection(isMemInfo ? "Delta" : "%", COLUMN_PERCENT_VALUE_WIDTH));
-  }
-}
-
-// =======================================================================
-// function : GetMetricColumns
-// purpose :
-// =======================================================================
-void MessageModel_TreeModel::GetMetricColumns(const Message_MetricType theMetricType,
-                                              QList<int>&              theMetricColumns)
-{
-  theMetricColumns.clear();
-  int aNextIndex = 3; // after default parent columns, see InitColumns
-  for (int aMetricId = (int)Message_MetricType_None + 1;
-       aMetricId <= (int)Message_MetricType_MemHeapUsage;
-       aMetricId++)
-  {
-    if (theMetricType != (Message_MetricType)aMetricId)
-    {
-      aNextIndex += 2;
-      continue;
-    }
-    theMetricColumns.append(aNextIndex++);
-    theMetricColumns.append(aNextIndex++);
-  }
-}
-
-// =======================================================================
-// function : IsMetricColumn
-// purpose :
-// =======================================================================
-bool MessageModel_TreeModel::IsMetricColumn(const int           theColumnId,
-                                            Message_MetricType& theMetricType,
-                                            int&                thePosition)
-{
-  int aNextIndex = 3; // after default parent columns, see InitColumns
-  for (int aMetricId = (int)Message_MetricType_None + 1;
-       aMetricId <= (int)Message_MetricType_MemHeapUsage;
-       aMetricId++)
-  {
-    if (theColumnId == aNextIndex || theColumnId == aNextIndex + 1)
-    {
-      theMetricType = (Message_MetricType)aMetricId;
-      thePosition   = theColumnId - aNextIndex;
-      return true;
-    }
-    aNextIndex += 2;
-  }
-  return false;
-}
-
-// =======================================================================
-// function : createRootItem
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr MessageModel_TreeModel::createRootItem(const int theColumnId)
-{
-  return MessageModel_ItemRoot::CreateItem(TreeModel_ItemBasePtr(), 0, theColumnId);
-}
-
-// =======================================================================
-// function : HasReport
-// purpose :
-// =======================================================================
-Standard_Boolean MessageModel_TreeModel::HasReport(const Handle(Message_Report)& theReport)
-{
-  if (columnCount() == 0)
-    return Standard_False;
-
-  MessageModel_ItemRootPtr aRootItem = itemDynamicCast<MessageModel_ItemRoot>(RootItem(0));
-  return aRootItem && aRootItem->HasReport(theReport);
-}
-
-// =======================================================================
-// function : AddReport
-// purpose :
-// =======================================================================
-void MessageModel_TreeModel::AddReport(const Handle(Message_Report)&  theReport,
-                                       const TCollection_AsciiString& theReportDescription)
-{
-  for (int aColId = 0, aNbColumns = columnCount(); aColId < aNbColumns; aColId++)
-  {
-    MessageModel_ItemRootPtr aRootItem = itemDynamicCast<MessageModel_ItemRoot>(RootItem(aColId));
-    if (!aRootItem)
-      continue;
-    aRootItem->AddReport(theReport, theReportDescription);
-  }
-
-  Reset();
-  EmitLayoutChanged();
-}
-
-// =======================================================================
-// function : SetReport
-// purpose :
-// =======================================================================
-void MessageModel_TreeModel::SetReport(const int                      theRowId,
-                                       const Handle(Message_Report)&  theReport,
-                                       const TCollection_AsciiString& theReportDescription)
-{
-  for (int aColId = 0, aNbColumns = columnCount(); aColId < aNbColumns; aColId++)
-  {
-    MessageModel_ItemRootPtr aRootItem = itemDynamicCast<MessageModel_ItemRoot>(RootItem(aColId));
-    if (!aRootItem)
-      continue;
-    aRootItem->SetReport(theRowId, theReport, theReportDescription);
-  }
-  Reset();
-  EmitLayoutChanged();
-}
-
-// =======================================================================
-// function : Reports
-// purpose :
-// =======================================================================
-const NCollection_List<MessageModel_ReportInformation>& MessageModel_TreeModel::Reports() const
-{
-  MessageModel_ItemRootPtr aRootItem = itemDynamicCast<MessageModel_ItemRoot>(RootItem(0));
-  return aRootItem->Reports();
-}
-
-// =======================================================================
-// function : UpdateTreeModel
-// purpose :
-// =======================================================================
-void MessageModel_TreeModel::SetRootItemName(const TCollection_AsciiString& theName)
-{
-  MessageModel_ItemRootPtr aRootItem = itemDynamicCast<MessageModel_ItemRoot>(RootItem(0));
-  if (aRootItem)
-    aRootItem->SetName(theName);
-}
-
-// =======================================================================
-// function : UpdateTreeModel
-// purpose :
-// =======================================================================
-void MessageModel_TreeModel::UpdateTreeModel()
-{
-  Reset();
-  EmitLayoutChanged();
-}
diff --git a/tools/MessageModel/MessageModel_TreeModel.hxx b/tools/MessageModel/MessageModel_TreeModel.hxx
deleted file mode 100644
index 0325c455c7..0000000000
--- a/tools/MessageModel/MessageModel_TreeModel.hxx
+++ /dev/null
@@ -1,97 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 MessageModel_TreeModel_H
-#define MessageModel_TreeModel_H
-
-#include <inspector/MessageModel_ItemBase.hxx>
-#include <inspector/MessageModel_ItemRoot.hxx>
-#include <Standard.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <Message_Report.hxx>
-#include <inspector/TreeModel_ModelBase.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QMap>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-class MessageModel_TreeModel;
-
-//! \class MessageModel_TreeModel
-//! View model to visualize MessageReport/s content
-class MessageModel_TreeModel : public TreeModel_ModelBase
-{
-public:
-  //! Constructor
-  Standard_EXPORT MessageModel_TreeModel(QObject* theParent);
-
-  //! Destructor
-  virtual ~MessageModel_TreeModel() Standard_OVERRIDE {};
-
-  //! Creates model columns and root items.
-  Standard_EXPORT virtual void InitColumns() Standard_OVERRIDE;
-
-  //!< Returns columns of the model for the metric
-  //!< \param theMetricType metric
-  //!< \param[out] theMetricColumns  container of metric columns
-  static Standard_EXPORT void GetMetricColumns(const Message_MetricType theMetricType,
-                                               QList<int>&              theMetricColumns);
-
-  //!< Returns metric type for the column
-  //!< \param[in] theColumnId  index of the tree column
-  //!< \param[out] theMetricType  metric type if found
-  //!< \param[out] thePosition  index of the metric column, 0 - is metric, 1 - is delta
-  //!< \return true if the column has metric parameters
-  static Standard_EXPORT bool IsMetricColumn(const int           theColumnId,
-                                             Message_MetricType& theMetricType,
-                                             int&                thePosition);
-
-  //! Returns true if parameter report was added into the model
-  //! \param theReport a report instance
-  //! \return boolean value
-  Standard_EXPORT Standard_Boolean HasReport(const Handle(Message_Report)& theReport);
-
-  //! Add shape, append it to the model root item
-  //! \param theReport a report instance
-  //! \param theReportDescription an additional report information
-  Standard_EXPORT void AddReport(const Handle(Message_Report)&  theReport,
-                                 const TCollection_AsciiString& theReportDescription = "");
-
-  //! Set report, se it into the given row index
-  //! \param theRowId a report child row
-  //! \param theReport a report instance
-  //! \param theReportDescription an additional report information
-  Standard_EXPORT void SetReport(const int                      theRowId,
-                                 const Handle(Message_Report)&  theReport,
-                                 const TCollection_AsciiString& theReportDescription = "");
-
-  //!< Returns processed reports
-  Standard_EXPORT const NCollection_List<MessageModel_ReportInformation>& Reports() const;
-
-  //! Sets the text value of the Root item, only "Name" column accepts the parameter value
-  //! \theName visualized text of root item
-  Standard_EXPORT void SetRootItemName(const TCollection_AsciiString& theName);
-
-  //! Updates tree model
-  Standard_EXPORT void UpdateTreeModel();
-
-protected:
-  //! Creates root item
-  //! \param theColumnId index of a column
-  virtual TreeModel_ItemBasePtr createRootItem(const int theColumnId) Standard_OVERRIDE;
-};
-
-#endif
diff --git a/tools/MessageModel/icons/item_shape.png b/tools/MessageModel/icons/item_shape.png
deleted file mode 100644
index a808bc55e5..0000000000
Binary files a/tools/MessageModel/icons/item_shape.png and /dev/null differ
diff --git a/tools/MessageModel/icons/item_streamValues.png b/tools/MessageModel/icons/item_streamValues.png
deleted file mode 100644
index 7181f9460e..0000000000
Binary files a/tools/MessageModel/icons/item_streamValues.png and /dev/null differ
diff --git a/tools/MessageView/FILES b/tools/MessageView/FILES
deleted file mode 100644
index 7d7b86b686..0000000000
--- a/tools/MessageView/FILES
+++ /dev/null
@@ -1,10 +0,0 @@
-MessageView_ActionsTest.cxx
-MessageView_ActionsTest.hxx
-MessageView_Communicator.cxx
-MessageView_Communicator.hxx
-MessageView_MetricStatisticModel.cxx
-MessageView_MetricStatisticModel.hxx
-MessageView_VisibilityState.cxx
-MessageView_VisibilityState.hxx
-MessageView_Window.cxx
-MessageView_Window.hxx
diff --git a/tools/MessageView/MessageView_ActionsTest.cxx b/tools/MessageView/MessageView_ActionsTest.cxx
deleted file mode 100644
index 03eb46e65f..0000000000
--- a/tools/MessageView/MessageView_ActionsTest.cxx
+++ /dev/null
@@ -1,367 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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.
-
-#include <inspector/MessageView_ActionsTest.hxx>
-
-#include <inspector/MessageModel_ItemReport.hxx>
-#include <inspector/MessageModel_ItemRoot.hxx>
-#include <inspector/MessageModel_ItemAlert.hxx>
-#include <inspector/MessageModel_TreeModel.hxx>
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <Message.hxx>
-#include <Message_AlertExtended.hxx>
-#include <Message_Level.hxx>
-#include <Message_Messenger.hxx>
-
-#include <gp_Ax1.hxx>
-#include <gp_Ax2.hxx>
-#include <gp_Ax3.hxx>
-#include <Bnd_Box.hxx>
-#include <Bnd_OBB.hxx>
-#include <BRepBuilderAPI_MakeEdge.hxx>
-#include <OSD_Chronometer.hxx>
-#include <Quantity_Color.hxx>
-#include <Quantity_ColorRGBA.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <TopoDS_AlertAttribute.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAction>
-#include <QFileDialog>
-#include <QItemSelectionModel>
-#include <QMenu>
-#include <QMessageBox>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-#include <ctime>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-MessageView_ActionsTest::MessageView_ActionsTest(QWidget*                theParent,
-                                                 MessageModel_TreeModel* theTreeModel,
-                                                 QItemSelectionModel*    theModel)
-    : QObject(theParent),
-      myTreeModel(theTreeModel),
-      mySelectionModel(theModel)
-{
-  myActions.insert(
-    MessageModel_ActionType_TestMetric,
-    ViewControl_Tools::CreateAction("Test <metric>", SLOT(OnTestMetric()), parent(), this));
-  myActions.insert(MessageModel_ActionType_TestMessenger,
-                   ViewControl_Tools::CreateAction("Test <Message_Messenger>",
-                                                   SLOT(OnTestMessenger()),
-                                                   parent(),
-                                                   this));
-  myActions.insert(MessageModel_ActionType_TestReportTree,
-                   ViewControl_Tools::CreateAction("Test <Tree of messages>",
-                                                   SLOT(OnTestReportTree()),
-                                                   parent(),
-                                                   this));
-}
-
-// =======================================================================
-// function : AddMenuActions
-// purpose :
-// =======================================================================
-void MessageView_ActionsTest::AddMenuActions(const QModelIndexList& theSelectedIndices,
-                                             QMenu*                 theMenu)
-{
-  MessageModel_ItemReportPtr aReportItem;
-  for (QModelIndexList::const_iterator aSelIt = theSelectedIndices.begin();
-       aSelIt != theSelectedIndices.end();
-       aSelIt++)
-  {
-    QModelIndex anIndex = *aSelIt;
-    if (anIndex.column() != 0)
-      continue;
-
-    TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-    if (!anItemBase)
-      continue;
-
-    MessageModel_ItemRootPtr aRootItem = itemDynamicCast<MessageModel_ItemRoot>(anItemBase);
-    if (aRootItem)
-      continue;
-
-    aReportItem = itemDynamicCast<MessageModel_ItemReport>(anItemBase);
-    if (aReportItem)
-      break;
-
-    MessageModel_ItemAlertPtr anAlertItem = itemDynamicCast<MessageModel_ItemAlert>(anItemBase);
-    if (anAlertItem)
-      continue;
-  }
-
-  if (aReportItem && !aReportItem->GetReport().IsNull())
-  {
-    theMenu->addAction(myActions[MessageModel_ActionType_TestMetric]);
-    theMenu->addAction(myActions[MessageModel_ActionType_TestMessenger]);
-    theMenu->addAction(myActions[MessageModel_ActionType_TestReportTree]);
-
-    bool isReportEnabled = aReportItem->GetReport()->IsActiveInMessenger();
-    myActions[MessageModel_ActionType_TestMetric]->setEnabled(isReportEnabled);
-    myActions[MessageModel_ActionType_TestMessenger]->setEnabled(isReportEnabled);
-    myActions[MessageModel_ActionType_TestReportTree]->setEnabled(isReportEnabled);
-  }
-  theMenu->addSeparator();
-}
-
-// =======================================================================
-// function : getSelectedReport
-// purpose :
-// =======================================================================
-Handle(Message_Report) MessageView_ActionsTest::getSelectedReport(QModelIndex& theReportIndex) const
-{
-  MessageModel_ItemReportPtr aReportItem;
-  QModelIndexList            aSelectedIndices = mySelectionModel->selectedIndexes();
-  for (QModelIndexList::const_iterator aSelIt = aSelectedIndices.begin();
-       aSelIt != aSelectedIndices.end();
-       aSelIt++)
-  {
-    QModelIndex anIndex = *aSelIt;
-    if (anIndex.column() != 0)
-      continue;
-
-    TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-    if (!anItemBase)
-      continue;
-
-    aReportItem    = itemDynamicCast<MessageModel_ItemReport>(anItemBase);
-    theReportIndex = anIndex;
-    if (aReportItem)
-      break;
-  }
-  if (!aReportItem)
-    return NULL;
-
-  return aReportItem->GetReport();
-}
-
-// =======================================================================
-// function : OnTestMetric
-// purpose :
-// =======================================================================
-void MessageView_ActionsTest::OnTestMetric()
-{
-  QModelIndex            aReportIndex;
-  Handle(Message_Report) aReport = getSelectedReport(aReportIndex);
-  if (aReport.IsNull())
-    return;
-
-  OCCT_ADD_MESSAGE_LEVEL_SENTRY("MessageModel_Actions::OnTestMetric()");
-  clock_t start_time = clock();
-
-  Standard_Integer aCounter = 1500;
-  Standard_Real    aValue = 0., aValue2 = 0.1;
-
-  for (int aTopIt = 0; aTopIt < 4; aTopIt++)
-  {
-    Message::SendInfo() << "Calculate";
-    for (int j = 0; j < aCounter; j++)
-    {
-      for (int i = 0; i < aCounter; i++)
-      {
-        aValue = (aValue * 2. + 3.) * 0.5 - 0.3 * 0.5;
-
-        Standard_Real aValue3 = aValue + aValue2 * 0.2;
-        (void)aValue3;
-      }
-    }
-  }
-
-  myTreeModel->UpdateTreeModel();
-
-  clock_t end_time = clock();
-  std::cout << "clock() = " << end_time - start_time << std::endl;
-}
-
-// =======================================================================
-// function : createShapeOnLevel
-// purpose :
-// =======================================================================
-void createShapeOnLevel()
-{
-  OCCT_ADD_MESSAGE_LEVEL_SENTRY("createShapeOnLevel")
-
-  Message_Messenger::StreamBuffer sout = Message::SendInfo();
-
-  BRepBuilderAPI_MakeEdge aBuilder(gp_Pnt(0., 0., 0.), gp_Pnt(20., 10., 20.));
-  TopoDS_Shape            aShape = aBuilder.Shape();
-
-  Message::DefaultMessenger() << aShape;
-}
-
-// =======================================================================
-// function : createShape
-// purpose :
-// =======================================================================
-void createShape()
-{
-  Message_Messenger::StreamBuffer sout = Message::SendInfo();
-  BRepBuilderAPI_MakeEdge         aBuilder(gp_Pnt(0., 0., 0.), gp_Pnt(20., 10., 20.));
-  TopoDS_Shape                    aShape = aBuilder.Shape();
-
-  Message::DefaultMessenger() << aShape;
-  createShapeOnLevel();
-}
-
-// =======================================================================
-// function : OnTestMessenger
-// purpose :
-// =======================================================================
-void MessageView_ActionsTest::OnTestMessenger()
-{
-  // string messages
-  OCCT_ADD_MESSAGE_LEVEL_SENTRY("MessageModel_Actions::OnTestMessenger()")
-
-  Message::DefaultMessenger()->Send("Values");
-  Message::DefaultMessenger()->Send("Values second");
-
-  Message_Messenger::StreamBuffer sout = Message::SendInfo();
-  // gp_XYZ
-  {
-    gp_XYZ aCoords(1.3, 2.3, 3.4);
-    aCoords.DumpJson(sout);
-    sout.Flush(Standard_True);
-  }
-  // gp_Dir
-  {
-    gp_Dir aDir(0.3, 0.3, 0.4);
-    aDir.DumpJson(sout);
-    sout.Flush(Standard_True);
-  }
-  // gp_Ax1
-  {
-    gp_Ax1 aCoords(gp_Pnt(1.3, 2.3, 3.4), gp_Dir(0.3, 0.3, 0.4));
-    aCoords.DumpJson(sout);
-    sout.Flush(Standard_True);
-  }
-  // gp_Ax2
-  {
-    gp_Ax2 aCoords(gp_Pnt(10.3, 20.3, 30.4), gp_Dir(0.3, 0.3, 0.4));
-    aCoords.DumpJson(sout);
-    sout.Flush(Standard_True);
-  }
-  // gp_Ax3
-  {
-    gp_Ax3 aPln(gp_Pnt(10., 20., 15.), gp_Dir(0., 0., 1.), gp_Dir(1., 0., 0.));
-    aPln.DumpJson(sout);
-    sout.Flush(Standard_True);
-  }
-  // gp_Trsf
-  {
-    gp_Trsf aTrsf;
-    aTrsf.SetRotation(gp::OZ(), 0.3);
-    aTrsf.SetTranslationPart(gp_Vec(15., 15., 15.));
-    aTrsf.SetScaleFactor(3.);
-
-    aTrsf.DumpJson(sout);
-    sout.Flush(Standard_True);
-  }
-  // Bnd_Box
-  {
-    Bnd_Box aBox(gp_Pnt(20., 15., 10.), gp_Pnt(25., 20., 15.));
-    aBox.DumpJson(sout);
-    sout.Flush(Standard_True);
-  }
-  // Bnd_OBB
-  {
-    Bnd_OBB anOBB(gp_Pnt(-10., -15., -10.),
-                  gp_Dir(1., 0., 0.),
-                  gp_Dir(0., 1., 0.),
-                  gp_Dir(0., 0., 1.),
-                  5.,
-                  10.,
-                  5.);
-    anOBB.DumpJson(sout);
-    sout.Flush(Standard_True);
-  }
-  // Quantity_ColorRGBA
-  {
-    Quantity_ColorRGBA aColor(0.2f, 0.8f, 0.8f, 0.2f);
-    aColor.DumpJson(sout);
-    sout.Flush(Standard_True);
-  }
-  // Quantity_Color
-  {
-    Quantity_Color aColor(0.8, 0.8, 0.8, Quantity_TOC_RGB);
-    aColor.DumpJson(sout);
-    sout.Flush(Standard_True);
-  }
-  // shape messages
-  {
-    createShape();
-  }
-  myTreeModel->UpdateTreeModel();
-}
-
-// =======================================================================
-// function : levelAlerts
-// purpose :
-// =======================================================================
-void levelAlerts(const int theCurrentLevel, const int theTopLevel)
-{
-  if (theTopLevel - theCurrentLevel <= 0)
-    return;
-
-  OCCT_ADD_MESSAGE_LEVEL_SENTRY(TCollection_AsciiString("Level: ") + theCurrentLevel)
-
-  Message_Messenger::StreamBuffer sout = Message::SendInfo();
-  sout << "Alert(" << theCurrentLevel << "): " << 1 << ", " << 2 << std::endl;
-  sout << "Alert(" << theCurrentLevel << "): " << 3 << ", " << 4 << std::endl;
-
-  levelAlerts(theCurrentLevel + 1, theTopLevel);
-
-  sout << "Alert(" << theCurrentLevel << "): " << 4 << ", " << 5 << std::endl;
-}
-
-// =======================================================================
-// function : levelAlert
-// purpose :
-// =======================================================================
-void levelAlert(const int theCurrentLevel, const int theTopLevel)
-{
-  if (theTopLevel - theCurrentLevel <= 0)
-    return;
-
-  OCCT_ADD_MESSAGE_LEVEL_SENTRY("levelAlert")
-
-  Message_Messenger::StreamBuffer sout = Message::SendInfo();
-  sout << "Level: " << theCurrentLevel << "(Single, no alerts on the level)" << std::endl;
-
-  levelAlerts(theCurrentLevel + 1, theTopLevel);
-}
-
-// =======================================================================
-// function : OnTestReportTree
-// purpose :
-// =======================================================================
-void MessageView_ActionsTest::OnTestReportTree()
-{
-  OCCT_ADD_MESSAGE_LEVEL_SENTRY("MessageModel_Actions::OnTestReportTree()")
-  Message_Messenger::StreamBuffer sout = Message::SendInfo();
-
-  int aTopLevel = 3;
-  levelAlerts(1, aTopLevel);
-
-  sout << "Alert: " << 4 << std::endl;
-  levelAlert(1, aTopLevel);
-
-  myTreeModel->UpdateTreeModel();
-}
diff --git a/tools/MessageView/MessageView_ActionsTest.hxx b/tools/MessageView/MessageView_ActionsTest.hxx
deleted file mode 100644
index d07bf97c56..0000000000
--- a/tools/MessageView/MessageView_ActionsTest.hxx
+++ /dev/null
@@ -1,82 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 MessageView_ActionsTest_H
-#define MessageView_ActionsTest_H
-
-#include <Standard.hxx>
-#include <Standard_Handle.hxx>
-#include <Standard_Transient.hxx>
-
-#include <inspector/MessageModel_ActionType.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QMap>
-#include <QModelIndexList>
-#include <QPoint>
-#include <QString>
-#include <Standard_WarningsRestore.hxx>
-
-class Message_Report;
-class MessageModel_TreeModel;
-
-class QAction;
-class QItemSelectionModel;
-class QMenu;
-class QWidget;
-
-//! \class MessageView_ActionsTest
-//! Window that unites all MessageView controls.
-class MessageView_ActionsTest : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  MessageView_ActionsTest(QWidget*                theParent,
-                          MessageModel_TreeModel* theTreeModel,
-                          QItemSelectionModel*    theModel);
-
-  //! Destructor
-  virtual ~MessageView_ActionsTest() {}
-
-  //! Fills popup menu with actions depending on the current selection
-  //! \param theSelectedIndices tree model selected indices
-  //! \param theMenu menu to be filled
-  Standard_EXPORT void AddMenuActions(const QModelIndexList& theSelectedIndices, QMenu* theMenu);
-
-public slots:
-  //! Sending several alerts to check metric of message-alert-tool mechanizm
-  void OnTestMetric();
-
-  //! Sending several alerts to check property panel/presentations of messenger-alert-tool mechanizm
-  void OnTestMessenger();
-
-  //! Check tree of alerts
-  void OnTestReportTree();
-
-protected:
-  //! Returns report of selected tree view item if a report item is selected
-  //! \param theReportIndex tree model index of the found report
-  //! \return report instance or NULL
-  Handle(Message_Report) getSelectedReport(QModelIndex& theReportIndex) const;
-
-protected:
-  MessageModel_TreeModel*                 myTreeModel;      //< tree model
-  QItemSelectionModel*                    mySelectionModel; //< selection model
-  QMap<MessageModel_ActionType, QAction*> myActions;        //!< container of all actions
-};
-
-#endif
diff --git a/tools/MessageView/MessageView_Communicator.cxx b/tools/MessageView/MessageView_Communicator.cxx
deleted file mode 100644
index 0776f0cfd6..0000000000
--- a/tools/MessageView/MessageView_Communicator.cxx
+++ /dev/null
@@ -1,25 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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.
-
-#include <inspector/MessageView_Communicator.hxx>
-
-// =======================================================================
-// function :  CreateCommunicator
-// purpose : Creates a communicator by the library loading
-// =======================================================================
-Standard_EXPORTEXTERNC TInspectorAPI_Communicator* CreateCommunicator()
-{
-  return new MessageView_Communicator();
-}
diff --git a/tools/MessageView/MessageView_Communicator.hxx b/tools/MessageView/MessageView_Communicator.hxx
deleted file mode 100644
index 840fd2e428..0000000000
--- a/tools/MessageView/MessageView_Communicator.hxx
+++ /dev/null
@@ -1,78 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 MessageView_Communicator_H
-#define MessageView_Communicator_H
-
-#include <inspector/MessageView_Window.hxx>
-#include <inspector/TInspectorAPI_Communicator.hxx>
-
-//! \class MessageView_Communicator.
-//! \brief This is a connector from TInspector application to MessageView window
-class MessageView_Communicator : public TInspectorAPI_Communicator
-{
-public:
-  //! Constructor
-  MessageView_Communicator()
-      : TInspectorAPI_Communicator(),
-        myWindow(new MessageView_Window(0))
-  {
-  }
-
-  //! Destructor
-  virtual ~MessageView_Communicator() Standard_OVERRIDE {}
-
-  //! Provides the container with a parent where this container should be inserted.
-  //! If Qt implementation, it should be QWidget with QLayout set inside
-  //! \param theParent a parent class
-  virtual void SetParent(void* theParent) Standard_OVERRIDE { myWindow->SetParent(theParent); }
-
-  //! Sets parameters container, it should be used when the plugin is initialized or in update
-  //! content \param theParameters a parameters container
-  virtual void SetParameters(const Handle(TInspectorAPI_PluginParameters)& theParameters)
-    Standard_OVERRIDE
-  {
-    myWindow->SetParameters(theParameters);
-  }
-
-  //! Provide container for actions available in inspector on general level
-  //! \param theMenu if Qt implementation, it is QMenu object
-  virtual void FillActionsMenu(void* theMenu) Standard_OVERRIDE
-  {
-    myWindow->FillActionsMenu(theMenu);
-  }
-
-  //! Returns plugin preferences, empty implementation by default
-  //! \param theItem container of preference elements
-  virtual void GetPreferences(TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
-  {
-    myWindow->GetPreferences(theItem);
-  }
-
-  //! Stores plugin preferences, empty implementation by default
-  //! \param theItem container of preference elements
-  virtual void SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
-  {
-    myWindow->SetPreferences(theItem);
-  }
-
-  //! Calls update of the plugin's content
-  virtual void UpdateContent() Standard_OVERRIDE { myWindow->UpdateContent(); }
-
-private:
-  MessageView_Window* myWindow; //!< current window
-};
-
-#endif
diff --git a/tools/MessageView/MessageView_MetricStatisticModel.cxx b/tools/MessageView/MessageView_MetricStatisticModel.cxx
deleted file mode 100644
index dd7c59dca9..0000000000
--- a/tools/MessageView/MessageView_MetricStatisticModel.cxx
+++ /dev/null
@@ -1,162 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Svetlana SHUTINA
-// Copyright (c) 2021 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.
-
-#include <inspector/MessageView_MetricStatisticModel.hxx>
-#include <inspector/MessageModel_ItemAlert.hxx>
-#include <inspector/MessageModel_ItemReport.hxx>
-
-#include <Message_AlertExtended.hxx>
-#include <Message_Attribute.hxx>
-#include <Message_AttributeMeter.hxx>
-#include <Message_CompositeAlerts.hxx>
-#include <Message_Report.hxx>
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void MessageView_MetricStatisticModel::Init(const TreeModel_ItemBasePtr theItemBase)
-{
-  MessageModel_ItemReportPtr aReportItem = itemDynamicCast<MessageModel_ItemReport>(theItemBase);
-  if (aReportItem)
-  {
-    Handle(Message_Report)     aReport  = aReportItem->GetReport();
-    const Message_ListOfAlert& anAlerts = aReport->GetAlerts(Message_Info);
-    for (Message_ListOfAlert::Iterator anIt(anAlerts); anIt.More(); anIt.Next())
-    {
-      appendAlert(anIt.Value());
-    }
-  }
-  else
-  {
-    MessageModel_ItemAlertPtr anAlertItem = itemDynamicCast<MessageModel_ItemAlert>(theItemBase);
-    if (anAlertItem)
-    {
-      appendAlert(anAlertItem->GetAlert());
-    }
-  }
-  std::map<double, std::list<QString>> aTmpMap;
-  std::list<double>                    aTimes;
-  for (QMap<QString, QPair<int, double>>::Iterator anIterValue = myValues.begin();
-       anIterValue != myValues.end();
-       ++anIterValue)
-  {
-    std::map<double, std::list<QString>>::iterator anIter =
-      aTmpMap.find(anIterValue.value().second);
-    if (anIter != aTmpMap.end())
-    {
-      aTmpMap.at(anIterValue.value().second).push_back(anIterValue.key());
-    }
-    else
-    {
-      std::list<QString> list;
-      list.push_back(anIterValue.key());
-      aTmpMap.insert(std::pair<double, std::list<QString>>(anIterValue.value().second, list));
-      aTimes.push_back(anIterValue.value().second);
-    }
-  }
-  aTimes.sort();
-  aTimes.reverse();
-
-  for (std::list<double>::iterator anIter = aTimes.begin(); anIter != aTimes.end(); anIter++)
-  {
-    double             aTime = *anIter;
-    std::list<QString> names = aTmpMap.at(aTime);
-    for (std::list<QString>::iterator name = names.begin(); name != names.end(); name++)
-    {
-      int       nb    = myValues.find(*name).value().first;
-      RowValues value = {*name, nb, aTime};
-      setValueByIndex(-1, value);
-    }
-  }
-}
-
-// =======================================================================
-// function : appendAlert
-// purpose :
-// =======================================================================
-void MessageView_MetricStatisticModel::appendAlert(const Handle(Message_Alert)& theAlert)
-{
-  Handle(Message_AlertExtended) anExtAlert = Handle(Message_AlertExtended)::DownCast(theAlert);
-  if (anExtAlert.IsNull())
-  {
-    return;
-  }
-  Handle(Message_Attribute)      anAttr      = anExtAlert->Attribute();
-  Handle(Message_AttributeMeter) anAttrMeter = Handle(Message_AttributeMeter)::DownCast(anAttr);
-  if (anAttrMeter.IsNull())
-  {
-    return;
-  }
-
-  int    aCount = 1;
-  double aTime  = 0;
-  if (myValues.contains(anAttr->GetName().ToCString()))
-  {
-    aCount = myValues.value(anAttr->GetName().ToCString()).first + 1;
-    aTime  = myValues.value(anAttr->GetName().ToCString()).second
-            + anAttrMeter->StopValue(myMetricType) - anAttrMeter->StartValue(myMetricType);
-  }
-  else
-  {
-    aCount = 1;
-    aTime  = anAttrMeter->StopValue(myMetricType) - anAttrMeter->StartValue(myMetricType);
-  }
-  myValues[anAttr->GetName().ToCString()] = qMakePair(aCount, aTime);
-
-  if (!anExtAlert->CompositeAlerts().IsNull())
-  {
-    const Message_ListOfAlert& anAlerts = anExtAlert->CompositeAlerts()->Alerts(Message_Info);
-    for (Message_ListOfAlert::Iterator anIt(anAlerts); anIt.More(); anIt.Next())
-    {
-      appendAlert(anIt.Value());
-    }
-  }
-}
-
-// =======================================================================
-// function : data
-// purpose :
-// =======================================================================
-QVariant MessageView_MetricStatisticModel::data(const QModelIndex& theIndex, int theRole) const
-{
-  switch (theRole)
-  {
-    case Qt::DisplayRole: {
-      switch (theIndex.column())
-      {
-        case 0:
-          return mySortValues[theIndex.row()].myName;
-        case 1:
-          return mySortValues[theIndex.row()].myCounter;
-        case 2:
-          return mySortValues[theIndex.row()].myTime;
-      }
-      break;
-    }
-    default:
-      break;
-  }
-  return QVariant();
-}
-
-// =======================================================================
-// function : setValueByIndex
-// purpose :
-// =======================================================================
-void MessageView_MetricStatisticModel::setValueByIndex(const int theIndex, const RowValues theValue)
-{
-  mySortValues.insert(theIndex == -1 ? mySortValues.size() : theIndex, theValue);
-}
diff --git a/tools/MessageView/MessageView_MetricStatisticModel.hxx b/tools/MessageView/MessageView_MetricStatisticModel.hxx
deleted file mode 100644
index 14992001d4..0000000000
--- a/tools/MessageView/MessageView_MetricStatisticModel.hxx
+++ /dev/null
@@ -1,105 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Svetlana SHUTINA
-// Copyright (c) 2021 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.
-
-#pragma once
-
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <Message_Alert.hxx>
-#include <Message_MetricType.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractTableModel>
-#include <Standard_WarningsRestore.hxx>
-
-//! @class MessageView_MetricStatisticModel
-//! Table model that sums for parameter alert the number of calls and
-//! metric time spent on the alert and its children.
-//! It visualizes a table with statistic information:
-//! the 1st column is alert name, the 2nd column is a counter of the name appearance,
-//! the 3rd column is the cumulative time.
-//! Tables rows are sorted by descending time.
-class MessageView_MetricStatisticModel : public QAbstractTableModel
-{
-private:
-  // Struct to describe a row of the table
-  struct RowValues
-  {
-    QString myName;    //!< string values
-    int     myCounter; //!< count of the values
-    double  myTime;    //!< total time
-  };
-
-public:
-  //! Constructor
-  MessageView_MetricStatisticModel(const Message_MetricType& theType, QObject* theParent = 0)
-      : QAbstractTableModel(theParent),
-        myMetricType(theType)
-  {
-  }
-
-  //! Destructor
-  virtual ~MessageView_MetricStatisticModel() {}
-
-  //! Fills map of the fields values
-  //! \param theItemBase a parent item.
-  Standard_EXPORT void Init(const TreeModel_ItemBasePtr theItemBase);
-
-  //! Returns content of the model index for the given role,
-  //! it is obtained from internal container of values.
-  //! It returns value only for DisplayRole
-  //! \param theIndex a model index
-  //! \param theRole a view role
-  //! \return value interpreted depending on the given role
-  Standard_EXPORT virtual QVariant data(const QModelIndex& theIndex,
-                                        int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
-
-  //! Returns number of rows
-  //! \param theParent an index of the parent item
-  //! \return an integer value
-  Standard_EXPORT virtual int rowCount(const QModelIndex& theParent = QModelIndex()) const
-    Standard_OVERRIDE
-  {
-    (void)theParent;
-    return myValues.size();
-  }
-
-  //! Returns number of columns
-  //! \param theParent an index of the parent item
-  //! \return an integer value
-  Standard_EXPORT virtual int columnCount(const QModelIndex& theParent = QModelIndex()) const
-    Standard_OVERRIDE
-  {
-    (void)theParent;
-    return 3;
-  }
-
-private:
-  //! Sorts values and fills map of the fields values depends on unique text identifier. It's
-  //! recursive. \param theAlert unique text identifier. The alert should have attribute of the
-  //! metric type
-  void appendAlert(const Handle(Message_Alert)& theAlert);
-
-  //! Adds theValues in the map to position theIndex
-  //! If theIndex is -1, the element will be added in the end of the map
-  //! \param theIndex the serial number in the map
-  //! \param theValues the field values
-  void setValueByIndex(const int theIndex, const RowValues theValues);
-
-private:
-  Message_MetricType                myMetricType; //!< current metric type
-  QMap<QString, QPair<int, double>> myValues;     //!< map of fields values
-  QMap<int, RowValues>              mySortValues; //!< sorted map of fields values
-};
diff --git a/tools/MessageView/MessageView_VisibilityState.cxx b/tools/MessageView/MessageView_VisibilityState.cxx
deleted file mode 100644
index cf2243bc5a..0000000000
--- a/tools/MessageView/MessageView_VisibilityState.cxx
+++ /dev/null
@@ -1,82 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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.
-
-#include <inspector/MessageView_VisibilityState.hxx>
-#include <inspector/MessageModel_ItemAlert.hxx>
-
-#include <Message_AlertExtended.hxx>
-#include <Message_AttributeStream.hxx>
-
-#include <TopoDS_AlertAttribute.hxx>
-
-// =======================================================================
-// function : CanBeVisible
-// purpose :
-// =======================================================================
-bool MessageView_VisibilityState::CanBeVisible(const QModelIndex& theIndex) const
-{
-  MessageModel_ItemAlertPtr anAlertItem = getAlertItem(theIndex);
-  if (anAlertItem)
-  {
-    NCollection_List<Handle(Standard_Transient)> aPresentations;
-    anAlertItem->Presentations(aPresentations);
-    if (!aPresentations.IsEmpty())
-      return true;
-  }
-  return false;
-}
-
-// =======================================================================
-// function : SetVisible
-// purpose :
-// =======================================================================
-bool MessageView_VisibilityState::SetVisible(const QModelIndex&, const bool, const bool)
-{
-  return false;
-}
-
-// =======================================================================
-// function : IsVisible
-// purpose :
-// =======================================================================
-bool MessageView_VisibilityState::IsVisible(const QModelIndex&) const
-{
-  return false;
-}
-
-// =======================================================================
-// function : OnClicked
-// purpose :
-// =======================================================================
-void MessageView_VisibilityState::OnClicked(const QModelIndex& theIndex)
-{
-  processClicked(theIndex);
-  emit itemClicked(theIndex);
-}
-
-// =======================================================================
-// function : getAlertItem
-// purpose :
-// =======================================================================
-MessageModel_ItemAlertPtr MessageView_VisibilityState::getAlertItem(
-  const QModelIndex& theIndex) const
-{
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(theIndex);
-  if (!anItemBase)
-    return MessageModel_ItemAlertPtr();
-
-  MessageModel_ItemAlertPtr anAlertItem = itemDynamicCast<MessageModel_ItemAlert>(anItemBase);
-  return anAlertItem;
-}
diff --git a/tools/MessageView/MessageView_VisibilityState.hxx b/tools/MessageView/MessageView_VisibilityState.hxx
deleted file mode 100644
index 978fccfef1..0000000000
--- a/tools/MessageView/MessageView_VisibilityState.hxx
+++ /dev/null
@@ -1,92 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 MessageView_VisibilityState_H
-#define MessageView_VisibilityState_H
-
-#include <inspector/TreeModel_VisibilityState.hxx>
-#include <inspector/MessageModel_ItemAlert.hxx>
-#include <inspector/View_Displayer.hxx>
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-#include <TopoDS_Shape.hxx>
-
-class TreeModel_ModelBase;
-
-//! \class MessageView_VisibilityState
-//! \brief Class provides connection between model and visualization control
-class MessageView_VisibilityState : public QObject, public TreeModel_VisibilityState
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  MessageView_VisibilityState(TreeModel_ModelBase* theModel)
-      : TreeModel_VisibilityState(theModel),
-        myPresentationType(View_PresentationType_Main)
-  {
-  }
-
-  //! Destructor
-  ~MessageView_VisibilityState() {}
-
-  //! Sets current displayer
-  //! \theDisplayer class that provides connection to visualized objects
-  void SetDisplayer(View_Displayer* theDisplayer) { myDisplayer = theDisplayer; }
-
-  //! Sets presentation type for displayer
-  //! \param theType type value
-  void SetPresentationType(const View_PresentationType theType) { myPresentationType = theType; }
-
-  //! Returns true if visibility of the item can be changed
-  //! \param theIndex tree model index
-  //! \return boolean value
-  Standard_EXPORT virtual bool CanBeVisible(const QModelIndex& theIndex) const Standard_OVERRIDE;
-
-  //! Sets visibility state
-  //! \theIndex tree model index
-  //! \param theState visibility state
-  //! \param toEmitDataChanged boolean flag whether emit of the model should be done immediately
-  //! \return true if state is changed
-  Standard_EXPORT virtual bool SetVisible(const QModelIndex& theIndex,
-                                          const bool         theState,
-                                          const bool         toEmitDataChanged) Standard_OVERRIDE;
-
-  //! Returns visibility state value
-  Standard_EXPORT virtual bool IsVisible(const QModelIndex& theIndex) const Standard_OVERRIDE;
-
-public slots:
-  //! Processes the mouse clicked on the index.
-  //! It changes the item visibility if model allows to change it.
-  //! \theIndex tree model index
-  void OnClicked(const QModelIndex& theIndex);
-
-signals:
-  //! Signal after OnClicked is performed
-  //! \theIndex tree model index
-  void itemClicked(const QModelIndex& theIndex);
-
-protected:
-  //! Gets the alert item
-  //! \theIndex tree model index
-  //! \return item or NULL
-  MessageModel_ItemAlertPtr getAlertItem(const QModelIndex& theIndex) const;
-
-private:
-  View_Displayer*       myDisplayer;        //! view displayer
-  View_PresentationType myPresentationType; //! presentation type
-};
-
-#endif
diff --git a/tools/MessageView/MessageView_Window.cxx b/tools/MessageView/MessageView_Window.cxx
deleted file mode 100644
index 8baf46e684..0000000000
--- a/tools/MessageView/MessageView_Window.cxx
+++ /dev/null
@@ -1,782 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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.
-
-#include <inspector/MessageView_Window.hxx>
-#include <inspector/MessageView_VisibilityState.hxx>
-#include <inspector/MessageView_ActionsTest.hxx>
-
-#include <inspector/MessageModel_Actions.hxx>
-#include <inspector/MessageModel_ItemAlert.hxx>
-#include <inspector/MessageModel_ItemReport.hxx>
-#include <inspector/MessageModel_ItemRoot.hxx>
-#include <inspector/MessageModel_TreeModel.hxx>
-#include <inspector/MessageView_MetricStatisticModel.hxx>
-
-#include <inspector/TreeModel_Tools.hxx>
-
-#include <inspector/ViewControl_PropertyView.hxx>
-#include <inspector/ViewControl_TableModelValues.hxx>
-#include <inspector/ViewControl_TreeView.hxx>
-#include <inspector/Convert_Tools.hxx>
-
-#include <inspector/View_Viewer.hxx>
-#include <inspector/View_Widget.hxx>
-
-#include <AIS_Shape.hxx>
-#include <Graphic3d_Camera.hxx>
-#include <Message.hxx>
-#include <TCollection_AsciiString.hxx>
-
-#include <inspector/ViewControl_Tools.hxx>
-#include <inspector/View_Displayer.hxx>
-#include <inspector/View_ToolBar.hxx>
-#include <inspector/View_Widget.hxx>
-#include <inspector/View_Window.hxx>
-#include <inspector/View_Viewer.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QAction>
-#include <QDockWidget>
-#include <QFile>
-#include <QFileDialog>
-#include <QHeaderView>
-#include <QLayout>
-#include <QMainWindow>
-#include <QMenu>
-#include <QMessageBox>
-#include <QPushButton>
-#include <QTextStream>
-#include <QToolBar>
-#include <QToolButton>
-#include <QTreeView>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-const int DEFAULT_SHAPE_VIEW_WIDTH      = 400;
-const int DEFAULT_SHAPE_VIEW_HEIGHT     = 450;
-const int DEFAULT_SHAPE_VIEW_POSITION_X = 60;
-const int DEFAULT_SHAPE_VIEW_POSITION_Y = 60;
-
-const int MESSAGEVIEW_DEFAULT_TREE_VIEW_WIDTH  = 950;
-const int MESSAGEVIEW_DEFAULT_TREE_VIEW_HEIGHT = 500;
-
-const int MESSAGEVIEW_DEFAULT_VIEW_WIDTH  = 200;
-const int MESSAGEVIEW_DEFAULT_VIEW_HEIGHT = 300;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-MessageView_Window::MessageView_Window(QWidget* theParent)
-    : QObject(theParent)
-{
-  myMainWindow = new QMainWindow(theParent);
-
-  myTreeView = new ViewControl_TreeView(myMainWindow);
-  ((ViewControl_TreeView*)myTreeView)
-    ->SetPredefinedSize(
-      QSize(MESSAGEVIEW_DEFAULT_TREE_VIEW_WIDTH, MESSAGEVIEW_DEFAULT_TREE_VIEW_HEIGHT));
-  MessageModel_TreeModel* aModel = new MessageModel_TreeModel(myTreeView);
-  aModel->InitColumns();
-
-  connect(myTreeView->header(),
-          SIGNAL(sectionResized(int, int, int)),
-          this,
-          SLOT(onHeaderResized(int, int, int)));
-
-  myTreeView->setModel(aModel);
-  MessageView_VisibilityState* aVisibilityState = new MessageView_VisibilityState(aModel);
-  aModel->SetVisibilityState(aVisibilityState);
-  connect(aVisibilityState,
-          SIGNAL(itemClicked(const QModelIndex&)),
-          this,
-          SLOT(onTreeViewVisibilityClicked(const QModelIndex&)));
-
-  TreeModel_Tools::UseVisibilityColumn(myTreeView);
-  TreeModel_Tools::SetDefaultHeaderSections(myTreeView);
-
-  QItemSelectionModel* aSelectionModel = new QItemSelectionModel(aModel);
-  myTreeView->setSelectionMode(QAbstractItemView::ExtendedSelection);
-  myTreeView->setSelectionModel(aSelectionModel);
-  connect(aSelectionModel,
-          SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-          this,
-          SLOT(onTreeViewSelectionChanged(const QItemSelection&, const QItemSelection&)));
-
-  myTreeViewActions = new MessageModel_Actions(myMainWindow, aModel, aSelectionModel);
-  myTestViewActions = new MessageView_ActionsTest(myMainWindow, aModel, aSelectionModel);
-
-  myTreeView->setContextMenuPolicy(Qt::CustomContextMenu);
-  connect(myTreeView,
-          SIGNAL(customContextMenuRequested(const QPoint&)),
-          this,
-          SLOT(onTreeViewContextMenuRequested(const QPoint&)));
-
-  connect(myTreeView->header(),
-          SIGNAL(sectionResized(int, int, int)),
-          this,
-          SLOT(onHeaderResized(int, int, int)));
-
-  QModelIndex aParentIndex = myTreeView->model()->index(0, 0);
-  myTreeView->setExpanded(aParentIndex, true);
-
-  myMainWindow->setCentralWidget(myTreeView);
-
-  // property view
-  myPropertyView        = new ViewControl_PropertyView(myMainWindow);
-  myPropertyPanelWidget = new QDockWidget(tr("PropertyPanel"), myMainWindow);
-  myPropertyPanelWidget->setObjectName(myPropertyPanelWidget->windowTitle());
-  myPropertyPanelWidget->setTitleBarWidget(new QWidget(myMainWindow));
-  myPropertyPanelWidget->setWidget(myPropertyView->GetControl());
-  myMainWindow->addDockWidget(Qt::RightDockWidgetArea, myPropertyPanelWidget);
-  connect(myPropertyPanelWidget->toggleViewAction(),
-          SIGNAL(toggled(bool)),
-          this,
-          SLOT(onPropertyPanelShown(bool)));
-  connect(myPropertyView,
-          SIGNAL(propertyViewDataChanged()),
-          this,
-          SLOT(onPropertyViewDataChanged()));
-
-  myCustomView        = new QTableView(myMainWindow);
-  myCustomPanelWidget = new QDockWidget(tr("PropertyPanel (custom)"), myMainWindow);
-  myCustomPanelWidget->setObjectName(myCustomPanelWidget->windowTitle());
-  myCustomPanelWidget->setTitleBarWidget(new QWidget(myMainWindow));
-  myCustomPanelWidget->setWidget(myCustomView);
-  myMainWindow->addDockWidget(Qt::RightDockWidgetArea, myCustomPanelWidget);
-
-  // view
-  myViewWindow = new View_Window(myMainWindow, NULL, false);
-  connect(myViewWindow, SIGNAL(eraseAllPerformed()), this, SLOT(onEraseAllPerformed()));
-  aVisibilityState->SetDisplayer(myViewWindow->Displayer());
-  aVisibilityState->SetPresentationType(View_PresentationType_Main);
-  myViewWindow->ViewWidget()->SetPredefinedSize(MESSAGEVIEW_DEFAULT_VIEW_WIDTH,
-                                                MESSAGEVIEW_DEFAULT_VIEW_HEIGHT);
-
-  myViewDockWidget = new QDockWidget(tr("View"), myMainWindow);
-  myViewDockWidget->setObjectName(myViewDockWidget->windowTitle());
-  myViewDockWidget->setWidget(myViewWindow);
-  myMainWindow->addDockWidget(Qt::RightDockWidgetArea, myViewDockWidget);
-
-  myMainWindow->tabifyDockWidget(myCustomPanelWidget, myViewDockWidget);
-
-  myMainWindow->resize(DEFAULT_SHAPE_VIEW_WIDTH, DEFAULT_SHAPE_VIEW_HEIGHT);
-  myMainWindow->move(DEFAULT_SHAPE_VIEW_POSITION_X, DEFAULT_SHAPE_VIEW_POSITION_Y);
-
-  updateVisibleColumns();
-}
-
-// =======================================================================
-// function : SetParent
-// purpose :
-// =======================================================================
-void MessageView_Window::SetParent(void* theParent)
-{
-  QWidget* aParent = (QWidget*)theParent;
-  if (aParent)
-  {
-    QLayout* aLayout = aParent->layout();
-    if (aLayout)
-      aLayout->addWidget(GetMainWindow());
-  }
-  else
-  {
-    GetMainWindow()->setParent(0);
-    GetMainWindow()->setVisible(true);
-  }
-}
-
-// =======================================================================
-// function : FillActionsMenu
-// purpose :
-// =======================================================================
-void MessageView_Window::FillActionsMenu(void* theMenu)
-{
-  QMenu*              aMenu        = (QMenu*)theMenu;
-  QList<QDockWidget*> aDockwidgets = myMainWindow->findChildren<QDockWidget*>();
-  for (QList<QDockWidget*>::iterator it = aDockwidgets.begin(); it != aDockwidgets.end(); ++it)
-  {
-    QDockWidget* aDockWidget = *it;
-    if (aDockWidget->parentWidget() == myMainWindow)
-      aMenu->addAction(aDockWidget->toggleViewAction());
-  }
-}
-
-// =======================================================================
-// function : GetPreferences
-// purpose :
-// =======================================================================
-void MessageView_Window::GetPreferences(TInspectorAPI_PreferencesDataMap& theItem)
-{
-  theItem.Clear();
-  theItem.Bind("geometry",
-               TreeModel_Tools::ToString(myMainWindow->saveState()).toStdString().c_str());
-
-  QMap<QString, QString> anItems;
-  TreeModel_Tools::SaveState(myTreeView, anItems);
-  for (QMap<QString, QString>::const_iterator anItemsIt = anItems.begin();
-       anItemsIt != anItems.end();
-       anItemsIt++)
-  {
-    theItem.Bind(anItemsIt.key().toStdString().c_str(), anItemsIt.value().toStdString().c_str());
-  }
-
-  anItems.clear();
-  View_Window::SaveState(myViewWindow, anItems);
-  for (QMap<QString, QString>::const_iterator anItemsIt = anItems.begin();
-       anItemsIt != anItems.end();
-       anItemsIt++)
-  {
-    theItem.Bind(anItemsIt.key().toStdString().c_str(), anItemsIt.value().toStdString().c_str());
-  }
-}
-
-// =======================================================================
-// function : SetPreferences
-// purpose :
-// =======================================================================
-void MessageView_Window::SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem)
-{
-  for (TInspectorAPI_IteratorOfPreferencesDataMap anItemIt(theItem); anItemIt.More();
-       anItemIt.Next())
-  {
-    if (anItemIt.Key().IsEqual("geometry"))
-      myMainWindow->restoreState(TreeModel_Tools::ToByteArray(anItemIt.Value().ToCString()));
-    else if (TreeModel_Tools::RestoreState(myTreeView,
-                                           anItemIt.Key().ToCString(),
-                                           anItemIt.Value().ToCString()))
-      continue;
-    else if (myViewWindow
-             && View_Window::RestoreState(myViewWindow,
-                                          anItemIt.Key().ToCString(),
-                                          anItemIt.Value().ToCString()))
-      continue;
-  }
-}
-
-// =======================================================================
-// function : UpdateContent
-// purpose :
-// =======================================================================
-void MessageView_Window::UpdateContent()
-{
-  TCollection_AsciiString aName = "TKMessageView";
-  if (myParameters->FindParameters(aName))
-  {
-    NCollection_List<Handle(Standard_Transient)> aParameters = myParameters->Parameters(aName);
-    // Init will remove from parameters those, that are processed only one time (TShape)
-    Init(aParameters);
-    myParameters->SetParameters(aName, aParameters);
-  }
-  Handle(Message_Report)  aDefaultReport = Message::DefaultReport();
-  MessageModel_TreeModel* aViewModel = dynamic_cast<MessageModel_TreeModel*>(myTreeView->model());
-  if (!aDefaultReport.IsNull() && !aViewModel->HasReport(aDefaultReport))
-  {
-    addReport(aDefaultReport);
-  }
-
-  updateTreeModel();
-  updateVisibleColumns();
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void MessageView_Window::Init(NCollection_List<Handle(Standard_Transient)>& theParameters)
-{
-  Handle(AIS_InteractiveContext)               aContext;
-  NCollection_List<Handle(Standard_Transient)> aParameters;
-
-  Handle(Graphic3d_Camera) aViewCamera;
-
-  for (NCollection_List<Handle(Standard_Transient)>::Iterator aParamsIt(theParameters);
-       aParamsIt.More();
-       aParamsIt.Next())
-  {
-    Handle(Standard_Transient) anObject       = aParamsIt.Value();
-    Handle(Message_Report)     aMessageReport = Handle(Message_Report)::DownCast(anObject);
-    if (!aMessageReport.IsNull())
-    {
-      addReport(aMessageReport);
-    }
-    else if (!Handle(AIS_InteractiveContext)::DownCast(anObject).IsNull())
-    {
-      aParameters.Append(anObject);
-      if (aContext.IsNull())
-        aContext = Handle(AIS_InteractiveContext)::DownCast(anObject);
-    }
-    else if (!Handle(Graphic3d_Camera)::DownCast(anObject).IsNull())
-    {
-      aViewCamera = Handle(Graphic3d_Camera)::DownCast(anObject);
-    }
-  }
-  MessageModel_TreeModel* aTreeModel = dynamic_cast<MessageModel_TreeModel*>(myTreeView->model());
-  if (!aTreeModel)
-    return;
-
-  aTreeModel->EmitLayoutChanged();
-
-  if (!aContext.IsNull())
-  {
-    myViewWindow->SetContext(View_ContextType_External, aContext);
-  }
-  theParameters = aParameters;
-}
-
-// =======================================================================
-// function : updateTreeModel
-// purpose :
-// =======================================================================
-void MessageView_Window::updateTreeModel()
-{
-  MessageModel_TreeModel* aViewModel = dynamic_cast<MessageModel_TreeModel*>(myTreeView->model());
-  if (!aViewModel)
-    return;
-
-  aViewModel->UpdateTreeModel();
-}
-
-// =======================================================================
-// function : addReport
-// purpose :
-// =======================================================================
-void MessageView_Window::addReport(const Handle(Message_Report)&  theReport,
-                                   const TCollection_AsciiString& theReportDescription)
-{
-  MessageModel_TreeModel* aModel = dynamic_cast<MessageModel_TreeModel*>(myTreeView->model());
-  aModel->AddReport(theReport, theReportDescription);
-}
-
-// =======================================================================
-// function : onTreeViewVisibilityClicked
-// purpose :
-// =======================================================================
-void MessageView_Window::onTreeViewVisibilityClicked(const QModelIndex& theIndex)
-{
-  MessageModel_TreeModel* aTreeModel = dynamic_cast<MessageModel_TreeModel*>(myTreeView->model());
-  TreeModel_VisibilityState* aVisibilityState = aTreeModel->GetVisibilityState();
-  if (!aVisibilityState->IsVisible(theIndex))
-    myPropertyView->ClearActiveTablesSelection();
-}
-
-// =======================================================================
-// function : onTreeViewSelectionChanged
-// purpose :
-// =======================================================================
-void MessageView_Window::onTreeViewSelectionChanged(const QItemSelection&, const QItemSelection&)
-{
-  if (!myPropertyPanelWidget->toggleViewAction()->isChecked())
-    return;
-
-  updatePropertyPanelBySelection();
-  updatePreviewPresentation();
-}
-
-// =======================================================================
-// function : onTreeViewContextMenuRequested
-// purpose :
-// =======================================================================
-void MessageView_Window::onTreeViewContextMenuRequested(const QPoint& thePosition)
-{
-  QMenu* aMenu = new QMenu(GetMainWindow());
-
-  MessageModel_ItemRootPtr   aRootItem;
-  MessageModel_ItemReportPtr aReportItem;
-  QModelIndexList            aSelectedIndices = myTreeView->selectionModel()->selectedIndexes();
-
-  for (QModelIndexList::const_iterator aSelIt = aSelectedIndices.begin();
-       aSelIt != aSelectedIndices.end();
-       aSelIt++)
-  {
-    QModelIndex anIndex = *aSelIt;
-    if (anIndex.column() != 0)
-      continue;
-
-    TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-    if (!anItemBase)
-      continue;
-
-    aRootItem = itemDynamicCast<MessageModel_ItemRoot>(anItemBase);
-    if (aRootItem)
-      break;
-    aReportItem = itemDynamicCast<MessageModel_ItemReport>(anItemBase);
-    if (aReportItem)
-      break;
-  }
-  if (aRootItem)
-  {
-    aMenu->addAction(ViewControl_Tools::CreateAction(tr("Create Default Report"),
-                                                     SLOT(onCreateDefaultReport()),
-                                                     myMainWindow,
-                                                     this));
-  }
-  else if (aReportItem)
-  {
-    aMenu->addAction(ViewControl_Tools::CreateAction(tr("Export Report"),
-                                                     SLOT(onExportReport()),
-                                                     myMainWindow,
-                                                     this));
-
-    QAction* anAction = ViewControl_Tools::CreateAction(tr("WallClock Metric statistic"),
-                                                        SLOT(onMetricStatistic()),
-                                                        myMainWindow,
-                                                        this);
-    anAction->setCheckable(true);
-    aMenu->addAction(anAction);
-  }
-  aMenu->addSeparator();
-
-  aMenu->addAction(ViewControl_Tools::CreateAction(tr("Preview children presentations"),
-                                                   SLOT(onPreviewChildren()),
-                                                   myMainWindow,
-                                                   this));
-  aMenu->addSeparator();
-
-  myTreeViewActions->AddMenuActions(aSelectedIndices, aMenu);
-  addActivateMetricActions(aMenu);
-
-  aMenu->addSeparator();
-  myTestViewActions->AddMenuActions(aSelectedIndices, aMenu);
-
-  QPoint aPoint = myTreeView->mapToGlobal(thePosition);
-  aMenu->exec(aPoint);
-}
-
-// =======================================================================
-// function : onPropertyPanelShown
-// purpose :
-// =======================================================================
-void MessageView_Window::onPropertyPanelShown(bool isToggled)
-{
-  if (!isToggled)
-    return;
-
-  updatePropertyPanelBySelection();
-}
-
-// =======================================================================
-// function : onPropertyViewDataChanged
-// purpose :
-// =======================================================================
-void MessageView_Window::onPropertyViewDataChanged()
-{
-  QItemSelectionModel* aModel = myTreeView->selectionModel();
-  if (!aModel)
-    return;
-  QModelIndex           anIndex = TreeModel_ModelBase::SingleSelected(aModel->selectedIndexes(), 0);
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-  if (!anItemBase)
-    return;
-
-  updatePropertyPanelBySelection();
-  updatePreviewPresentation();
-}
-
-// =======================================================================
-// function : onHeaderResized
-// purpose :
-// =======================================================================
-void MessageView_Window::onHeaderResized(int theSectionId, int, int)
-{
-  TreeModel_ModelBase* aViewModel = dynamic_cast<TreeModel_ModelBase*>(myTreeView->model());
-
-  TreeModel_HeaderSection* aSection = aViewModel->ChangeHeaderItem(theSectionId);
-  aSection->SetWidth(myTreeView->columnWidth(theSectionId));
-}
-
-// =======================================================================
-// function : onEraseAllPerformed
-// purpose :
-// =======================================================================
-void MessageView_Window::onEraseAllPerformed()
-{
-  MessageModel_TreeModel* aTreeModel = dynamic_cast<MessageModel_TreeModel*>(myTreeView->model());
-
-  aTreeModel->Reset();
-  aTreeModel->EmitLayoutChanged();
-}
-
-// =======================================================================
-// function : onExportReport
-// purpose :
-// =======================================================================
-void MessageView_Window::onExportReport()
-{
-  QItemSelectionModel* aModel = myTreeView->selectionModel();
-  if (!aModel)
-    return;
-  QModelIndex           anIndex = TreeModel_ModelBase::SingleSelected(aModel->selectedIndexes(), 0);
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-  if (!anItemBase)
-    return;
-  MessageModel_ItemReportPtr aReportItem = itemDynamicCast<MessageModel_ItemReport>(anItemBase);
-  if (!aReportItem)
-    return;
-
-  QString aFilter(tr("Document file (*.json *)"));
-  QString aSelectedFilter;
-  QString aFileName = QFileDialog::getSaveFileName(0,
-                                                   tr("Export report to file"),
-                                                   QString(),
-                                                   aFilter,
-                                                   &aSelectedFilter);
-
-  Handle(Message_Report) aReport = aReportItem->GetReport();
-  Standard_SStream       aStream;
-  aReport->DumpJson(aStream);
-
-  QFile aLogFile(aFileName);
-  if (!aLogFile.open(QFile::WriteOnly | QFile::Text))
-  {
-    return;
-  }
-  QTextStream anOut(&aLogFile);
-  anOut << Standard_Dump::FormatJson(aStream).ToCString();
-  aLogFile.close();
-}
-
-// =======================================================================
-// function : onCreateDefaultReport
-// purpose :
-// =======================================================================
-void MessageView_Window::onCreateDefaultReport()
-{
-  if (!Message::DefaultReport().IsNull())
-  {
-    return;
-  }
-
-  addReport(Message::DefaultReport(Standard_True));
-}
-
-// =======================================================================
-// function : onPreviewChildren
-// purpose :
-// =======================================================================
-void MessageView_Window::onPreviewChildren()
-{
-  QItemSelectionModel* aModel = myTreeView->selectionModel();
-  if (!aModel)
-    return;
-
-  QModelIndexList aSelectedIndices = myTreeView->selectionModel()->selectedIndexes();
-  NCollection_List<Handle(Standard_Transient)> aPresentations;
-  TreeModel_ModelBase::SubItemsPresentations(aSelectedIndices, aPresentations);
-
-  displayer()->UpdatePreview(View_DisplayActionType_DisplayId, aPresentations);
-}
-
-// =======================================================================
-// function : onMetricStatistic
-// purpose :
-// =======================================================================
-void MessageView_Window::onMetricStatistic()
-{
-  QItemSelectionModel* aModel = myTreeView->selectionModel();
-  if (!aModel)
-  {
-    return;
-  }
-
-  QModelIndex           anIndex = TreeModel_ModelBase::SingleSelected(aModel->selectedIndexes(), 0);
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-  if (!anItemBase)
-  {
-    return;
-  }
-
-  MessageView_MetricStatisticModel* aUnitByNameModel =
-    new MessageView_MetricStatisticModel(Message_MetricType_WallClock, myCustomView);
-  aUnitByNameModel->Init(anItemBase);
-  myCustomView->setModel(aUnitByNameModel);
-}
-
-// =======================================================================
-// function : addActivateMetricActions
-// purpose :
-// =======================================================================
-void MessageView_Window::addActivateMetricActions(QMenu* theMenu)
-{
-  Handle(Message_Report) aReport = Message::DefaultReport();
-  if (aReport.IsNull())
-  {
-    return;
-  }
-
-  QMenu* aSubMenu = new QMenu("Activate metric");
-  for (int aMetricId = (int)Message_MetricType_None + 1;
-       aMetricId <= (int)Message_MetricType_MemHeapUsage;
-       aMetricId++)
-  {
-    Message_MetricType aMetricType = (Message_MetricType)aMetricId;
-    QAction* anAction = ViewControl_Tools::CreateAction(Message::MetricToString(aMetricType),
-                                                        SLOT(OnActivateMetric()),
-                                                        parent(),
-                                                        this);
-    anAction->setCheckable(true);
-    anAction->setChecked(aReport->ActiveMetrics().Contains(aMetricType));
-    aSubMenu->addAction(anAction);
-  }
-  aSubMenu->addSeparator();
-  aSubMenu->addAction(ViewControl_Tools::CreateAction("Deactivate all",
-                                                      SLOT(OnDeactivateAllMetrics()),
-                                                      parent(),
-                                                      this));
-
-  theMenu->addMenu(aSubMenu);
-}
-
-// =======================================================================
-// function : OnActivateMetric
-// purpose :
-// =======================================================================
-void MessageView_Window::OnActivateMetric()
-{
-  QAction* anAction = (QAction*)(sender());
-
-  Message_MetricType aMetricType;
-  if (!Message::MetricFromString(anAction->text().toStdString().c_str(), aMetricType))
-    return;
-
-  Handle(Message_Report)                            aReport         = Message::DefaultReport();
-  const NCollection_IndexedMap<Message_MetricType>& anActiveMetrics = aReport->ActiveMetrics();
-  aReport->SetActiveMetric(aMetricType, !anActiveMetrics.Contains(aMetricType));
-
-  updateVisibleColumns();
-}
-
-// =======================================================================
-// function : OnDeactivateAllMetrics
-// purpose :
-// =======================================================================
-void MessageView_Window::OnDeactivateAllMetrics()
-{
-  Handle(Message_Report) aReport = Message::DefaultReport();
-  if (aReport.IsNull())
-    return;
-  aReport->ClearMetrics();
-
-  updateVisibleColumns();
-}
-
-// =======================================================================
-// function : displayer
-// purpose :
-// =======================================================================
-View_Displayer* MessageView_Window::displayer()
-{
-  return myViewWindow->Displayer();
-}
-
-// =======================================================================
-// function : updatePropertyPanelBySelection
-// purpose :
-// =======================================================================
-void MessageView_Window::updatePropertyPanelBySelection()
-{
-  ViewControl_TableModelValues* aTableValues = 0;
-
-  QItemSelectionModel* aModel = myTreeView->selectionModel();
-  if (!aModel)
-    return;
-
-  QModelIndex           anIndex = TreeModel_ModelBase::SingleSelected(aModel->selectedIndexes(), 0);
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-  if (anItemBase)
-  {
-    Handle(TreeModel_ItemProperties) anItemProperties = anItemBase->Properties();
-    if (!anItemProperties.IsNull())
-    {
-      aTableValues = new ViewControl_TableModelValues();
-      aTableValues->SetProperties(anItemProperties);
-    }
-  }
-  myPropertyView->Init(aTableValues);
-}
-
-// =======================================================================
-// function : updatePreviewPresentation
-// purpose :
-// =======================================================================
-void MessageView_Window::updatePreviewPresentation()
-{
-  Handle(AIS_InteractiveContext) aContext = myViewWindow->ViewToolBar()->CurrentContext();
-  if (aContext.IsNull())
-    return;
-
-  NCollection_List<Handle(Standard_Transient)> aPresentations;
-  QModelIndexList aSelectedIndices = myTreeView->selectionModel()->selectedIndexes();
-  for (QModelIndexList::const_iterator aSelIt = aSelectedIndices.begin();
-       aSelIt != aSelectedIndices.end();
-       aSelIt++)
-  {
-    QModelIndex anIndex = *aSelIt;
-    if (anIndex.column() != 0)
-      continue;
-
-    TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-    if (!anItemBase)
-      continue;
-
-    anItemBase->Presentations(aPresentations);
-  }
-
-  displayer()->UpdatePreview(View_DisplayActionType_DisplayId, aPresentations);
-}
-
-// =======================================================================
-// function : updateVisibleColumns
-// purpose :
-// =======================================================================
-void MessageView_Window::updateVisibleColumns()
-{
-  MessageModel_TreeModel* aViewModel = dynamic_cast<MessageModel_TreeModel*>(myTreeView->model());
-
-  NCollection_IndexedMap<Message_MetricType> anActiveMetrics;
-  for (NCollection_List<MessageModel_ReportInformation>::Iterator anIterator(aViewModel->Reports());
-       anIterator.More();
-       anIterator.Next())
-  {
-    Handle(Message_Report) aReport = anIterator.Value().myReport;
-    for (NCollection_IndexedMap<Message_MetricType>::Iterator aMetricsIterator(
-           aReport->ActiveMetrics());
-         aMetricsIterator.More();
-         aMetricsIterator.Next())
-    {
-      if (anActiveMetrics.Contains(aMetricsIterator.Value()))
-        continue;
-      anActiveMetrics.Add(aMetricsIterator.Value());
-    }
-  }
-
-  for (int aMetricId = (int)Message_MetricType_None + 1;
-       aMetricId <= (int)Message_MetricType_MemHeapUsage;
-       aMetricId++)
-  {
-    Message_MetricType aMetricType = (Message_MetricType)aMetricId;
-    QList<int>         aMetricColumns;
-    aViewModel->GetMetricColumns(aMetricType, aMetricColumns);
-    bool isColumnHidden = !anActiveMetrics.Contains(aMetricType);
-    for (int i = 0; i < aMetricColumns.size(); i++)
-    {
-      int aColumnId = aMetricColumns[i];
-      myTreeView->setColumnHidden(aColumnId, isColumnHidden);
-      TreeModel_HeaderSection* aSection = aViewModel->ChangeHeaderItem(aColumnId);
-      aSection->SetIsHidden(isColumnHidden);
-    }
-  }
-}
diff --git a/tools/MessageView/MessageView_Window.hxx b/tools/MessageView/MessageView_Window.hxx
deleted file mode 100644
index 0dd7f0a91a..0000000000
--- a/tools/MessageView/MessageView_Window.hxx
+++ /dev/null
@@ -1,202 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 MessageView_Window_H
-#define MessageView_Window_H
-
-#include <Message_Report.hxx>
-#include <Standard.hxx>
-#include <TCollection_AsciiString.hxx>
-
-#include <inspector/MessageModel_Actions.hxx>
-#include <inspector/TInspectorAPI_PluginParameters.hxx>
-
-#include <AIS_InteractiveContext.hxx>
-#include <AIS_InteractiveObject.hxx>
-#include <TopoDS_Shape.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QItemSelection>
-#include <QList>
-#include <QModelIndexList>
-#include <QObject>
-#include <QPoint>
-#include <QString>
-#include <QTableView>
-#include <QTreeView>
-#include <Standard_WarningsRestore.hxx>
-
-class View_Displayer;
-class View_Window;
-
-class ViewControl_PropertyView;
-
-class MessageView_ActionsTest;
-
-class QDockWidget;
-class QMainWindow;
-class QMenu;
-class QWidget;
-
-//! \class MessageView_Window
-//! Window that unites all MessageView controls.
-class MessageView_Window : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT MessageView_Window(QWidget* theParent);
-
-  //! Destructor
-  virtual ~MessageView_Window() {}
-
-  //! Provides the container with a parent where this container should be inserted.
-  //! If Qt implementation, it should be QWidget with QLayout set inside
-  //! \param theParent a parent class
-  Standard_EXPORT void SetParent(void* theParent);
-
-  //! Sets parameters container, it should be used when the plugin is initialized or in update
-  //! content \param theParameters a parameters container
-  void SetParameters(const Handle(TInspectorAPI_PluginParameters)& theParameters)
-  {
-    myParameters = theParameters;
-    myTreeViewActions->SetParameters(theParameters);
-  }
-
-  //! Provide container for actions available in inspector on general level
-  //! \param theMenu if Qt implementation, it is QMenu object
-  Standard_EXPORT virtual void FillActionsMenu(void* theMenu);
-
-  //! Returns plugin preferences: dock widgets state, tree view columns.
-  //! \param theItem container of preference elements
-  Standard_EXPORT void GetPreferences(TInspectorAPI_PreferencesDataMap& theItem);
-
-  //! Applies plugin preferences
-  //! \param theItem container of preference elements
-  Standard_EXPORT void SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem);
-
-  //! Applies parameters to Init controls, opens files if there are in parameters, updates OCAF tree
-  //! view model
-  Standard_EXPORT void UpdateContent();
-
-  //! Returns main control
-  QMainWindow* GetMainWindow() const { return myMainWindow; }
-
-  //! Returns current tree view
-  QTreeView* GetTreeView() const { return myTreeView; }
-
-protected:
-  //! Appends shape into tree view model
-  //! \param theShape a shape instance
-  //! \param theReportDescription an additional report information
-  void addReport(const Handle(Message_Report)&  theReport,
-                 const TCollection_AsciiString& theReportDescription = "");
-
-private:
-  //! Fills controls of the plugin by parameters:
-  //! - Fine AIS_InteractiveObject and fills View if it if it differs from the current context
-  //! \param theParameters a parameters container
-  void Init(NCollection_List<Handle(Standard_Transient)>& theParameters);
-
-  //! Updates tree model
-  void updateTreeModel();
-
-protected slots:
-  //! Updates property view selection in table if the item is hidden
-  //! \param theIndex tree view model index
-  void onTreeViewVisibilityClicked(const QModelIndex& theIndex);
-
-  //! Updates all controls by changed selection in OCAF tree view
-  //! \param theSelected list of selected tree view items
-  //! \param theDeselected list of deselected tree view items
-  void onTreeViewSelectionChanged(const QItemSelection& theSelected,
-                                  const QItemSelection& theDeselected);
-
-  //! Shows context menu for tree view selected item. It contains expand/collapse actions.
-  //! \param thePosition a clicked point
-  void onTreeViewContextMenuRequested(const QPoint& thePosition);
-
-  //! Display content of selected tree view item if isToggled is true
-  //! \param isToggled true if the property dock widget is shown
-  void onPropertyPanelShown(bool isToggled);
-
-  //! Update tree view item, preview presentation by item value change
-  void onPropertyViewDataChanged();
-
-  //! Update tree view header item width
-  void onHeaderResized(int theSectionId, int, int);
-
-  //! Updates visibility states by erase all in context
-  void onEraseAllPerformed();
-
-  //! Export report into document
-  void onExportReport();
-
-  //! Create default report into document
-  void onCreateDefaultReport();
-
-  //! Iterates by children items of selected items and display its presentations if found
-  void onPreviewChildren();
-
-  //! Creates the table that sums the number of calls and
-  //! the time spent on the functionality inside the value.
-  void onMetricStatistic();
-
-  //! Switch active state in report for clicked type of metric
-  void OnActivateMetric();
-
-  //! Deactivate all types of metrics for the current report
-  void OnDeactivateAllMetrics();
-
-protected:
-  //! Appends items to activate report metrics
-  void addActivateMetricActions(QMenu* theMenu);
-
-  //! Returns displayer where the presentations/preview should be shown/erased
-  //! If default view is created, it returns displayer of this view
-  Standard_EXPORT View_Displayer* displayer();
-
-  //! Updates property panel content by item selected in tree view.
-  void updatePropertyPanelBySelection();
-
-  //!< Updates presentation of preview for parameter shapes. Creates a compound of the shapes
-  void updatePreviewPresentation();
-
-  //!< Sets reports metric columns visible if used
-  void updateVisibleColumns();
-
-private:
-  QMainWindow* myMainWindow;     //!< main control, parent for all MessageView controls
-  QDockWidget* myViewDockWidget; //!< view dock widget to hide/show
-
-  QDockWidget* myPropertyPanelWidget; //!< property pane dockable widget
-  ViewControl_PropertyView*
-    myPropertyView; //!< property control to display model item values if exist
-
-  View_Window*             myViewWindow;      //!< OCC 3d view to visualize presentations
-  QTreeView*               myTreeView;        //!< tree view visualized shapes
-  MessageModel_Actions*    myTreeViewActions; //!< processing history view actions
-  MessageView_ActionsTest* myTestViewActions; //!< check view actions
-
-  QTableView*  myCustomView;        //!< table that units messages by name.
-  QDockWidget* myCustomPanelWidget; //!< panel for table that units messages by name.
-
-  Handle(TInspectorAPI_PluginParameters) myParameters; //!< plugins parameters container
-
-  Handle(AIS_InteractiveObject)
-    myPreviewPresentation; //!< presentation of preview for a selected object
-};
-
-#endif
diff --git a/tools/ReadMe.md b/tools/ReadMe.md
new file mode 100644
index 0000000000..c131fa2ae3
--- /dev/null
+++ b/tools/ReadMe.md
@@ -0,0 +1,18 @@
+# Inspector
+
+The Inspector component has been moved to a separate GitHub repository:
+https://github.com/Open-Cascade-SAS/Inspector
+
+## Usage with DRAW
+
+To use the Inspector plugin in DRAW:
+
+1. Copy the required dynamic library files (.so, .dll) from the Inspector repository to your OCCT installation folder. For example, on Linux, you can copy the files to the `lib` directory in the OCCT installation directory. For windows, you can copy the files to the `bin` directory in the OCCT installation directory.
+2. Load the plugin in your DRAW session
+
+## Documentation
+
+The documentation for Inspector is available at:
+https://github.com/Open-Cascade-SAS/Inspector/tree/master/doc
+
+For more details on building and using the Inspector, please refer to the repository's documentation.
diff --git a/tools/ShapeView/FILES b/tools/ShapeView/FILES
deleted file mode 100644
index 09979b4e83..0000000000
--- a/tools/ShapeView/FILES
+++ /dev/null
@@ -1,19 +0,0 @@
-ShapeView.qrc
-ShapeView_Communicator.cxx
-ShapeView_Communicator.hxx
-ShapeView_ItemRoot.cxx
-ShapeView_ItemRoot.hxx
-ShapeView_ItemShape.cxx
-ShapeView_ItemShape.hxx
-ShapeView_OpenFileDialog.cxx
-ShapeView_OpenFileDialog.hxx
-ShapeView_OpenFileViewModel.cxx
-ShapeView_OpenFileViewModel.hxx
-ShapeView_Tools.cxx
-ShapeView_Tools.hxx
-ShapeView_TreeModel.cxx
-ShapeView_TreeModel.hxx
-ShapeView_VisibilityState.cxx
-ShapeView_VisibilityState.hxx
-ShapeView_Window.cxx
-ShapeView_Window.hxx
diff --git a/tools/ShapeView/ShapeView.qrc b/tools/ShapeView/ShapeView.qrc
deleted file mode 100644
index 331296a3d7..0000000000
--- a/tools/ShapeView/ShapeView.qrc
+++ /dev/null
@@ -1,6 +0,0 @@
-<!DOCTYPE RCC><RCC version="1.0">
-    <qresource>
-        <file>icons/folder_open.png</file>
-        <file>icons/folder_import.png</file>
-    </qresource>
-</RCC>
diff --git a/tools/ShapeView/ShapeView_Communicator.cxx b/tools/ShapeView/ShapeView_Communicator.cxx
deleted file mode 100644
index de416c86d3..0000000000
--- a/tools/ShapeView/ShapeView_Communicator.cxx
+++ /dev/null
@@ -1,25 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/ShapeView_Communicator.hxx>
-
-// =======================================================================
-// function :  CreateCommunicator
-// purpose : Creates a communicator by the library loading
-// =======================================================================
-Standard_EXPORTEXTERNC TInspectorAPI_Communicator* CreateCommunicator()
-{
-  return new ShapeView_Communicator();
-}
diff --git a/tools/ShapeView/ShapeView_Communicator.hxx b/tools/ShapeView/ShapeView_Communicator.hxx
deleted file mode 100644
index e2bfcffb78..0000000000
--- a/tools/ShapeView/ShapeView_Communicator.hxx
+++ /dev/null
@@ -1,78 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 ShapeView_Communicator_H
-#define ShapeView_Communicator_H
-
-#include <inspector/ShapeView_Window.hxx>
-#include <inspector/TInspectorAPI_Communicator.hxx>
-
-//! \class ShapeView_Communicator.
-//! \brief This is a connector from TInspector application to ShapeView window
-class ShapeView_Communicator : public TInspectorAPI_Communicator
-{
-public:
-  //! Constructor
-  ShapeView_Communicator()
-      : TInspectorAPI_Communicator(),
-        myWindow(new ShapeView_Window(0))
-  {
-  }
-
-  //! Destructor
-  virtual ~ShapeView_Communicator() { myWindow->RemoveAllShapes(); }
-
-  //! Provides the container with a parent where this container should be inserted.
-  //! If Qt implementation, it should be QWidget with QLayout set inside
-  //! \param theParent a parent class
-  virtual void SetParent(void* theParent) Standard_OVERRIDE { myWindow->SetParent(theParent); }
-
-  //! Sets parameters container, it should be used when the plugin is initialized or in update
-  //! content \param theParameters a parameters container
-  virtual void SetParameters(const Handle(TInspectorAPI_PluginParameters)& theParameters)
-    Standard_OVERRIDE
-  {
-    myWindow->SetParameters(theParameters);
-  }
-
-  //! Provides container for actions available in inspector on general level
-  //! \param theMenu if Qt implementation, it is QMenu object
-  virtual void FillActionsMenu(void* theMenu) Standard_OVERRIDE
-  {
-    myWindow->FillActionsMenu(theMenu);
-  }
-
-  //! Returns plugin preferences, empty implementation by default
-  //! \param theItem container of preference elements
-  virtual void GetPreferences(TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
-  {
-    myWindow->GetPreferences(theItem);
-  }
-
-  //! Stores plugin preferences, empty implementation by default
-  //! \param theItem container of preference elements
-  virtual void SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
-  {
-    myWindow->SetPreferences(theItem);
-  }
-
-  //! Calls update of the plugin's content
-  virtual void UpdateContent() Standard_OVERRIDE { myWindow->UpdateContent(); }
-
-private:
-  ShapeView_Window* myWindow; //!< current window
-};
-
-#endif
diff --git a/tools/ShapeView/ShapeView_ItemRoot.cxx b/tools/ShapeView/ShapeView_ItemRoot.cxx
deleted file mode 100644
index eda68759cd..0000000000
--- a/tools/ShapeView/ShapeView_ItemRoot.cxx
+++ /dev/null
@@ -1,56 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/ShapeView_ItemRoot.hxx>
-#include <inspector/ShapeView_ItemShape.hxx>
-
-// =======================================================================
-// function : Shape
-// purpose :
-// =======================================================================
-const TopoDS_Shape& ShapeView_ItemRoot::Shape(const int theRowId)
-{
-  NCollection_List<TopoDS_Shape>::Iterator aShapesIt(myShapes);
-  for (int aRowId = 0; aShapesIt.More(); aShapesIt.Next(), aRowId++)
-  {
-    if (aRowId == theRowId)
-      break;
-  }
-  return aShapesIt.Value();
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant ShapeView_ItemRoot::initValue(const int theRole) const
-{
-  if (Column() != 0)
-    return QVariant();
-
-  if (theRole == Qt::DisplayRole || theRole == Qt::EditRole)
-    return "TopoDS_Shapes";
-
-  return QVariant();
-}
-
-// =======================================================================
-// function : createChild
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr ShapeView_ItemRoot::createChild(int theRow, int theColumn)
-{
-  return ShapeView_ItemShape::CreateItem(currentItem(), theRow, theColumn);
-}
diff --git a/tools/ShapeView/ShapeView_ItemRoot.hxx b/tools/ShapeView/ShapeView_ItemRoot.hxx
deleted file mode 100644
index 8c1cb9ec44..0000000000
--- a/tools/ShapeView/ShapeView_ItemRoot.hxx
+++ /dev/null
@@ -1,83 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 ShapeView_ItemRoot_H
-#define ShapeView_ItemRoot_H
-
-#include <NCollection_List.hxx>
-#include <inspector/TreeModel_ItemBase.hxx>
-#include <Standard.hxx>
-#include <TopoDS_Shape.hxx>
-
-class ShapeView_ItemRoot;
-typedef QExplicitlySharedDataPointer<ShapeView_ItemRoot> ShapeView_ItemRootPtr;
-
-//! \class ShapeView_ItemRoot
-//! Collects shapes that should be visualized in tree view. Shapes are cached and if shapes are not
-//! needed, cache should be cleared using RemoveAllShapes. Parent is NULL, children are
-//! ShapeView_ItemShape items.
-class ShapeView_ItemRoot : public TreeModel_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  static ShapeView_ItemRootPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                          const int             theRow,
-                                          const int             theColumn)
-  {
-    return ShapeView_ItemRootPtr(new ShapeView_ItemRoot(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~ShapeView_ItemRoot() {}
-
-  //! Appends new shape
-  //! \param theShape a shape instance
-  void AddShape(const TopoDS_Shape& theShape) { myShapes.Append(theShape); }
-
-  //! Clears internal container of added shapes
-  void RemoveAllShapes() { myShapes.Clear(); }
-
-  //! Returns shape by the number
-  //! \param theRowId an index of the shape in the internal container.
-  Standard_EXPORT const TopoDS_Shape& Shape(const int theRowId);
-
-protected:
-  //! Returns data value for the role.
-  //! \param theItemRole a value role
-  //! \return the value
-  virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
-
-  //! \return number of children.
-  virtual int initRowCount() const Standard_OVERRIDE { return myShapes.Size(); }
-
-  //! Creates a child item in the given position.
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \return the created item
-  virtual TreeModel_ItemBasePtr createChild(int theRow, int theColumn) Standard_OVERRIDE;
-
-private:
-  //! Constructor
-  //! \param theParent a parent item
-  ShapeView_ItemRoot(TreeModel_ItemBasePtr theParent, const int theRow, const int theColumn)
-      : TreeModel_ItemBase(theParent, theRow, theColumn)
-  {
-  }
-
-private:
-  NCollection_List<TopoDS_Shape> myShapes; //!< shapes presented in tree view
-};
-
-#endif
diff --git a/tools/ShapeView/ShapeView_ItemShape.cxx b/tools/ShapeView/ShapeView_ItemShape.cxx
deleted file mode 100644
index 54ea4db21e..0000000000
--- a/tools/ShapeView/ShapeView_ItemShape.cxx
+++ /dev/null
@@ -1,183 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/ShapeView_ItemShape.hxx>
-
-#include <inspector/ShapeView_ItemRoot.hxx>
-#include <inspector/ShapeView_ItemShape.hxx>
-
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <TopAbs.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <TopoDS_Iterator.hxx>
-
-#include <TopExp.hxx>
-#include <TopTools_IndexedMapOfShape.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QStringList>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Shape
-// purpose :
-// =======================================================================
-TopoDS_Shape ShapeView_ItemShape::Shape(const int theRowId) const
-{
-  if (myChildShapes.IsEmpty())
-  {
-    ShapeView_ItemShape* aThis = (ShapeView_ItemShape*)this;
-
-    if (myExplodeType != TopAbs_SHAPE)
-    {
-      TopExp::MapShapes(myShape, myExplodeType, aThis->myChildShapes);
-    }
-    else
-    {
-      TopoDS_Iterator aSubShapeIt(myShape);
-      for (int aCurrentIndex = 0; aSubShapeIt.More(); aSubShapeIt.Next(), aCurrentIndex++)
-      {
-        aThis->myChildShapes.Add(aSubShapeIt.Value());
-      }
-    }
-  }
-  if (myChildShapes.Extent() >= theRowId + 1)
-    return myChildShapes(theRowId + 1);
-
-  return TopoDS_Shape();
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant ShapeView_ItemShape::initValue(const int theRole) const
-{
-  QVariant aParentValue = TreeModel_ItemBase::initValue(theRole);
-  if (aParentValue.isValid())
-    return aParentValue;
-
-  TopoDS_Shape aShape = getShape();
-  if (aShape.IsNull())
-    return QVariant();
-
-  if (theRole != Qt::DisplayRole && theRole != Qt::ToolTipRole)
-    return QVariant();
-
-  switch (Column())
-  {
-    case 0:
-      return TopAbs::ShapeTypeToString(aShape.ShapeType());
-    default:
-      break;
-  }
-  return QVariant();
-}
-
-// =======================================================================
-// function : initRowCount
-// purpose :
-// =======================================================================
-int ShapeView_ItemShape::initRowCount() const
-{
-  TopoDS_Shape aShape = getShape();
-  if (aShape.IsNull())
-    return 0;
-
-  int aRowsCount = 0;
-  if (myExplodeType != TopAbs_SHAPE)
-  {
-    TopTools_IndexedMapOfShape aSubShapes;
-    TopExp::MapShapes(aShape, myExplodeType, aSubShapes);
-    aRowsCount = aSubShapes.Extent();
-  }
-  else
-  {
-    for (TopoDS_Iterator aSubShapeIt(aShape); aSubShapeIt.More(); aSubShapeIt.Next())
-      aRowsCount++;
-  }
-  return aRowsCount;
-}
-
-// =======================================================================
-// function : initStream
-// purpose :
-// =======================================================================
-void ShapeView_ItemShape::initStream(Standard_OStream& theOStream) const
-{
-  TopoDS_Shape aShape = getShape();
-  if (aShape.IsNull())
-    return;
-
-  aShape.DumpJson(theOStream);
-}
-
-// =======================================================================
-// function : createChild
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr ShapeView_ItemShape::createChild(int theRow, int theColumn)
-{
-  return ShapeView_ItemShape::CreateItem(currentItem(), theRow, theColumn);
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void ShapeView_ItemShape::Init()
-{
-  ShapeView_ItemRootPtr  aRootItem  = itemDynamicCast<ShapeView_ItemRoot>(Parent());
-  ShapeView_ItemShapePtr aShapeItem = itemDynamicCast<ShapeView_ItemShape>(Parent());
-  myShape = aRootItem ? aRootItem->Shape(Row()) : aShapeItem->Shape(Row());
-
-  TreeModel_ItemBase::Init();
-}
-
-// =======================================================================
-// function : getShape
-// purpose :
-// =======================================================================
-TopoDS_Shape ShapeView_ItemShape::getShape() const
-{
-  initItem();
-  return myShape;
-}
-
-// =======================================================================
-// function : Reset
-// purpose :
-// =======================================================================
-void ShapeView_ItemShape::Reset()
-{
-  myFileName = QString();
-  myChildShapes.Clear();
-  myShape = TopoDS_Shape();
-
-  TreeModel_ItemBase::Reset();
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void ShapeView_ItemShape::initItem() const
-{
-  if (IsInitialized())
-    return;
-  const_cast<ShapeView_ItemShape*>(this)->Init();
-}
diff --git a/tools/ShapeView/ShapeView_ItemShape.hxx b/tools/ShapeView/ShapeView_ItemShape.hxx
deleted file mode 100644
index 625b43d39e..0000000000
--- a/tools/ShapeView/ShapeView_ItemShape.hxx
+++ /dev/null
@@ -1,137 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 ShapeView_ItemShape_H
-#define ShapeView_ItemShape_H
-
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <TopTools_IndexedMapOfShape.hxx>
-
-#include <Standard.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <TopAbs_ShapeEnum.hxx>
-#include <TopoDS_Shape.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QMap>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-class ShapeView_ItemShape;
-typedef QExplicitlySharedDataPointer<ShapeView_ItemShape> ShapeView_ItemShapePtr;
-
-//! \class ShapeView_ItemShape
-//! This item is connected to TopoDS_Shape.
-//! Parent is either ShapeView_ItemRoot or ShapeView_ItemShape, children are ShapeView_ItemShape or
-//! no children
-class ShapeView_ItemShape : public TreeModel_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  //! \param theRow the item row position in the parent item
-  //! \param theColumn the item column position in the parent item
-  //! \return the pointer to the created item
-  static ShapeView_ItemShapePtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                           const int             theRow,
-                                           const int             theColumn)
-  {
-    return ShapeView_ItemShapePtr(new ShapeView_ItemShape(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~ShapeView_ItemShape() {}
-
-  //! Returns explode type of the item
-  TopAbs_ShapeEnum ExplodeType() const { return myExplodeType; }
-
-  //! Sets explore type
-  //! \param theType type of item explode. If TopAbs_SHAPE, no explode, only iteration by shape
-  void SetExplodeType(const TopAbs_ShapeEnum theType) { myExplodeType = theType; }
-
-  //! Returns the current shape
-  const TopoDS_Shape& GetItemShape() const
-  {
-    initItem();
-    return myShape;
-  }
-
-  //! Returns child(extracted) shape for the current shape by the index
-  //! \param theRowId an index of child shape
-  //! \returns shape instance or NULL
-  Standard_EXPORT TopoDS_Shape Shape(const int theRowId) const;
-
-  //! Returns name of BREP file for the shape if exists
-  //! \return string value
-  QString GetFileName() const { return myFileName; }
-
-  //! Sets name of BREP file for the shape if exists
-  //! \return string value
-  void SetFileName(const QString& theFileName) { myFileName = theFileName; }
-
-  //! Inits the item, fills internal containers
-  Standard_EXPORT virtual void Init() Standard_OVERRIDE;
-
-  //! Resets cached values
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-  //! Returns data value for the role.
-  //! \param theRole a value role
-  //! \return the value
-  Standard_EXPORT virtual QVariant initValue(const int theRole) const Standard_OVERRIDE;
-
-  //! \return number of children.
-  Standard_EXPORT virtual int initRowCount() const Standard_OVERRIDE;
-
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  Standard_EXPORT virtual void initStream(Standard_OStream& theOStream) const Standard_OVERRIDE;
-
-protected:
-  //! Initializes the current item. It is empty because Reset() is also empty.
-  virtual void initItem() const Standard_OVERRIDE;
-
-  //! Creates a child item in the given position.
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \return the created item
-  virtual TreeModel_ItemBasePtr createChild(int theRow, int theColumn) Standard_OVERRIDE;
-
-  //! Returns number of child shapes. Init item if it is not initialized
-  //! \return integer value
-  int getRowCount() const;
-
-  //! Returns current shape, initialized item if it has not been initialized yet
-  //! \return shape value
-  TopoDS_Shape getShape() const;
-
-private:
-  //! Constructor
-  ShapeView_ItemShape(TreeModel_ItemBasePtr theParent, const int theRow, const int theColumn)
-      : TreeModel_ItemBase(theParent, theRow, theColumn),
-        myExplodeType(TopAbs_SHAPE)
-  {
-  }
-
-private:
-  TopAbs_ShapeEnum myExplodeType; //!< type of explore own shape and get children
-
-  TopoDS_Shape myShape;    //!< current shape
-  QString      myFileName; //!< BREP file name
-
-  TopTools_IndexedMapOfShape myChildShapes; //!< cached container of child shapes
-};
-
-#endif
diff --git a/tools/ShapeView/ShapeView_OpenFileDialog.cxx b/tools/ShapeView/ShapeView_OpenFileDialog.cxx
deleted file mode 100644
index 3b5d0eba56..0000000000
--- a/tools/ShapeView/ShapeView_OpenFileDialog.cxx
+++ /dev/null
@@ -1,300 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/ShapeView_OpenFileDialog.hxx>
-#include <inspector/ShapeView_OpenFileViewModel.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QGroupBox>
-#include <QHBoxLayout>
-#include <QHeaderView>
-#include <QItemSelectionModel>
-#include <QLabel>
-#include <QLineEdit>
-#include <QScrollBar>
-#include <QTableView>
-#include <QVBoxLayout>
-#include <QWidget>
-
-#include <QApplication>
-#include <QCompleter>
-#include <QDir>
-#include <QFileDialog>
-#include <QFileSystemModel>
-#include <QPushButton>
-#include <QToolButton>
-#include <Standard_WarningsRestore.hxx>
-
-static const int ICON_SIZE = 40;
-
-static const int OPEN_DIALOG_WIDTH  = 550;
-static const int OPEN_DIALOG_HEIGHT = 200;
-
-static const int MARGIN_DIALOG  = 4;
-static const int SPACING_DIALOG = 2;
-
-// =======================================================================
-// function : StartButton
-// purpose :
-// =======================================================================
-QPushButton* ShapeView_OpenButton::StartButton()
-{
-  if (!myStartButton)
-  {
-    myStartButton = new QPushButton();
-    myStartButton->setIcon(QIcon(":/icons/folder_open.png"));
-    connect(myStartButton, SIGNAL(clicked()), this, SLOT(onStartButtonClicked()));
-  }
-  return myStartButton;
-}
-
-// =======================================================================
-// function : onStartButtonClicked
-// purpose :
-// =======================================================================
-void ShapeView_OpenButton::onStartButtonClicked()
-{
-  QString aDataDirName = QDir::currentPath();
-
-  QString aFileName = ShapeView_OpenFileDialog::OpenFile(0, aDataDirName);
-  aFileName         = QDir().toNativeSeparators(aFileName);
-  if (!aFileName.isEmpty())
-  {
-    QApplication::setOverrideCursor(Qt::WaitCursor);
-    emit OpenFile(aFileName);
-    QApplication::restoreOverrideCursor();
-  }
-}
-
-// =======================================================================
-// function : changeMargins
-// purpose :
-// =======================================================================
-void changeMargins(QBoxLayout* theLayout)
-{
-  theLayout->setContentsMargins(MARGIN_DIALOG, MARGIN_DIALOG, MARGIN_DIALOG, MARGIN_DIALOG);
-  theLayout->setSpacing(SPACING_DIALOG);
-}
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-ShapeView_OpenFileDialog::ShapeView_OpenFileDialog(QWidget*       theParent,
-                                                   const QString& theDataDirName)
-    : QDialog(theParent)
-{
-  setWindowTitle(theDataDirName);
-  myDataDir = theDataDirName;
-
-  QVBoxLayout* aDialogLay = new QVBoxLayout(this);
-  changeMargins(aDialogLay);
-
-  // Title label
-  QLabel* aTitleLabel = new QLabel(this);
-  aTitleLabel->setText(tr("Open File"));
-  aDialogLay->addWidget(aTitleLabel);
-
-  // Samples View
-  QGroupBox* aSamplesBox = new QGroupBox(this);
-  aSamplesBox->setTitle(tr("Samples"));
-  aDialogLay->addWidget(aSamplesBox);
-  QVBoxLayout* aSampleLay = new QVBoxLayout(aSamplesBox);
-  changeMargins(aSampleLay);
-  mySamplesView = createTableView(readSampleNames());
-  aSampleLay->addWidget(mySamplesView);
-
-  // Select file
-  QGroupBox* aSelectFileBox = new QGroupBox(this);
-  aSelectFileBox->setTitle(tr("Select file"));
-  aDialogLay->addWidget(aSelectFileBox);
-  QGridLayout* aSelectFileLay = new QGridLayout(aSelectFileBox);
-  aSelectFileLay->setContentsMargins(MARGIN_DIALOG, MARGIN_DIALOG, MARGIN_DIALOG, MARGIN_DIALOG);
-
-  mySelectedName                     = new QLineEdit(aSelectFileBox);
-  QCompleter*       aCompleter       = new QCompleter();
-  QFileSystemModel* aFileSystemModel = new QFileSystemModel;
-  aFileSystemModel->setRootPath(QDir::rootPath());
-  aCompleter->setModel(aFileSystemModel);
-  mySelectedName->setCompleter(aCompleter);
-  aSelectFileLay->addWidget(mySelectedName, 1, 0);
-
-  QToolButton* aSelectFileBtn = new QToolButton(aSelectFileBox);
-  aSelectFileBtn->setIcon(QIcon(":/icons/folder_open.png"));
-  aSelectFileLay->addWidget(aSelectFileBtn, 1, 1);
-
-  myFolderApplyOpen = new QToolButton(aSelectFileBox);
-  myFolderApplyOpen->setIcon(QIcon(":/icons/folder_import.png"));
-  myFolderApplyOpen->setIconSize(QSize(ICON_SIZE, ICON_SIZE));
-  myFolderApplyOpen->setEnabled(false);
-  aSelectFileLay->addWidget(myFolderApplyOpen, 0, 2, 2, 1);
-
-  connect(mySelectedName,
-          SIGNAL(textChanged(const QString&)),
-          this,
-          SLOT(onNameChanged(const QString&)));
-  connect(aSelectFileBtn, SIGNAL(clicked()), this, SLOT(onSelectClicked()));
-  connect(myFolderApplyOpen, SIGNAL(clicked()), this, SLOT(onApplySelectClicked()));
-
-  resize(OPEN_DIALOG_WIDTH, OPEN_DIALOG_HEIGHT);
-}
-
-// =======================================================================
-// function : OpenFile
-// purpose :
-// =======================================================================
-QString ShapeView_OpenFileDialog::OpenFile(QWidget* theParent, const QString& theDataDirName)
-{
-  QString                   aFileName;
-  ShapeView_OpenFileDialog* aDialog = new ShapeView_OpenFileDialog(theParent, theDataDirName);
-  if (aDialog->exec() == QDialog::Accepted)
-    aFileName = aDialog->GetFileName();
-
-  return aFileName;
-}
-
-// =======================================================================
-// function : onSampleSelectionChanged
-// purpose :
-// =======================================================================
-void ShapeView_OpenFileDialog::onSampleSelectionChanged(const QItemSelection& theSelected,
-                                                        const QItemSelection&)
-{
-  QItemSelectionModel* aSelectionModel = (QItemSelectionModel*)sender();
-  if (!aSelectionModel)
-    return;
-  if (theSelected.isEmpty())
-    return;
-
-  QModelIndex anIndex = theSelected.first().indexes().first();
-  if (!anIndex.isValid())
-    return;
-
-  myFileName = aSelectionModel->model()->data(anIndex, Qt::ToolTipRole).toString();
-  accept();
-}
-
-// =======================================================================
-// function : onNameChanged
-// purpose :
-// =======================================================================
-void ShapeView_OpenFileDialog::onNameChanged(const QString& theText)
-{
-  QFileInfo aFileInfo(theText);
-  bool      anExists = aFileInfo.exists() && aFileInfo.isFile();
-  myFolderApplyOpen->setEnabled(anExists);
-}
-
-// =======================================================================
-// function : onSelectClicked
-// purpose :
-// =======================================================================
-void ShapeView_OpenFileDialog::onSelectClicked()
-{
-  QString anEnteredPath;
-  QString aDirName = mySelectedName->text();
-  if (!aDirName.isEmpty())
-  {
-    QDir aDir(aDirName);
-    if (aDir.exists())
-      anEnteredPath = aDirName;
-  }
-
-  QString aFilter(tr("BREP file (*.brep*)"));
-  QString aFileName = QFileDialog::getOpenFileName(0, "Open document", anEnteredPath, aFilter);
-
-  if (aFileName.isEmpty())
-    return; // do nothing, left the previous value
-
-  mySelectedName->setText(aFileName);
-  onNameChanged(aFileName);
-}
-
-// =======================================================================
-// function : onApplySelectClicked
-// purpose :
-// =======================================================================
-void ShapeView_OpenFileDialog::onApplySelectClicked()
-{
-  myFileName = mySelectedName->text();
-  accept();
-}
-
-// =======================================================================
-// function : createTableView
-// purpose :
-// =======================================================================
-QTableView* ShapeView_OpenFileDialog::createTableView(const QStringList& theFileNames)
-{
-  QTableView* aTableView = new QTableView(this);
-  aTableView->setFrameStyle(QFrame::NoFrame);
-  QPalette aPalette     = aTableView->viewport()->palette();
-  QColor   aWindowColor = aPalette.color(QPalette::Window);
-  aPalette.setBrush(QPalette::Base, aWindowColor);
-  aTableView->viewport()->setPalette(aPalette);
-
-  aTableView->horizontalHeader()->setVisible(false);
-  aTableView->verticalHeader()->setVisible(false);
-  aTableView->setGridStyle(Qt::NoPen);
-  aTableView->setModel(createModel(theFileNames));
-  aTableView->setItemDelegateForRow(
-    0,
-    new ShapeView_OpenFileItemDelegate(aTableView, aPalette.color(QPalette::Highlight)));
-  aTableView->viewport()->setAttribute(Qt::WA_Hover);
-  int aCellHeight = ICON_SIZE + aTableView->verticalHeader()->defaultSectionSize();
-  aTableView->setRowHeight(0, aCellHeight);
-  int aScrollHeight = aTableView->horizontalScrollBar()->sizeHint().height();
-  aTableView->setMinimumHeight(aCellHeight + aScrollHeight);
-  QItemSelectionModel* aSelectionModel = new QItemSelectionModel(aTableView->model());
-  connect(aSelectionModel,
-          SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-          this,
-          SLOT(onSampleSelectionChanged(const QItemSelection&, const QItemSelection&)));
-  aTableView->setSelectionModel(aSelectionModel);
-
-  return aTableView;
-}
-
-// =======================================================================
-// function : createModel
-// purpose :
-// =======================================================================
-QAbstractItemModel* ShapeView_OpenFileDialog::createModel(const QStringList& theFileNames)
-{
-  ShapeView_OpenFileViewModel* aModel = new ShapeView_OpenFileViewModel(this);
-  aModel->Init(theFileNames);
-  return aModel;
-}
-
-// =======================================================================
-// function : readSampleNames
-// purpose :
-// =======================================================================
-QStringList ShapeView_OpenFileDialog::readSampleNames()
-{
-  QStringList aNames;
-
-  QDir aDir(myDataDir);
-  aDir.setSorting(QDir::Name);
-
-  QFileInfoList aDirEntries = aDir.entryInfoList();
-  for (int aDirId = 0; aDirId < aDirEntries.size(); ++aDirId)
-  {
-    QFileInfo aFileInfo = aDirEntries.at(aDirId);
-    if (aFileInfo.isFile())
-      aNames.append(aFileInfo.absoluteFilePath());
-  }
-  return aNames;
-}
diff --git a/tools/ShapeView/ShapeView_OpenFileDialog.hxx b/tools/ShapeView/ShapeView_OpenFileDialog.hxx
deleted file mode 100644
index 301f32b162..0000000000
--- a/tools/ShapeView/ShapeView_OpenFileDialog.hxx
+++ /dev/null
@@ -1,149 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 ShapeView_OpenFileDialog_H
-#define ShapeView_OpenFileDialog_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-#include <TCollection_AsciiString.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QDialog>
-#include <QItemSelection>
-#include <QStringList>
-#include <Standard_WarningsRestore.hxx>
-
-#include <map>
-
-class QAbstractItemModel;
-class QLineEdit;
-class QPushButton;
-class QTableView;
-class QToolButton;
-class QWidget;
-
-//! \class ShapeView_OpenButton
-//! Class that contains push button and the button processing. It obtains a file name from the
-//! default or current directory and gives the name into TInspector communicator Object name of the
-//! button is the name of the plugin to get the default directory, or the current directory is used.
-class ShapeView_OpenButton : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  ShapeView_OpenButton(QObject* theParent)
-      : QObject(theParent),
-        myStartButton(0)
-  {
-  }
-
-  //! Destructor
-  virtual ~ShapeView_OpenButton() {}
-
-  //! Returns the start button, if this is the first call, it creates the button and connect it to
-  //! the slot
-  Standard_EXPORT QPushButton* StartButton();
-
-  //! Sets the default directory of plugin.
-  void SetPluginDir(const TCollection_AsciiString& thePluginName,
-                    const TCollection_AsciiString& theDefaultDir)
-  {
-    myDefaultDirs[thePluginName] = theDefaultDir;
-  }
-
-private slots:
-
-  //! Processes the button click, open default/current directory to select open file, calls OpenFile
-  //! of communicator
-  void onStartButtonClicked();
-
-signals:
-
-  //! Signals about opening file clicked
-  //! \param theFileName an output file name
-  void OpenFile(const QString& theFileName);
-
-private:
-  QPushButton* myStartButton; //!< processed button
-  std::map<TCollection_AsciiString, TCollection_AsciiString>
-    myDefaultDirs; //!< plugins default directories
-};
-
-//! \class ShapeView_OpenFileDialog
-//! Control that contains table view of samples and line to select a file name from other directory.
-//! Click on element of samples table view calls this sample opening else after entering(or opening)
-//! file name the import becomes active. Click on the button will open selected file if it is
-//! possible
-class ShapeView_OpenFileDialog : public QDialog
-{
-  Q_OBJECT
-private:
-  //! Constructor
-  ShapeView_OpenFileDialog(QWidget* theParent, const QString& theDataDirName);
-
-public:
-  //! Destructor
-  virtual ~ShapeView_OpenFileDialog() Standard_OVERRIDE {}
-
-  //! Opens this file dialog using for samples view the given directory and try to open new file
-  //! \param theParent a parent for the new dialog
-  //! \param theDataDirName path to default samples directory
-  //! \returns a file name from the open file dialog
-  static QString OpenFile(QWidget* theParent, const QString& theDataDirName);
-
-  //! Returns selection name from the dialog
-  QString GetFileName() const { return myFileName; }
-
-private slots:
-
-  //! Stores name of selected sample file
-  void onSampleSelectionChanged(const QItemSelection& theSelected,
-                                const QItemSelection& theDeselected);
-
-  //! Updates enabling state of Open file button, it is enabled if the file by the entered path
-  //! exists \param theText a file name text in line edit
-  void onNameChanged(const QString& theText);
-
-  //! Open file dialog to select a file name. Fills file name line, enable import button
-  void onSelectClicked();
-
-  //! Accepts open file dialog
-  void onApplySelectClicked();
-
-private:
-  //! Creates view of file names in samples directory
-  //! \param theFileNames a container of names
-  //! \return table view
-  QTableView* createTableView(const QStringList& theFileNames);
-
-  //! Creates view model and fills it by the file names
-  //! \param theFileNames a container of names
-  //! \return model
-  QAbstractItemModel* createModel(const QStringList& theFileNames);
-
-  //! Generates container of file names in samples directory
-  //! \return container of names
-  QStringList readSampleNames();
-
-private:
-  QString      myDataDir;         //!< samples directory
-  QString      myFileName;        //!< result file name
-  QTableView*  mySamplesView;     //!< view of sample file names
-  QLineEdit*   mySelectedName;    //!< alternative control to open file
-  QToolButton* myFolderApplyOpen; //!< button to open file
-};
-
-#endif
diff --git a/tools/ShapeView/ShapeView_OpenFileViewModel.cxx b/tools/ShapeView/ShapeView_OpenFileViewModel.cxx
deleted file mode 100644
index 8f4717ae9f..0000000000
--- a/tools/ShapeView/ShapeView_OpenFileViewModel.cxx
+++ /dev/null
@@ -1,80 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/ShapeView_OpenFileViewModel.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QFileInfo>
-#include <QIcon>
-#include <QPainter>
-#include <Standard_WarningsRestore.hxx>
-
-const int ICON_SIZE = 40;
-
-// =======================================================================
-// function : paint
-// purpose :
-// =======================================================================
-void ShapeView_OpenFileItemDelegate::paint(QPainter*                   thePainter,
-                                           const QStyleOptionViewItem& theOption,
-                                           const QModelIndex&          theIndex) const
-{
-  // highlight cell
-  if (theOption.state & QStyle::State_MouseOver)
-    thePainter->fillRect(theOption.rect, myColor);
-
-  // action icon for all indices before the last one
-  QIcon anIcon(":/icons/folder_import.png");
-  QSize anIconSize(ICON_SIZE, ICON_SIZE);
-  int   aDX     = (theOption.rect.width() - anIconSize.width()) / 2;
-  int   aMargin = qApp->style()->pixelMetric(QStyle::PM_HeaderMargin);
-  thePainter->drawPixmap(QRect(theOption.rect.left() + aDX,
-                               theOption.rect.top() + aMargin,
-                               anIconSize.width(),
-                               anIconSize.height()),
-                         anIcon.pixmap(anIconSize.width(), anIconSize.height()));
-  // default paint
-  QItemDelegate::paint(thePainter, theOption, theIndex);
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void ShapeView_OpenFileViewModel::Init(const QStringList& theValues)
-{
-  myValues = theValues;
-}
-
-// =======================================================================
-// function : data
-// purpose :
-// =======================================================================
-QVariant ShapeView_OpenFileViewModel::data(const QModelIndex& theIndex, int theRole) const
-{
-  switch (theRole)
-  {
-    case Qt::DisplayRole:
-      return QFileInfo(myValues[theIndex.column()]).fileName();
-    case Qt::ToolTipRole:
-      return myValues[theIndex.column()];
-    case Qt::TextAlignmentRole:
-      return QVariant(Qt::AlignBottom | Qt::AlignHCenter);
-    default:
-      break;
-  }
-  return QVariant();
-}
diff --git a/tools/ShapeView/ShapeView_OpenFileViewModel.hxx b/tools/ShapeView/ShapeView_OpenFileViewModel.hxx
deleted file mode 100644
index 945902d944..0000000000
--- a/tools/ShapeView/ShapeView_OpenFileViewModel.hxx
+++ /dev/null
@@ -1,106 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 ShapeView_OpenFileViewModel_H
-#define ShapeView_OpenFileViewModel_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractTableModel>
-#include <QStringList>
-#include <QItemDelegate>
-#include <Standard_WarningsRestore.hxx>
-
-class QObject;
-class QPainter;
-
-//! \class ShapeView_OpenFileItemDelegate
-//! Draws large(40x40) icons in cell. The icon background in colored in highlight when mouse is over
-//! button
-class ShapeView_OpenFileItemDelegate : public QItemDelegate
-{
-public:
-  //! Constructor
-  ShapeView_OpenFileItemDelegate(QObject* theParent, const QColor& theHighlight)
-      : QItemDelegate(theParent),
-        myColor(theHighlight)
-  {
-  }
-
-  //! Destructor
-  virtual ~ShapeView_OpenFileItemDelegate() {}
-
-  //! Draws an icon in the cell
-  //! \param thePainter a painter
-  //! \param theOption a paint options
-  //! \param theIndex a view index
-  Standard_EXPORT void paint(QPainter*                   thePainter,
-                             const QStyleOptionViewItem& theOption,
-                             const QModelIndex&          theIndex) const;
-
-private:
-  QColor myColor; //!< highlight color
-};
-
-//! \class ShapeView_OpenFileViewModel
-//! Table model that visualizes container of string values (file names)
-//! Table orientation is horizontal, it has 1 row, number of columns equals to number of values
-class ShapeView_OpenFileViewModel : public QAbstractTableModel
-{
-public:
-  //! Constructor
-  ShapeView_OpenFileViewModel(QObject* theParent = 0)
-      : QAbstractTableModel(theParent)
-  {
-  }
-
-  //! Destructor
-  virtual ~ShapeView_OpenFileViewModel() {}
-
-  //! Stores values
-  //! \param theValues a container of values to fill model
-  void Init(const QStringList& theValues);
-
-  //! Returns content of the model index for the given role, it is obtained from internal container
-  //! of values It returns value only for DisplayRole. \param theIndex a model index \param theRole
-  //! a view role \return value interpreted depending on the given role
-  virtual QVariant data(const QModelIndex& theIndex,
-                        int                theRole = Qt::DisplayRole) const Standard_OVERRIDE;
-
-  //! Returns number of rows
-  //! \param theParent an index of the parent item
-  //! \return an integer value
-  virtual int rowCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return 1;
-  }
-
-  //! Returns number of columns
-  //! \param theParent an index of the parent item
-  //! \return an integer value
-  virtual int columnCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return myValues.size();
-  }
-
-private:
-  QStringList myValues; //!< file names
-};
-
-#endif
diff --git a/tools/ShapeView/ShapeView_Tools.cxx b/tools/ShapeView/ShapeView_Tools.cxx
deleted file mode 100644
index 002d30a0f7..0000000000
--- a/tools/ShapeView/ShapeView_Tools.cxx
+++ /dev/null
@@ -1,48 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/ShapeView_Tools.hxx>
-#include <inspector/ShapeView_ItemShape.hxx>
-
-#include <TopoDS.hxx>
-#include <TopoDS_Iterator.hxx>
-
-#include <TopExp.hxx>
-#include <TopTools_IndexedMapOfShape.hxx>
-
-// =======================================================================
-// function : IsPossibleToExplode
-// purpose :
-// =======================================================================
-Standard_Boolean ShapeView_Tools::IsPossibleToExplode(
-  const TopoDS_Shape&                 theShape,
-  NCollection_List<TopAbs_ShapeEnum>& theExplodeTypes)
-{
-  TopAbs_ShapeEnum aShapeType = theShape.ShapeType();
-
-  if (!theExplodeTypes.Contains(aShapeType))
-    theExplodeTypes.Append(aShapeType);
-
-  if (theExplodeTypes.Extent() == TopAbs_SHAPE + 1) // all types are collected, stop
-    return Standard_True;
-
-  TopoDS_Iterator aSubShapeIt(theShape);
-  for (int aCurrentIndex = 0; aSubShapeIt.More(); aSubShapeIt.Next(), aCurrentIndex++)
-  {
-    if (IsPossibleToExplode(aSubShapeIt.Value(), theExplodeTypes))
-      return Standard_True;
-  }
-  return Standard_False;
-}
diff --git a/tools/ShapeView/ShapeView_Tools.hxx b/tools/ShapeView/ShapeView_Tools.hxx
deleted file mode 100644
index 462905c113..0000000000
--- a/tools/ShapeView/ShapeView_Tools.hxx
+++ /dev/null
@@ -1,50 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 ShapeView_Tools_H
-#define ShapeView_Tools_H
-
-#include <Standard.hxx>
-
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <NCollection_List.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <Standard_Transient.hxx>
-#include <TopoDS_Shape.hxx>
-
-#include <inspector/ViewControl_TableModelValues.hxx>
-
-#include <GeomAbs_Shape.hxx>
-#include <Standard_WarningsDisable.hxx>
-#include <QList>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class ShapeView_Tools
-//! It gives auxiliary methods for TopoDS_Shape manipulation
-class ShapeView_Tools
-{
-public:
-  //! Checks whether it is possible to explode the shape. The search is recursive until all types
-  //! are collected. \param[in] theShape  source shape object \param[out] theExplodeTypes  container
-  //! of possible shape types to be exploded \return true if explode is finished, all types are
-  //! collected.
-  Standard_EXPORT static Standard_Boolean IsPossibleToExplode(
-    const TopoDS_Shape&                 theShape,
-    NCollection_List<TopAbs_ShapeEnum>& theExplodeTypes);
-};
-
-#endif
diff --git a/tools/ShapeView/ShapeView_TreeModel.cxx b/tools/ShapeView/ShapeView_TreeModel.cxx
deleted file mode 100644
index 480ea854f7..0000000000
--- a/tools/ShapeView/ShapeView_TreeModel.cxx
+++ /dev/null
@@ -1,89 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/ShapeView_TreeModel.hxx>
-#include <inspector/ShapeView_ItemRoot.hxx>
-#include <inspector/ShapeView_TreeModel.hxx>
-#include <inspector/ShapeView_ItemRoot.hxx>
-#include <inspector/ShapeView_ItemShape.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-ShapeView_TreeModel::ShapeView_TreeModel(QObject* theParent)
-    : TreeModel_ModelBase(theParent)
-{
-}
-
-// =======================================================================
-// function : createRootItem
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr ShapeView_TreeModel::createRootItem(const int theColumnId)
-{
-  return ShapeView_ItemRoot::CreateItem(TreeModel_ItemBasePtr(), 0, theColumnId);
-}
-
-// =======================================================================
-// function : AddShape
-// purpose :
-// =======================================================================
-void ShapeView_TreeModel::AddShape(const TopoDS_Shape& theShape)
-{
-  for (int aColId = 0, aNbColumns = columnCount(); aColId < aNbColumns; aColId++)
-  {
-    ShapeView_ItemRootPtr aRootItem = itemDynamicCast<ShapeView_ItemRoot>(RootItem(aColId));
-    aRootItem->AddShape(theShape);
-  }
-
-  Reset();
-  EmitLayoutChanged();
-}
-
-// =======================================================================
-// function : RemoveAllShapes
-// purpose :
-// =======================================================================
-void ShapeView_TreeModel::RemoveAllShapes()
-{
-  for (int aColId = 0, aNbColumns = columnCount(); aColId < aNbColumns; aColId++)
-  {
-    ShapeView_ItemRootPtr aRootItem = itemDynamicCast<ShapeView_ItemRoot>(RootItem(aColId));
-    aRootItem->RemoveAllShapes();
-  }
-  Reset();
-  EmitLayoutChanged();
-}
-
-// =======================================================================
-// function : FindIndex
-// purpose :
-// =======================================================================
-QModelIndex ShapeView_TreeModel::FindIndex(const TopoDS_Shape& theShape) const
-{
-  QModelIndex           aParentIndex = index(0, 0);
-  TreeModel_ItemBasePtr aParentItem =
-    TreeModel_ModelBase::GetItemByIndex(aParentIndex); // application item
-  for (int aChildId = 0, aCount = aParentItem->rowCount(); aChildId < aCount; aChildId++)
-  {
-    QModelIndex            anIndex = index(aChildId, 0, aParentIndex);
-    ShapeView_ItemShapePtr anItem =
-      itemDynamicCast<ShapeView_ItemShape>(TreeModel_ModelBase::GetItemByIndex(anIndex));
-    if (anItem && anItem->GetItemShape() == theShape)
-      return anIndex;
-  }
-  return QModelIndex();
-}
diff --git a/tools/ShapeView/ShapeView_TreeModel.hxx b/tools/ShapeView/ShapeView_TreeModel.hxx
deleted file mode 100644
index afe6c3078f..0000000000
--- a/tools/ShapeView/ShapeView_TreeModel.hxx
+++ /dev/null
@@ -1,61 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 ShapeView_TreeModel_H
-#define ShapeView_TreeModel_H
-
-#include <inspector/TreeModel_ItemBase.hxx>
-#include <Standard.hxx>
-#include <TopoDS_Shape.hxx>
-#include <inspector/TreeModel_ModelBase.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QMap>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-class ShapeView_TreeModel;
-
-//! \class ShapeView_TreeModel
-//! View model to visualize content of TopoDS_Shape
-class ShapeView_TreeModel : public TreeModel_ModelBase
-{
-public:
-  //! Constructor
-  Standard_EXPORT ShapeView_TreeModel(QObject* theParent);
-
-  //! Destructor
-  virtual ~ShapeView_TreeModel() {}
-
-  //! Adds shape, append it to the model root item
-  //! \param theShape a shape instance
-  Standard_EXPORT void AddShape(const TopoDS_Shape& theShape);
-
-  //! Removes all shapes in the model root item
-  Standard_EXPORT void RemoveAllShapes();
-
-  //! Returns model index of the shape.
-  //! \param theShape a shape object
-  //! \return the model index
-  QModelIndex FindIndex(const TopoDS_Shape& theShape) const;
-
-protected:
-  //! Creates root item
-  //! \param theColumnId index of a column
-  Standard_EXPORT virtual TreeModel_ItemBasePtr createRootItem(const int theColumnId)
-    Standard_OVERRIDE;
-};
-
-#endif
diff --git a/tools/ShapeView/ShapeView_VisibilityState.cxx b/tools/ShapeView/ShapeView_VisibilityState.cxx
deleted file mode 100644
index 88fe00db78..0000000000
--- a/tools/ShapeView/ShapeView_VisibilityState.cxx
+++ /dev/null
@@ -1,64 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/ShapeView_VisibilityState.hxx>
-
-#include <inspector/ShapeView_ItemShape.hxx>
-
-// =======================================================================
-// function : OnClicked
-// purpose :
-// =======================================================================
-void ShapeView_VisibilityState::OnClicked(const QModelIndex& theIndex)
-{
-  processClicked(theIndex);
-  emit itemClicked(theIndex);
-}
-
-// =======================================================================
-// function : SetVisible
-// purpose :
-// =======================================================================
-bool ShapeView_VisibilityState::SetVisible(const QModelIndex& theIndex,
-                                           const bool         theState,
-                                           const bool         toEmitDataChanged)
-{
-  TopoDS_Shape aShape = Shape(theIndex);
-  if (aShape.IsNull())
-    return false;
-
-  myDisplayer->SetVisible(aShape, theState, myPresentationType);
-
-  if (toEmitDataChanged)
-    getModel()->EmitDataChanged(theIndex, theIndex);
-  return true;
-}
-
-// =======================================================================
-// function : Shape
-// purpose :
-// =======================================================================
-TopoDS_Shape ShapeView_VisibilityState::Shape(const QModelIndex& theIndex) const
-{
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(theIndex);
-  if (!anItemBase)
-    return TopoDS_Shape();
-
-  ShapeView_ItemShapePtr aShapeItem = itemDynamicCast<ShapeView_ItemShape>(anItemBase);
-  if (!aShapeItem)
-    return TopoDS_Shape();
-
-  return aShapeItem->GetItemShape();
-}
diff --git a/tools/ShapeView/ShapeView_VisibilityState.hxx b/tools/ShapeView/ShapeView_VisibilityState.hxx
deleted file mode 100644
index 2b8d8359c2..0000000000
--- a/tools/ShapeView/ShapeView_VisibilityState.hxx
+++ /dev/null
@@ -1,98 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 ShapeView_VisibilityState_H
-#define ShapeView_VisibilityState_H
-
-#include <inspector/TreeModel_VisibilityState.hxx>
-
-#include <inspector/View_Displayer.hxx>
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-#include <TopoDS_Shape.hxx>
-
-class TreeModel_ModelBase;
-
-//! \class ShapeView_VisibilityState
-//! \brief Class provides connection between model and visualization control
-class ShapeView_VisibilityState : public QObject, public TreeModel_VisibilityState
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  ShapeView_VisibilityState(TreeModel_ModelBase* theModel)
-      : TreeModel_VisibilityState(theModel),
-        myPresentationType(View_PresentationType_Main)
-  {
-  }
-
-  //! Destructor
-  ~ShapeView_VisibilityState() {}
-
-  //! Sets current displayer
-  //! \theDisplayer class that provides connection to visualized objects
-  void SetDisplayer(View_Displayer* theDisplayer) { myDisplayer = theDisplayer; }
-
-  //! Sets presentation type for displayer
-  //! \param theType type value
-  void SetPresentationType(const View_PresentationType theType) { myPresentationType = theType; }
-
-  //! Returns true if visibility of the item can be changed
-  //! \param theIndex tree model index
-  //! \return boolean value
-  virtual bool CanBeVisible(const QModelIndex& theIndex) const Standard_OVERRIDE
-  {
-    return !Shape(theIndex).IsNull();
-  }
-
-  //! Sets visibility state
-  //! \theIndex tree model index
-  //! \param theState visibility state
-  //! \param toEmitDataChanged boolean flag whether emit of the model should be done immediately
-  //! \return true if state is changed
-  Standard_EXPORT virtual bool SetVisible(const QModelIndex& theIndex,
-                                          const bool         theState,
-                                          const bool         toEmitDataChanged) Standard_OVERRIDE;
-
-  //! Returns visibility state value
-  virtual bool IsVisible(const QModelIndex& theIndex) const Standard_OVERRIDE
-  {
-    return myDisplayer->IsVisible(Shape(theIndex), myPresentationType);
-  }
-
-public slots:
-  //! Processes the mouse clicked on the index.
-  //! It changes the item visibility if model allows to change it.
-  //! \theIndex tree model index
-  void OnClicked(const QModelIndex& theIndex);
-
-signals:
-  //! Signal after OnClicked is performed
-  //! \theIndex tree model index
-  void itemClicked(const QModelIndex& theIndex);
-
-protected:
-  //! Gets shape of the view model by the parameter index if it has a shape
-  //! \param theIndex tree model index
-  //! \return shape instance
-  TopoDS_Shape Shape(const QModelIndex& theIndex) const;
-
-private:
-  View_Displayer*       myDisplayer;        //!< view displayer
-  View_PresentationType myPresentationType; //!< presentation type
-};
-
-#endif
diff --git a/tools/ShapeView/ShapeView_Window.cxx b/tools/ShapeView/ShapeView_Window.cxx
deleted file mode 100644
index 2f2b559415..0000000000
--- a/tools/ShapeView/ShapeView_Window.cxx
+++ /dev/null
@@ -1,552 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/ShapeView_Window.hxx>
-#include <inspector/ShapeView_ItemRoot.hxx>
-#include <inspector/ShapeView_ItemShape.hxx>
-#include <inspector/ShapeView_TreeModel.hxx>
-#include <inspector/ShapeView_VisibilityState.hxx>
-
-#include <inspector/Convert_Tools.hxx>
-
-#include <inspector/TreeModel_Tools.hxx>
-#include <inspector/TreeModel_ContextMenu.hxx>
-
-#include <inspector/ViewControl_PropertyView.hxx>
-#include <inspector/ViewControl_Tools.hxx>
-#include <inspector/ViewControl_TreeView.hxx>
-
-#include <inspector/View_Displayer.hxx>
-#include <inspector/View_PresentationType.hxx>
-#include <inspector/View_ToolBar.hxx>
-#include <inspector/View_Window.hxx>
-#include <inspector/View_Viewer.hxx>
-
-#include <inspector/ShapeView_Window.hxx>
-#include <inspector/ShapeView_OpenFileDialog.hxx>
-#include <inspector/ShapeView_Tools.hxx>
-
-#include <BRep_Builder.hxx>
-#include <BRepTools.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QAction>
-#include <QComboBox>
-#include <QDockWidget>
-#include <QDir>
-#include <QFile>
-#include <QFileDialog>
-#include <QMainWindow>
-#include <QMenu>
-#include <QPlainTextEdit>
-#include <QPushButton>
-#include <QTextEdit>
-#include <QTextStream>
-#include <QToolBar>
-#include <QToolButton>
-#include <QTreeView>
-#include <QWidget>
-#include <QVBoxLayout>
-#include <Standard_WarningsRestore.hxx>
-
-static const int DEFAULT_SHAPE_VIEW_WIDTH      = 900;
-static const int DEFAULT_SHAPE_VIEW_HEIGHT     = 450;
-static const int DEFAULT_SHAPE_VIEW_POSITION_X = 60;
-static const int DEFAULT_SHAPE_VIEW_POSITION_Y = 60;
-
-static const int SHAPEVIEW_DEFAULT_TREE_VIEW_WIDTH  = 600;
-static const int SHAPEVIEW_DEFAULT_TREE_VIEW_HEIGHT = 500;
-
-static const int SHAPEVIEW_DEFAULT_VIEW_WIDTH  = 300;
-static const int SHAPEVIEW_DEFAULT_VIEW_HEIGHT = 1000;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-ShapeView_Window::ShapeView_Window(QWidget* theParent)
-    : QObject(theParent)
-{
-  myMainWindow = new QMainWindow(theParent);
-
-  myTreeView = new ViewControl_TreeView(myMainWindow);
-  ((ViewControl_TreeView*)myTreeView)
-    ->SetPredefinedSize(
-      QSize(SHAPEVIEW_DEFAULT_TREE_VIEW_WIDTH, SHAPEVIEW_DEFAULT_TREE_VIEW_HEIGHT));
-  myTreeView->setContextMenuPolicy(Qt::CustomContextMenu);
-  connect(myTreeView,
-          SIGNAL(customContextMenuRequested(const QPoint&)),
-          this,
-          SLOT(onTreeViewContextMenuRequested(const QPoint&)));
-  new TreeModel_ContextMenu(myTreeView);
-  ShapeView_TreeModel* aModel = new ShapeView_TreeModel(myTreeView);
-  aModel->InitColumns();
-
-  myTreeView->setModel(aModel);
-  ShapeView_VisibilityState* aVisibilityState = new ShapeView_VisibilityState(aModel);
-  aModel->SetVisibilityState(aVisibilityState);
-  TreeModel_Tools::UseVisibilityColumn(myTreeView);
-  QObject::connect(myTreeView,
-                   SIGNAL(clicked(const QModelIndex&)),
-                   aVisibilityState,
-                   SLOT(OnClicked(const QModelIndex&)));
-
-  QItemSelectionModel* aSelModel = new QItemSelectionModel(myTreeView->model(), myTreeView);
-  myTreeView->setSelectionModel(aSelModel);
-  connect(aSelModel,
-          SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-          this,
-          SLOT(onTreeViewSelectionChanged(const QItemSelection&, const QItemSelection&)));
-
-  QModelIndex aParentIndex = myTreeView->model()->index(0, 0);
-  myTreeView->setExpanded(aParentIndex, true);
-  myMainWindow->setCentralWidget(myTreeView);
-
-  // property view
-  myPropertyView = new ViewControl_PropertyView(
-    myMainWindow,
-    QSize(SHAPEVIEW_DEFAULT_VIEW_WIDTH, SHAPEVIEW_DEFAULT_VIEW_HEIGHT));
-  myPropertyPanelWidget = new QDockWidget(tr("PropertyPanel"), myMainWindow);
-  myPropertyPanelWidget->setObjectName(myPropertyPanelWidget->windowTitle());
-  myPropertyPanelWidget->setTitleBarWidget(new QWidget(myMainWindow));
-  myPropertyPanelWidget->setWidget(myPropertyView->GetControl());
-  myMainWindow->addDockWidget(Qt::RightDockWidgetArea, myPropertyPanelWidget);
-
-  // view
-  myViewWindow = new View_Window(myMainWindow, NULL, false);
-  connect(myViewWindow, SIGNAL(eraseAllPerformed()), this, SLOT(onEraseAllPerformed()));
-  aVisibilityState->SetDisplayer(myViewWindow->Displayer());
-  aVisibilityState->SetPresentationType(View_PresentationType_Main);
-  myViewWindow->SetPredefinedSize(SHAPEVIEW_DEFAULT_VIEW_WIDTH, SHAPEVIEW_DEFAULT_VIEW_HEIGHT);
-
-  QDockWidget* aViewDockWidget = new QDockWidget(tr("View"), myMainWindow);
-  aViewDockWidget->setObjectName(aViewDockWidget->windowTitle());
-  aViewDockWidget->setWidget(myViewWindow);
-  aViewDockWidget->setTitleBarWidget(myViewWindow->ViewToolBar()->GetControl());
-  myMainWindow->addDockWidget(Qt::RightDockWidgetArea, aViewDockWidget);
-
-  myMainWindow->splitDockWidget(myPropertyPanelWidget, aViewDockWidget, Qt::Vertical);
-
-  myMainWindow->resize(DEFAULT_SHAPE_VIEW_WIDTH, DEFAULT_SHAPE_VIEW_HEIGHT);
-  myMainWindow->move(DEFAULT_SHAPE_VIEW_POSITION_X, DEFAULT_SHAPE_VIEW_POSITION_Y);
-}
-
-// =======================================================================
-// function : Destructor
-// purpose :
-// =======================================================================
-ShapeView_Window::~ShapeView_Window() {}
-
-// =======================================================================
-// function : SetParent
-// purpose :
-// =======================================================================
-void ShapeView_Window::SetParent(void* theParent)
-{
-  QWidget* aParent = (QWidget*)theParent;
-  if (aParent)
-  {
-    QLayout* aLayout = aParent->layout();
-    if (aLayout)
-      aLayout->addWidget(GetMainWindow());
-  }
-}
-
-// =======================================================================
-// function : FillActionsMenu
-// purpose :
-// =======================================================================
-void ShapeView_Window::FillActionsMenu(void* theMenu)
-{
-  QMenu*              aMenu        = (QMenu*)theMenu;
-  QList<QDockWidget*> aDockwidgets = myMainWindow->findChildren<QDockWidget*>();
-  for (QList<QDockWidget*>::iterator it = aDockwidgets.begin(); it != aDockwidgets.end(); ++it)
-  {
-    QDockWidget* aDockWidget = *it;
-    if (aDockWidget->parentWidget() == myMainWindow)
-      aMenu->addAction(aDockWidget->toggleViewAction());
-  }
-}
-
-// =======================================================================
-// function : GetPreferences
-// purpose :
-// =======================================================================
-void ShapeView_Window::GetPreferences(TInspectorAPI_PreferencesDataMap& theItem)
-{
-  theItem.Bind("geometry",
-               TreeModel_Tools::ToString(myMainWindow->saveState()).toStdString().c_str());
-
-  QMap<QString, QString> anItems;
-  TreeModel_Tools::SaveState(myTreeView, anItems);
-  View_Window::SaveState(myViewWindow, anItems);
-  for (QMap<QString, QString>::const_iterator anItemsIt = anItems.begin();
-       anItemsIt != anItems.end();
-       anItemsIt++)
-    theItem.Bind(anItemsIt.key().toStdString().c_str(), anItemsIt.value().toStdString().c_str());
-}
-
-// =======================================================================
-// function : SetPreferences
-// purpose :
-// =======================================================================
-void ShapeView_Window::SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem)
-{
-  if (theItem.IsEmpty())
-  {
-    TreeModel_Tools::SetDefaultHeaderSections(myTreeView);
-    return;
-  }
-
-  for (TInspectorAPI_IteratorOfPreferencesDataMap anItemIt(theItem); anItemIt.More();
-       anItemIt.Next())
-  {
-    if (anItemIt.Key().IsEqual("geometry"))
-      myMainWindow->restoreState(TreeModel_Tools::ToByteArray(anItemIt.Value().ToCString()));
-    else if (TreeModel_Tools::RestoreState(myTreeView,
-                                           anItemIt.Key().ToCString(),
-                                           anItemIt.Value().ToCString()))
-      continue;
-    else if (View_Window::RestoreState(myViewWindow,
-                                       anItemIt.Key().ToCString(),
-                                       anItemIt.Value().ToCString()))
-      continue;
-  }
-}
-
-// =======================================================================
-// function : UpdateContent
-// purpose :
-// =======================================================================
-void ShapeView_Window::UpdateContent()
-{
-  TCollection_AsciiString aName = "TKShapeView";
-  if (myParameters->FindParameters(aName))
-  {
-    NCollection_List<Handle(Standard_Transient)> aParameters = myParameters->Parameters(aName);
-    // Init will remove from parameters those, that are processed only one time (TShape)
-    Init(aParameters);
-    myParameters->SetParameters(aName, aParameters);
-  }
-  if (myParameters->FindFileNames(aName))
-  {
-    for (NCollection_List<TCollection_AsciiString>::Iterator aFilesIt(
-           myParameters->FileNames(aName));
-         aFilesIt.More();
-         aFilesIt.Next())
-      OpenFile(aFilesIt.Value());
-
-    NCollection_List<TCollection_AsciiString> aNames;
-    myParameters->SetFileNames(aName, aNames);
-  }
-  // make TopoDS_TShape selected if exist in select parameters
-  NCollection_List<Handle(Standard_Transient)> anObjects;
-  if (myParameters->GetSelectedObjects(aName, anObjects))
-  {
-    ShapeView_TreeModel* aModel          = dynamic_cast<ShapeView_TreeModel*>(myTreeView->model());
-    QItemSelectionModel* aSelectionModel = myTreeView->selectionModel();
-    aSelectionModel->clear();
-    for (NCollection_List<Handle(Standard_Transient)>::Iterator aParamsIt(anObjects);
-         aParamsIt.More();
-         aParamsIt.Next())
-    {
-      Handle(Standard_Transient) anObject      = aParamsIt.Value();
-      Handle(TopoDS_TShape)      aShapePointer = Handle(TopoDS_TShape)::DownCast(anObject);
-      if (aShapePointer.IsNull())
-        continue;
-
-      TopoDS_Shape aShape;
-      aShape.TShape(aShapePointer);
-
-      QModelIndex aShapeIndex = aModel->FindIndex(aShape);
-      if (!aShapeIndex.isValid())
-        continue;
-      aSelectionModel->select(aShapeIndex, QItemSelectionModel::Select);
-      myTreeView->scrollTo(aShapeIndex);
-    }
-    myParameters->SetSelected(aName, NCollection_List<Handle(Standard_Transient)>());
-  }
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void ShapeView_Window::Init(NCollection_List<Handle(Standard_Transient)>& theParameters)
-{
-  Handle(AIS_InteractiveContext)               aContext;
-  NCollection_List<Handle(Standard_Transient)> aParameters;
-
-  TCollection_AsciiString                   aPluginName("TKShapeView");
-  NCollection_List<TCollection_AsciiString> aSelectedParameters;
-  if (myParameters->FindSelectedNames(aPluginName)) // selected names have TShape parameters
-    aSelectedParameters = myParameters->GetSelectedNames(aPluginName);
-
-  NCollection_List<TCollection_AsciiString>::Iterator aParamsIt(aSelectedParameters);
-  for (NCollection_List<Handle(Standard_Transient)>::Iterator anObjectsIt(theParameters);
-       anObjectsIt.More();
-       anObjectsIt.Next())
-  {
-    Handle(Standard_Transient) anObject      = anObjectsIt.Value();
-    Handle(TopoDS_TShape)      aShapePointer = Handle(TopoDS_TShape)::DownCast(anObject);
-    if (!aShapePointer.IsNull())
-    {
-      TopoDS_Shape aShape;
-      aShape.TShape(aShapePointer);
-      if (aParamsIt.More())
-      {
-        // each Transient object has own location/orientation description
-        TInspectorAPI_PluginParameters::ParametersToShape(aParamsIt.Value(), aShape);
-        aParamsIt.Next();
-      }
-      addShape(aShape);
-    }
-    else
-    {
-      aParameters.Append(anObject);
-      if (aContext.IsNull())
-        aContext = Handle(AIS_InteractiveContext)::DownCast(anObject);
-    }
-  }
-  if (!aContext.IsNull())
-    myViewWindow->SetContext(View_ContextType_External, aContext);
-
-  theParameters = aParameters;
-  myParameters->SetSelectedNames(aPluginName, NCollection_List<TCollection_AsciiString>());
-}
-
-// =======================================================================
-// function : OpenFile
-// purpose :
-// =======================================================================
-void ShapeView_Window::OpenFile(const TCollection_AsciiString& theFileName)
-{
-  TopoDS_Shape aShape = Convert_Tools::ReadShape(theFileName);
-  if (!aShape.IsNull())
-    addShape(aShape);
-}
-
-// =======================================================================
-// function : RemoveAllShapes
-// purpose :
-// =======================================================================
-void ShapeView_Window::RemoveAllShapes()
-{
-  ShapeView_TreeModel* aModel = dynamic_cast<ShapeView_TreeModel*>(myTreeView->model());
-  aModel->RemoveAllShapes();
-}
-
-// =======================================================================
-// function : addShape
-// purpose :
-// =======================================================================
-void ShapeView_Window::addShape(const TopoDS_Shape& theShape)
-{
-  ShapeView_TreeModel* aModel = dynamic_cast<ShapeView_TreeModel*>(myTreeView->model());
-  aModel->AddShape(theShape);
-}
-
-// =======================================================================
-// function : onTreeViewContextMenuRequested
-// purpose :
-// =======================================================================
-void ShapeView_Window::onTreeViewContextMenuRequested(const QPoint& thePosition)
-{
-  QItemSelectionModel* aModel = myTreeView->selectionModel();
-  if (!aModel)
-    return;
-
-  QModelIndex           anIndex = TreeModel_ModelBase::SingleSelected(aModel->selectedIndexes(), 0);
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-  if (!anItemBase)
-    return;
-
-  QMenu*                aMenu     = new QMenu(myMainWindow);
-  ShapeView_ItemRootPtr aRootItem = itemDynamicCast<ShapeView_ItemRoot>(anItemBase);
-  if (aRootItem)
-  {
-    aMenu->addAction(
-      ViewControl_Tools::CreateAction("Load BREP file", SLOT(onLoadFile()), myMainWindow, this));
-    aMenu->addAction(ViewControl_Tools::CreateAction("Remove all shape items",
-                                                     SLOT(onClearView()),
-                                                     myMainWindow,
-                                                     this));
-  }
-  else
-  {
-    aMenu->addAction(ViewControl_Tools::CreateAction("Export to BREP",
-                                                     SLOT(onExportToBREP()),
-                                                     myMainWindow,
-                                                     this));
-    ShapeView_ItemShapePtr aShapeItem    = itemDynamicCast<ShapeView_ItemShape>(anItemBase);
-    const TopoDS_Shape&    aShape        = aShapeItem->GetItemShape();
-    TopAbs_ShapeEnum       anExplodeType = aShapeItem->ExplodeType();
-    NCollection_List<TopAbs_ShapeEnum> anExplodeTypes;
-    ShapeView_Tools::IsPossibleToExplode(aShape, anExplodeTypes);
-    if (anExplodeTypes.Size() > 0)
-    {
-      QMenu* anExplodeMenu = aMenu->addMenu("Explode");
-      for (NCollection_List<TopAbs_ShapeEnum>::Iterator anExpIterator(anExplodeTypes);
-           anExpIterator.More();
-           anExpIterator.Next())
-      {
-        TopAbs_ShapeEnum aType = anExpIterator.Value();
-        QAction* anAction      = ViewControl_Tools::CreateAction(TopAbs::ShapeTypeToString(aType),
-                                                            SLOT(onExplode()),
-                                                            myMainWindow,
-                                                            this);
-        anExplodeMenu->addAction(anAction);
-        if (anExplodeType == aType)
-        {
-          anAction->setCheckable(true);
-          anAction->setChecked(true);
-        }
-      }
-      QAction* anAction =
-        ViewControl_Tools::CreateAction("NONE", SLOT(onExplode()), myMainWindow, this);
-      anExplodeMenu->addSeparator();
-      anExplodeMenu->addAction(anAction);
-    }
-  }
-
-  QPoint aPoint = myTreeView->mapToGlobal(thePosition);
-  aMenu->exec(aPoint);
-}
-
-// =======================================================================
-// function : onTreeViewSelectionChanged
-// purpose :
-// =======================================================================
-void ShapeView_Window::onTreeViewSelectionChanged(const QItemSelection&, const QItemSelection&)
-{
-  QApplication::setOverrideCursor(Qt::WaitCursor);
-
-  if (myPropertyPanelWidget->toggleViewAction()->isChecked())
-    myPropertyView->Init(ViewControl_Tools::CreateTableModelValues(myTreeView->selectionModel()));
-
-  QApplication::restoreOverrideCursor();
-}
-
-// =======================================================================
-// function : onEraseAllPerformed
-// purpose :
-// =======================================================================
-void ShapeView_Window::onEraseAllPerformed()
-{
-  ShapeView_TreeModel* aTreeModel = dynamic_cast<ShapeView_TreeModel*>(myTreeView->model());
-
-  // TODO: provide update for only visibility state for better performance  TopoDS_Shape
-  // myCustomShape;
-
-  aTreeModel->Reset();
-  aTreeModel->EmitLayoutChanged();
-}
-
-// =======================================================================
-// function : onExplode
-// purpose :
-// =======================================================================
-void ShapeView_Window::onExplode()
-{
-  QItemSelectionModel* aModel = myTreeView->selectionModel();
-  if (!aModel)
-    return;
-
-  QModelIndex           anIndex = TreeModel_ModelBase::SingleSelected(aModel->selectedIndexes(), 0);
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-  if (!anItemBase)
-    return;
-
-  ShapeView_ItemShapePtr aShapeItem = itemDynamicCast<ShapeView_ItemShape>(anItemBase);
-  if (!aShapeItem)
-    return;
-
-  QAction* anAction = (QAction*)sender();
-  if (!anAction)
-    return;
-
-  QApplication::setOverrideCursor(Qt::WaitCursor);
-  TopAbs_ShapeEnum aShapeType;
-  if (anAction->text() == "NONE")
-    aShapeType = TopAbs_SHAPE;
-  else
-    aShapeType = TopAbs::ShapeTypeFromString(anAction->text().toStdString().c_str());
-
-  myViewWindow->Displayer()->EraseAllPresentations();
-  aShapeItem->SetExplodeType(aShapeType);
-
-  // anItemBase->Parent()->Reset(); - TODO (update only modified sub-tree)
-  ShapeView_TreeModel* aTreeModel = dynamic_cast<ShapeView_TreeModel*>(myTreeView->model());
-  aTreeModel->Reset();
-  aTreeModel->EmitLayoutChanged();
-  QApplication::restoreOverrideCursor();
-}
-
-// =======================================================================
-// function : onLoadFile
-// purpose :
-// =======================================================================
-void ShapeView_Window::onLoadFile()
-{
-  QString aDataDirName = QDir::currentPath();
-
-  QString aFileName = ShapeView_OpenFileDialog::OpenFile(0, aDataDirName);
-  aFileName         = QDir().toNativeSeparators(aFileName);
-  if (aFileName.isEmpty())
-    return;
-
-  QApplication::setOverrideCursor(Qt::WaitCursor);
-  onOpenFile(aFileName);
-  QApplication::restoreOverrideCursor();
-}
-
-// =======================================================================
-// function : onExportToBREP
-// purpose :
-// =======================================================================
-void ShapeView_Window::onExportToBREP()
-{
-  QString aFilter(tr("Boundary representation file (*.brep *)"));
-  QString aSelectedFilter;
-  QString aFileName = QFileDialog::getSaveFileName(0,
-                                                   tr("Export shape to file"),
-                                                   QString(),
-                                                   aFilter,
-                                                   &aSelectedFilter);
-
-  QItemSelectionModel* aModel = myTreeView->selectionModel();
-  if (!aModel)
-    return;
-
-  QModelIndexList aSelectedRows = aModel->selectedRows();
-  if (aSelectedRows.size() == 0)
-    return;
-
-  QModelIndex           aSelectedIndex = aSelectedRows.at(0);
-  TreeModel_ItemBasePtr anItemBase     = TreeModel_ModelBase::GetItemByIndex(aSelectedIndex);
-  if (!anItemBase)
-    return;
-
-  ShapeView_ItemShapePtr anItem = itemDynamicCast<ShapeView_ItemShape>(anItemBase);
-  if (!anItem)
-    return;
-
-  TCollection_AsciiString aFileNameIndiced = aFileName.toStdString().c_str();
-  const TopoDS_Shape&     aShape           = anItem->GetItemShape();
-  BRepTools::Write(aShape, aFileNameIndiced.ToCString());
-  anItem->SetFileName(aFileNameIndiced.ToCString());
-  aFileName = aFileNameIndiced.ToCString();
-}
diff --git a/tools/ShapeView/ShapeView_Window.hxx b/tools/ShapeView/ShapeView_Window.hxx
deleted file mode 100644
index f993102f14..0000000000
--- a/tools/ShapeView/ShapeView_Window.hxx
+++ /dev/null
@@ -1,160 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 ShapeView_Window_H
-#define ShapeView_Window_H
-
-#include <Standard.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <inspector/TInspectorAPI_PluginParameters.hxx>
-#include <TopoDS_Shape.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QItemSelection>
-#include <QList>
-#include <QModelIndexList>
-#include <QObject>
-#include <QPoint>
-#include <QString>
-#include <QTreeView>
-#include <Standard_WarningsRestore.hxx>
-
-class View_Window;
-
-class ViewControl_PropertyView;
-
-class QAction;
-class QDockWidget;
-class QMainWindow;
-class QWidget;
-
-//! \class ShapeView_Window
-//! Window that unites all ShapeView controls.
-class ShapeView_Window : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT ShapeView_Window(QWidget* theParent);
-
-  //! Destructor
-  Standard_EXPORT virtual ~ShapeView_Window();
-
-  //! Provides the container with a parent where this container should be inserted.
-  //! If Qt implementation, it should be QWidget with QLayout set inside
-  //! \param theParent a parent class
-  Standard_EXPORT void SetParent(void* theParent);
-
-  //! Sets parameters container, it should be used when the plugin is initialized or in update
-  //! content \param theParameters a parameters container
-  void SetParameters(const Handle(TInspectorAPI_PluginParameters)& theParameters)
-  {
-    myParameters = theParameters;
-  }
-
-  //! Provides container for actions available in inspector on general level
-  //! \param theMenu if Qt implementation, it is QMenu object
-  Standard_EXPORT virtual void FillActionsMenu(void* theMenu);
-
-  //! Returns plugin preferences: dock widgets state, tree view columns.
-  //! \param theItem container of preference elements
-  Standard_EXPORT void GetPreferences(TInspectorAPI_PreferencesDataMap& theItem);
-
-  //! Applies plugin preferences
-  //! \param theItem container of preference elements
-  Standard_EXPORT void SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem);
-
-  //! Applies parameters to Init controls, opens files if there are in parameters, updates OCAF tree
-  //! view model
-  Standard_EXPORT void UpdateContent();
-
-  //! Returns main control
-  QMainWindow* GetMainWindow() const { return myMainWindow; }
-
-  //! Returns current tree view
-  QTreeView* GetTreeView() const { return myTreeView; }
-
-  //! Removes all shapes in tree view model, remove all stored BREP files
-  Standard_EXPORT void RemoveAllShapes();
-
-protected:
-  //! Appends shape into tree view model
-  //! \param theShape a shape instance
-  Standard_EXPORT void addShape(const TopoDS_Shape& theShape);
-
-private:
-  //! Fills controls of the plugin by parameters:
-  //! - Fine AIS_InteractiveObject and fills View if it if it differs from the current context
-  //! \param theParameters a parameters container
-  void Init(NCollection_List<Handle(Standard_Transient)>& theParameters);
-
-  //! Reads Shape from the file name, add Shape into tree view
-  //! \param theFileName BREP file name
-  void OpenFile(const TCollection_AsciiString& theFileName);
-
-protected slots:
-
-  //! Shows context menu for tree view selected item. It contains expand/collapse actions.
-  //! \param thePosition a clicked point
-  void onTreeViewContextMenuRequested(const QPoint& thePosition);
-
-  //! Processes selection in tree view: make presentation or owner selected in the context if
-  //! corresponding check box is checked \param theSelected a selected items \param theDeselected a
-  //! deselected items
-  void onTreeViewSelectionChanged(const QItemSelection& theSelected,
-                                  const QItemSelection& theDeselected);
-
-  //! Updates visibility states by erase all in context
-  void onEraseAllPerformed();
-
-  //! Sets the shape item exploded
-  void onExplode();
-
-  //! Removes all shapes in tree view
-  void onClearView() { RemoveAllShapes(); }
-
-  //! Loads BREP file and updates tree model to have shape of the file
-  void onLoadFile();
-
-  //! Views BREP files of selected items if exist
-  void onExportToBREP();
-
-  //! Converts file name to Ascii String and perform opening file
-  //! \param theFileName a file name to be opened
-  void onOpenFile(const QString& theFileName)
-  {
-    OpenFile(TCollection_AsciiString(theFileName.toUtf8().data()));
-  }
-
-protected:
-  //! Creates new action and connect it to the given slot
-  //! \param theText an action text
-  //! \param theSlot a listener method
-  QAction* createAction(const QString& theText, const char* theSlot);
-
-private:
-  QMainWindow* myMainWindow; //!< main control, parent for all ShapeView controls
-
-  QDockWidget* myPropertyPanelWidget; //!< property pane dockable widget
-  ViewControl_PropertyView*
-    myPropertyView; //!< property control to display model item values if exist
-
-  View_Window* myViewWindow; //!< OCC 3d view to visualize presentations
-  QTreeView*   myTreeView;   //!< tree view visualized shapes
-
-  Handle(TInspectorAPI_PluginParameters) myParameters; //!< plugins parameters container
-};
-
-#endif
diff --git a/tools/ShapeView/icons/folder_import.png b/tools/ShapeView/icons/folder_import.png
deleted file mode 100644
index 02743abe9b..0000000000
Binary files a/tools/ShapeView/icons/folder_import.png and /dev/null differ
diff --git a/tools/ShapeView/icons/folder_open.png b/tools/ShapeView/icons/folder_open.png
deleted file mode 100644
index b0a139ebc6..0000000000
Binary files a/tools/ShapeView/icons/folder_open.png and /dev/null differ
diff --git a/tools/TInspector/FILES b/tools/TInspector/FILES
deleted file mode 100644
index 471fd38cb1..0000000000
--- a/tools/TInspector/FILES
+++ /dev/null
@@ -1,17 +0,0 @@
-TInspector.qrc
-TInspector_Communicator.cxx
-TInspector_Communicator.hxx
-TInspector_OpenButton.cxx
-TInspector_OpenButton.hxx
-TInspector_OpenFileDialog.cxx
-TInspector_OpenFileDialog.hxx
-TInspector_OpenFileViewModel.cxx
-TInspector_OpenFileViewModel.hxx
-TInspector_PluginParameters.cxx
-TInspector_PluginParameters.hxx
-TInspector_Preferences.cxx
-TInspector_Preferences.hxx
-TInspector_Shortcut.cxx
-TInspector_Shortcut.hxx
-TInspector_Window.cxx
-TInspector_Window.hxx
diff --git a/tools/TInspector/TInspector.qrc b/tools/TInspector/TInspector.qrc
deleted file mode 100644
index 439185f9fc..0000000000
--- a/tools/TInspector/TInspector.qrc
+++ /dev/null
@@ -1,7 +0,0 @@
-<!DOCTYPE RCC><RCC version="1.0">
-    <qresource>
-        <file alias="folder_open.png">icons/folder_open.png</file>
-        <file alias="folder_import.png">icons/folder_import.png</file>
-        <file alias="plugin_actions.png">icons/plugin_actions.png</file>
-    </qresource>
-</RCC>
diff --git a/tools/TInspector/TInspector_Communicator.cxx b/tools/TInspector/TInspector_Communicator.cxx
deleted file mode 100644
index 39d8e5961b..0000000000
--- a/tools/TInspector/TInspector_Communicator.cxx
+++ /dev/null
@@ -1,117 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TInspector_Communicator.hxx>
-
-#include <OSD_Directory.hxx>
-#include <OSD_Environment.hxx>
-#include <TCollection_AsciiString.hxx>
-
-#include <inspector/TInspector_Window.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QDir>
-#include <QMainWindow>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-TInspector_Communicator::TInspector_Communicator()
-{
-  if (!qApp)
-  {
-    static int   argc   = 1;
-    static char* argv[] = {(char*)"", 0};
-#if QT_VERSION > 0x050000
-    TCollection_AsciiString aPlugindsDirName;
-    if (TInspector_Communicator::PluginsDir(aPlugindsDirName))
-      QApplication::addLibraryPath(aPlugindsDirName.ToCString());
-#endif
-    new QApplication(argc, argv);
-  }
-  myWindow = new TInspector_Window();
-}
-
-// =======================================================================
-// function : PluginsDir
-// purpose :
-// =======================================================================
-Standard_Boolean TInspector_Communicator::PluginsDir(TCollection_AsciiString& thePlugindsDirName)
-{
-  OSD_Environment         anEnvironment("QTDIR");
-  TCollection_AsciiString aQtDirValue = anEnvironment.Value();
-  if (!aQtDirValue.IsEmpty())
-  {
-    thePlugindsDirName = aQtDirValue + "/plugins";
-    return Standard_True;
-  }
-  anEnvironment                      = OSD_Environment("PATH");
-  TCollection_AsciiString aPathValue = anEnvironment.Value();
-  TCollection_AsciiString aPathSep =
-#ifdef _WIN32
-    ';';
-#else
-    ':';
-#endif
-  while (!aPathValue.IsEmpty())
-  {
-    Standard_Integer aSepIndex = aPathValue.FirstLocationInSet(aPathSep, 1, aPathValue.Length());
-    if (aSepIndex <= 1)
-      break;
-
-    TCollection_AsciiString aCurPath = aPathValue.SubString(1, aSepIndex - 1);
-    aPathValue                       = aSepIndex < aPathValue.Length()
-                                         ? aPathValue.SubString(aSepIndex + 1, aPathValue.Length())
-                                         : "";
-    if (aCurPath.IsEmpty())
-      continue;
-
-    aCurPath += "/../plugins";
-    OSD_Path      aPath(aCurPath);
-    OSD_Directory aCurDir(aPath);
-    if (aCurDir.Exists())
-    {
-      thePlugindsDirName = aCurPath;
-      return Standard_True;
-    }
-  }
-  return Standard_False;
-}
-
-// =======================================================================
-// function : SetVisible
-// purpose :
-// =======================================================================
-void TInspector_Communicator::SetVisible(const bool theVisible)
-{
-  myWindow->GetMainWindow()->setVisible(theVisible);
-#ifndef _WIN32
-  // window is not visualized on X11 patform under DRAW tool without the next row
-  QApplication::processEvents();
-#endif
-}
-
-// =======================================================================
-// function : Move
-// purpose :
-// =======================================================================
-void TInspector_Communicator::Move(const int theXPosition, const int theYPosition)
-{
-  myWindow->GetMainWindow()->move(theXPosition, theYPosition);
-}
diff --git a/tools/TInspector/TInspector_Communicator.hxx b/tools/TInspector/TInspector_Communicator.hxx
deleted file mode 100644
index 18d298df91..0000000000
--- a/tools/TInspector/TInspector_Communicator.hxx
+++ /dev/null
@@ -1,150 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TInspector_Communicator_H
-#define TInspector_Communicator_H
-
-#include <inspector/TInspector_Window.hxx>
-#include <inspector/TInspectorAPI_PluginParameters.hxx>
-
-#include <NCollection_List.hxx>
-#include <Standard.hxx>
-#include <Standard_Transient.hxx>
-#include <TCollection_AsciiString.hxx>
-
-class QPushButton;
-
-//! \class TInspector_Communicator.
-//! \brief This is a connector from TInspector window to:
-//! - register tool plugin
-//! - give parameters into plugin
-class TInspector_Communicator
-{
-public:
-  //! Constructor
-  Standard_EXPORT TInspector_Communicator();
-
-  //! Destructor
-  virtual ~TInspector_Communicator() {}
-
-  //! Returns directory of Qt plugins. Firstly it founds it in QTDIR, else if not defined in PATH
-  Standard_EXPORT static Standard_Boolean PluginsDir(TCollection_AsciiString& thePlugindsDirName);
-
-  //! Registers plugin into TInspector window
-  //! \param thePluginName a name of the plugin
-  void RegisterPlugin(const TCollection_AsciiString& thePluginName)
-  {
-    myWindow->RegisterPlugin(thePluginName);
-  }
-
-  //! Returns list of registered plugins
-  //! \return container of plugin names
-  NCollection_List<TCollection_AsciiString> RegisteredPlugins() const
-  {
-    return myWindow->RegisteredPlugins();
-  }
-
-  //! Stores parameters for the plugin
-  //! \param theParameters container of parameters(e.g. AIS_InteractiveContext, TDocStd_Application)
-  //! \param theAppend boolean state whether the parameters should be added to existing
-  void Init(const NCollection_List<Handle(Standard_Transient)>& theParameters,
-            const Standard_Boolean                              theAppend = Standard_False)
-  {
-    myWindow->Init("", theParameters, theAppend);
-  }
-
-  //! Stores parameters for the plugin
-  //! \param thePluginName a name of the plugin
-  //! \param theParameters container of parameters(e.g. AIS_InteractiveContext, TDocStd_Application)
-  //! \param theAppend boolean state whether the parameters should be added to existing
-  void Init(const TCollection_AsciiString&                      thePluginName,
-            const NCollection_List<Handle(Standard_Transient)>& theParameters,
-            const Standard_Boolean                              theAppend = Standard_False)
-  {
-    myWindow->Init(thePluginName, theParameters, theAppend);
-  }
-
-  //! Updates content for the TInspector window
-  void UpdateContent() { myWindow->UpdateContent(); }
-
-  //! Sets open button for the TInspector window
-  void SetOpenButton(QPushButton* theButton) { myWindow->SetOpenButton(theButton); }
-
-  //! Opens file in TInspector window
-  void OpenFile(const TCollection_AsciiString& thePluginName,
-                const TCollection_AsciiString& theFileName)
-  {
-    myWindow->OpenFile(thePluginName, theFileName);
-  }
-
-  //! Activates plugin
-  //! \param thePluginName a name of the plugin
-  void Activate(const TCollection_AsciiString& thePluginName)
-  {
-    myWindow->ActivateTool(thePluginName);
-  }
-
-  //! Sets item selected in the active plugin
-  //! \param theItemName a container of name of items in plugin that should become selected
-  void SetSelected(const NCollection_List<TCollection_AsciiString>& theItemNames)
-  {
-    myWindow->SetSelected(theItemNames);
-  }
-
-  //! Sets objects to be selected in the plugin
-  //! \param theObjects an objects
-  void SetSelected(const NCollection_List<Handle(Standard_Transient)>& theObjects)
-  {
-    myWindow->SetSelected(theObjects);
-  }
-
-  //! Sets path to a directory for temporary plugin files
-  //! \param thePath a path
-  void SetTemporaryDirectory(const TCollection_AsciiString& thePath)
-  {
-    myWindow->SetTemporaryDirectory(thePath);
-  }
-
-  //! Returns path to a directory for temporary plugin files
-  //! \return path
-  TCollection_AsciiString GetTemporaryDirectory() const
-  {
-    return myWindow->GetTemporaryDirectory();
-  }
-
-  //! Changes window visibility
-  //! \param theVisible boolean state
-  Standard_EXPORT virtual void SetVisible(const bool theVisible);
-
-  //! Changes window position
-  //! \param theX X pixel position of top left corner of the window
-  //! \param theY Y pixel position
-  Standard_EXPORT virtual void Move(const int theXPosition, const int theYPosition);
-
-  //! Puts in the stream information about communicator
-  //! \param theStream stream for output
-  void Dump(Standard_OStream& theStream) const { return myWindow->Dump(theStream); }
-
-  //! Returns plugins parameters container
-  Handle(TInspectorAPI_PluginParameters) const GetPluginParameters()
-  {
-    return myWindow->GetPluginParameters();
-  }
-
-private:
-  TInspector_Window* myWindow; //!< current window
-};
-
-#endif
diff --git a/tools/TInspector/TInspector_OpenButton.cxx b/tools/TInspector/TInspector_OpenButton.cxx
deleted file mode 100644
index cd8ea57637..0000000000
--- a/tools/TInspector/TInspector_OpenButton.cxx
+++ /dev/null
@@ -1,102 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TInspector_OpenButton.hxx>
-
-#include <inspector/TInspector_Communicator.hxx>
-#include <inspector/TInspector_OpenFileDialog.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QDir>
-#include <QPushButton>
-#include <Standard_WarningsRestore.hxx>
-
-const int RECENT_FILES_CACHE_SIZE = 10;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-TInspector_OpenButton::TInspector_OpenButton(QObject* theParent)
-    : QObject(theParent),
-      myStartButton(0)
-{
-}
-
-// =======================================================================
-// function : StartButton
-// purpose :
-// =======================================================================
-QPushButton* TInspector_OpenButton::StartButton()
-{
-  if (!myStartButton)
-  {
-    myStartButton = new QPushButton();
-    myStartButton->setIcon(QIcon(":folder_open.png"));
-    connect(myStartButton, SIGNAL(clicked()), this, SLOT(onStartButtonClicked()));
-  }
-  return myStartButton;
-}
-
-// =======================================================================
-// function : onStartButtonClicked
-// purpose :
-// =======================================================================
-void TInspector_OpenButton::onStartButtonClicked()
-{
-  QPushButton*            aButton = (QPushButton*)sender();
-  TCollection_AsciiString aPluginName(aButton->objectName().toStdString().c_str());
-  if (aPluginName.IsEmpty())
-    return;
-
-  QStringList aPluginRecentlyOpenedFiles;
-  if (myRecentlyOpenedFiles.contains(aPluginName))
-  {
-    QStringList aFileNames = myRecentlyOpenedFiles[aPluginName];
-    for (int i = 0; i < aFileNames.size(); i++)
-    {
-      QFileInfo aFileInfo(aFileNames[i]);
-      if (aFileInfo.exists() && aFileInfo.isFile())
-        aPluginRecentlyOpenedFiles.append(aFileInfo.absoluteFilePath());
-    }
-  }
-
-  QString aFileName = TInspector_OpenFileDialog::OpenFile(0, aPluginRecentlyOpenedFiles);
-  aFileName         = QDir().toNativeSeparators(aFileName);
-  if (!aFileName.isEmpty())
-  {
-    QApplication::setOverrideCursor(Qt::WaitCursor);
-    TInspector_OpenFileDialog::Communicator()->OpenFile(
-      aPluginName,
-      TCollection_AsciiString(aFileName.toUtf8().data()));
-
-    QFileInfo aFileInfo(aFileName);
-    if (!aPluginRecentlyOpenedFiles.contains(aFileInfo.absoluteFilePath()))
-    {
-      myRecentlyOpenedFiles[aPluginName].append(aFileInfo.absoluteFilePath());
-      for (int i = 0; i < myRecentlyOpenedFiles[aPluginName].size() - RECENT_FILES_CACHE_SIZE; i++)
-        myRecentlyOpenedFiles[aPluginName].removeFirst();
-      TInspector_OpenFileDialog::SetPluginRecentlyOpenedFiles(
-        aPluginName,
-        TInspector_OpenFileDialog::Communicator(),
-        myRecentlyOpenedFiles[aPluginName]);
-
-      TInspector_OpenFileDialog::Communicator()->GetPluginParameters()->StorePreferences();
-    }
-
-    QApplication::restoreOverrideCursor();
-  }
-}
diff --git a/tools/TInspector/TInspector_OpenButton.hxx b/tools/TInspector/TInspector_OpenButton.hxx
deleted file mode 100644
index c415735001..0000000000
--- a/tools/TInspector/TInspector_OpenButton.hxx
+++ /dev/null
@@ -1,67 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TInspectorEXE_OpenButton_H
-#define TInspectorEXE_OpenButton_H
-
-#include <TCollection_AsciiString.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QMap>
-#include <QStringList>
-#include <Standard_WarningsRestore.hxx>
-
-class QPushButton;
-
-//! \class TInspector_OpenButton
-//! Class that contains push button and the button processing. It obtains a file name from the
-//! default or current directory and gives the name into TInspector communicator Object name of the
-//! button is the name of the plugin to get the default directory, or the current directory is used.
-class TInspector_OpenButton : public QObject
-{
-  Q_OBJECT
-
-public:
-  //! Constructor
-  Standard_EXPORT TInspector_OpenButton(QObject* theParent);
-
-  //! Destructor
-  virtual ~TInspector_OpenButton() {}
-
-  //! Returns the start button, if this is the first call, it creates the button and connect it to
-  //! the slot
-  Standard_EXPORT QPushButton* StartButton();
-
-  //! Sets the default directory of plugin.
-  void SetPluginRecentlyOpenedFiles(const TCollection_AsciiString& thePluginName,
-                                    const QStringList&             theRecentlyOpenedFiles)
-  {
-    myRecentlyOpenedFiles[thePluginName] = theRecentlyOpenedFiles;
-  }
-
-private slots:
-
-  //! Processes the button click, open default/current directory to select open file, calls OpenFile
-  //! of communicator
-  void onStartButtonClicked();
-
-private:
-  QPushButton* myStartButton; //!< processed button
-  //!< plugins recently opened files
-  QMap<TCollection_AsciiString, QStringList> myRecentlyOpenedFiles;
-};
-
-#endif
diff --git a/tools/TInspector/TInspector_OpenFileDialog.cxx b/tools/TInspector/TInspector_OpenFileDialog.cxx
deleted file mode 100644
index fbd88ed567..0000000000
--- a/tools/TInspector/TInspector_OpenFileDialog.cxx
+++ /dev/null
@@ -1,292 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TInspector_OpenFileDialog.hxx>
-
-#include <inspector/TInspector_OpenButton.hxx>
-#include <inspector/TInspector_OpenFileViewModel.hxx>
-
-#include <inspector/TInspector_Communicator.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QCompleter>
-#include <QDir>
-#include <QFileDialog>
-#include <QFileSystemModel>
-#include <QItemSelectionModel>
-#include <QGroupBox>
-#include <QHBoxLayout>
-#include <QHeaderView>
-#include <QLabel>
-#include <QLineEdit>
-#include <QScrollBar>
-#include <QTableView>
-#include <QToolButton>
-#include <QPushButton>
-#include <QVBoxLayout>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-static const int ICON_SIZE = 40;
-
-static const int OPEN_DIALOG_WIDTH  = 550;
-static const int OPEN_DIALOG_HEIGHT = 200;
-
-static const int MARGIN_DIALOG  = 4;
-static const int SPACING_DIALOG = 2;
-
-static const int RECENT_FILES_CACHE_SIZE = 10;
-
-TInspector_Communicator* MyCommunicator;
-
-// =======================================================================
-// function : changeMargins
-// purpose :
-// =======================================================================
-void changeMargins(QBoxLayout* theLayout)
-{
-  theLayout->setContentsMargins(MARGIN_DIALOG, MARGIN_DIALOG, MARGIN_DIALOG, MARGIN_DIALOG);
-  theLayout->setSpacing(SPACING_DIALOG);
-}
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-TInspector_OpenFileDialog::TInspector_OpenFileDialog(QWidget*           theParent,
-                                                     const QStringList& theRecentlyOpenedFiles)
-    : QDialog(theParent),
-      myRecentlyOpenedFiles(theRecentlyOpenedFiles)
-{
-  setWindowTitle(tr("Open File"));
-
-  QVBoxLayout* aDialogLay = new QVBoxLayout(this);
-  changeMargins(aDialogLay);
-
-  // Samples View
-  QGroupBox* aSamplesBox = new QGroupBox(this);
-  aSamplesBox->setTitle(tr("Recent files"));
-  aDialogLay->addWidget(aSamplesBox);
-  QVBoxLayout* aSampleLay = new QVBoxLayout(aSamplesBox);
-  changeMargins(aSampleLay);
-  mySamplesView = createTableView(theRecentlyOpenedFiles);
-  aSampleLay->addWidget(mySamplesView);
-
-  // Select file
-  QGroupBox* aSelectFileBox = new QGroupBox(this);
-  aSelectFileBox->setTitle(tr("Select file"));
-  aDialogLay->addWidget(aSelectFileBox);
-  QGridLayout* aSelectFileLay = new QGridLayout(aSelectFileBox);
-  aSelectFileLay->setContentsMargins(MARGIN_DIALOG, MARGIN_DIALOG, MARGIN_DIALOG, MARGIN_DIALOG);
-
-  mySelectedName                     = new QLineEdit(aSelectFileBox);
-  QCompleter*       aCompleter       = new QCompleter();
-  QFileSystemModel* aFileSystemModel = new QFileSystemModel;
-  aFileSystemModel->setRootPath(QDir::rootPath());
-  aCompleter->setModel(aFileSystemModel);
-  mySelectedName->setCompleter(aCompleter);
-  aSelectFileLay->addWidget(mySelectedName, 1, 0);
-
-  QToolButton* aSelectFileBtn = new QToolButton(aSelectFileBox);
-  aSelectFileBtn->setIcon(QIcon(":folder_open.png"));
-  aSelectFileLay->addWidget(aSelectFileBtn, 1, 1);
-
-  connect(aSelectFileBtn, SIGNAL(clicked()), this, SLOT(onSelectClicked()));
-  connect(mySelectedName, SIGNAL(returnPressed()), this, SLOT(onApplySelectClicked()));
-
-  resize(OPEN_DIALOG_WIDTH, OPEN_DIALOG_HEIGHT);
-}
-
-// =======================================================================
-// function : OpenFile
-// purpose :
-// =======================================================================
-QString TInspector_OpenFileDialog::OpenFile(QWidget*           theParent,
-                                            const QStringList& theRecentlyOpenedFiles)
-{
-  QString                    aFileName;
-  TInspector_OpenFileDialog* aDialog =
-    new TInspector_OpenFileDialog(theParent, theRecentlyOpenedFiles);
-  if (aDialog->exec() == QDialog::Accepted)
-    aFileName = aDialog->GetFileName();
-
-  return aFileName;
-}
-
-// =======================================================================
-// function : Communicator
-// purpose :
-// =======================================================================
-TInspector_Communicator* TInspector_OpenFileDialog::Communicator()
-{
-  if (!MyCommunicator)
-    MyCommunicator = new TInspector_Communicator();
-  return MyCommunicator;
-}
-
-// =======================================================================
-// function : GetPluginRecentlyOpenedFiles
-// purpose :
-// =======================================================================
-void TInspector_OpenFileDialog::GetPluginRecentlyOpenedFiles(
-  const TCollection_AsciiString& thePluginName,
-  TInspector_Communicator*       theCommunicator,
-  QStringList&                   theFileNames)
-{
-  Handle(TInspectorAPI_PluginParameters) aParameters = theCommunicator->GetPluginParameters();
-  TInspectorAPI_PreferencesDataMap       aPreferencesItem;
-  aParameters->GetPreferences(thePluginName, aPreferencesItem);
-
-  for (TInspectorAPI_IteratorOfPreferencesDataMap anItemIt(aPreferencesItem); anItemIt.More();
-       anItemIt.Next())
-  {
-    if (!anItemIt.Key().IsEqual("recently_opened_files"))
-      continue;
-#include <Standard_WarningsDisable.hxx>
-    theFileNames = QString(anItemIt.Value().ToCString()).split(";", QString::SkipEmptyParts);
-#include <Standard_WarningsRestore.hxx>
-    if (theFileNames.size() > RECENT_FILES_CACHE_SIZE)
-      for (int i = 0; i < theFileNames.size() - RECENT_FILES_CACHE_SIZE; i++)
-        theFileNames.removeFirst();
-    break;
-  }
-}
-
-// =======================================================================
-// function : SetPluginRecentlyOpenedFiles
-// purpose :
-// =======================================================================
-void TInspector_OpenFileDialog::SetPluginRecentlyOpenedFiles(
-  const TCollection_AsciiString& thePluginName,
-  TInspector_Communicator*       theCommunicator,
-  QStringList&                   theFileNames)
-{
-  Handle(TInspectorAPI_PluginParameters) aParameters = theCommunicator->GetPluginParameters();
-
-  TInspectorAPI_PreferencesDataMap aPreferencesItem;
-  aParameters->GetPreferences(thePluginName, aPreferencesItem);
-  aPreferencesItem.Bind("recently_opened_files",
-                        TCollection_AsciiString(theFileNames.join(";").toUtf8().data()));
-
-  aParameters->SetPreferences(thePluginName, aPreferencesItem);
-}
-
-// =======================================================================
-// function : onSampleSelectionChanged
-// purpose :
-// =======================================================================
-void TInspector_OpenFileDialog::onSampleSelectionChanged(const QItemSelection& theSelected,
-                                                         const QItemSelection&)
-{
-  QItemSelectionModel* aSelectionModel = (QItemSelectionModel*)sender();
-  if (!aSelectionModel)
-    return;
-  if (theSelected.isEmpty())
-    return;
-
-  QModelIndex anIndex = theSelected.first().indexes().first();
-  if (!anIndex.isValid())
-    return;
-
-  myFileName = aSelectionModel->model()->data(anIndex, Qt::ToolTipRole).toString();
-  accept();
-}
-
-// =======================================================================
-// function : onSelectClicked
-// purpose :
-// =======================================================================
-void TInspector_OpenFileDialog::onSelectClicked()
-{
-  QString anEnteredPath;
-  QString aDirName = mySelectedName->text();
-  if (!aDirName.isEmpty())
-  {
-    QDir aDir(aDirName);
-    if (aDir.exists())
-      anEnteredPath = aDirName;
-  }
-
-  QString aFileName = QFileDialog::getOpenFileName(0, "Open document", anEnteredPath);
-
-  if (aFileName.isEmpty())
-    return; // do nothing, left the previous value
-
-  myFileName = aFileName;
-  accept();
-}
-
-// =======================================================================
-// function : onApplySelectClicked
-// purpose :
-// =======================================================================
-void TInspector_OpenFileDialog::onApplySelectClicked()
-{
-  QString aFileName = mySelectedName->text();
-
-  QFileInfo aFileInfo(aFileName);
-  if (!aFileInfo.exists() || !aFileInfo.isFile())
-    return;
-
-  myFileName = mySelectedName->text();
-  accept();
-}
-
-// =======================================================================
-// function : createTableView
-// purpose :
-// =======================================================================
-QTableView* TInspector_OpenFileDialog::createTableView(const QStringList& theFileNames)
-{
-  QTableView* aTableView = new QTableView(this);
-  aTableView->setFrameStyle(QFrame::NoFrame);
-  QPalette aPalette     = aTableView->viewport()->palette();
-  QColor   aWindowColor = aPalette.color(QPalette::Window);
-  aPalette.setBrush(QPalette::Base, aWindowColor);
-  aTableView->viewport()->setPalette(aPalette);
-
-  aTableView->horizontalHeader()->setVisible(false);
-  aTableView->verticalHeader()->setVisible(false);
-  aTableView->setGridStyle(Qt::NoPen);
-  aTableView->setModel(createModel(theFileNames));
-  aTableView->setItemDelegateForRow(
-    0,
-    new TInspectorEXE_OpenFileItemDelegate(aTableView, aPalette.color(QPalette::Highlight)));
-  aTableView->viewport()->setAttribute(Qt::WA_Hover);
-  int aCellHeight = ICON_SIZE + aTableView->verticalHeader()->defaultSectionSize();
-  aTableView->setRowHeight(0, aCellHeight);
-  int aScrollHeight = aTableView->horizontalScrollBar()->sizeHint().height();
-  aTableView->setMinimumHeight(aCellHeight + aScrollHeight);
-  QItemSelectionModel* aSelectionModel = new QItemSelectionModel(aTableView->model());
-  connect(aSelectionModel,
-          SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-          this,
-          SLOT(onSampleSelectionChanged(const QItemSelection&, const QItemSelection&)));
-  aTableView->setSelectionModel(aSelectionModel);
-
-  return aTableView;
-}
-
-// =======================================================================
-// function : createModel
-// purpose :
-// =======================================================================
-QAbstractItemModel* TInspector_OpenFileDialog::createModel(const QStringList& theFileNames)
-{
-  TInspector_OpenFileViewModel* aModel = new TInspector_OpenFileViewModel(this);
-  aModel->Init(theFileNames);
-  return aModel;
-}
diff --git a/tools/TInspector/TInspector_OpenFileDialog.hxx b/tools/TInspector/TInspector_OpenFileDialog.hxx
deleted file mode 100644
index a2dda2a0bd..0000000000
--- a/tools/TInspector/TInspector_OpenFileDialog.hxx
+++ /dev/null
@@ -1,119 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TInspectorEXE_OpenFileDialog_H
-#define TInspectorEXE_OpenFileDialog_H
-
-#include <inspector/TInspectorAPI_PreferencesDataMap.hxx>
-
-#include <NCollection_DataMap.hxx>
-#include <NCollection_List.hxx>
-#include <TCollection_AsciiString.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QDialog>
-#include <QItemSelection>
-#include <QStringList>
-#include <Standard_WarningsRestore.hxx>
-
-class TInspector_Communicator;
-
-class QAbstractItemModel;
-class QLineEdit;
-class QPushButton;
-class QTableView;
-class QToolButton;
-class QWidget;
-
-//! \class TInspector_OpenFileDialog
-//! Control that contains table view of samples and line to select a file name from other directory.
-//! Click on element of samples table view calls this sample opening else after entering(or opening)
-//! file name the import becomes active. Click on the button will open selected file if it is
-//! possible
-class TInspector_OpenFileDialog : public QDialog
-{
-  Q_OBJECT
-private:
-  //! Constructor
-  Standard_EXPORT TInspector_OpenFileDialog(QWidget*           theParent,
-                                            const QStringList& theRecentlyOpenedFiles);
-
-public:
-  //! Destructor
-  virtual ~TInspector_OpenFileDialog() Standard_OVERRIDE {}
-
-  //! Opens this file dialog using for samples view the given directory and try to open new file
-  //! \param theParent a parent for the new dialog
-  //! \param theDataDirName path to default samples directory
-  //! \returns a file name from the open file dialog
-  Standard_EXPORT static QString OpenFile(QWidget*           theParent,
-                                          const QStringList& theRecentlyOpenedFiles);
-
-  //! Returns selection name from the dialog
-  QString GetFileName() const { return myFileName; }
-
-  //! Returns communicator, if this is the first call, create a communicator instance
-  Standard_EXPORT static TInspector_Communicator* Communicator();
-
-  //! Returns preferences: previous opened documents.
-  //! \param thePluginName name of the plugin
-  //! \param theCommunicator source of preferences
-  //! \param[out] theFileNames  container of recently opened file names
-  Standard_EXPORT static void GetPluginRecentlyOpenedFiles(
-    const TCollection_AsciiString& thePluginName,
-    TInspector_Communicator*       theCommunicator,
-    QStringList&                   theFileNames);
-
-  //! Sets preferences: previous opened documents.
-  //! \param thePluginName name of the plugin
-  //! \param theCommunicator source of preferences
-  //! \param theFileNames container of recently opened file names to be set into communicator
-  //! preferences
-  Standard_EXPORT static void SetPluginRecentlyOpenedFiles(
-    const TCollection_AsciiString& thePluginName,
-    TInspector_Communicator*       theCommunicator,
-    QStringList&                   theFileNames);
-
-private slots:
-
-  //! Stores name of selected sample file
-  void onSampleSelectionChanged(const QItemSelection& theSelected,
-                                const QItemSelection& theDeselected);
-
-  //! Opens file dialog to select a file name. Fills file name line, enable import button
-  void onSelectClicked();
-
-  //! Accepts open file dialog
-  void onApplySelectClicked();
-
-private:
-  //! Creates view of file names in samples directory
-  //! \param theFileNames a container of names
-  //! \return table view
-  QTableView* createTableView(const QStringList& theFileNames);
-
-  //! Creates view model and fills it by the file names
-  //! \param theFileNames a container of names
-  //! \return model
-  QAbstractItemModel* createModel(const QStringList& theFileNames);
-
-private:
-  QStringList myRecentlyOpenedFiles; //!< recently opened files
-  QString     myFileName;            //!< result file name
-  QTableView* mySamplesView;         //!< view of sample file names
-  QLineEdit*  mySelectedName;        //!< alternative control to open file
-};
-
-#endif
diff --git a/tools/TInspector/TInspector_OpenFileViewModel.cxx b/tools/TInspector/TInspector_OpenFileViewModel.cxx
deleted file mode 100644
index d587eb762c..0000000000
--- a/tools/TInspector/TInspector_OpenFileViewModel.cxx
+++ /dev/null
@@ -1,80 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TInspector_OpenFileViewModel.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QFileInfo>
-#include <QIcon>
-#include <QPainter>
-#include <Standard_WarningsRestore.hxx>
-
-const int ICON_SIZE = 40;
-
-// =======================================================================
-// function : paint
-// purpose :
-// =======================================================================
-void TInspectorEXE_OpenFileItemDelegate::paint(QPainter*                   thePainter,
-                                               const QStyleOptionViewItem& theOption,
-                                               const QModelIndex&          theIndex) const
-{
-  // highlight cell
-  if (theOption.state & QStyle::State_MouseOver)
-    thePainter->fillRect(theOption.rect, myColor);
-
-  // action icon for all indices before the last one
-  QIcon anIcon(":folder_import.png");
-  QSize anIconSize(ICON_SIZE, ICON_SIZE);
-  int   aDX     = (theOption.rect.width() - anIconSize.width()) / 2;
-  int   aMargin = qApp->style()->pixelMetric(QStyle::PM_HeaderMargin);
-  thePainter->drawPixmap(QRect(theOption.rect.left() + aDX,
-                               theOption.rect.top() + aMargin,
-                               anIconSize.width(),
-                               anIconSize.height()),
-                         anIcon.pixmap(anIconSize.width(), anIconSize.height()));
-  // default paint
-  QItemDelegate::paint(thePainter, theOption, theIndex);
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void TInspector_OpenFileViewModel::Init(const QStringList& theValues)
-{
-  myValues = theValues;
-}
-
-// =======================================================================
-// function : data
-// purpose :
-// =======================================================================
-QVariant TInspector_OpenFileViewModel::data(const QModelIndex& theIndex, int theRole) const
-{
-  switch (theRole)
-  {
-    case Qt::DisplayRole:
-      return QFileInfo(myValues[theIndex.column()]).fileName();
-    case Qt::ToolTipRole:
-      return myValues[theIndex.column()];
-    case Qt::TextAlignmentRole:
-      return QVariant(Qt::AlignBottom | Qt::AlignHCenter);
-    default:
-      break;
-  }
-  return QVariant();
-}
diff --git a/tools/TInspector/TInspector_OpenFileViewModel.hxx b/tools/TInspector/TInspector_OpenFileViewModel.hxx
deleted file mode 100644
index d478643697..0000000000
--- a/tools/TInspector/TInspector_OpenFileViewModel.hxx
+++ /dev/null
@@ -1,107 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TInspectorEXE_OpenFileViewModel_H
-#define TInspectorEXE_OpenFileViewModel_H
-
-#include <Standard_Macro.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractTableModel>
-#include <QStringList>
-#include <QItemDelegate>
-#include <Standard_WarningsRestore.hxx>
-
-class QObject;
-class QPainter;
-
-//! \class TInspectorEXE_OpenFileItemDelegate
-//! Draws large(40x40) icons in cell. The icon background in colored in highlight when mouse is over
-//! button
-class TInspectorEXE_OpenFileItemDelegate : public QItemDelegate
-{
-
-public:
-  //! Constructor
-  TInspectorEXE_OpenFileItemDelegate(QObject* theParent, const QColor& theHighlightColor)
-      : QItemDelegate(theParent),
-        myColor(theHighlightColor)
-  {
-  }
-
-  //! Destructor
-  virtual ~TInspectorEXE_OpenFileItemDelegate() {}
-
-  //! Draws an icon in the cell
-  //! \param thePainter a painter
-  //! \param theOption a paint options
-  //! \param theIndex a view index
-  virtual void paint(QPainter*                   thePainter,
-                     const QStyleOptionViewItem& theOption,
-                     const QModelIndex&          theIndex) const Standard_OVERRIDE;
-
-private:
-  QColor myColor; //!< highlight color
-};
-
-//! \class TInspector_OpenFileViewModel
-//! Table model that visualizes container of string values (file names)
-//! Table orientation is horizontal, it has 1 row, number of columns equals to number of values
-class TInspector_OpenFileViewModel : public QAbstractTableModel
-{
-
-public:
-  //! Constructor
-  TInspector_OpenFileViewModel(QObject* theParent = 0)
-      : QAbstractTableModel(theParent)
-  {
-  }
-
-  //! Destructor
-  virtual ~TInspector_OpenFileViewModel() {}
-
-  //! Store values
-  //! \param theValues a container of values to fill model
-  void Init(const QStringList& theValues);
-
-  //! Returns content of the model index for the given role, it is obtained from internal container
-  //! of values It returns value only for DisplayRole. \param theIndex a model index \param theRole
-  //! a view role \return value interpreted depending on the given role
-  virtual QVariant data(const QModelIndex& theIndex,
-                        int                theRole = Qt::DisplayRole) const Standard_OVERRIDE;
-
-  //! Returns number of rows
-  //! \param theParent an index of the parent item
-  //! \return an integer value
-  virtual int rowCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return 1;
-  }
-
-  //! Returns number of columns
-  //! \param theParent an index of the parent item
-  //! \return an integer value
-  virtual int columnCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return myValues.size();
-  }
-
-private:
-  QStringList myValues; //!< file names
-};
-
-#endif
diff --git a/tools/TInspector/TInspector_PluginParameters.cxx b/tools/TInspector/TInspector_PluginParameters.cxx
deleted file mode 100644
index 8cf12c2013..0000000000
--- a/tools/TInspector/TInspector_PluginParameters.cxx
+++ /dev/null
@@ -1,58 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TInspector_PluginParameters.hxx>
-#include <inspector/TInspector_Preferences.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-TInspector_PluginParameters::TInspector_PluginParameters(TInspector_Window* theWindow)
-    : myWindow(theWindow),
-      myPreferences(new TInspector_Preferences())
-{
-  myPreferences->SetDirectory(GetTemporaryDirectory());
-}
-
-// =======================================================================
-// function : SetParameters
-// purpose :
-// =======================================================================
-void TInspector_PluginParameters::SetParameters(
-  const TCollection_AsciiString&                      thePluginName,
-  const NCollection_List<Handle(Standard_Transient)>& theParameters,
-  const Standard_Boolean&                             theToActivatePlugin)
-{
-  TInspectorAPI_PluginParameters::SetParameters(thePluginName, theParameters, Standard_False);
-
-  if (!theToActivatePlugin)
-    return;
-
-  SetSelected(thePluginName, theParameters);
-  myWindow->ActivateTool(thePluginName);
-}
-
-// =======================================================================
-// function : SetTemporaryDirectory
-// purpose :
-// =======================================================================
-void TInspector_PluginParameters::SetTemporaryDirectory(const TCollection_AsciiString& thePath)
-{
-  if (thePath.IsEqual(myPreferences->GetDirectory()))
-    return;
-
-  myPreferences->SetDirectory(thePath);
-}
diff --git a/tools/TInspector/TInspector_PluginParameters.hxx b/tools/TInspector/TInspector_PluginParameters.hxx
deleted file mode 100644
index eb93db3ee9..0000000000
--- a/tools/TInspector/TInspector_PluginParameters.hxx
+++ /dev/null
@@ -1,79 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 DFBrowser_Communicator_H
-#define DFBrowser_Communicator_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <inspector/TInspectorAPI_PluginParameters.hxx>
-#include <inspector/TInspector_Preferences.hxx>
-#include <inspector/TInspector_Window.hxx>
-
-//! \class TInspector_PluginParameters.
-//! \brief This is plugin parameters extended by a possibility to activate module during setting new
-//! parameters
-class TInspector_PluginParameters : public TInspectorAPI_PluginParameters
-{
-public:
-  //! Constructor
-  Standard_EXPORT TInspector_PluginParameters(TInspector_Window* theWindow);
-
-  //! Destructor
-  virtual ~TInspector_PluginParameters() {}
-
-  //! Stores the parameters for plugin
-  //! \param thePluginName a plugin name
-  //! \param theParameters a list of parameters
-  //! \param theToActivatePlugin a state whether the plugin should be immediately activated
-  Standard_EXPORT virtual void SetParameters(
-    const TCollection_AsciiString&                      thePluginName,
-    const NCollection_List<Handle(Standard_Transient)>& theParameters,
-    const Standard_Boolean& theToActivatePlugin = Standard_False) Standard_OVERRIDE;
-
-  //! Sets path to a directory for temporary plugin files. Sets the directory into preferences
-  //! loader \param thePath a path
-  virtual void SetTemporaryDirectory(const TCollection_AsciiString& thePath) Standard_OVERRIDE;
-
-  //! Returns plugin preferences
-  //! \param thePluginName a plugin name
-  virtual void GetPreferences(const TCollection_AsciiString&    thePluginName,
-                              TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
-  {
-    myPreferences->GetPreferences(thePluginName, theItem);
-  }
-
-  //! Stores plugin preferences
-  //! \param thePluginName a plugin name
-  //! \theItem container of plugin preferences values in form: <name, value>
-  virtual void SetPreferences(const TCollection_AsciiString&          thePluginName,
-                              const TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
-  {
-    myPreferences->SetPreferences(thePluginName, theItem);
-  }
-
-  //! Stores plugin preferences into a preferences file
-  virtual void StorePreferences() Standard_OVERRIDE { myPreferences->StorePreferences(); }
-
-  //! Removes plugin preferences file
-  void RemovePreferences() { myPreferences->RemovePreferences(); }
-
-private:
-  TInspector_Window*      myWindow;      //!< the current window
-  TInspector_Preferences* myPreferences; //!< the preferences loader
-};
-
-#endif
diff --git a/tools/TInspector/TInspector_Preferences.cxx b/tools/TInspector/TInspector_Preferences.cxx
deleted file mode 100644
index a0dfa22de1..0000000000
--- a/tools/TInspector/TInspector_Preferences.cxx
+++ /dev/null
@@ -1,172 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TInspector_Preferences.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QDir>
-#include <QDomDocument>
-#include <QDomElement>
-#include <QDomNode>
-#include <QFile>
-#include <QTextStream>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : GetPreferences
-// purpose :
-// =======================================================================
-void TInspector_Preferences::GetPreferences(const TCollection_AsciiString&    thePluginName,
-                                            TInspectorAPI_PreferencesDataMap& theItem)
-{
-  if (!myIsLoadedPreferences)
-  {
-    loadPreferences();
-    myIsLoadedPreferences = Standard_True;
-  }
-  myLoadedPreferences.Find(thePluginName, theItem);
-}
-
-// =======================================================================
-// function : StorePreferences
-// purpose :
-// =======================================================================
-void TInspector_Preferences::StorePreferences()
-{
-  if (myLoadedPreferences.IsEmpty())
-    return;
-
-  QString aFileName =
-    QString(GetDirectory().ToCString()) + QDir::separator() + PreferencesFileName();
-  QFile aFile(aFileName);
-  if (!aFile.open(QFile::WriteOnly))
-    return;
-
-  QDomDocument aDomDocument(documentKey());
-  QDomComment  aComment =
-    aDomDocument.createComment("\nThis file is automatically created by TInspector "
-                               "application.\nChanges made in this file can be lost.\n");
-  aDomDocument.appendChild(aComment);
-  QDomElement aRootElement = aDomDocument.createElement(documentKey());
-  aDomDocument.appendChild(aRootElement);
-
-  for (NCollection_DataMap<TCollection_AsciiString, TInspectorAPI_PreferencesDataMap>::Iterator
-         aPrefsIt(myLoadedPreferences);
-       aPrefsIt.More();
-       aPrefsIt.Next())
-  {
-    QDomElement aPluginElement = aDomDocument.createElement(pluginKey());
-    aPluginElement.setAttribute(nameKey(), aPrefsIt.Key().ToCString());
-    aRootElement.appendChild(aPluginElement);
-
-    const TInspectorAPI_PreferencesDataMap& aPluginMap = aPrefsIt.Value();
-    for (TInspectorAPI_IteratorOfPreferencesDataMap aPluginPrefsIt(aPluginMap);
-         aPluginPrefsIt.More();
-         aPluginPrefsIt.Next())
-    {
-      QDomElement aParameterElement = aDomDocument.createElement(parameterKey());
-      aParameterElement.setAttribute(nameKey(), aPluginPrefsIt.Key().ToCString());
-      aParameterElement.setAttribute(valueKey(), aPluginPrefsIt.Value().ToCString());
-      aPluginElement.appendChild(aParameterElement);
-    }
-  }
-
-  QTextStream aTextStream(&aFile);
-  QStringList aDocumentStr = aDomDocument.toString().split("\n");
-  for (QStringList::ConstIterator aContentIt = aDocumentStr.begin();
-       aContentIt != aDocumentStr.end();
-       ++aContentIt)
-  {
-    aTextStream << *aContentIt << '\n';
-  }
-  aFile.close();
-}
-
-// =======================================================================
-// function : RemovePreferences
-// purpose :
-// =======================================================================
-void TInspector_Preferences::RemovePreferences()
-{
-  QString aFileName =
-    QString(GetDirectory().ToCString()) + QDir::separator() + PreferencesFileName();
-  QDir aDir(GetDirectory().ToCString());
-  if (aDir.exists(aFileName))
-    aDir.remove(aFileName);
-  reset();
-}
-
-// =======================================================================
-// function : loadPreferences
-// purpose :
-// =======================================================================
-void TInspector_Preferences::loadPreferences()
-{
-  QString aFileName =
-    QString(GetDirectory().ToCString()) + QDir::separator() + PreferencesFileName();
-  QFile aFile(aFileName);
-  if (!aFile.open(QFile::ReadOnly))
-    return;
-
-  QDomDocument aDomDocument;
-  bool         aResult = aDomDocument.setContent(&aFile);
-  aFile.close();
-  if (!aResult)
-    return;
-
-  QDomElement aRootElement = aDomDocument.documentElement();
-  if (aRootElement.isNull() || aRootElement.tagName() != documentKey())
-    return;
-
-  QDomNode aPluginNode = aRootElement.firstChild();
-  while (!aPluginNode.isNull())
-  {
-    if (aPluginNode.isElement())
-    {
-      QDomElement aPluginElement = aPluginNode.toElement();
-      if (aPluginElement.tagName() == pluginKey() && aPluginElement.hasAttribute(nameKey()))
-      {
-        TInspectorAPI_PreferencesDataMap anItem;
-        readPluginItem(aPluginElement, anItem);
-        myLoadedPreferences.Bind(aPluginElement.attribute(nameKey()).toStdString().c_str(), anItem);
-      }
-    }
-    aPluginNode = aPluginNode.nextSibling();
-  }
-}
-
-// =======================================================================
-// function : readPluginItem
-// purpose :
-// =======================================================================
-void TInspector_Preferences::readPluginItem(const QDomElement                 thePluginElement,
-                                            TInspectorAPI_PreferencesDataMap& theItem)
-{
-  QDomNode aParameterNode = thePluginElement.firstChild();
-  while (!aParameterNode.isNull())
-  {
-    if (aParameterNode.isElement())
-    {
-      QDomElement aParameterElement = aParameterNode.toElement();
-      if (aParameterElement.tagName() == parameterKey() && aParameterElement.hasAttribute(nameKey())
-          && aParameterElement.hasAttribute(valueKey()))
-      {
-        theItem.Bind(aParameterElement.attribute(nameKey()).toStdString().c_str(),
-                     aParameterElement.attribute(valueKey()).toStdString().c_str());
-      }
-    }
-    aParameterNode = aParameterNode.nextSibling();
-  }
-}
diff --git a/tools/TInspector/TInspector_Preferences.hxx b/tools/TInspector/TInspector_Preferences.hxx
deleted file mode 100644
index 2649b59fd5..0000000000
--- a/tools/TInspector/TInspector_Preferences.hxx
+++ /dev/null
@@ -1,113 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TInspector_Preferences_H
-#define TInspector_Preferences_H
-
-#include <TCollection_AsciiString.hxx>
-#include <inspector/TInspectorAPI_PreferencesDataMap.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QDomElement>
-#include <Standard_WarningsRestore.hxx>
-
-//! The class to read/write custom plugin preferences in XML format.
-//! The preferences file is intended to know about:
-//! - dock window placement
-//! - tree view columns: visibility, width
-class TInspector_Preferences
-{
-public:
-  //! Constructs the communicator.
-  TInspector_Preferences() {}
-
-  //! Destructor
-  virtual ~TInspector_Preferences() {}
-
-  static Standard_CString PreferencesFileName() { return ".tinspector.xml"; }
-
-  //! Sets path to a preferences file
-  //! \param thePath a path
-  void SetDirectory(const TCollection_AsciiString& thePath)
-  {
-    reset();
-    myDirectory = thePath;
-  }
-
-  //! Returns path to a preferences file
-  //! \return path
-  TCollection_AsciiString GetDirectory() const { return myDirectory; }
-
-  //! Returns plugin preferences
-  //! \param thePluginName a plugin name
-  Standard_EXPORT void GetPreferences(const TCollection_AsciiString&    thePluginName,
-                                      TInspectorAPI_PreferencesDataMap& theItem);
-
-  //! Stores plugin preferences
-  //! \param thePluginName a plugin name
-  //! \theItem container of plugin preferences values in form: <name, value>
-  void SetPreferences(const TCollection_AsciiString&          thePluginName,
-                      const TInspectorAPI_PreferencesDataMap& theItem)
-  {
-    myLoadedPreferences.Bind(thePluginName, theItem);
-  }
-
-  //! Stores plugin preferences into a preferences file
-  Standard_EXPORT void StorePreferences();
-
-  //! Removes plugin preferences file
-  Standard_EXPORT void RemovePreferences();
-
-private:
-  //! Loads the directory preference file with filling internal container
-  void loadPreferences();
-
-  //! Clears all internal containers with information of already loaded file
-  void reset()
-  {
-    myLoadedPreferences.Clear();
-    myIsLoadedPreferences = Standard_False;
-  }
-
-  //! Reads plugin preferences and fill container
-  void readPluginItem(const QDomElement                 thePluginElement,
-                      TInspectorAPI_PreferencesDataMap& theItem);
-
-  //! Returns text of attribute document
-  static Standard_CString documentKey() { return "document"; }
-
-  //! Returns text of attribute plugin
-  static Standard_CString pluginKey() { return "plugin"; }
-
-  //! Returns text of attribute parameter
-  static Standard_CString parameterKey() { return "parameter"; }
-
-  //! Returns text of attribute name
-  static Standard_CString nameKey() { return "name"; }
-
-  //! Returns text of attribute value
-  static Standard_CString valueKey() { return "value"; }
-
-private:
-  //! directory of preferences file
-  TCollection_AsciiString myDirectory;
-  //! container of already loaded preferences : cache
-  NCollection_DataMap<TCollection_AsciiString, TInspectorAPI_PreferencesDataMap>
-    myLoadedPreferences;
-  //! state whether the preferences of the current directory is loaded
-  Standard_Boolean myIsLoadedPreferences;
-};
-
-#endif
diff --git a/tools/TInspector/TInspector_Shortcut.cxx b/tools/TInspector/TInspector_Shortcut.cxx
deleted file mode 100644
index 589b75bf20..0000000000
--- a/tools/TInspector/TInspector_Shortcut.cxx
+++ /dev/null
@@ -1,56 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TInspector_Shortcut.hxx>
-
-#include <inspector/TInspector_Window.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QKeyEvent>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-TInspector_Shortcut::TInspector_Shortcut(QObject* theParent, TInspector_Window* theWindow)
-    : QObject(theParent),
-      myWindow(theWindow)
-{
-  qApp->installEventFilter(this);
-}
-
-// =======================================================================
-// function : eventFilter
-// purpose :
-// =======================================================================
-bool TInspector_Shortcut::eventFilter(QObject* theObject, QEvent* theEvent)
-{
-  if (!myWindow || theEvent->type() != QEvent::KeyRelease)
-    return QObject::eventFilter(theObject, theEvent);
-
-  QKeyEvent* aKeyEvent = dynamic_cast<QKeyEvent*>(theEvent);
-  switch (aKeyEvent->key())
-  {
-    case Qt::Key_F5: {
-      myWindow->UpdateContent();
-      return true;
-    }
-    default:
-      break;
-  }
-  return QObject::eventFilter(theObject, theEvent);
-}
diff --git a/tools/TInspector/TInspector_Shortcut.hxx b/tools/TInspector/TInspector_Shortcut.hxx
deleted file mode 100644
index a834c69dce..0000000000
--- a/tools/TInspector/TInspector_Shortcut.hxx
+++ /dev/null
@@ -1,48 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TInspector_Shortcut_H
-#define TInspector_Shortcut_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-class TInspector_Window;
-class QEvent;
-
-//! \class TInspector_Shortcut
-//! Listens application KeyRelease event. Processes key event:
-//! - <Key_F5>: updates content (tree view model) of the active plugin
-class TInspector_Shortcut : public QObject
-{
-public:
-  //! Constructor
-  Standard_EXPORT TInspector_Shortcut(QObject* theParent, TInspector_Window* theWindow);
-
-  //! Destructor
-  virtual ~TInspector_Shortcut() {}
-
-  //! Processes key release event to update view model, otherwise do usual QObject functionality
-  Standard_EXPORT virtual bool eventFilter(QObject* theObject, QEvent* theEvent) Standard_OVERRIDE;
-
-private:
-  TInspector_Window* myWindow; //!< the current window
-};
-
-#endif
diff --git a/tools/TInspector/TInspector_Window.cxx b/tools/TInspector/TInspector_Window.cxx
deleted file mode 100644
index 7b05985954..0000000000
--- a/tools/TInspector/TInspector_Window.cxx
+++ /dev/null
@@ -1,607 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TInspector_Window.hxx>
-
-#include <inspector/TInspectorAPI_Communicator.hxx>
-#include <inspector/TInspector_PluginParameters.hxx>
-#include <inspector/TInspector_Shortcut.hxx>
-#include <inspector/TreeModel_Tools.hxx>
-
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <OSD_Directory.hxx>
-#include <OSD_Environment.hxx>
-#include <OSD_Path.hxx>
-#include <OSD_Protection.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QButtonGroup>
-#include <QDockWidget>
-#include <QLabel>
-#include <QMainWindow>
-#include <QMenu>
-#include <QPushButton>
-#include <QStackedWidget>
-#include <QToolButton>
-#include <QVBoxLayout>
-#include <Standard_WarningsRestore.hxx>
-
-const int TINSPECTOR_DEFAULT_WIDTH      = 650;
-const int TINSPECTOR_DEFAULT_HEIGHT     = 500; // 350;
-const int TINSPECTOR_DEFAULT_POSITION_X = 200;
-const int TINSPECTOR_DEFAULT_POSITION_Y = 60;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-TInspector_Window::TInspector_Window()
-    : QObject(),
-      myOpenButton(0)
-{
-  myMainWindow = new QMainWindow();
-
-  QWidget* aCentralWidget = new QWidget(myMainWindow);
-  myMainWindow->setCentralWidget(aCentralWidget);
-  QVBoxLayout* aCentralLayout = new QVBoxLayout(aCentralWidget);
-  aCentralLayout->setContentsMargins(0, 0, 0, 0);
-  aCentralLayout->setSpacing(0);
-
-  myToolsStack = new QStackedWidget(aCentralWidget);
-  myToolsStack->setFrameShape(QFrame::Box);
-  aCentralLayout->addWidget(myToolsStack);
-
-  myEmptyWidget = new QWidget(aCentralWidget);
-  myToolsStack->addWidget(myEmptyWidget);
-
-  QWidget*     aTopWidget       = new QWidget(aCentralWidget);
-  QHBoxLayout* aTopWidgetLayout = new QHBoxLayout(aTopWidget);
-  aTopWidgetLayout->setContentsMargins(0, 0, 0, 0);
-  aTopWidgetLayout->setSpacing(0);
-
-  myButtonWidget = new QWidget(aCentralWidget);
-  myButtonLay    = new QHBoxLayout(myButtonWidget);
-  myButtonLay->setContentsMargins(0, 0, 0, 0);
-  myButtonLay->setSpacing(0);
-  myButtonLay->insertStretch(0, 1);
-
-  myButtonGroup = new QButtonGroup(aCentralWidget);
-  myButtonGroup->setExclusive(true);
-
-  myActionsWidget = new QToolButton(aCentralWidget);
-  myActionsWidget->setPopupMode(QToolButton::InstantPopup);
-  myActionsWidget->setIcon(QIcon(":plugin_actions.png"));
-  myActionsWidget->setIconSize(QSize(20, 20));
-  QMenu* anActionsMenu = new QMenu(myActionsWidget);
-  myActionsWidget->setMenu(anActionsMenu);
-  connect(anActionsMenu, SIGNAL(aboutToShow()), this, SLOT(onShowActionsMenu()));
-
-  aTopWidgetLayout->addWidget(myButtonWidget, 1);
-  aTopWidgetLayout->addWidget(myActionsWidget);
-
-  aCentralLayout->addWidget(aTopWidget);
-  aCentralLayout->addWidget(myToolsStack);
-
-  myMainWindow->resize(TINSPECTOR_DEFAULT_WIDTH, TINSPECTOR_DEFAULT_HEIGHT);
-  myMainWindow->move(TINSPECTOR_DEFAULT_POSITION_X, TINSPECTOR_DEFAULT_POSITION_Y);
-  myMainWindow->setDockOptions(QMainWindow::VerticalTabs);
-
-  myParameters = new TInspector_PluginParameters(this);
-
-  myDefaultDirectory = defaultTemporaryDirectory();
-  myParameters->SetTemporaryDirectory(myDefaultDirectory);
-
-  applyPreferences();
-
-  myShortcut = new TInspector_Shortcut(myMainWindow, this);
-}
-
-// =======================================================================
-// function : RegisterPlugin
-// purpose :
-// =======================================================================
-void TInspector_Window::RegisterPlugin(const TCollection_AsciiString& thePluginName)
-{
-  TInspector_ToolInfo anInfo;
-  int                 aToolId;
-  if (findPlugin(thePluginName, anInfo, aToolId))
-    return;
-
-  myToolNames.append(TInspector_ToolInfo(thePluginName));
-}
-
-// =======================================================================
-// function : RegisteredPlugins
-// purpose :
-// =======================================================================
-NCollection_List<TCollection_AsciiString> TInspector_Window::RegisteredPlugins() const
-{
-  NCollection_List<TCollection_AsciiString> aPlugins;
-
-  for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
-    aPlugins.Append(myToolNames[aToolId].myName);
-
-  return aPlugins;
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void TInspector_Window::Init(const TCollection_AsciiString&                      thePluginName,
-                             const NCollection_List<Handle(Standard_Transient)>& theParameters,
-                             const Standard_Boolean                              theAppend)
-{
-  if (thePluginName.IsEmpty())
-  {
-    // Init all plugins by the given parameters
-    for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
-      Init(myToolNames[aToolId].myName, theParameters, theAppend);
-
-    // temporary activation of the first tool
-    if (!myToolNames.isEmpty())
-      ActivateTool(myToolNames[0].myName);
-    return;
-  }
-
-  if (theAppend)
-  {
-    NCollection_List<Handle(Standard_Transient)> aParameters;
-    if (myParameters->FindParameters(thePluginName))
-      aParameters = myParameters->Parameters(thePluginName);
-
-    for (NCollection_List<Handle(Standard_Transient)>::Iterator anIterator(theParameters);
-         anIterator.More();
-         anIterator.Next())
-      aParameters.Append(anIterator.Value());
-
-    myParameters->SetParameters(thePluginName, aParameters, Standard_False);
-  }
-  else
-    myParameters->SetParameters(thePluginName, theParameters, Standard_False);
-
-  TInspector_ToolInfo anInfo;
-  int                 aToolId;
-  if (!findPlugin(thePluginName, anInfo, aToolId))
-    return;
-
-  if (anInfo.myButton)
-    return;
-
-  QString aButtonName = anInfo.myName.ToCString();
-  if (aButtonName.indexOf("TK") == 0)
-    aButtonName = aButtonName.mid(2);
-
-  QPushButton* aButton = new QPushButton(aButtonName, myButtonWidget);
-  aButton->setCheckable(true);
-  connect(aButton, SIGNAL(clicked(bool)), this, SLOT(onButtonClicked()));
-  myButtonLay->insertWidget(myButtonLay->count() - 1, aButton);
-  myButtonGroup->addButton(aButton);
-  anInfo.myButton      = aButton;
-  myToolNames[aToolId] = anInfo;
-}
-
-// =======================================================================
-// function : ActivateTool
-// purpose :
-// =======================================================================
-void TInspector_Window::ActivateTool(const TCollection_AsciiString& thePluginName)
-{
-  int aToolIndex = -1;
-  for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
-  {
-    if (myToolNames[aToolId].myName != thePluginName)
-      continue;
-    aToolIndex = aToolId;
-    break;
-  }
-
-  if (aToolIndex < 0)
-    return;
-
-  TInspector_ToolInfo anInfo         = myToolNames[aToolIndex];
-  bool                isPluginLoaded = false;
-  if (!anInfo.myWidget)
-  {
-    if (!LoadPlugin(thePluginName, anInfo))
-    {
-      anInfo.myButton->setEnabled(false);
-      return;
-    }
-    isPluginLoaded = true;
-    myToolsStack->addWidget(anInfo.myWidget);
-    myToolNames[aToolIndex] = anInfo;
-  }
-
-  QWidget* aWidget = anInfo.myWidget;
-  myToolsStack->setCurrentWidget(aWidget);
-  if (myOpenButton)
-    myOpenButton->setObjectName(thePluginName.ToCString());
-
-  anInfo.myCommunicator->UpdateContent();
-  if (isPluginLoaded)
-  {
-    // apply preferences
-    TInspectorAPI_PreferencesDataMap aPreferences;
-    myParameters->GetPreferences(thePluginName, aPreferences);
-    anInfo.myCommunicator->SetPreferences(aPreferences);
-  }
-  onCommuncatorNameChanged();
-}
-
-// =======================================================================
-// function : SetSelected
-// purpose :
-// =======================================================================
-void TInspector_Window::SetSelected(const NCollection_List<TCollection_AsciiString>& theItemNames)
-{
-  TInspector_ToolInfo anInfo;
-  if (!activeToolInfo(anInfo))
-    return;
-
-  myParameters->SetSelectedNames(anInfo.myName, theItemNames);
-
-  TInspectorAPI_Communicator* aCommunicator = anInfo.myCommunicator;
-  if (aCommunicator)
-  {
-    aCommunicator->UpdateContent();
-  }
-}
-
-// =======================================================================
-// function : SetSelected
-// purpose :
-// =======================================================================
-void TInspector_Window::SetSelected(const NCollection_List<Handle(Standard_Transient)>& theObjects)
-{
-  TInspector_ToolInfo anInfo;
-  if (!activeToolInfo(anInfo))
-    return;
-
-  myParameters->SetSelected(anInfo.myName, theObjects);
-
-  TInspectorAPI_Communicator* aCommunicator = anInfo.myCommunicator;
-  if (aCommunicator)
-  {
-    aCommunicator->UpdateContent();
-  }
-}
-
-// =======================================================================
-// function : SetOpenButton
-// purpose :
-// =======================================================================
-void TInspector_Window::SetOpenButton(QPushButton* theButton)
-{
-  myOpenButton = theButton;
-  TInspector_ToolInfo anInfo;
-  if (activeToolInfo(anInfo))
-    myOpenButton->setObjectName(anInfo.myName.ToCString());
-  myButtonLay->insertWidget(0, theButton);
-}
-
-// =======================================================================
-// function : OpenFile
-// purpose :
-// =======================================================================
-void TInspector_Window::OpenFile(const TCollection_AsciiString& thePluginName,
-                                 const TCollection_AsciiString& theFileName)
-{
-  if (thePluginName.IsEmpty())
-  {
-    // Apply file name to all plugins
-    for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
-      OpenFile(myToolNames[aToolId].myName, theFileName);
-    return;
-  }
-
-  myParameters->AddFileName(thePluginName, theFileName);
-
-  TInspector_ToolInfo anInfo;
-  if (!activeToolInfo(anInfo) || anInfo.myName != thePluginName)
-    return;
-
-  TInspectorAPI_Communicator* aCommunicator = anInfo.myCommunicator;
-  if (aCommunicator)
-    aCommunicator->UpdateContent();
-}
-
-// =======================================================================
-// function : UpdateContent
-// purpose :
-// =======================================================================
-void TInspector_Window::UpdateContent()
-{
-  TInspector_ToolInfo anInfo;
-  if (activeToolInfo(anInfo) && anInfo.myCommunicator)
-    anInfo.myCommunicator->UpdateContent();
-}
-
-// =======================================================================
-// function : LoadPlugin
-// purpose :
-// =======================================================================
-bool TInspector_Window::LoadPlugin(const TCollection_AsciiString& thePluginName,
-                                   TInspector_ToolInfo&           theInfo)
-{
-  bool aLoaded = false;
-
-  QApplication::setOverrideCursor(Qt::WaitCursor);
-  TInspectorAPI_Communicator* aCommunicator =
-    TInspectorAPI_Communicator::LoadPluginLibrary(thePluginName);
-
-  if (aCommunicator)
-  {
-    aCommunicator->SetParameters(myParameters);
-    QWidget*     aParentWidget = new QWidget(myMainWindow);
-    QVBoxLayout* aLayout       = new QVBoxLayout(aParentWidget);
-    aLayout->setContentsMargins(0, 0, 0, 0);
-    aLayout->setSpacing(0);
-    aParentWidget->setLayout(aLayout);
-    aCommunicator->SetParent(aParentWidget);
-    theInfo.myWidget       = aParentWidget;
-    theInfo.myCommunicator = aCommunicator;
-#if QT_VERSION >= 0x050000
-    connect(aParentWidget,
-            SIGNAL(objectNameChanged(const QString&)),
-            this,
-            SLOT(onCommuncatorNameChanged()));
-#endif
-    aLoaded = true;
-  }
-  QApplication::restoreOverrideCursor();
-  return aLoaded;
-}
-
-// =======================================================================
-// function : GetPreferences
-// purpose :
-// =======================================================================
-void TInspector_Window::GetPreferences(TInspectorAPI_PreferencesDataMap& theItem)
-{
-  theItem.Bind("geometry",
-               TreeModel_Tools::ToString(myMainWindow->saveGeometry()).toStdString().c_str());
-}
-
-// =======================================================================
-// function : SetPreferences
-// purpose :
-// =======================================================================
-void TInspector_Window::SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem)
-{
-  for (TInspectorAPI_IteratorOfPreferencesDataMap anItemIt(theItem); anItemIt.More();
-       anItemIt.Next())
-  {
-    if (anItemIt.Key().IsEqual("geometry"))
-      myMainWindow->restoreGeometry(TreeModel_Tools::ToByteArray(anItemIt.Value().ToCString()));
-  }
-}
-
-// =======================================================================
-// function : Dump
-// purpose :
-// =======================================================================
-void TInspector_Window::Dump(Standard_OStream& theStream) const
-{
-  TInspector_ToolInfo anInfo;
-  activeToolInfo(anInfo);
-
-  theStream << "Active Plugin: " << anInfo.myName << "\n";
-  theStream << "Temporary Directory: " << GetTemporaryDirectory() << "\n";
-}
-
-// =======================================================================
-// function : OnStorePreferences
-// purpose :
-// =======================================================================
-void TInspector_Window::OnStorePreferences()
-{
-  Handle(TInspector_PluginParameters) aParameters =
-    Handle(TInspector_PluginParameters)::DownCast(myParameters);
-  TInspectorAPI_PreferencesDataMap aPreferences;
-  GetPreferences(aPreferences);
-  aParameters->SetPreferences("Desktop", aPreferences);
-
-  TInspector_ToolInfo anInfo;
-  for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
-  {
-    anInfo = myToolNames[aToolId];
-    if (!anInfo.myCommunicator)
-      continue;
-
-    aParameters->GetPreferences(anInfo.myName, aPreferences);
-    anInfo.myCommunicator->GetPreferences(aPreferences);
-    myParameters->SetPreferences(anInfo.myName, aPreferences);
-  }
-
-  // store preferences parameters into a file
-  aParameters->StorePreferences();
-}
-
-// =======================================================================
-// function : OnRemovePreferences
-// purpose :
-// =======================================================================
-void TInspector_Window::OnRemovePreferences()
-{
-  Handle(TInspector_PluginParameters) aParameters =
-    Handle(TInspector_PluginParameters)::DownCast(myParameters);
-
-  // remove preferences file
-  aParameters->RemovePreferences();
-
-  // restore plugins default state
-  TInspector_ToolInfo anInfo;
-  for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
-  {
-    anInfo = myToolNames[aToolId];
-    if (!anInfo.myCommunicator)
-      continue;
-    anInfo.myCommunicator->SetPreferences(TInspectorAPI_PreferencesDataMap());
-  }
-}
-
-// =======================================================================
-// function : onButtonClicked
-// purpose :
-// =======================================================================
-void TInspector_Window::onButtonClicked()
-{
-  QPushButton* aButton = (QPushButton*)sender();
-
-  TCollection_AsciiString aPluginName = aButton->text().toStdString().c_str();
-
-  TInspector_ToolInfo anInfo;
-  int                 aToolId;
-  if (!findPlugin(aPluginName, anInfo, aToolId))
-    aPluginName = TCollection_AsciiString("TK") + aPluginName;
-
-  ActivateTool(aPluginName);
-}
-
-// =======================================================================
-// function : onShowActionsMenu
-// purpose :
-// =======================================================================
-void TInspector_Window::onShowActionsMenu()
-{
-  myActionsWidget->menu()->clear();
-
-  TInspector_ToolInfo anInfo;
-  activeToolInfo(anInfo);
-
-  QMenu* aMenu = myActionsWidget->menu();
-  anInfo.myCommunicator->FillActionsMenu(aMenu);
-
-  aMenu->addSeparator();
-  aMenu->addAction(ViewControl_Tools::CreateAction(tr("Store Preferences"),
-                                                   SLOT(OnStorePreferences()),
-                                                   myMainWindow,
-                                                   this));
-  QAction* anAction = ViewControl_Tools::CreateAction(tr("Remove Preferences"),
-                                                      SLOT(OnRemovePreferences()),
-                                                      myMainWindow,
-                                                      this);
-  anAction->setToolTip("Default state will be restored after restarting the application");
-  aMenu->addAction(anAction);
-}
-
-// =======================================================================
-// function : onCommuncatorNameChanged
-// purpose :
-// =======================================================================
-void TInspector_Window::onCommuncatorNameChanged()
-{
-#if QT_VERSION >= 0x050000
-  TInspector_ToolInfo anInfo;
-  if (!activeToolInfo(anInfo))
-    return;
-  myMainWindow->setWindowTitle(anInfo.myWidget->objectName());
-#endif
-}
-
-// =======================================================================
-// function : activeToolInfo
-// purpose :
-// =======================================================================
-bool TInspector_Window::activeToolInfo(TInspector_Window::TInspector_ToolInfo& theToolInfo) const
-{
-  QWidget* anActiveWidget = myToolsStack->currentWidget();
-  if (anActiveWidget == myEmptyWidget)
-    return false;
-
-  for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
-  {
-    if (myToolNames[aToolId].myWidget && myToolNames[aToolId].myWidget == anActiveWidget)
-    {
-      theToolInfo = myToolNames[aToolId];
-      return true;
-    }
-  }
-  return false;
-}
-
-// =======================================================================
-// function : findPlugin
-// purpose :
-// =======================================================================
-bool TInspector_Window::findPlugin(const TCollection_AsciiString& thePluginName,
-                                   TInspector_ToolInfo&           theToolInfo,
-                                   int&                           theToolId)
-{
-  for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
-  {
-    TInspector_ToolInfo anInfo = myToolNames[aToolId];
-    if (anInfo.myName != thePluginName)
-      continue;
-    theToolInfo = anInfo;
-    theToolId   = aToolId;
-    return true;
-  }
-
-  return false;
-}
-
-// =======================================================================
-// function : applyPreferences
-// purpose :
-// =======================================================================
-void TInspector_Window::applyPreferences()
-{
-  TInspectorAPI_PreferencesDataMap aPreferences;
-  myParameters->GetPreferences("Desktop", aPreferences);
-  SetPreferences(aPreferences);
-}
-
-// =======================================================================
-// function : defaultTemporaryDirectory
-// purpose :
-// =======================================================================
-TCollection_AsciiString TInspector_Window::defaultTemporaryDirectory() const
-{
-  // main window creation
-  TCollection_AsciiString aTmpDir;
-#ifdef _WIN32
-  OSD_Environment anEnvironment("TEMP");
-  aTmpDir = anEnvironment.Value();
-  if (aTmpDir.IsEmpty())
-  {
-    anEnvironment.SetName("TMP");
-    aTmpDir = anEnvironment.Value();
-    if (aTmpDir.IsEmpty())
-      aTmpDir = "C:\\";
-  }
-  if (!aTmpDir.EndsWith("\\"))
-    aTmpDir += "\\";
-  OSD_Path      aTmpPath(aTmpDir);
-  OSD_Directory aTmpDirectory;
-#else
-  OSD_Directory aTmpDirectory = OSD_Directory::BuildTemporary();
-  OSD_Path      aTmpPath;
-  aTmpDirectory.Path(aTmpPath);
-#endif
-  aTmpPath.DownTrek("TInspector");
-  aTmpDirectory.SetPath(aTmpPath);
-  if (!aTmpDirectory.Exists())
-    aTmpDirectory.Build(OSD_Protection());
-
-  aTmpDirectory.Path(aTmpPath);
-  TCollection_AsciiString aTmpDirectoryName;
-  aTmpPath.SystemName(aTmpDirectoryName);
-
-  return aTmpDir;
-}
diff --git a/tools/TInspector/TInspector_Window.hxx b/tools/TInspector/TInspector_Window.hxx
deleted file mode 100644
index d237d98db5..0000000000
--- a/tools/TInspector/TInspector_Window.hxx
+++ /dev/null
@@ -1,212 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TInspector_Window_H
-#define TInspector_Window_H
-
-#include <NCollection_List.hxx>
-#include <Standard.hxx>
-#include <Standard_Transient.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <inspector/TInspectorAPI_PluginParameters.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QMap>
-#include <QObject>
-#include <QString>
-#include <Standard_WarningsRestore.hxx>
-
-class TInspectorAPI_Communicator;
-class TInspector_Shortcut;
-
-class QButtonGroup;
-class QMainWindow;
-class QHBoxLayout;
-class QPushButton;
-class QStackedWidget;
-class QToolButton;
-
-//! \class Inspector_Window
-//! Control that contains:
-//! - stacked widget of loaded plugins
-//! - Open button to open file in an active plugin
-//! - plugin parameters container
-class TInspector_Window : public QObject
-{
-  Q_OBJECT
-private:
-  //! Container of plugin information
-  struct TInspector_ToolInfo
-  {
-
-    //! Constructor
-    TInspector_ToolInfo(const TCollection_AsciiString& theName = TCollection_AsciiString())
-        : myName(theName),
-          myCommunicator(0),
-          myButton(0),
-          myWidget(0)
-    {
-    }
-
-    TCollection_AsciiString     myName;         //!< plugin name
-    TInspectorAPI_Communicator* myCommunicator; //!< plugin communicator
-    QPushButton*
-      myButton; //!< button with plugin name, that will be added into TInspector window layout
-    QWidget* myWidget; //!< parent widget of the plugin
-  };
-
-public:
-  //! Constructor
-  Standard_EXPORT TInspector_Window();
-
-  //! Destructor
-  virtual ~TInspector_Window() {}
-
-  //! Appends the plugin names into internal container
-  //! \param thePluginName a name of the plugin
-  Standard_EXPORT void RegisterPlugin(const TCollection_AsciiString& thePluginName);
-
-  //! Returns list of registered plugins
-  //! \return container of plugin names
-  Standard_EXPORT NCollection_List<TCollection_AsciiString> RegisteredPlugins() const;
-
-  //! Stores parameters for the plugin. If the plugin name is empty, it inits all plugins with the
-  //! parameters \param thePluginName a name of the plugin \param theParameters container of
-  //! parameters(e.g. AIS_InteractiveContext, TDocStd_Application) \param theAppend boolean state
-  //! whether the parameters should be added to existing
-  Standard_EXPORT void Init(const TCollection_AsciiString&                      thePluginName,
-                            const NCollection_List<Handle(Standard_Transient)>& theParameters,
-                            const Standard_Boolean theAppend = Standard_False);
-
-  //! Appends to container of parameters the given name, if the given parameter is active, cal
-  //! UpdateContent \param thePluginName a name of the plugin \param theParameters container of
-  //! parameters(e.g. AIS_InteractiveContext, TDocStd_Application)
-  Standard_EXPORT void OpenFile(const TCollection_AsciiString& thePluginName,
-                                const TCollection_AsciiString& theFileName);
-
-  //! Calls UpdateContent for the active plugin
-  Standard_EXPORT void UpdateContent();
-
-  //! Returns the main TInspector window
-  QMainWindow* GetMainWindow() const { return myMainWindow; }
-
-  //! Activates the plugin. Loads the plugin if it has not been loaded yet
-  //! \param thePluginName a name of the plugin
-  Standard_EXPORT void ActivateTool(const TCollection_AsciiString& thePluginName);
-
-  //! Sets item selected in the active plugin
-  //! \param theItemNames a container of name of items in plugin that should become selected
-  Standard_EXPORT void SetSelected(const NCollection_List<TCollection_AsciiString>& theItemNames);
-
-  //! Sets objects to be selected in the plugin
-  //! \param theObjects an objects
-  Standard_EXPORT void SetSelected(const NCollection_List<Handle(Standard_Transient)>& theObjects);
-
-  //! Sets open button. Stores into objectName for the button the name of the current plugin to know
-  //! where the file should be applied \param theButton a button
-  Standard_EXPORT void SetOpenButton(QPushButton* theButton);
-
-  //! Loads plugin, appends the plugin widget into layout, stores the plugin information
-  //! \param thePluginName a name of the plugin
-  //! \param theInfo an output parameter for plugin info
-  Standard_EXPORT bool LoadPlugin(const TCollection_AsciiString& thePluginName,
-                                  TInspector_ToolInfo&           theInfo);
-
-  //! Sets path to a directory for temporary plugin files. If parameter is empty, using default
-  //! directory \param thePath a path
-  void SetTemporaryDirectory(const TCollection_AsciiString& thePath)
-  {
-    myParameters->SetTemporaryDirectory(thePath.IsEmpty() ? myDefaultDirectory : thePath);
-  }
-
-  //! Returns path to a directory for temporary plugin files
-  //! \return path
-  TCollection_AsciiString GetTemporaryDirectory() const
-  {
-    return myParameters->GetTemporaryDirectory();
-  }
-
-  //! Returns plugins parameters container
-  //! \return instance of parameters container
-  Handle(TInspectorAPI_PluginParameters) GetPluginParameters() const { return myParameters; }
-
-  //! Returns plugin preferences: dock widgets state, tree view columns.
-  //! \param theItem container of preference elements
-  Standard_EXPORT void GetPreferences(TInspectorAPI_PreferencesDataMap& theItem);
-
-  //! Applies plugin preferences
-  //! \param theItem container of preference elements
-  Standard_EXPORT void SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem);
-
-  //! Puts in the stream information about communicator
-  //! \param theStream stream for output
-  Standard_EXPORT void Dump(Standard_OStream& theStream) const;
-
-public slots:
-  //! Stores preferences (current state) of all plugins into a preferences file
-  Standard_EXPORT void OnStorePreferences();
-
-  //! Removes preferences file
-  Standard_EXPORT void OnRemovePreferences();
-
-protected slots:
-
-  //! Activates plugin corresponded to the clicked button
-  void onButtonClicked();
-
-  //! Updates available actions by the active plugin
-  void onShowActionsMenu();
-
-  //! Updates the TInspector window title giving object name of plugin widget (available only in
-  //! Qt5)
-  void onCommuncatorNameChanged();
-
-protected:
-  //! Activates plugin by the plugin info
-  //! \param theToolInfo an information about plugin
-  bool activeToolInfo(TInspector_ToolInfo& theToolInfo) const;
-
-  //! Returns true if there is plugin registered by the given name
-  //! \param thePluginName a name of the plugin
-  //! \param theToolInfo an output parameter for plugin information
-  //! \param theToolId an index in internal map
-  //! \return true if the plugin is found
-  bool findPlugin(const TCollection_AsciiString& thePluginName,
-                  TInspector_ToolInfo&           theToolInfo,
-                  int&                           theToolId);
-
-  //! Applies desktop preferences to window
-  void applyPreferences();
-
-  //! Generates default temp directory by 'TEMP' or 'TMP' environment variables
-  //! \return generated path
-  TCollection_AsciiString defaultTemporaryDirectory() const;
-
-private:
-  QWidget* myEmptyWidget; //!< widget that is active in tools stack while no one plugin is loaded
-  QMainWindow*               myMainWindow;    //!< main control of the window
-  QStackedWidget*            myToolsStack;    //!< stack widget of plugin windows
-  QWidget*                   myButtonWidget;  //!< container of plugin buttons
-  QPushButton*               myOpenButton;    //!< button to open file for the active plugin
-  QHBoxLayout*               myButtonLay;     //!< layout of plugin buttons
-  QButtonGroup*              myButtonGroup;   //!< exclusive toggled button
-  QToolButton*               myActionsWidget; //!< tool button for plugin actions
-  QList<TInspector_ToolInfo> myToolNames;     //!< container of plugin names
-  Handle(TInspectorAPI_PluginParameters) myParameters;       //!< plugins parameters container
-  TInspector_Shortcut*                   myShortcut;         //!< listener of key events
-  TCollection_AsciiString                myDefaultDirectory; //!< default directory
-};
-
-#endif
diff --git a/tools/TInspector/icons/folder_export.png b/tools/TInspector/icons/folder_export.png
deleted file mode 100644
index 5f45f993dc..0000000000
Binary files a/tools/TInspector/icons/folder_export.png and /dev/null differ
diff --git a/tools/TInspector/icons/folder_import.png b/tools/TInspector/icons/folder_import.png
deleted file mode 100644
index 02743abe9b..0000000000
Binary files a/tools/TInspector/icons/folder_import.png and /dev/null differ
diff --git a/tools/TInspector/icons/folder_open.png b/tools/TInspector/icons/folder_open.png
deleted file mode 100644
index b0a139ebc6..0000000000
Binary files a/tools/TInspector/icons/folder_open.png and /dev/null differ
diff --git a/tools/TInspector/icons/plugin_actions.png b/tools/TInspector/icons/plugin_actions.png
deleted file mode 100644
index 10792a3d8e..0000000000
Binary files a/tools/TInspector/icons/plugin_actions.png and /dev/null differ
diff --git a/tools/TInspectorAPI/FILES b/tools/TInspectorAPI/FILES
deleted file mode 100644
index 63cf600d14..0000000000
--- a/tools/TInspectorAPI/FILES
+++ /dev/null
@@ -1,5 +0,0 @@
-TInspectorAPI_Communicator.cxx
-TInspectorAPI_Communicator.hxx
-TInspectorAPI_PluginParameters.cxx
-TInspectorAPI_PluginParameters.hxx
-TInspectorAPI_PreferencesDataMap.hxx
diff --git a/tools/TInspectorAPI/TInspectorAPI_Communicator.cxx b/tools/TInspectorAPI/TInspectorAPI_Communicator.cxx
deleted file mode 100644
index dc8a44d0e9..0000000000
--- a/tools/TInspectorAPI/TInspectorAPI_Communicator.cxx
+++ /dev/null
@@ -1,72 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TInspectorAPI_Communicator.hxx>
-
-#include <cstdio>
-#include <map>
-#include <iostream>
-
-#ifdef _WIN32
-  #include <windows.h>
-#else
-  #include <dlfcn.h>
-#endif
-
-#define LIB_HANDLE HINSTANCE
-
-// =======================================================================
-// function :  LoadPluginLibrary
-// purpose :
-// =======================================================================
-TInspectorAPI_Communicator* TInspectorAPI_Communicator::LoadPluginLibrary(
-  const TCollection_AsciiString& thePluginName)
-{
-  if (thePluginName.IsEmpty())
-    std::cout << thePluginName.ToCString() << "%s plugin could not be loaded." << std::endl;
-  TCollection_AsciiString aPluginLibraryName = thePluginName;
-#ifdef _WIN32
-  aPluginLibraryName += ".dll";
-#elif __APPLE__
-  aPluginLibraryName.Prepend("lib");
-  aPluginLibraryName += ".dylib";
-#else
-  aPluginLibraryName.Prepend("lib");
-  aPluginLibraryName += ".so";
-#endif
-
-  COMMUNICATOR_INSTANCE crtInst = 0;
-#ifdef _WIN32
-  HINSTANCE modLib = ::LoadLibraryA((LPCSTR)aPluginLibraryName.ToCString());
-#else
-  void* modLib = dlopen(aPluginLibraryName.ToCString(), RTLD_LAZY | RTLD_GLOBAL);
-#endif
-
-  if (!modLib)
-    std::cout << "Failed to load plugin." << aPluginLibraryName.ToCString() << std::endl;
-  else
-  {
-#ifdef _WIN32
-    crtInst = (COMMUNICATOR_INSTANCE)::GetProcAddress(modLib, CREATE_COMMUNICATOR_FUNCTION_NAME);
-#else
-    crtInst = (COMMUNICATOR_INSTANCE)dlsym(modLib, CREATE_COMMUNICATOR_FUNCTION_NAME);
-#endif
-    if (!crtInst)
-      std::cout << "Failed to find " << CREATE_COMMUNICATOR_FUNCTION_NAME << " function."
-                << std::endl;
-  }
-  TInspectorAPI_Communicator* aModule = crtInst ? crtInst() : 0;
-  return aModule;
-}
diff --git a/tools/TInspectorAPI/TInspectorAPI_Communicator.hxx b/tools/TInspectorAPI/TInspectorAPI_Communicator.hxx
deleted file mode 100644
index e2edd5e6ae..0000000000
--- a/tools/TInspectorAPI/TInspectorAPI_Communicator.hxx
+++ /dev/null
@@ -1,83 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TInspectorAPI_Communicator_H
-#define TInspectorAPI_Communicator_H
-
-#include <NCollection_List.hxx>
-#include <Standard_Transient.hxx>
-#include <Standard_Handle.hxx>
-#include <inspector/TInspectorAPI_PluginParameters.hxx>
-
-//! The Communicator is an interface that should be implemented for a separate plugin
-//! It will be placed in layout of the given parent. After the plugin is created, it is possible to
-//! set container of parameters into plugin to provide the plugin's initialization by some external
-//! objects(e.g. Interactive Context or OCAF Application). If the parameters are changed, it may be
-//! applied in UpdateContent function. The communicator can change parameters in the following
-//! cases:
-//! - the plugin removes own processed parameters (e.g. file names, that was opened by the plugin)
-//! - the plugin sends some parameters to another plugin(by name) (e.g. shape to be analyzed)
-//!   (at the same time we should be careful here to do not change essential parameters of other
-//!   plugins)
-class TInspectorAPI_Communicator
-{
-public:
-  //! Loads the plugin library
-  //! \param thePluginName the name of the library
-  //! \return an instance of the communicator or NULL
-  static Standard_EXPORT TInspectorAPI_Communicator* LoadPluginLibrary(
-    const TCollection_AsciiString& thePluginName);
-
-  //! Sets parameters container, it should be used when the plugin is initialized or in update
-  //! content \param theParameters a parameters container
-  Standard_EXPORT virtual void SetParameters(
-    const Handle(TInspectorAPI_PluginParameters)& theParameters) = 0;
-
-  //! Provides the container with a parent where this container should be inserted.
-  //! If Qt implementation, it should be QWidget with QLayout set inside
-  //! \param theParent a parent class
-  Standard_EXPORT virtual void SetParent(void* theParent) = 0;
-
-  //! Provides container for actions available in inspector on general level
-  //! \param theMenu if Qt implementation, it is QMenu object
-  virtual void FillActionsMenu(void* theMenu) { (void)theMenu; }
-
-  //! Returns plugin preferences, empty implementation by default
-  virtual void GetPreferences(TInspectorAPI_PreferencesDataMap&) {}
-
-  //! Applies plugin preferences, empty implementation by default
-  virtual void SetPreferences(const TInspectorAPI_PreferencesDataMap&) {}
-
-  //! Calls update of the plugin's content
-  Standard_EXPORT virtual void UpdateContent() = 0;
-
-  //! Constructs the communicator.
-  TInspectorAPI_Communicator() {}
-
-  //! Destructor
-  virtual ~TInspectorAPI_Communicator() {}
-};
-
-//! Declare plugin method
-extern "C"
-{
-  //! Declares function to create an instance of communicator
-  //! It should be implemented in a child plugin
-  typedef TInspectorAPI_Communicator* (*COMMUNICATOR_INSTANCE)();
-}
-//! Defines name of the function that should be implemented in a child plugin
-#define CREATE_COMMUNICATOR_FUNCTION_NAME "CreateCommunicator"
-
-#endif
diff --git a/tools/TInspectorAPI/TInspectorAPI_PluginParameters.cxx b/tools/TInspectorAPI/TInspectorAPI_PluginParameters.cxx
deleted file mode 100644
index 09b6eb3ef7..0000000000
--- a/tools/TInspectorAPI/TInspectorAPI_PluginParameters.cxx
+++ /dev/null
@@ -1,295 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TInspectorAPI_PluginParameters.hxx>
-
-IMPLEMENT_STANDARD_RTTIEXT(TInspectorAPI_PluginParameters, Standard_Transient)
-
-// =======================================================================
-// function : SetParameters
-// purpose :
-// =======================================================================
-void TInspectorAPI_PluginParameters::SetParameters(
-  const TCollection_AsciiString&                      thePluginName,
-  const NCollection_List<Handle(Standard_Transient)>& theParameters,
-  const Standard_Boolean&)
-{
-  if (theParameters.Size() > 0)
-    myParameters.Bind(thePluginName, theParameters);
-  else
-    myParameters.UnBind(thePluginName);
-}
-
-// =======================================================================
-// function : AddFileName
-// purpose :
-// =======================================================================
-void TInspectorAPI_PluginParameters::AddFileName(const TCollection_AsciiString& thePluginName,
-                                                 const TCollection_AsciiString& theFileName)
-{
-  if (myFileNames.IsBound(thePluginName))
-    myFileNames.ChangeFind(thePluginName).Append(theFileName);
-  else
-  {
-    NCollection_List<TCollection_AsciiString> aNames;
-    aNames.Append(theFileName);
-    myFileNames.Bind(thePluginName, aNames);
-  }
-}
-
-// =======================================================================
-// function : SetFileNames
-// purpose :
-// =======================================================================
-void TInspectorAPI_PluginParameters::SetFileNames(
-  const TCollection_AsciiString&                   thePluginName,
-  const NCollection_List<TCollection_AsciiString>& theFileNames)
-{
-  if (theFileNames.Size() > 0)
-    myFileNames.Bind(thePluginName, theFileNames);
-  else
-    myFileNames.UnBind(thePluginName);
-}
-
-// =======================================================================
-// function : SetSelectedNames
-// purpose :
-// =======================================================================
-void TInspectorAPI_PluginParameters::SetSelectedNames(
-  const TCollection_AsciiString&                   thePluginName,
-  const NCollection_List<TCollection_AsciiString>& theItemNames)
-{
-  mySelectedItemNames.Bind(thePluginName, theItemNames);
-}
-
-// =======================================================================
-// function : SetSelected
-// purpose :
-// =======================================================================
-void TInspectorAPI_PluginParameters::SetSelected(
-  const TCollection_AsciiString&                      thePluginName,
-  const NCollection_List<Handle(Standard_Transient)>& theObjects)
-{
-  if (theObjects.Size() > 0)
-    mySelectedObjects.Bind(thePluginName, theObjects);
-  else
-    mySelectedObjects.UnBind(thePluginName);
-}
-
-// =======================================================================
-// function : FindParameters
-// purpose :
-// =======================================================================
-bool TInspectorAPI_PluginParameters::FindParameters(const TCollection_AsciiString& thePluginName)
-{
-  return myParameters.IsBound(thePluginName);
-}
-
-// =======================================================================
-// function : Parameters
-// purpose :
-// =======================================================================
-const NCollection_List<Handle(Standard_Transient)>& TInspectorAPI_PluginParameters::Parameters(
-  const TCollection_AsciiString& thePluginName)
-{
-  return myParameters.Find(thePluginName);
-}
-
-// =======================================================================
-// function : FindFileNames
-// purpose :
-// =======================================================================
-bool TInspectorAPI_PluginParameters::FindFileNames(const TCollection_AsciiString& thePluginName)
-{
-  return myFileNames.IsBound(thePluginName);
-}
-
-// =======================================================================
-// function : FileNames
-// purpose :
-// =======================================================================
-const NCollection_List<TCollection_AsciiString>& TInspectorAPI_PluginParameters::FileNames(
-  const TCollection_AsciiString& thePluginName)
-{
-  return myFileNames.Find(thePluginName);
-}
-
-// =======================================================================
-// function : FindSelectedNames
-// purpose :
-// =======================================================================
-bool TInspectorAPI_PluginParameters::FindSelectedNames(const TCollection_AsciiString& thePluginName)
-{
-  return mySelectedItemNames.IsBound(thePluginName);
-}
-
-// =======================================================================
-// function : GetSelectedNames
-// purpose :
-// =======================================================================
-const NCollection_List<TCollection_AsciiString>& TInspectorAPI_PluginParameters::GetSelectedNames(
-  const TCollection_AsciiString& thePluginName)
-{
-  return mySelectedItemNames.Find(thePluginName);
-}
-
-// =======================================================================
-// function : GetSelectedObjects
-// purpose :
-// =======================================================================
-Standard_Boolean TInspectorAPI_PluginParameters::GetSelectedObjects(
-  const TCollection_AsciiString&                thePluginName,
-  NCollection_List<Handle(Standard_Transient)>& theObjects)
-{
-  return mySelectedObjects.Find(thePluginName, theObjects);
-}
-
-// =======================================================================
-// function : toString
-// purpose :
-// =======================================================================
-TCollection_AsciiString toString(const TopLoc_Location& theLocation)
-{
-  TCollection_AsciiString anInfo;
-  gp_Trsf                 aTrsf = theLocation.Transformation();
-  for (int aRowId = 1; aRowId <= 3; aRowId++)
-  {
-    if (!anInfo.IsEmpty())
-      anInfo += " ";
-    for (int aColumnId = 1; aColumnId <= 4; aColumnId++)
-    {
-      if (aColumnId > 1)
-        anInfo += ",";
-      anInfo += TCollection_AsciiString(aTrsf.Value(aRowId, aColumnId));
-    }
-  }
-  return anInfo;
-}
-
-// =======================================================================
-// function : ParametersToString
-// purpose :
-// =======================================================================
-TCollection_AsciiString TInspectorAPI_PluginParameters::ParametersToString(
-  const TopoDS_Shape& theShape)
-{
-  const TopLoc_Location&  aLocation    = theShape.Location();
-  TCollection_AsciiString aLocationStr = toString(aLocation);
-
-  TopAbs_Orientation anOrientation = theShape.Orientation();
-  Standard_SStream   aSStream;
-  TopAbs::Print(anOrientation, aSStream);
-  return TCollection_AsciiString(aSStream.str().c_str()) + ":" + aLocationStr;
-}
-
-// =======================================================================
-// function : fromString
-// purpose :
-// =======================================================================
-TopLoc_Location fromString(const TCollection_AsciiString& theValue)
-{
-  NCollection_Mat4<Standard_Real> aValues;
-
-  TCollection_AsciiString aCurrentString = theValue;
-  Standard_Integer        aPosition      = aCurrentString.Search(" ");
-  if (aPosition < 0)
-    return TopLoc_Location();
-  TCollection_AsciiString aTailString = aCurrentString.Split(aPosition);
-  Standard_Integer        aRow        = 0;
-  while (!aCurrentString.IsEmpty())
-  {
-    TCollection_AsciiString aValueString = aCurrentString;
-    aPosition                            = aValueString.Search(",");
-    if (aPosition < 0)
-      break;
-    aCurrentString           = aValueString.Split(aPosition);
-    Standard_Integer aColumn = 0;
-    while (!aValueString.IsEmpty())
-    {
-      aPosition = aCurrentString.Search(" ");
-      if (aPosition > 0)
-        aValueString.Split(aValueString.Length() - 1);
-
-      aValues.SetValue(aRow, aColumn, aValueString.RealValue());
-      aColumn++;
-      if (aCurrentString.IsEmpty())
-        break;
-      aValueString = aCurrentString;
-      aPosition    = aValueString.Search(",");
-      if (aPosition < 0)
-      {
-        aValueString   = aCurrentString;
-        aCurrentString = TCollection_AsciiString();
-      }
-      else
-        aCurrentString = aValueString.Split(aPosition);
-    }
-    if (aTailString.IsEmpty())
-      break;
-    aCurrentString = aTailString;
-    aPosition      = aCurrentString.Search(" ");
-    if (aPosition < 0)
-    {
-      aCurrentString = aTailString;
-      aTailString    = TCollection_AsciiString();
-    }
-    else
-      aTailString = aCurrentString.Split(aPosition);
-    aRow++;
-  }
-
-  // if (aValues.Rows() != 3 || aValues.Cols() != 4)
-  //   return TopLoc_Location();
-
-  gp_Trsf aTrsf;
-  aTrsf.SetValues(aValues.GetValue(0, 0),
-                  aValues.GetValue(0, 1),
-                  aValues.GetValue(0, 2),
-                  aValues.GetValue(0, 3),
-                  aValues.GetValue(1, 0),
-                  aValues.GetValue(1, 1),
-                  aValues.GetValue(1, 2),
-                  aValues.GetValue(1, 3),
-                  aValues.GetValue(2, 0),
-                  aValues.GetValue(2, 1),
-                  aValues.GetValue(2, 2),
-                  aValues.GetValue(2, 3));
-  return TopLoc_Location(aTrsf);
-}
-
-// =======================================================================
-// function : ParametersToShape
-// purpose :
-// =======================================================================
-void TInspectorAPI_PluginParameters::ParametersToShape(const TCollection_AsciiString& theValue,
-                                                       TopoDS_Shape&                  theShape)
-{
-  int                     aSeparatorPos    = theValue.Search(":");
-  TCollection_AsciiString anOrientationStr = theValue;
-  TCollection_AsciiString aLocationStr     = anOrientationStr.Split(aSeparatorPos);
-  // orientation
-  if (anOrientationStr.Length() < 2)
-    return;
-  anOrientationStr.Split(anOrientationStr.Length() - 1);
-
-  TopAbs_Orientation anOrientation;
-  if (!TopAbs::ShapeOrientationFromString(anOrientationStr.ToCString(), anOrientation))
-    return;
-  // location
-  TopLoc_Location aLocation = fromString(aLocationStr);
-
-  theShape.Location(aLocation);
-  theShape.Orientation(anOrientation);
-}
diff --git a/tools/TInspectorAPI/TInspectorAPI_PluginParameters.hxx b/tools/TInspectorAPI/TInspectorAPI_PluginParameters.hxx
deleted file mode 100644
index 9984378f58..0000000000
--- a/tools/TInspectorAPI/TInspectorAPI_PluginParameters.hxx
+++ /dev/null
@@ -1,170 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TInspectorAPI_PluginParameters_H
-#define TInspectorAPI_PluginParameters_H
-
-#include <NCollection_DataMap.hxx>
-#include <NCollection_List.hxx>
-#include <Standard_Transient.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <TopoDS_Shape.hxx>
-
-#include <inspector/TInspectorAPI_PreferencesDataMap.hxx>
-
-//! The container of parameters for all possible plugins. It stores list of parameters for each
-//! plugin, even it was not be loaded yet. There is a map of plugin name into plugin parameters. The
-//! parameters may be:
-//! - child of Standard_Transient
-//! - file name to be opened by the plugin
-class TInspectorAPI_PluginParameters : public Standard_Transient
-{
-public:
-  //! Constructs the container.
-  Standard_EXPORT TInspectorAPI_PluginParameters() {}
-
-  //! Destructor
-  Standard_EXPORT virtual ~TInspectorAPI_PluginParameters() {}
-
-  //! Stores the parameters for plugin
-  //! \param thePluginName a plugin name
-  //! \param theParameters a list of parameters
-  //! \param theToActivatePlugin a state whether the plugin should be immediately activated, to be
-  //! used in a heir
-  Standard_EXPORT virtual void SetParameters(
-    const TCollection_AsciiString&                      thePluginName,
-    const NCollection_List<Handle(Standard_Transient)>& theParameters,
-    const Standard_Boolean&                             theToActivatePlugin = Standard_False);
-
-  //! Adds a file name for the plugin
-  //! \param thePluginName a plugin name
-  //! \param theFileName a name
-  Standard_EXPORT void AddFileName(const TCollection_AsciiString& thePluginName,
-                                   const TCollection_AsciiString& theFileName);
-
-  //! Sets file names for the plugin
-  //! \param thePluginName a plugin name
-  //! \param theFileNames container of names
-  Standard_EXPORT void SetFileNames(const TCollection_AsciiString&                   thePluginName,
-                                    const NCollection_List<TCollection_AsciiString>& theFileNames);
-
-  //! Sets a name of item to be selected in the plugin
-  //! \param thePluginName a plugin name
-  //! \param theItemNames a container of names to be selected
-  Standard_EXPORT void SetSelectedNames(
-    const TCollection_AsciiString&                   thePluginName,
-    const NCollection_List<TCollection_AsciiString>& theItemNames);
-
-  //! Sets objects to be selected in the plugin
-  //! \param thePluginName a plugin name
-  //! \param theObjects an objects
-  Standard_EXPORT void SetSelected(const TCollection_AsciiString& thePluginName,
-                                   const NCollection_List<Handle(Standard_Transient)>& theObjects);
-
-  //! Returns true if there are parameters set for the given plugin
-  //! \param thePluginName a plugin name
-  //! \return boolean result
-  Standard_EXPORT bool FindParameters(const TCollection_AsciiString& thePluginName);
-
-  //! Returns parameters set for the given plugin
-  //! \param thePluginName a plugin name
-  //! \return container of objects
-  Standard_EXPORT const NCollection_List<Handle(Standard_Transient)>& Parameters(
-    const TCollection_AsciiString& thePluginName);
-
-  //! Returns true if there are file names set for the given plugin
-  //! \param thePluginName a plugin name
-  //! \return boolean result
-  Standard_EXPORT bool FindFileNames(const TCollection_AsciiString& thePluginName);
-
-  //! Returns file names set for the given plugin
-  //! \param thePluginName a plugin name
-  //! \return container of names
-  Standard_EXPORT const NCollection_List<TCollection_AsciiString>& FileNames(
-    const TCollection_AsciiString& thePluginName);
-
-  //! Returns true if there are file names set for the given plugin
-  //! \param thePluginName a plugin name
-  //! \return boolean result
-  Standard_EXPORT bool FindSelectedNames(const TCollection_AsciiString& thePluginName);
-
-  //! Returns name to be selected in the plugin
-  //! \param thePluginName a plugin name
-  //! \return container of names
-  Standard_EXPORT const NCollection_List<TCollection_AsciiString>& GetSelectedNames(
-    const TCollection_AsciiString& thePluginName);
-
-  //! Returns objects set for the given plugin
-  //! \param thePluginName a plugin name
-  //! \return container of objects
-  Standard_EXPORT Standard_Boolean
-    GetSelectedObjects(const TCollection_AsciiString&                thePluginName,
-                       NCollection_List<Handle(Standard_Transient)>& theObjects);
-
-  //! Sets path to a directory for temporary plugin files
-  //! \param thePath a path
-  virtual void SetTemporaryDirectory(const TCollection_AsciiString& thePath)
-  {
-    myTemporaryDirectory = thePath;
-  }
-
-  //! Returns path to a directory for temporary plugin files
-  //! \return path
-  TCollection_AsciiString GetTemporaryDirectory() const { return myTemporaryDirectory; }
-
-  //! Returns plugin preferences
-  //! \param thePluginName a plugin name
-  Standard_EXPORT virtual void GetPreferences(const TCollection_AsciiString&    thePluginName,
-                                              TInspectorAPI_PreferencesDataMap& theItem) = 0;
-
-  //! Stores plugin preferences
-  //! \param thePluginName a plugin name
-  //! \theItem container of plugin preferences values in form: <name, value>
-  Standard_EXPORT virtual void SetPreferences(const TCollection_AsciiString&          thePluginName,
-                                              const TInspectorAPI_PreferencesDataMap& theItem) = 0;
-
-  //! Stores plugin preferences into a preferences file
-  Standard_EXPORT virtual void StorePreferences() = 0;
-
-  //! Converts a Shape parameters excepting TShape into a string value
-  //! \param theShape processed shape
-  //! \return string instance
-  Standard_EXPORT static TCollection_AsciiString ParametersToString(const TopoDS_Shape& theShape);
-
-  //! Converts a Shape parameters excepting TShape into a string value
-  //! \param theValue parameters string value (without TShape information)
-  //! \param theShape processed shape
-  Standard_EXPORT static void ParametersToShape(const TCollection_AsciiString& theValue,
-                                                TopoDS_Shape&                  theShape);
-
-  DEFINE_STANDARD_RTTIEXT(TInspectorAPI_PluginParameters, Standard_Transient)
-private:
-  //! container of parameters
-  NCollection_DataMap<TCollection_AsciiString, NCollection_List<Handle(Standard_Transient)>>
-    myParameters;
-  //! container of names
-  NCollection_DataMap<TCollection_AsciiString, NCollection_List<TCollection_AsciiString>>
-    myFileNames;
-  //! container of select item names
-  NCollection_DataMap<TCollection_AsciiString, NCollection_List<TCollection_AsciiString>>
-    mySelectedItemNames;
-  //! container of select objects
-  NCollection_DataMap<TCollection_AsciiString, NCollection_List<Handle(Standard_Transient)>>
-    mySelectedObjects;
-  //! temporary directory for saving plugin preferences
-  TCollection_AsciiString myTemporaryDirectory;
-};
-
-#endif
diff --git a/tools/TInspectorAPI/TInspectorAPI_PreferencesDataMap.hxx b/tools/TInspectorAPI/TInspectorAPI_PreferencesDataMap.hxx
deleted file mode 100644
index 8c7040731a..0000000000
--- a/tools/TInspectorAPI/TInspectorAPI_PreferencesDataMap.hxx
+++ /dev/null
@@ -1,27 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TInspectorAPI_PreferencesDataMap_H
-#define TInspectorAPI_PreferencesDataMap_H
-
-#include <NCollection_DataMap.hxx>
-#include <TCollection_AsciiString.hxx>
-
-typedef NCollection_DataMap<TCollection_AsciiString, TCollection_AsciiString>
-  TInspectorAPI_PreferencesDataMap;
-typedef NCollection_DataMap<TCollection_AsciiString, TCollection_AsciiString>::Iterator
-  TInspectorAPI_IteratorOfPreferencesDataMap;
-
-#endif
diff --git a/tools/TInspectorEXE/CMakeLists.txt b/tools/TInspectorEXE/CMakeLists.txt
deleted file mode 100644
index 2ebcc6e40a..0000000000
--- a/tools/TInspectorEXE/CMakeLists.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-project(TInspectorEXE)
-
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-set (EXECUTABLE_PROJECT ON)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit)
-unset (EXECUTABLE_PROJECT)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-
-# This project depends from Qt.
-# Qt 5.11.2 is incompatible with c++20.
-# So, it should be compiled with c++11/c++14 language standard.
-set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
diff --git a/tools/TInspectorEXE/EXTERNLIB b/tools/TInspectorEXE/EXTERNLIB
deleted file mode 100644
index 83dde91d4d..0000000000
--- a/tools/TInspectorEXE/EXTERNLIB
+++ /dev/null
@@ -1,4 +0,0 @@
-TKTInspector
-TKTInspectorAPI
-TKernel
-CSF_QT
\ No newline at end of file
diff --git a/tools/TInspectorEXE/FILES b/tools/TInspectorEXE/FILES
deleted file mode 100644
index 44a1d285c2..0000000000
--- a/tools/TInspectorEXE/FILES
+++ /dev/null
@@ -1,2 +0,0 @@
-TInspectorEXE.cxx
-EXTERNLIB
diff --git a/tools/TInspectorEXE/TInspectorEXE.cxx b/tools/TInspectorEXE/TInspectorEXE.cxx
deleted file mode 100644
index 40ccab2257..0000000000
--- a/tools/TInspectorEXE/TInspectorEXE.cxx
+++ /dev/null
@@ -1,154 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TInspector_OpenFileDialog.hxx>
-#include <inspector/TInspector_OpenButton.hxx>
-
-#include <inspector/TInspector_Communicator.hxx>
-
-#include <Message.hxx>
-#include <Message_Report.hxx>
-#include <OSD_Environment.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAction>
-#include <QApplication>
-#include <QDir>
-#include <QMainWindow>
-#include <QToolBar>
-#include <Standard_WarningsRestore.hxx>
-
-#include <set>
-
-// =======================================================================
-// function : fileNameInDataDir
-// purpose :
-// =======================================================================
-TCollection_AsciiString fileNameInDataDir(const TCollection_AsciiString& theEnvironmentDir,
-                                          const TCollection_AsciiString& theName)
-{
-  OSD_Environment anEnvironment(theEnvironmentDir);
-
-  TCollection_AsciiString aFileName = anEnvironment.Value();
-  aFileName += TCollection_AsciiString("/") + theName;
-
-  return aFileName;
-}
-
-// =======================================================================
-// function : setPluginSampleDirectory
-// purpose :
-// =======================================================================
-void setPluginSampleDirectory(const TCollection_AsciiString& theName,
-                              TInspector_Communicator*       theCommunicator,
-                              TInspector_OpenButton*         theButtonControl)
-{
-  QStringList aRecentlyOpenedFiles;
-  TInspector_OpenFileDialog::GetPluginRecentlyOpenedFiles(theName,
-                                                          theCommunicator,
-                                                          aRecentlyOpenedFiles);
-  TCollection_AsciiString aFileName, anAdditionalFileName;
-  if (!aRecentlyOpenedFiles.isEmpty())
-    aFileName = TCollection_AsciiString(aRecentlyOpenedFiles.last().toUtf8().data());
-  if (aFileName.IsEmpty())
-  {
-    if (theName.IsEqual("TKDFBrowser"))
-      aFileName = fileNameInDataDir("CSF_OCCTDataPath", "step/screw.step");
-    else if (theName.IsEqual("TKShapeView"))
-      aFileName = fileNameInDataDir("CSF_OCCTDataPath", "occ/hammer.brep");
-    else if (theName.IsEqual("TKVInspector"))
-    {
-      aFileName            = fileNameInDataDir("CSF_OCCTDataPath", "occ/face1.brep");
-      anAdditionalFileName = fileNameInDataDir("CSF_OCCTDataPath", "occ/face2.brep");
-    }
-    aRecentlyOpenedFiles.append(aFileName.ToCString());
-    if (!anAdditionalFileName.IsEmpty())
-      aRecentlyOpenedFiles.append(anAdditionalFileName.ToCString());
-  }
-  theCommunicator->OpenFile(theName, aFileName.ToCString());
-  if (!anAdditionalFileName.IsEmpty())
-    theCommunicator->OpenFile(theName, anAdditionalFileName);
-
-  theButtonControl->SetPluginRecentlyOpenedFiles(theName, aRecentlyOpenedFiles);
-}
-
-// =======================================================================
-// function : main
-// purpose :
-// =======================================================================
-int main(int argc, char** argv)
-{
-#if QT_VERSION > 0x050000
-  TCollection_AsciiString aPlugindsDirName;
-  if (TInspector_Communicator::PluginsDir(aPlugindsDirName))
-    QApplication::addLibraryPath(aPlugindsDirName.ToCString());
-#endif
-  QApplication anApp(argc, argv);
-
-  std::set<TCollection_AsciiString> aPlugins;
-  for (int anArgId = 1; anArgId < argc; anArgId++)
-  {
-    if (!strcmp(argv[anArgId], "dfbrowser"))
-      aPlugins.insert("TKDFBrowser");
-
-    if (!strcmp(argv[anArgId], "shapeview"))
-      aPlugins.insert("TKShapeView");
-
-    if (!strcmp(argv[anArgId], "vinspector"))
-      aPlugins.insert("TKVInspector");
-
-    if (!strcmp(argv[anArgId], "messageview"))
-      aPlugins.insert("TKMessageView");
-  }
-  NCollection_List<Handle(Standard_Transient)> aParameters;
-
-  // Create tool communicator
-  TInspector_Communicator* aCommunicator = TInspector_OpenFileDialog::Communicator();
-  if (!aCommunicator)
-  {
-    std::cout << "Communicator can not be created" << std::endl;
-    return 0;
-  }
-
-  TInspector_OpenButton*  aButtonControl = new TInspector_OpenButton(0);
-  TCollection_AsciiString anActivatedPluginName;
-  if (aPlugins.empty())
-  {
-    aPlugins.insert("TKDFBrowser");
-    aPlugins.insert("TKShapeView");
-    aPlugins.insert("TKVInspector");
-    aPlugins.insert("TKMessageView");
-
-    anActivatedPluginName = "TKDFBrowser";
-  }
-  else
-    anActivatedPluginName = *aPlugins.rbegin();
-
-  for (std::set<TCollection_AsciiString>::const_iterator aPluginIt = aPlugins.begin();
-       aPluginIt != aPlugins.end();
-       aPluginIt++)
-  {
-    TCollection_AsciiString aName = *aPluginIt;
-    aCommunicator->RegisterPlugin(aName);
-    aCommunicator->Init(aName, aParameters);
-    setPluginSampleDirectory(aName, aCommunicator, aButtonControl);
-  }
-  aCommunicator->Activate(anActivatedPluginName);
-
-  aCommunicator->SetVisible(true);
-  aCommunicator->SetOpenButton(aButtonControl->StartButton());
-
-  return anApp.exec();
-}
diff --git a/tools/TKDFBrowser/CMakeLists.txt b/tools/TKDFBrowser/CMakeLists.txt
deleted file mode 100644
index a2a5445156..0000000000
--- a/tools/TKDFBrowser/CMakeLists.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-project(TKDFBrowser)
-
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-
-# This project depends from Qt.
-# Qt 5.11.2 is incompatible with c++20.
-# So, it should be compiled with c++11/c++14 language standard.
-set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
diff --git a/tools/TKDFBrowser/EXTERNLIB b/tools/TKDFBrowser/EXTERNLIB
deleted file mode 100644
index 37812a6ca3..0000000000
--- a/tools/TKDFBrowser/EXTERNLIB
+++ /dev/null
@@ -1,27 +0,0 @@
-TKBin
-TKBinL
-TKBinXCAF
-TKCAF
-TKCDF
-TKG3d
-TKernel
-TKLCAF
-TKService
-TKStd
-TKStdL
-TKVCAF
-TKView
-TKXSBase
-TKXCAF
-TKDESTEP
-TKXmlXCAF
-TKXml
-TKXmlL
-TKMath
-TKBRep
-TKOpenGl
-TKV3d
-TKTInspectorAPI
-TKTreeModel
-TKShapeView
-CSF_QT
\ No newline at end of file
diff --git a/tools/TKDFBrowser/FILES b/tools/TKDFBrowser/FILES
deleted file mode 100644
index ca4f0e567b..0000000000
--- a/tools/TKDFBrowser/FILES
+++ /dev/null
@@ -1,2 +0,0 @@
-EXTERNLIB
-PACKAGES
diff --git a/tools/TKDFBrowser/PACKAGES b/tools/TKDFBrowser/PACKAGES
deleted file mode 100644
index 487d7241bf..0000000000
--- a/tools/TKDFBrowser/PACKAGES
+++ /dev/null
@@ -1,2 +0,0 @@
-DFBrowserPane
-DFBrowser
diff --git a/tools/TKMessageModel/CMakeLists.txt b/tools/TKMessageModel/CMakeLists.txt
deleted file mode 100644
index a6ef727d9e..0000000000
--- a/tools/TKMessageModel/CMakeLists.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-project(TKMessageModel)
-
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-
-# This project depends from Qt.
-# Qt 5.11.2 is incompatible with c++20.
-# So, it should be compiled with c++11/c++14 language standard.
-set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
diff --git a/tools/TKMessageModel/EXTERNLIB b/tools/TKMessageModel/EXTERNLIB
deleted file mode 100644
index 54b02742af..0000000000
--- a/tools/TKMessageModel/EXTERNLIB
+++ /dev/null
@@ -1,10 +0,0 @@
-TKMath
-TKBin
-TKBRep
-TKGeomBase
-TKG3d
-TKTInspectorAPI
-TKService
-TKTopAlgo
-TKTreeModel
-CSF_QT
diff --git a/tools/TKMessageModel/FILES b/tools/TKMessageModel/FILES
deleted file mode 100644
index ca4f0e567b..0000000000
--- a/tools/TKMessageModel/FILES
+++ /dev/null
@@ -1,2 +0,0 @@
-EXTERNLIB
-PACKAGES
diff --git a/tools/TKMessageModel/PACKAGES b/tools/TKMessageModel/PACKAGES
deleted file mode 100644
index 9021fbf297..0000000000
--- a/tools/TKMessageModel/PACKAGES
+++ /dev/null
@@ -1 +0,0 @@
-MessageModel
diff --git a/tools/TKMessageView/CMakeLists.txt b/tools/TKMessageView/CMakeLists.txt
deleted file mode 100644
index ee948ecc72..0000000000
--- a/tools/TKMessageView/CMakeLists.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-project(TKMessageView)
-
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-
-# This project depends from Qt.
-# Qt 5.11.2 is incompatible with c++20.
-# So, it should be compiled with c++11/c++14 language standard.
-set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
diff --git a/tools/TKMessageView/EXTERNLIB b/tools/TKMessageView/EXTERNLIB
deleted file mode 100644
index 84e5b5d8b5..0000000000
--- a/tools/TKMessageView/EXTERNLIB
+++ /dev/null
@@ -1,13 +0,0 @@
-TKTInspectorAPI
-TKMath
-TKMessageModel
-TKBin
-TKBRep
-TKGeomBase
-TKG3d
-TKService
-TKTopAlgo
-TKTreeModel
-TKView
-TKXml
-CSF_QT
diff --git a/tools/TKMessageView/FILES b/tools/TKMessageView/FILES
deleted file mode 100644
index ca4f0e567b..0000000000
--- a/tools/TKMessageView/FILES
+++ /dev/null
@@ -1,2 +0,0 @@
-EXTERNLIB
-PACKAGES
diff --git a/tools/TKMessageView/PACKAGES b/tools/TKMessageView/PACKAGES
deleted file mode 100644
index 46a67b229d..0000000000
--- a/tools/TKMessageView/PACKAGES
+++ /dev/null
@@ -1 +0,0 @@
-MessageView
diff --git a/tools/TKShapeView/CMakeLists.txt b/tools/TKShapeView/CMakeLists.txt
deleted file mode 100644
index c4dd2e935b..0000000000
--- a/tools/TKShapeView/CMakeLists.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-project(TKShapeView)
-
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-
-# This project depends from Qt.
-# Qt 5.11.2 is incompatible with c++20.
-# So, it should be compiled with c++11/c++14 language standard.
-set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
diff --git a/tools/TKShapeView/EXTERNLIB b/tools/TKShapeView/EXTERNLIB
deleted file mode 100644
index b9f14514bc..0000000000
--- a/tools/TKShapeView/EXTERNLIB
+++ /dev/null
@@ -1,11 +0,0 @@
-TKTInspectorAPI
-TKernel
-TKMath
-TKBRep
-TKGeomBase
-TKG3d
-TKService
-TKTreeModel
-TKV3d
-TKView
-CSF_QT
diff --git a/tools/TKShapeView/FILES b/tools/TKShapeView/FILES
deleted file mode 100644
index ca4f0e567b..0000000000
--- a/tools/TKShapeView/FILES
+++ /dev/null
@@ -1,2 +0,0 @@
-EXTERNLIB
-PACKAGES
diff --git a/tools/TKShapeView/PACKAGES b/tools/TKShapeView/PACKAGES
deleted file mode 100644
index 3c39334c4d..0000000000
--- a/tools/TKShapeView/PACKAGES
+++ /dev/null
@@ -1 +0,0 @@
-ShapeView
diff --git a/tools/TKTInspector/CMakeLists.txt b/tools/TKTInspector/CMakeLists.txt
deleted file mode 100644
index 23389b74cd..0000000000
--- a/tools/TKTInspector/CMakeLists.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-project(TKTInspector)
-
-set (INSTALL_API ON)
-
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-
-# This project depends from Qt.
-# Qt 5.11.2 is incompatible with c++20.
-# So, it should be compiled with c++11/c++14 language standard.
-set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
-
-unset (INSTALL_API)
diff --git a/tools/TKTInspector/EXTERNLIB b/tools/TKTInspector/EXTERNLIB
deleted file mode 100644
index 4570f90e71..0000000000
--- a/tools/TKTInspector/EXTERNLIB
+++ /dev/null
@@ -1,4 +0,0 @@
-TKernel
-TKTInspectorAPI
-TKTreeModel
-CSF_QT
\ No newline at end of file
diff --git a/tools/TKTInspector/FILES b/tools/TKTInspector/FILES
deleted file mode 100644
index ca4f0e567b..0000000000
--- a/tools/TKTInspector/FILES
+++ /dev/null
@@ -1,2 +0,0 @@
-EXTERNLIB
-PACKAGES
diff --git a/tools/TKTInspector/PACKAGES b/tools/TKTInspector/PACKAGES
deleted file mode 100644
index 7f1c640da6..0000000000
--- a/tools/TKTInspector/PACKAGES
+++ /dev/null
@@ -1 +0,0 @@
-TInspector
diff --git a/tools/TKTInspectorAPI/CMakeLists.txt b/tools/TKTInspectorAPI/CMakeLists.txt
deleted file mode 100644
index 06b3798301..0000000000
--- a/tools/TKTInspectorAPI/CMakeLists.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-project(TKTInspectorAPI)
-
-SET (TOOL_API_LIBRARY ON)
-
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-
-# This project depends from Qt.
-# Qt 5.11.2 is incompatible with c++20.
-# So, it should be compiled with c++11/c++14 language standard.
-set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
-
-UNSET (TOOL_API_LIBRARY)
diff --git a/tools/TKTInspectorAPI/EXTERNLIB b/tools/TKTInspectorAPI/EXTERNLIB
deleted file mode 100644
index 0e517c2551..0000000000
--- a/tools/TKTInspectorAPI/EXTERNLIB
+++ /dev/null
@@ -1,8 +0,0 @@
-TKG3d
-TKernel
-TKLCAF
-TKMath
-TKBRep
-TKTopAlgo
-TKPrim
-TKV3d
diff --git a/tools/TKTInspectorAPI/FILES b/tools/TKTInspectorAPI/FILES
deleted file mode 100644
index ca4f0e567b..0000000000
--- a/tools/TKTInspectorAPI/FILES
+++ /dev/null
@@ -1,2 +0,0 @@
-EXTERNLIB
-PACKAGES
diff --git a/tools/TKTInspectorAPI/PACKAGES b/tools/TKTInspectorAPI/PACKAGES
deleted file mode 100644
index 72bf985bde..0000000000
--- a/tools/TKTInspectorAPI/PACKAGES
+++ /dev/null
@@ -1,3 +0,0 @@
-Convert
-TInspectorAPI
-
diff --git a/tools/TKToolsDraw/CMakeLists.txt b/tools/TKToolsDraw/CMakeLists.txt
deleted file mode 100644
index d448d51881..0000000000
--- a/tools/TKToolsDraw/CMakeLists.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-project(TKToolsDraw)
-
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-
-# This project depends from Qt.
-# Qt 5.11.2 is incompatible with c++20.
-# So, it should be compiled with c++11/c++14 language standard.
-set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
diff --git a/tools/TKToolsDraw/EXTERNLIB b/tools/TKToolsDraw/EXTERNLIB
deleted file mode 100644
index 95df12df08..0000000000
--- a/tools/TKToolsDraw/EXTERNLIB
+++ /dev/null
@@ -1,9 +0,0 @@
-TKDraw
-TKDCAF
-TKTInspector
-TKTInspectorAPI
-TKernel
-TKService
-TKV3d
-TKViewerTest
-CSF_QT
\ No newline at end of file
diff --git a/tools/TKToolsDraw/FILES b/tools/TKToolsDraw/FILES
deleted file mode 100644
index ca4f0e567b..0000000000
--- a/tools/TKToolsDraw/FILES
+++ /dev/null
@@ -1,2 +0,0 @@
-EXTERNLIB
-PACKAGES
diff --git a/tools/TKToolsDraw/PACKAGES b/tools/TKToolsDraw/PACKAGES
deleted file mode 100644
index 73d18f2157..0000000000
--- a/tools/TKToolsDraw/PACKAGES
+++ /dev/null
@@ -1 +0,0 @@
-ToolsDraw
\ No newline at end of file
diff --git a/tools/TKTreeModel/CMakeLists.txt b/tools/TKTreeModel/CMakeLists.txt
deleted file mode 100644
index 0b2d9c65eb..0000000000
--- a/tools/TKTreeModel/CMakeLists.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-project(TKTreeModel)
-
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-
-# This project depends from Qt.
-# Qt 5.11.2 is incompatible with c++20.
-# So, it should be compiled with c++11/c++14 language standard.
-set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
diff --git a/tools/TKTreeModel/EXTERNLIB b/tools/TKTreeModel/EXTERNLIB
deleted file mode 100644
index 74b7426c22..0000000000
--- a/tools/TKTreeModel/EXTERNLIB
+++ /dev/null
@@ -1,6 +0,0 @@
-TKernel
-TKMath
-TKPrim
-TKTopAlgo
-TKTInspectorAPI
-CSF_QT
\ No newline at end of file
diff --git a/tools/TKTreeModel/FILES b/tools/TKTreeModel/FILES
deleted file mode 100644
index ca4f0e567b..0000000000
--- a/tools/TKTreeModel/FILES
+++ /dev/null
@@ -1,2 +0,0 @@
-EXTERNLIB
-PACKAGES
diff --git a/tools/TKTreeModel/PACKAGES b/tools/TKTreeModel/PACKAGES
deleted file mode 100644
index b4abb9f985..0000000000
--- a/tools/TKTreeModel/PACKAGES
+++ /dev/null
@@ -1,2 +0,0 @@
-TreeModel
-ViewControl
diff --git a/tools/TKVInspector/CMakeLists.txt b/tools/TKVInspector/CMakeLists.txt
deleted file mode 100644
index cbe9037f6d..0000000000
--- a/tools/TKVInspector/CMakeLists.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-project(TKVInspector)
-
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-
-# This project depends from Qt.
-# Qt 5.11.2 is incompatible with c++20.
-# So, it should be compiled with c++11/c++14 language standard.
-set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
diff --git a/tools/TKVInspector/EXTERNLIB b/tools/TKVInspector/EXTERNLIB
deleted file mode 100644
index 8b42f7d545..0000000000
--- a/tools/TKVInspector/EXTERNLIB
+++ /dev/null
@@ -1,12 +0,0 @@
-TKTInspectorAPI
-TKBRep
-TKG3d
-TKernel
-TKMath
-TKV3d
-TKView
-TKService
-TKTopAlgo
-TKTreeModel
-TKBO
-CSF_QT
\ No newline at end of file
diff --git a/tools/TKVInspector/FILES b/tools/TKVInspector/FILES
deleted file mode 100644
index ca4f0e567b..0000000000
--- a/tools/TKVInspector/FILES
+++ /dev/null
@@ -1,2 +0,0 @@
-EXTERNLIB
-PACKAGES
diff --git a/tools/TKVInspector/PACKAGES b/tools/TKVInspector/PACKAGES
deleted file mode 100644
index 989972a256..0000000000
--- a/tools/TKVInspector/PACKAGES
+++ /dev/null
@@ -1 +0,0 @@
-VInspector
\ No newline at end of file
diff --git a/tools/TKView/CMakeLists.txt b/tools/TKView/CMakeLists.txt
deleted file mode 100644
index d630f5bbe3..0000000000
--- a/tools/TKView/CMakeLists.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-project(TKView)
-
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit)
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)
-
-# This project depends from Qt.
-# Qt 5.11.2 is incompatible with c++20.
-# So, it should be compiled with c++11/c++14 language standard.
-set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
diff --git a/tools/TKView/EXTERNLIB b/tools/TKView/EXTERNLIB
deleted file mode 100644
index 8cd89c728d..0000000000
--- a/tools/TKView/EXTERNLIB
+++ /dev/null
@@ -1,9 +0,0 @@
-TKBRep
-TKG3d
-TKernel
-TKMath
-TKService
-TKOpenGl
-TKV3d
-TKTInspectorAPI
-CSF_QT
\ No newline at end of file
diff --git a/tools/TKView/FILES b/tools/TKView/FILES
deleted file mode 100644
index ca4f0e567b..0000000000
--- a/tools/TKView/FILES
+++ /dev/null
@@ -1,2 +0,0 @@
-EXTERNLIB
-PACKAGES
diff --git a/tools/TKView/PACKAGES b/tools/TKView/PACKAGES
deleted file mode 100644
index 5c45e15526..0000000000
--- a/tools/TKView/PACKAGES
+++ /dev/null
@@ -1 +0,0 @@
-View
\ No newline at end of file
diff --git a/tools/ToolsDraw/FILES b/tools/ToolsDraw/FILES
deleted file mode 100644
index d8bdf8cb59..0000000000
--- a/tools/ToolsDraw/FILES
+++ /dev/null
@@ -1,2 +0,0 @@
-ToolsDraw.cxx
-ToolsDraw.hxx
diff --git a/tools/ToolsDraw/ToolsDraw.cxx b/tools/ToolsDraw/ToolsDraw.cxx
deleted file mode 100644
index 2cd8d65995..0000000000
--- a/tools/ToolsDraw/ToolsDraw.cxx
+++ /dev/null
@@ -1,467 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/ToolsDraw.hxx>
-
-#include <AIS_InteractiveContext.hxx>
-#include <BRep_Builder.hxx>
-#include <BRepTools.hxx>
-#include <DBRep.hxx>
-#include <DDocStd.hxx>
-#include <Draw.hxx>
-#include <Draw_PluginMacro.hxx>
-#include <NCollection_DataMap.hxx>
-#include <Standard_Stream.hxx>
-#include <TDocStd_Application.hxx>
-#include <TopoDS_Shape.hxx>
-#include <ViewerTest.hxx>
-#include <ViewerTest_DoubleMapOfInteractiveAndName.hxx>
-
-#include <inspector/TInspectorAPI_PluginParameters.hxx>
-#include <inspector/TInspector_Communicator.hxx>
-
-#if !defined(_WIN32)
-extern ViewerTest_DoubleMapOfInteractiveAndName& GetMapOfAIS();
-#else
-Standard_EXPORT ViewerTest_DoubleMapOfInteractiveAndName& GetMapOfAIS();
-#endif
-
-static TInspector_Communicator* MyCommunicator;
-
-// =======================================================================
-// function : Communicator
-// purpose  : defines plugin library name by the command argument
-// =======================================================================
-TInspector_Communicator* ToolsDraw::Communicator()
-{
-  return MyCommunicator;
-}
-
-// =======================================================================
-// function : convertToPluginName
-// purpose  : defines plugin library name by the command argument
-// =======================================================================
-Standard_Boolean convertToPluginName(const TCollection_AsciiString& theArgument,
-                                     TCollection_AsciiString&       thePluginName)
-{
-  TCollection_AsciiString anArgument = theArgument;
-  anArgument.LowerCase();
-
-  if (anArgument == "dfbrowser")
-  {
-    thePluginName = "TKDFBrowser";
-    return Standard_True;
-  }
-  else if (anArgument == "shapeview")
-  {
-    thePluginName = "TKShapeView";
-    return Standard_True;
-  }
-  else if (anArgument == "vinspector")
-  {
-    thePluginName = "TKVInspector";
-    return Standard_True;
-  }
-  else if (anArgument == "messageview")
-  {
-    thePluginName = "TKMessageView";
-    return Standard_True;
-  }
-
-  return Standard_False;
-}
-
-// =======================================================================
-// function : getArgumentPlugins
-// purpose  : fills container of plugin names by the next following plugin names
-// =======================================================================
-void getArgumentPlugins(Standard_Integer                           theArgsNb,
-                        const char**                               theArgs,
-                        Standard_Integer&                          theIt,
-                        NCollection_List<TCollection_AsciiString>& thePlugins)
-{
-  while (theIt != theArgsNb)
-  {
-    TCollection_AsciiString aPluginName;
-    if (convertToPluginName(theArgs[theIt], aPluginName))
-    {
-      if (!thePlugins.Contains(aPluginName))
-        thePlugins.Append(aPluginName);
-    }
-    else
-    {
-      break;
-    }
-    theIt++;
-  }
-  theIt--; // the last not processed parameter is the next argument
-}
-
-// =======================================================================
-// function : tinspector
-// purpose  :
-// =======================================================================
-static int tinspector(Draw_Interpretor& di, Standard_Integer theArgsNb, const char** theArgs)
-{
-  if (theArgsNb < 1)
-  {
-    std::cout << "Error: wrong number of arguments.\n";
-    return 1;
-  }
-
-  // parse command arguments
-  NCollection_List<TCollection_AsciiString> aPlugins;
-  NCollection_DataMap<TCollection_AsciiString, NCollection_List<Handle(Standard_Transient)>>
-                                                                        aParameters;
-  NCollection_DataMap<TCollection_AsciiString, TCollection_AsciiString> anOpenFileParameters;
-  TCollection_AsciiString                                               aPluginNameToActivate;
-  Standard_Boolean aNeedToUpdateContent = Standard_False, aNeedToHideInspector = Standard_False,
-                   aNeedToShowInspector = Standard_False, aNeedToPrintState = Standard_False,
-                   aNeedDirectory = Standard_False;
-  TCollection_AsciiString aTemporaryDirectory;
-
-  NCollection_List<Handle(Standard_Transient)> aDefaultParameters;
-  TCollection_AsciiString                      aDefaultOpenFileParameter;
-
-  NCollection_List<Handle(Standard_Transient)> anObjectsToSelect;
-  NCollection_List<TCollection_AsciiString>    anItemNamesToSelect;
-
-  for (Standard_Integer anIt = 1; anIt < theArgsNb; ++anIt)
-  {
-    TCollection_AsciiString aParam(theArgs[anIt]);
-    aParam.LowerCase();
-
-    if (aParam.IsEqual("-plugins")) // [-plugins {name1 [name2] ... [name3] | all}]
-    {
-      anIt++;
-      getArgumentPlugins(theArgsNb, theArgs, anIt, aPlugins);
-    }
-    else if (aParam.IsEqual("-activate")) // [-activate name]
-    {
-      anIt++;
-      if (anIt == theArgsNb)
-      {
-        std::cout << "Empty argument of '" << aParam << "'.\n";
-        return 1;
-      }
-      TCollection_AsciiString aPluginName;
-      if (convertToPluginName(theArgs[anIt], aPluginName))
-        aPluginNameToActivate = aPluginName;
-    }
-    else if (aParam.IsEqual("-shape")) // [-shape object [name1] ... [nameN]]
-    {
-      anIt++;
-      if (anIt == theArgsNb)
-      {
-        std::cout << "Empty argument of '" << aParam << "'.\n";
-        return 1;
-      }
-      TopoDS_Shape aShape = DBRep::Get(theArgs[anIt]);
-      anIt++;
-      if (aShape.IsNull())
-      {
-        std::cout << "Wrong shape name: " << aParam << ".\n";
-        return 1;
-      }
-      NCollection_List<TCollection_AsciiString> anArgPlugins;
-      getArgumentPlugins(theArgsNb, theArgs, anIt, anArgPlugins);
-
-      if (anArgPlugins.IsEmpty())
-      {
-        aDefaultParameters.Append(aShape.TShape());
-        anItemNamesToSelect.Append(TInspectorAPI_PluginParameters::ParametersToString(aShape));
-      }
-      else
-      {
-        for (NCollection_List<TCollection_AsciiString>::Iterator anArgIt(anArgPlugins);
-             anArgIt.More();
-             anArgIt.Next())
-        {
-          NCollection_List<Handle(Standard_Transient)> aPluginParameters;
-          aParameters.Find(anArgIt.Value(), aPluginParameters);
-          aPluginParameters.Append(aShape.TShape());
-          anItemNamesToSelect.Append(TInspectorAPI_PluginParameters::ParametersToString(aShape));
-          aParameters.Bind(anArgIt.Value(), aPluginParameters);
-        }
-      }
-    }
-    else if (aParam.IsEqual("-open")) // [-open file_name [name1] ... [nameN]]
-    {
-      anIt++;
-      if (anIt == theArgsNb)
-      {
-        std::cout << "Empty argument of '" << aParam << "'.\n";
-        return 1;
-      }
-      TCollection_AsciiString aFileName(theArgs[anIt]);
-      anIt++;
-
-      NCollection_List<TCollection_AsciiString> anArgPlugins;
-      getArgumentPlugins(theArgsNb, theArgs, anIt, anArgPlugins);
-      if (anArgPlugins.IsEmpty())
-        aDefaultOpenFileParameter = aFileName;
-      else
-      {
-        for (NCollection_List<TCollection_AsciiString>::Iterator anArgIt(anArgPlugins);
-             anArgIt.More();
-             anArgIt.Next())
-        {
-          NCollection_List<Handle(Standard_Transient)> aPluginParameters;
-          aParameters.Find(anArgIt.Value(), aPluginParameters);
-          anOpenFileParameters.Bind(anArgIt.Value(), aFileName);
-        }
-      }
-    }
-    else if (aParam.IsEqual("-directory")) // [-directory path]"
-    {
-      anIt++;
-      if (anIt == theArgsNb)
-      {
-        std::cout << "Empty argument of '" << aParam << "'.\n";
-        return 1;
-      }
-      aNeedDirectory      = true;
-      aParam              = theArgs[anIt];
-      aTemporaryDirectory = aParam.IsEqual("default") ? "" : aParam;
-    }
-    else if (aParam.IsEqual("-state")) // [-state]
-    {
-      aNeedToPrintState = Standard_True;
-    }
-    else if (aParam.IsEqual("-update")) // [-update]
-    {
-      aNeedToUpdateContent = Standard_True;
-    }
-    else if (aParam.IsEqual("-select")) // [-select {name|object}]
-    {
-      anIt++;
-      if (anIt == theArgsNb)
-      {
-        std::cout << "Empty argument of '" << aParam << "'.\n";
-        return 1;
-      }
-      // search shape with given name
-      TopoDS_Shape aShape = DBRep::Get(theArgs[anIt]);
-      if (!aShape.IsNull())
-      {
-        anObjectsToSelect.Append(aShape.TShape());
-        anItemNamesToSelect.Append(TInspectorAPI_PluginParameters::ParametersToString(aShape));
-      }
-      // search prsentations with given name
-      Handle(AIS_InteractiveObject) anIO;
-      GetMapOfAIS().Find2(theArgs[anIt], anIO);
-      if (!anIO.IsNull())
-      {
-        anObjectsToSelect.Append(anIO);
-      }
-      // give parameters as a container of names
-      aParam = TCollection_AsciiString(theArgs[anIt]);
-      while (!aParam.StartsWith("-"))
-      {
-        anItemNamesToSelect.Append(aParam);
-        anIt++;
-        if (anIt >= theArgsNb)
-          break;
-        aParam = theArgs[anIt];
-      }
-      anIt--;
-    }
-    else if (aParam.IsEqual("-show")) // [-show {0|1} = 1]
-    {
-      anIt++;
-      if (anIt == theArgsNb)
-      {
-        std::cout << "Empty argument of '" << aParam << "'.\n";
-        return 1;
-      }
-      aNeedToHideInspector = Draw::Atoi(theArgs[anIt]) == 0;
-      aNeedToShowInspector = Draw::Atoi(theArgs[anIt]) > 0;
-    }
-    else
-    {
-      std::cout << "Wrong argument of command: " << aParam.ToCString() << "\n";
-      return 1;
-    }
-  }
-
-  // start inspector
-  Standard_Boolean isTInspectorCreation = !MyCommunicator;
-  if (!MyCommunicator)
-    MyCommunicator = new TInspector_Communicator();
-
-  Handle(AIS_InteractiveContext) aContext = ViewerTest::GetAISContext();
-  if (!aContext.IsNull())
-    aDefaultParameters.Append(aContext);
-
-  // Sets OCAF application into DFBrowser
-  const Handle(TDocStd_Application)& anApplication = DDocStd::GetApplication();
-  // Initialize standard document formats at creation - they should
-  // be available even if this DRAW plugin is not loaded by pload command
-  if (!anApplication.IsNull())
-  {
-    NCollection_List<Handle(Standard_Transient)> aDFBrowserParameters;
-    aParameters.Find("TKDFBrowser", aDFBrowserParameters);
-    aDFBrowserParameters.Append(anApplication);
-    aParameters.Bind("TKDFBrowser", aDFBrowserParameters);
-  }
-
-  // by starting, if the plugns were not defined, register all
-  if (isTInspectorCreation)
-  {
-    if (aPlugins.IsEmpty())
-    {
-      aPlugins.Append("TKDFBrowser");
-      aPlugins.Append("TKShapeView");
-      aPlugins.Append("TKVInspector");
-      aPlugins.Append("TKMessageView");
-    }
-    aPluginNameToActivate =
-      !aPluginNameToActivate.IsEmpty() ? aPluginNameToActivate : aPlugins.First();
-  }
-
-  // register plugin from parameters
-  for (NCollection_List<TCollection_AsciiString>::Iterator aPluginNameIt(aPlugins);
-       aPluginNameIt.More();
-       aPluginNameIt.Next())
-    MyCommunicator->RegisterPlugin(aPluginNameIt.Value());
-
-  // init all registered plugins with the default and parameters values
-  NCollection_List<TCollection_AsciiString> aRegisteredPlugins =
-    MyCommunicator->RegisteredPlugins();
-  for (NCollection_List<TCollection_AsciiString>::Iterator anIterator(aRegisteredPlugins);
-       anIterator.More();
-       anIterator.Next())
-  {
-    TCollection_AsciiString                      aPluginName = anIterator.Value();
-    NCollection_List<Handle(Standard_Transient)> aParameterValues;
-    aParameters.Find(aPluginName, aParameterValues);
-
-    for (NCollection_List<Handle(Standard_Transient)>::Iterator aDefIt(aDefaultParameters);
-         aDefIt.More();
-         aDefIt.Next())
-      aParameterValues.Append(aDefIt.Value());
-    MyCommunicator->Init(aPluginName, aParameterValues, Standard_True);
-  }
-
-  if (!aPluginNameToActivate.IsEmpty())
-    MyCommunicator->Activate(!aPluginNameToActivate.IsEmpty() ? aPluginNameToActivate
-                                                              : aPlugins.First());
-
-  if (!anOpenFileParameters.IsEmpty())
-  {
-    for (NCollection_DataMap<TCollection_AsciiString, TCollection_AsciiString>::Iterator anOpenIt(
-           anOpenFileParameters);
-         anOpenIt.More();
-         anOpenIt.Next())
-      MyCommunicator->OpenFile(anOpenIt.Key(), anOpenIt.Value());
-  }
-  else if (!aDefaultOpenFileParameter.IsEmpty()) // open file in active plugin
-    MyCommunicator->OpenFile("", aDefaultOpenFileParameter);
-
-  if (!anObjectsToSelect.IsEmpty())
-    MyCommunicator->SetSelected(anObjectsToSelect);
-
-  if (!anItemNamesToSelect.IsEmpty())
-    MyCommunicator->SetSelected(anItemNamesToSelect);
-
-  if (aNeedDirectory)
-    MyCommunicator->SetTemporaryDirectory(aTemporaryDirectory);
-
-  if (aNeedToUpdateContent)
-    MyCommunicator->UpdateContent();
-
-  if (isTInspectorCreation || aNeedToShowInspector)
-    MyCommunicator->SetVisible(true);
-
-  if (aNeedToHideInspector)
-    MyCommunicator->SetVisible(false);
-
-  if (aNeedToPrintState)
-  {
-    Standard_SStream aSStream;
-    MyCommunicator->Dump(aSStream);
-    di << aSStream << "\n";
-  }
-
-  return 0;
-}
-
-// =======================================================================
-// function : Commands
-// purpose  :
-// =======================================================================
-void ToolsDraw::Commands(Draw_Interpretor& theCommands)
-{
-  const char* group = "Tools";
-
-  // display
-  theCommands.Add(
-    "tinspector",
-    "tinspector [-plugins {name1 ... [nameN] | all}]"
-    "\n\t\t:            [-activate name]"
-    "\n\t\t:            [-shape object [name1] ... [nameN]]"
-    "\n\t\t:            [-open file_name [name1] ... [nameN]]"
-    "\n\t\t:            [-update]"
-    "\n\t\t:            [-select {object | name1 ... [nameN]}]"
-    "\n\t\t:            [-show {0|1} = 1]"
-    "\n\t\t:            [-directory path|<default>]"
-    "\n\t\t:            [-state]"
-    "\n\t\t: Starts tool of inspection."
-    "\n\t\t: Options:"
-    "\n\t\t:  -plugins enters plugins that should be added in the inspector."
-    "\n\t\t:           Available names are: dfbrowser, vinspector, shapeview and messageview."
-    "\n\t\t:           Plugins order will be the same as defined in arguments."
-    "\n\t\t:           'all' adds all available plugins in the order:"
-    "\n\t\t:                 DFBrowser, VInspector, ShapeView and MessageView."
-    "\n\t\t:           If at the first call this option is not used, 'all' option is applied;"
-    "\n\t\t:  -activate activates the plugin in the tool view."
-    "\n\t\t:           If at the first call this option is not used, the first plugin is activated;"
-    "\n\t\t:  -shape initializes plugin/s by the shape object. If 'name' is empty, initializes all "
-    "plugins;"
-    "\n\t\t:  -open gives the file to the plugin/s. If the plugin is active, after open, update "
-    "content will be done;"
-    "\n\t\t:  -update updates content of the active plugin;"
-    "\n\t\t:  -select sets the parameter that should be selected in an active tool view."
-    "\n\t\t:          Depending on active tool the parameter is:"
-    "\n\t\t:          ShapeView: 'object' is an instance of TopoDS_Shape TShape,"
-    "\n\t\t:          DFBrowser: 'name' is an entry of TDF_Label and name2(optionally) for "
-    "TDF_Attribute type name,"
-    "\n\t\t:          VInspector: 'object' is an instance of AIS_InteractiveObject;"
-    "\n\t\t:  -show sets Inspector view visible or hidden. The first call of this command will "
-    "show it."
-    "\n\t\t:  -directory sets Inspector temporary directory. Preferences file is stored there."
-    "\n\t\t:  -state print some current information about inspector, like name of active plugin, "
-    "temporary director.",
-    __FILE__,
-    tinspector,
-    group);
-}
-
-// =======================================================================
-// function : Factory
-// purpose  :
-// =======================================================================
-void ToolsDraw::Factory(Draw_Interpretor& theDI)
-{
-  // definition of Tools Command
-  ToolsDraw::Commands(theDI);
-
-#ifdef OCCT_DEBUG
-  theDI << "Draw Plugin : OCC Tools commands are loaded\n";
-#endif
-}
-
-// Declare entry point PLUGINFACTORY
-DPLUGIN(ToolsDraw)
diff --git a/tools/ToolsDraw/ToolsDraw.hxx b/tools/ToolsDraw/ToolsDraw.hxx
deleted file mode 100644
index 23cd21139f..0000000000
--- a/tools/ToolsDraw/ToolsDraw.hxx
+++ /dev/null
@@ -1,45 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 ToolsDraw_H
-#define ToolsDraw_H
-
-#include <Draw_Interpretor.hxx>
-#include <Standard.hxx>
-
-class TInspector_Communicator;
-
-//! \class ToolsDraw
-//! \brief Registers DRAW commands to connect to TInspector tools
-class ToolsDraw
-{
-public:
-  DEFINE_STANDARD_ALLOC
-
-  //! Loads all Draw commands of  tools. Used for plugin.
-  //! \param theDI Draw interpreter
-  Standard_EXPORT static void Factory(Draw_Interpretor& theDI);
-
-  //! Adds all tools command in the Draw_Interpretor
-  //! \param theCommands
-  Standard_EXPORT static void Commands(Draw_Interpretor& theCommands);
-
-  //! Returns default communicator used in DRAW commands
-  Standard_EXPORT static TInspector_Communicator* Communicator();
-
-private:
-};
-
-#endif // ToolsDraw_H
diff --git a/tools/TreeModel/FILES b/tools/TreeModel/FILES
deleted file mode 100644
index 45b20c9dc0..0000000000
--- a/tools/TreeModel/FILES
+++ /dev/null
@@ -1,18 +0,0 @@
-TreeModel.qrc
-TreeModel_ColumnType.hxx
-TreeModel_ContextMenu.cxx
-TreeModel_ContextMenu.hxx
-TreeModel_HeaderSection.hxx
-TreeModel_ItemBase.cxx
-TreeModel_ItemBase.hxx
-TreeModel_ItemProperties.cxx
-TreeModel_ItemProperties.hxx
-TreeModel_ItemRole.hxx
-TreeModel_ItemStream.cxx
-TreeModel_ItemStream.hxx
-TreeModel_ModelBase.cxx
-TreeModel_ModelBase.hxx
-TreeModel_Tools.cxx
-TreeModel_Tools.hxx
-TreeModel_VisibilityState.cxx
-TreeModel_VisibilityState.hxx
\ No newline at end of file
diff --git a/tools/TreeModel/TreeModel.qrc b/tools/TreeModel/TreeModel.qrc
deleted file mode 100644
index 7a6f61c129..0000000000
--- a/tools/TreeModel/TreeModel.qrc
+++ /dev/null
@@ -1,6 +0,0 @@
-<!DOCTYPE RCC><RCC version="1.0">
-    <qresource>
-        <file>icons/item_invisible.png</file>
-        <file>icons/item_visible.png</file>
-    </qresource>
-</RCC>
diff --git a/tools/TreeModel/TreeModel_ColumnType.hxx b/tools/TreeModel/TreeModel_ColumnType.hxx
deleted file mode 100644
index 07a44242c9..0000000000
--- a/tools/TreeModel/TreeModel_ColumnType.hxx
+++ /dev/null
@@ -1,31 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TreeModel_ColumnType_H
-#define TreeModel_ColumnType_H
-
-#include <Standard_WarningsDisable.hxx>
-#include <Qt>
-#include <Standard_WarningsRestore.hxx>
-
-//! Sets custom item role of Tree view wmodel
-enum TreeModel_ColumnType
-{
-  TreeModel_ColumnType_Name = 0,   //! name column
-  TreeModel_ColumnType_Visibility, //! visibility state column
-  TreeModel_ColumnType_Row         //! row of the item column
-};
-
-#endif
diff --git a/tools/TreeModel/TreeModel_ContextMenu.cxx b/tools/TreeModel/TreeModel_ContextMenu.cxx
deleted file mode 100644
index b077696778..0000000000
--- a/tools/TreeModel/TreeModel_ContextMenu.cxx
+++ /dev/null
@@ -1,88 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TreeModel_ContextMenu.hxx>
-#include <inspector/TreeModel_ModelBase.hxx>
-#include <inspector/TreeModel_Tools.hxx>
-
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QHeaderView>
-#include <QMenu>
-#include <QTreeView>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-TreeModel_ContextMenu::TreeModel_ContextMenu(QTreeView* theTreeView)
-    : QObject(theTreeView),
-      myTreeView(theTreeView)
-{
-  myTreeView->header()->setContextMenuPolicy(Qt::CustomContextMenu);
-#if QT_VERSION >= 0x050000
-  myTreeView->header()->setSectionsClickable(true);
-#endif
-  myTreeView->header()->setHighlightSections(true);
-  connect(myTreeView->header(),
-          SIGNAL(customContextMenuRequested(const QPoint&)),
-          this,
-          SLOT(onTreeViewHeaderContextMenuRequested(const QPoint&)));
-}
-
-// =======================================================================
-// function : onTreeViewHeaderContextMenuRequested
-// purpose :
-// =======================================================================
-void TreeModel_ContextMenu::onTreeViewHeaderContextMenuRequested(const QPoint& thePosition)
-{
-  TreeModel_ModelBase* aModel = dynamic_cast<TreeModel_ModelBase*>(myTreeView->model());
-  if (!aModel)
-    return;
-
-  QMenu* aMenu       = new QMenu(myTreeView);
-  int    aNbSections = aModel->columnCount();
-  for (int aColumnId = 0; aColumnId < aNbSections; aColumnId++)
-  {
-    QAction* anAction =
-      ViewControl_Tools::CreateAction(aModel->ChangeHeaderItem(aColumnId)->GetName(),
-                                      SLOT(onColumnVisibilityChanged()),
-                                      myTreeView,
-                                      this);
-    anAction->setCheckable(true);
-    anAction->setChecked(!myTreeView->isColumnHidden(aColumnId));
-    anAction->setData(aColumnId);
-    aMenu->addAction(anAction);
-  }
-
-  if (aMenu->actions().isEmpty())
-    return;
-
-  QPoint aPoint = myTreeView->mapToGlobal(thePosition);
-  aMenu->exec(aPoint);
-}
-
-// =======================================================================
-// function : onColumnVisibilityChanged
-// purpose :
-// =======================================================================
-void TreeModel_ContextMenu::onColumnVisibilityChanged()
-{
-  QAction* aClickedAction = (QAction*)sender();
-
-  myTreeView->setColumnHidden(aClickedAction->data().toInt(), !aClickedAction->isChecked());
-}
diff --git a/tools/TreeModel/TreeModel_ContextMenu.hxx b/tools/TreeModel/TreeModel_ContextMenu.hxx
deleted file mode 100644
index 5aba964692..0000000000
--- a/tools/TreeModel/TreeModel_ContextMenu.hxx
+++ /dev/null
@@ -1,53 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TreeModel_ContextMenu_H
-#define TreeModel_ContextMenu_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QPoint>
-#include <Standard_WarningsRestore.hxx>
-
-class QTreeView;
-
-//! \class TreeModel_ContextMenu
-//! \brief Creates actions to show/hide tree view columns
-class TreeModel_ContextMenu : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT TreeModel_ContextMenu(QTreeView* theTreeView);
-
-  //! Destructor
-  ~TreeModel_ContextMenu() {}
-
-protected slots:
-  //! Shows context menu for tree view header. It contains actions to change columns visibility.
-  //! \param thePosition a clicked point
-  void onTreeViewHeaderContextMenuRequested(const QPoint& thePosition);
-
-  //! Changes clicked column visibility
-  void onColumnVisibilityChanged();
-
-private:
-  QTreeView* myTreeView; //!< current tree view
-};
-
-#endif
diff --git a/tools/TreeModel/TreeModel_HeaderSection.hxx b/tools/TreeModel/TreeModel_HeaderSection.hxx
deleted file mode 100644
index f8d9128cbc..0000000000
--- a/tools/TreeModel/TreeModel_HeaderSection.hxx
+++ /dev/null
@@ -1,99 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TreeModel_HeaderSection_H
-#define TreeModel_HeaderSection_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <inspector/TreeModel_Tools.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QString>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class TreeModel_HeaderSection
-//! \brief Container of tree view header sections, like width, visibility, text value
-class TreeModel_HeaderSection
-{
-public:
-  //! Constructor
-  TreeModel_HeaderSection()
-      : myName(),
-        myWidth(-1),
-        myIsHidden(false),
-        myIsItalic(false)
-  {
-  }
-
-  //! Constructor
-  TreeModel_HeaderSection(const QString& theName,
-                          const int      theWidth    = -1,
-                          const bool     theIsHidden = false,
-                          const bool     theIsItalic = false)
-      : myName(theName),
-        myWidth(theWidth),
-        myIsHidden(theIsHidden),
-        myIsItalic(theIsItalic)
-  {
-  }
-
-  //! Destructor
-  ~TreeModel_HeaderSection() {}
-
-  //! Returns whether the header section is not initialized with values.
-  //! The check is empty value of the name text
-  //! \return boolean value
-  bool IsEmpty() const { return myName.isEmpty(); }
-
-  //! Sets text value
-  //! \theName text value
-  void SetName(const QString& theName) { myName = theName; }
-
-  //! Returns text value
-  QString GetName() const { return myName; }
-
-  //! Sets section width
-  //! \param theValue width value
-  void SetWidth(const int theWidth) { myWidth = theWidth; }
-
-  //! Returns section width
-  int GetWidth(const bool isComputeDefault = true) const
-  {
-    return (myWidth == -1 && isComputeDefault) ? TreeModel_Tools::GetTextWidth(GetName(), 0)
-                                               : myWidth;
-  }
-
-  //! Sets section width
-  void SetIsHidden(bool isHidden) { myIsHidden = isHidden; }
-
-  //! Returns if the section is visiblt
-  bool IsHidden() const { return myIsHidden; }
-
-  //! Sets section width
-  void SetIsItalic(bool isItalic) { myIsItalic = isItalic; }
-
-  //! Returns if the section is visiblt
-  bool IsItalic() const { return myIsItalic; }
-
-private:
-  QString myName;     //!< text value
-  int     myWidth;    //!< section width
-  bool    myIsHidden; //!< visibility
-  bool    myIsItalic; //!< italic
-};
-
-#endif
diff --git a/tools/TreeModel/TreeModel_ItemBase.cxx b/tools/TreeModel/TreeModel_ItemBase.cxx
deleted file mode 100644
index 314efe95cf..0000000000
--- a/tools/TreeModel/TreeModel_ItemBase.cxx
+++ /dev/null
@@ -1,212 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TreeModel_ColumnType.hxx>
-#include <inspector/TreeModel_ItemBase.hxx>
-#include <inspector/TreeModel_ItemProperties.hxx>
-#include <inspector/TreeModel_ItemRole.hxx>
-#include <inspector/TreeModel_ItemStream.hxx>
-
-#include <Standard_Dump.hxx>
-#include <Standard_WarningsDisable.hxx>
-#include <QStringList>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-TreeModel_ItemBase::TreeModel_ItemBase(TreeModel_ItemBasePtr theParent,
-                                       const int             theRow,
-                                       const int             theColumn)
-    : m_iStreamChildren(0),
-      m_bInitialized(false)
-{
-  m_pParent = theParent;
-  m_iRow    = theRow;
-  m_iColumn = theColumn;
-}
-
-// =======================================================================
-// function :  Reset
-// purpose :
-// =======================================================================
-void TreeModel_ItemBase::Reset()
-{
-  for (PositionToItemHash::const_iterator aChildrenIt = m_ChildItems.begin();
-       aChildrenIt != m_ChildItems.end();
-       aChildrenIt++)
-  {
-    TreeModel_ItemBasePtr anItem = aChildrenIt.value();
-    if (anItem)
-      anItem->Reset();
-  }
-  m_bInitialized = false;
-  if (!myProperties.IsNull())
-  {
-    myProperties->Reset();
-  }
-  myCachedValues.clear();
-  myStream.str("");
-}
-
-// =======================================================================
-// function :  Reset
-// purpose :
-// =======================================================================
-void TreeModel_ItemBase::Reset(int theRole)
-{
-  if (!myCachedValues.contains(theRole))
-    return;
-
-  myCachedValues.remove(theRole);
-}
-
-// =======================================================================
-// function :  child
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr TreeModel_ItemBase::Child(int theRow, int theColumn, const bool isToCreate)
-{
-  QPair<int, int> aPos = qMakePair(theRow, theColumn);
-
-  if (m_ChildItems.contains(aPos))
-    return m_ChildItems[aPos];
-
-  TreeModel_ItemBasePtr anItem;
-  if (isToCreate)
-  {
-    if (theRow < m_iStreamChildren)
-      anItem = TreeModel_ItemStream::CreateItem(currentItem(), theRow, theColumn);
-    else
-      anItem = createChild(theRow - m_iStreamChildren, theColumn);
-
-    if (anItem)
-      m_ChildItems[aPos] = anItem;
-  }
-  return anItem;
-}
-
-// =======================================================================
-// function :  Presentations
-// purpose :
-// =======================================================================
-void TreeModel_ItemBase::Presentations(
-  NCollection_List<Handle(Standard_Transient)>& thePresentations)
-{
-  if (Column() != 0)
-    return;
-
-  const Handle(TreeModel_ItemProperties)& anItemProperties = Properties();
-  if (anItemProperties)
-  {
-    anItemProperties->Presentations(thePresentations);
-  }
-}
-
-// =======================================================================
-// function :  currentItem
-// purpose :
-// =======================================================================
-const TreeModel_ItemBasePtr TreeModel_ItemBase::currentItem()
-{
-  return TreeModel_ItemBasePtr(this);
-}
-
-// =======================================================================
-// function :  cachedValue
-// purpose :
-// =======================================================================
-QVariant TreeModel_ItemBase::cachedValue(const int theItemRole) const
-{
-  if (myCachedValues.contains(theItemRole))
-    return myCachedValues[theItemRole];
-
-  QVariant aValueToCache;
-  if (theItemRole == TreeModel_ItemRole_RowCountRole)
-    aValueToCache = initRowCount() + const_cast<TreeModel_ItemBase*>(this)->initStreamRowCount();
-  else
-    aValueToCache = initValue(theItemRole);
-
-  myCachedValues.insert(theItemRole, aValueToCache);
-  return myCachedValues.contains(theItemRole) ? myCachedValues[theItemRole] : QVariant();
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void TreeModel_ItemBase::Init()
-{
-  m_bInitialized = true;
-
-  initStream(myStream);
-  initStreamRowCount();
-}
-
-// =======================================================================
-// function : Object
-// purpose :
-// =======================================================================
-const Handle(Standard_Transient)& TreeModel_ItemBase::Object() const
-{
-  static Handle(Standard_Transient) aNullObject;
-  return aNullObject;
-}
-
-// =======================================================================
-// function : initStreamRowCount
-// purpose :
-// =======================================================================
-int TreeModel_ItemBase::initStreamRowCount()
-{
-  int aStreamChildrenCount = 0;
-  if (Column() == 0)
-  {
-    Standard_SStream aStream;
-    initStream(aStream);
-    if (!Standard_Dump::Text(aStream).IsEmpty())
-    {
-      if (!myProperties)
-      {
-        myProperties = new TreeModel_ItemProperties();
-        myProperties->SetItem(currentItem());
-      }
-      myProperties->Init();
-      aStreamChildrenCount = myProperties->Children().Extent();
-    }
-  }
-  m_iStreamChildren = aStreamChildrenCount;
-  return m_iStreamChildren;
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant TreeModel_ItemBase::initValue(const int theItemRole) const
-{
-  if (theItemRole != Qt::DisplayRole && theItemRole != Qt::ToolTipRole)
-    return QVariant();
-
-  switch (Column())
-  {
-    case TreeModel_ColumnType_Row: {
-      return Row();
-    }
-  }
-
-  return QVariant();
-}
diff --git a/tools/TreeModel/TreeModel_ItemBase.hxx b/tools/TreeModel/TreeModel_ItemBase.hxx
deleted file mode 100644
index 35adc271e0..0000000000
--- a/tools/TreeModel/TreeModel_ItemBase.hxx
+++ /dev/null
@@ -1,259 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TreeModel_ItemBase_H
-#define TreeModel_ItemBase_H
-
-#include <NCollection_List.hxx>
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-#include <Standard_Handle.hxx>
-#include <Standard_OStream.hxx>
-#include <Standard_SStream.hxx>
-
-#include <inspector/TreeModel_ItemRole.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QExplicitlySharedDataPointer>
-#include <QHash>
-#include <QMap>
-#include <QModelIndex>
-#include <QObject>
-#include <QPair>
-#include <QSharedData>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-class TreeModel_ItemBase;
-class TreeModel_ItemProperties;
-
-typedef QExplicitlySharedDataPointer<TreeModel_ItemBase> TreeModel_ItemBasePtr;
-
-//! \class TreeModel_ItemBase
-//! \brief Declaration of an abstract interface of model item.
-//!
-//! The TreeModel_ItemBase class defines the standard interface that model items must use
-//! to be able to provide the model information in the tree view architecture.
-//! It is not supposed to be instantiated directly. Instead, you should subclass it to
-//! create new items.
-//!
-//! The goal of the item is to be an data container of a custom model, based on the
-//! QAbstractItemModel. It provides the items architecture in order to realize the model
-//! functionality to find a parent model index by a child index and vice versa.
-//!
-//! The item should be created by the model and is saved in the internal pointer of the
-//! QModelIndex. Only model knows when the index is removed/created. By this cause,
-//! the item is wrapped in the QExplicitlySharedDataPointer. It is a counter on the pointer
-//! and if there is no index that refers to the item, it is removed automatically. So,
-//! there is no necessity to remove the item manually.
-//!
-//! The item knows a pointer to the parent item and its position into.
-//! Some methods of the item should be realized to fill the item content.
-//! These are: the children count, a child creation and a child data.
-//!
-//! The best way of the item using is to request the content of the item from some
-//! information object without the caching it. But it can be very expensive realisation,
-//! because method data, for example, is called by the viewer repaint, in other words,
-//! constantly.
-//!
-//! It is possible to cache some information in the item. Do not give it through the item
-//! constructor. Realize method Init() to save the values in the item internal fields.
-//! If the information model is changed, call Reset() for this item, or the item's parent.
-//! It leads the item to non initialized state and by the next get of the item content,
-//! call Init() method to fulfill the item content again.
-class TreeModel_ItemBase : public QSharedData
-{
-public:
-  //! Destructor
-  virtual ~TreeModel_ItemBase() {}
-
-  //! Gets whether the item is already initialized.The initialized state is thrown down
-  //! by the reset method and get back after the method Init().
-  //!  \return if the item is initialized
-  bool IsInitialized() const { return m_bInitialized; }
-
-  //! Sets the item internal initialized state to the true. If the item has internal values,
-  //! there should be initialized here.
-  Standard_EXPORT virtual void Init();
-
-  //! Returns data object of the item.
-  //! \return object
-  Standard_EXPORT virtual const Handle(Standard_Transient)& Object() const;
-
-  //! Resets the item and the child items content. Sets the initialized state to false.
-  //! If the item has internal values, they should be reset here.
-  Standard_EXPORT virtual void Reset();
-
-  //! Resets the item cached value for the parameter role.
-  //! \param theRole an item role
-  Standard_EXPORT virtual void Reset(int theRole);
-
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  const Standard_SStream& Stream() const { return myStream; }
-
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  virtual bool SetStream(const Standard_SStream& theSStream,
-                         Standard_Integer&       theStartPos,
-                         Standard_Integer&       theLastPos) const
-  {
-    (void)theSStream;
-    (void)theStartPos;
-    (void)theLastPos;
-    return false;
-  }
-
-  //! Gets the parent of the item, or TreeModel_ItemBasePtr() if it has no parent.
-  //! \return pointer to the item
-  TreeModel_ItemBasePtr Parent() const { return m_pParent; };
-
-  //! Gets the row of the item in the parent
-  //! \return the row position
-  int Row() const { return m_iRow; }
-
-  //! Gets the column of the item in the parent
-  //! \return the column position
-  int Column() const { return m_iColumn; }
-
-  //! Gets a child tree item in the given position. Find an item in the children hash.
-  //! Creates a new child item, if there is no a cached item in the given position and
-  //! if the flag about the creation is true.
-  //! \param theRow the row of the child item
-  //! \param theColumn the column of the child item
-  //! \param isToCreate the flag whether the item should be created if it is not created yet
-  //! \return the child item or TreeModel_ItemBasePtr() if it does not exist
-  Standard_EXPORT TreeModel_ItemBasePtr Child(int        theRow,
-                                              int        theColumn,
-                                              const bool isToCreate = true);
-
-  //! Sets a custom value for the role in an internal cache
-  //! \param theValue a value
-  //! \param theRole a value role
-  void SetCustomData(const QVariant& theValue, int theRole)
-  {
-    myCachedValues.insert(theRole, theValue);
-  }
-
-  //! Returns the data stored under the given role for the current item
-  //! \param theIndex the item model index
-  //! \param theRole the item model role
-  virtual QVariant data(const QModelIndex& theIndex, int theRole = Qt::DisplayRole) const
-  {
-    (void)theIndex;
-    return cachedValue(theRole);
-  }
-
-  //! Returns number of rows where the children are
-  //! \return the row count
-  int rowCount() const { return cachedValue(TreeModel_ItemRole_RowCountRole).toInt(); }
-
-  //! Returns the item properties
-  const Handle(TreeModel_ItemProperties)& Properties() const { return myProperties; }
-
-  //! Updates item by the item properties value
-  virtual void StoreItemProperties(const int theRow, const int theColumn, const QVariant& theValue)
-  {
-    (void)theRow, (void)theColumn;
-    (void)theValue;
-  }
-
-  //! Returns presentation of the item to be visualized in the view
-  //! \thePresentations[out]  container of presentation handles
-  Standard_EXPORT virtual void Presentations(
-    NCollection_List<Handle(Standard_Transient)>& thePresentations);
-
-protected:
-  //! \param theParent the parent item
-  //! \param theRow the item row position in the parent item
-  //! \param theColumn the item column position in the parent item
-  Standard_EXPORT TreeModel_ItemBase(TreeModel_ItemBasePtr theParent,
-                                     const int             theRow,
-                                     const int             theColumn);
-
-  //! Initializes the current item. It creates a backup of the specific item information
-  virtual void initItem() const {}
-
-  //! Creates a child item in the given position.
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \return the created item
-  virtual TreeModel_ItemBasePtr createChild(int theRow, int theColumn)
-  {
-    (void)theRow;
-    (void)theColumn;
-    return TreeModel_ItemBasePtr();
-  }
-
-  //! Wraps the current item by shared pointer
-  //! \return the shared pointer to the current item
-  Standard_EXPORT const TreeModel_ItemBasePtr currentItem();
-
-  //! Returns the cached value for the role. Init the value if it is requested the first time
-  //! By default, it calls initRowCount(TreeModel_ItemRole_RowCountRole) or initValue for the item
-  //! role \param theItemRole a value role \return the value
-  Standard_EXPORT QVariant cachedValue(const int theItemRole) const;
-
-  //! \return number of children. It should be reimplemented in child
-  virtual int initRowCount() const = 0;
-
-  //! \return number of children. It should be reimplemented in child
-  Standard_EXPORT int initStreamRowCount();
-
-  //! Returns data value for the role. It should be reimplemented in child
-  //! \param theItemRole a value role
-  //! \return the value
-  Standard_EXPORT virtual QVariant initValue(const int theItemRole) const;
-
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  virtual void initStream(Standard_OStream& theOStream) const { (void)theOStream; }
-
-protected:
-  Handle(TreeModel_ItemProperties) myProperties;      //!< the properties
-  int                              m_iStreamChildren; //!< the count of stream items
-  Standard_SStream                 myStream;          //!< stream value
-
-private:
-  typedef QHash<QPair<int, int>, TreeModel_ItemBasePtr> PositionToItemHash;
-  PositionToItemHash                                    m_ChildItems; //!< the hash of item children
-
-  mutable QMap<int, QVariant> myCachedValues; //!< cached values, should be cleared by reset
-  TreeModel_ItemBasePtr       m_pParent;      //!< the parent item
-  int                         m_iRow;         //!< the item row position in the parent item
-  int                         m_iColumn;      //!< the item column position in the parent item
-  bool m_bInitialized; //!< the state whether the item content is already initialized
-};
-
-//! Returns an explicitly shared pointer to the pointer held by other, using a
-//! dynamic cast to type X to obtain an internal pointer of the appropriate type.
-//! If the dynamic_cast fails, the object returned will be null.
-//! Example of using:
-//! TreeModel_ItemBase* aParent;
-//! TreeModel_CustomItemPtr aParentItem = itemDynamicCast<TreeModel_CustomItem>(aParent);
-//! \param theItem a source item
-//! \return a converted item
-template <class X, class T>
-QExplicitlySharedDataPointer<X> itemDynamicCast(const QExplicitlySharedDataPointer<T>& theItem)
-{
-  X* ptr = dynamic_cast<X*>(theItem.data());
-
-  QExplicitlySharedDataPointer<X> result;
-  result = ptr;
-
-  return result;
-}
-
-#endif
diff --git a/tools/TreeModel/TreeModel_ItemProperties.cxx b/tools/TreeModel/TreeModel_ItemProperties.cxx
deleted file mode 100644
index d5ad255373..0000000000
--- a/tools/TreeModel/TreeModel_ItemProperties.cxx
+++ /dev/null
@@ -1,344 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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.
-
-#include <inspector/TreeModel_ItemProperties.hxx>
-#include <inspector/TreeModel_ItemStream.hxx>
-#include <inspector/Convert_Tools.hxx>
-#include <inspector/Convert_TransientShape.hxx>
-
-#include <BRepBuilderAPI_MakeVertex.hxx>
-#include <gp_XYZ.hxx>
-#include <Quantity_ColorRGBA.hxx>
-#include <Standard_Dump.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QFont>
-#include <Standard_WarningsRestore.hxx>
-
-IMPLEMENT_STANDARD_RTTIEXT(TreeModel_ItemProperties, Standard_Transient)
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void TreeModel_ItemProperties::Init()
-{
-  myRowValues.Clear();
-
-  InitByStream(Item()->Stream());
-}
-
-// =======================================================================
-// function : InitByStream
-// purpose :
-// =======================================================================
-void TreeModel_ItemProperties::InitByStream(const Standard_SStream& aStream)
-{
-  NCollection_IndexedDataMap<TCollection_AsciiString, Standard_DumpValue> aValues;
-  TCollection_AsciiString aStreamText = Standard_Dump::Text(aStream);
-  Standard_Dump::SplitJson(aStreamText, aValues);
-
-  TreeModel_ItemStreamPtr aStreamParent = itemDynamicCast<TreeModel_ItemStream>(Item());
-  TCollection_AsciiString aKey;
-  Standard_DumpValue      aKeyValue;
-  if (!aStreamParent)
-  {
-    if (!Item() || Item()->Object().IsNull())
-    {
-      aKey = "Dump";
-    }
-    else
-    {
-      const Handle(Standard_Transient)& anItemObject = Item()->Object();
-      aKey = anItemObject.IsNull() ? "Dump" : anItemObject->DynamicType()->Name();
-    }
-    aKeyValue = Standard_DumpValue(aStreamText, 1);
-
-    myKey         = aKey;
-    myStreamValue = aKeyValue;
-  }
-  else
-  {
-    TCollection_AsciiString aValue;
-    if (Item()->Parent())
-    {
-      const Handle(TreeModel_ItemProperties)& aParentProperties = Item()->Parent()->Properties();
-      if (aParentProperties)
-        aParentProperties->ChildStream(Item()->Row(), aKey, aKeyValue);
-    }
-    myKey         = aKey;
-    myStreamValue = aKeyValue;
-
-    aValues.Clear();
-    Standard_Dump::SplitJson(myStreamValue.myValue, aValues);
-  }
-
-  for (Standard_Integer anIndex = 1; anIndex <= aValues.Size(); anIndex++)
-  {
-    Standard_DumpValue aValue = aValues.FindFromIndex(anIndex);
-    if (Standard_Dump::HasChildKey(aValue.myValue))
-      myChildren.Add(aValues.FindKey(anIndex), aValue);
-    else
-    {
-      TreeModel_RowValue aRowValue(aValue.myStartPosition,
-                                   aValues.FindKey(anIndex).ToCString(),
-                                   aValue.myValue.ToCString());
-      myRowValues.Add(myRowValues.Size() + 1, aRowValue);
-    }
-  }
-  if (myRowValues.Size() == 1)
-  {
-    Quantity_Color aColor;
-    if (Convert_Tools::ConvertStreamToColor(aStream, aColor))
-    {
-      Standard_Real aRed, aGreen, aBlue;
-      aColor.Values(aRed, aGreen, aBlue, Quantity_TOC_sRGB);
-
-      int aDelta = 255;
-      myRowValues.ChangeFromIndex(1).CustomValues.insert(
-        (int)Qt::BackgroundRole,
-        QColor((int)(aRed * aDelta), (int)(aGreen * aDelta), (int)(aBlue * aDelta)));
-    }
-  }
-  // in case if the stream alert has empty key avalue, use as the key the first row value
-  if ((myKey.IsEmpty() || myKey.IsEqual("Dump")) && myRowValues.Size() > 0)
-  {
-    myKey = myRowValues.FindFromIndex(1).Value.toString().toStdString().c_str();
-  }
-}
-
-// =======================================================================
-// function :  Reset
-// purpose :
-// =======================================================================
-void TreeModel_ItemProperties::Reset()
-{
-  myKey         = "";
-  myStreamValue = Standard_DumpValue();
-
-  myChildren.Clear();
-  myRowValues.Clear();
-}
-
-// =======================================================================
-// function : RowCount
-// purpose :
-// =======================================================================
-int TreeModel_ItemProperties::RowCount() const
-{
-  return RowValues().Size();
-}
-
-// =======================================================================
-// function : Data
-// purpose :
-// =======================================================================
-QVariant TreeModel_ItemProperties::Data(const int theRow, const int theColumn, int theRole) const
-{
-  if (theColumn == 1 && theRole == Qt::BackgroundRole)
-  {
-    const QMap<int, QVariant>& aCachedValues = RowValues().FindFromIndex(theRow + 1).CustomValues;
-    if (aCachedValues.contains((int)theRole))
-      return aCachedValues[(int)theRole];
-  }
-
-  if (theRole == Qt::FontRole) // method name is in italic
-  {
-    if (Data(theRow, 0, Qt::DisplayRole).toString().contains("className"))
-    {
-      QFont aFont = qApp->font();
-      aFont.setItalic(true);
-      return aFont;
-    }
-  }
-  if (theRole == Qt::ForegroundRole)
-  {
-    if (Data(theRow, 0, Qt::DisplayRole).toString().contains("className"))
-      return QColor(Qt::darkGray).darker(150);
-  }
-
-  if (theRole == Qt::DisplayRole || theRole == Qt::ToolTipRole)
-  {
-    if (theColumn == 0)
-      return RowValues().FindFromIndex(theRow + 1).Key;
-    else if (theColumn == 1)
-      return RowValues().FindFromIndex(theRow + 1).Value;
-  }
-
-  return QVariant();
-}
-
-// =======================================================================
-// function : EditType
-// purpose :
-// =======================================================================
-ViewControl_EditType TreeModel_ItemProperties::EditType(const int, const int theColumn) const
-{
-  if (theColumn == 0)
-    return ViewControl_EditType_None;
-
-  Quantity_Color aColor;
-  if (Convert_Tools::ConvertStreamToColor(Item()->Stream(), aColor))
-  {
-    return ViewControl_EditType_Color;
-  }
-  return ViewControl_EditType_Line;
-}
-
-// =======================================================================
-// function : ReplaceValue
-// purpose :
-// =======================================================================
-Standard_Boolean ReplaceValue(const TCollection_AsciiString& theFromValue,
-                              const TCollection_AsciiString& theToValue,
-                              Standard_DumpValue&            theStreamValue)
-{
-  TCollection_AsciiString aStreamValue = theStreamValue.myValue;
-
-  int aPosition = aStreamValue.FirstLocationInSet(theFromValue, 1, aStreamValue.Length());
-  if (aPosition < 1)
-    return Standard_False;
-
-  aPosition +=
-    2; // due to 'FirstLocationInSet' returns position taking into account '"\' as 1 position
-
-  TCollection_AsciiString aPartStart = aStreamValue.SubString(1, aPosition - 1);
-  TCollection_AsciiString aPartFinal =
-    aStreamValue.SubString(aPosition + theFromValue.Length(), aStreamValue.Length());
-  theStreamValue.myValue = aPartStart + theToValue + aPartFinal;
-
-  return Standard_True;
-}
-
-// =======================================================================
-// function : SetData
-// purpose :
-// =======================================================================
-bool TreeModel_ItemProperties::SetData(const int       theRow,
-                                       const int       theColumn,
-                                       const QVariant& theValue,
-                                       int             theRole)
-{
-  if (theColumn == 0)
-    return false;
-
-  if (theRole != Qt::DisplayRole && theRole != Qt::EditRole)
-    return false;
-
-  if (myRowValues.Size() == 1 && theColumn == 1)
-  {
-    TCollection_AsciiString aStreamValue(theValue.toString().toStdString().c_str());
-    NCollection_IndexedDataMap<TCollection_AsciiString, Standard_DumpValue> aKeyToValues;
-    if (Standard_Dump::SplitJson(aStreamValue, aKeyToValues))
-    {
-      Standard_SStream aStream;
-      aStream << aStreamValue.ToCString();
-
-      int                aStartPos = 1;
-      Quantity_ColorRGBA aColor;
-      if (aColor.InitFromJson(aStream, aStartPos))
-      {
-        Standard_Real aRed, aGreen, aBlue;
-        aColor.GetRGB().Values(aRed, aGreen, aBlue, Quantity_TOC_sRGB);
-        int aDelta = 255;
-        myRowValues.ChangeFromIndex(1).CustomValues.insert(
-          (int)Qt::BackgroundRole,
-          QColor((int)(aRed * aDelta), (int)(aGreen * aDelta), (int)(aBlue * aDelta)));
-      }
-      Standard_DumpValue aValue            = aKeyToValues.FindFromIndex(1);
-      myStreamValue.myValue                = aValue.myValue.ToCString();
-      myRowValues.ChangeFromIndex(1).Value = aValue.myValue.ToCString();
-
-      Item()->StoreItemProperties(theRow, theColumn, theValue);
-      return true;
-    }
-    TCollection_AsciiString aFromValue =
-      myRowValues.ChangeFromIndex(1).Value.toString().toStdString().c_str();
-    if (ReplaceValue(aFromValue, aStreamValue, myStreamValue))
-    {
-      aStreamValue = myStreamValue.myValue;
-      if (Standard_Dump::SplitJson(aStreamValue, aKeyToValues))
-      {
-        Standard_DumpValue aValue            = aKeyToValues.FindFromIndex(1);
-        myRowValues.ChangeFromIndex(1).Value = aValue.myValue.ToCString();
-
-        Item()->StoreItemProperties(theRow, theColumn, aStreamValue.ToCString());
-        return true;
-      }
-    }
-  }
-
-  myRowValues.ChangeFromIndex(theRow + 1).Value = theValue;
-  Item()->StoreItemProperties(theRow, theColumn, theValue);
-  return true;
-}
-
-// =======================================================================
-// function : Presentations
-// purpose :
-// =======================================================================
-void TreeModel_ItemProperties::Presentations(
-  NCollection_List<Handle(Standard_Transient)>& thePresentations)
-{
-  if (!Item())
-  {
-    return;
-  }
-  const Standard_SStream& aStream = Item()->Stream();
-  Convert_Tools::ConvertStreamToPresentations(aStream, 1, -1, thePresentations);
-}
-
-// =======================================================================
-// function : TableFlags
-// purpose :
-// =======================================================================
-Qt::ItemFlags TreeModel_ItemProperties::TableFlags(const int, const int theColumn) const
-{
-  Qt::ItemFlags aFlags = Qt::ItemIsEnabled | Qt::ItemIsSelectable;
-
-  if (theColumn == 1)
-    aFlags = aFlags | Qt::ItemIsEditable;
-
-  return aFlags;
-}
-
-// =======================================================================
-// function : ChildStream
-// purpose :
-// =======================================================================
-void TreeModel_ItemProperties::ChildStream(const int                theRowId,
-                                           TCollection_AsciiString& theKey,
-                                           Standard_DumpValue&      theValue) const
-{
-  if (myChildren.Size() <= theRowId)
-    return;
-
-  theKey   = myChildren.FindKey(theRowId + 1);
-  theValue = myChildren.FindFromIndex(theRowId + 1);
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void TreeModel_ItemProperties::initItem() const
-{
-  if (!Item())
-    return;
-  if (Item()->IsInitialized())
-    return;
-  Item()->Init();
-}
diff --git a/tools/TreeModel/TreeModel_ItemProperties.hxx b/tools/TreeModel/TreeModel_ItemProperties.hxx
deleted file mode 100644
index 234d1a0347..0000000000
--- a/tools/TreeModel/TreeModel_ItemProperties.hxx
+++ /dev/null
@@ -1,183 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 TreeModel_ItemProperties_H
-#define TreeModel_ItemProperties_H
-
-#include <Standard.hxx>
-#include <Standard_Dump.hxx>
-#include <Standard_Handle.hxx>
-#include <Standard_Macro.hxx>
-#include <Standard_Type.hxx>
-#include <Standard_Transient.hxx>
-
-#include <NCollection_IndexedDataMap.hxx>
-#include <NCollection_IndexedMap.hxx>
-#include <NCollection_List.hxx>
-
-#include <TCollection_AsciiString.hxx>
-
-#include <inspector/TreeModel_ItemBase.hxx>
-#include <inspector/ViewControl_EditType.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractTableModel>
-#include <QColor>
-#include <QList>
-#include <QModelIndexList>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class TreeModel_ItemProperties
-//! Class to manipulate properties of tree item. The properties are organized in table structure
-class TreeModel_ItemProperties : public Standard_Transient
-{
-  //! enum defined the dimension type
-  enum TreeModel_DimType
-  {
-    TreeModel_DimType_Rows,   //!< defines number of rows
-    TreeModel_DimType_Columns //!< defines number of columns
-  };
-
-  //! container of values in a row of property table
-  struct TreeModel_RowValue
-  {
-    TreeModel_RowValue(const Standard_Integer theValueStartPosition,
-                       const QVariant&        theKey,
-                       QVariant               theValue)
-        : ValueStartPosition(theValueStartPosition),
-          Key(theKey),
-          Value(theValue)
-    {
-    }
-
-    Standard_Integer ValueStartPosition; //!< start position of the key
-    QVariant         Key;                //!< value in the first column
-    QVariant         Value;              //!< value in the second column
-    QMap<int, QVariant>
-      CustomValues; //!< custom values, e.g. key is Background, value is a defined color
-  };
-
-public:
-  //! Constructor
-  TreeModel_ItemProperties() {}
-
-  //! Destructor
-  ~TreeModel_ItemProperties() {}
-
-  //! Sets the current item
-  void SetItem(const TreeModel_ItemBasePtr& theItem) { myItem = theItem; }
-
-  //! Fills properties with the stream value
-  Standard_EXPORT void InitByStream(const Standard_SStream& theStream);
-
-  //! Returns the current item
-  TreeModel_ItemBasePtr Item() const { return myItem; }
-
-  //! Fills internal containers by item stream values
-  Standard_EXPORT void Init();
-
-  //! If the item has internal values, they should be reset here.
-  Standard_EXPORT void Reset();
-
-  //! Returns number of table rows
-  //! \return an integer value
-  Standard_EXPORT int RowCount() const;
-
-  //! Returns number of table columns
-  //! \return an integer value
-  int ColumnCount() const { return 2; }
-
-  //! Returns content of the model index for the given role, it is obtained from internal container
-  //! of values \param theRow a model index row \param theColumn a model index column \param theRole
-  //! a view role \return value interpreted depending on the given role
-  Standard_EXPORT QVariant Data(const int theRow,
-                                const int theColumn,
-                                int       theRole = Qt::DisplayRole) const;
-
-  //! Returns type of edit control for the model index. By default, it is an empty control
-  //! \param theRow a model index row
-  //! \param theColumn a model index column
-  //! \return edit type
-  Standard_EXPORT ViewControl_EditType EditType(const int theRow, const int theColumn) const;
-
-  //! Sets content of the model index for the given role, it is applied to internal container of
-  //! values \param theRow a model index row \param theColumn a model index column \param theRole a
-  //! view role \return true if the value is changed
-  Standard_EXPORT bool SetData(const int       theRow,
-                               const int       theColumn,
-                               const QVariant& theValue,
-                               int             theRole = Qt::DisplayRole);
-
-  //! Returns presentation of the attribute to be visualized in the view
-  //! \thePresentations[out]  container of presentation handles to be visualized
-  Standard_EXPORT void Presentations(
-    NCollection_List<Handle(Standard_Transient)>& thePresentations);
-
-  //! Returns flags for the item: ItemIsEnabled | Qt::ItemIsSelectable.
-  //! Additional flag for the column 1 is Qt::ItemIsEditable.
-  //! \param theIndex a model index
-  //! \return flags
-  Standard_EXPORT Qt::ItemFlags TableFlags(const int theRow, const int theColumn) const;
-
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  Standard_EXPORT void ChildStream(const int                theRowId,
-                                   TCollection_AsciiString& theKey,
-                                   Standard_DumpValue&      theValue) const;
-
-  //! Returns data object of the item.
-  //! \return object key
-  const TCollection_AsciiString& Key() const { return myKey; }
-
-  //! Returns stream value of the item.
-  //! \return value
-  const TCollection_AsciiString& StreamValue() const { return myStreamValue.myValue; }
-
-  //! Returns children stream values
-  // const NCollection_IndexedDataMap<TCollection_AsciiString, Standard_DumpValue>& Values() const {
-  // initItem(); return myValues; }
-
-  //! Returns children stream values
-  const NCollection_IndexedDataMap<Standard_Integer, TreeModel_RowValue>& RowValues() const
-  {
-    initItem();
-    return myRowValues;
-  }
-
-  //! Returns children stream values
-  const NCollection_IndexedDataMap<TCollection_AsciiString, Standard_DumpValue>& Children() const
-  {
-    initItem();
-    return myChildren;
-  }
-
-  DEFINE_STANDARD_RTTIEXT(TreeModel_ItemProperties, Standard_Transient)
-
-protected:
-  //! Initializes the current item. It creates a backup of the specific item information
-  Standard_EXPORT void initItem() const;
-
-private:
-  TreeModel_ItemBasePtr myItem; //!< current item
-
-  TCollection_AsciiString myKey;         //!< the item key
-  Standard_DumpValue      myStreamValue; //!< the stream value
-  NCollection_IndexedDataMap<TCollection_AsciiString, Standard_DumpValue>
-                                                                   myChildren;  //!< the children
-  NCollection_IndexedDataMap<Standard_Integer, TreeModel_RowValue> myRowValues; //!< the values
-};
-
-#endif
\ No newline at end of file
diff --git a/tools/TreeModel/TreeModel_ItemRole.hxx b/tools/TreeModel/TreeModel_ItemRole.hxx
deleted file mode 100644
index 164301049f..0000000000
--- a/tools/TreeModel/TreeModel_ItemRole.hxx
+++ /dev/null
@@ -1,31 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TreeModel_ItemRole_H
-#define TreeModel_ItemRole_H
-
-#include <Standard_WarningsDisable.hxx>
-#include <Qt>
-#include <Standard_WarningsRestore.hxx>
-
-//! Sets custom item role of Tree view wmodel
-enum TreeModel_ItemRole
-{
-  TreeModel_ItemRole_RowCountRole =
-    Qt::UserRole + 1,             //! additional column with row count for item (cached value)
-  TreeModel_ItemRole_LastTreeRole //! last enumeration value to use outside incremented
-};
-
-#endif
diff --git a/tools/TreeModel/TreeModel_ItemStream.cxx b/tools/TreeModel/TreeModel_ItemStream.cxx
deleted file mode 100644
index f5d315e3db..0000000000
--- a/tools/TreeModel/TreeModel_ItemStream.cxx
+++ /dev/null
@@ -1,133 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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.
-
-#include <inspector/TreeModel_ItemStream.hxx>
-
-#include <inspector/TreeModel_ItemProperties.hxx>
-
-#include <Standard_Dump.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-TreeModel_ItemStream::TreeModel_ItemStream(TreeModel_ItemBasePtr theParent,
-                                           const int             theRow,
-                                           const int             theColumn)
-    : TreeModel_ItemBase(theParent, theRow, theColumn)
-{
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void TreeModel_ItemStream::Init()
-{
-  TreeModel_ItemBase::Init();
-
-  int aStreamChildrenCount = 0;
-  if (Column() == 0)
-  {
-    if (!myProperties)
-    {
-      myProperties = new TreeModel_ItemProperties();
-      myProperties->SetItem(currentItem());
-    }
-    myProperties->Init();
-    aStreamChildrenCount = myProperties->Children().Extent();
-  }
-  m_iStreamChildren = aStreamChildrenCount;
-  initStream(myStream);
-}
-
-// =======================================================================
-// function : Rest
-// purpose :
-// =======================================================================
-void TreeModel_ItemStream::Reset()
-{
-  myStream.str("");
-  TreeModel_ItemBase::Reset();
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant TreeModel_ItemStream::initValue(const int theItemRole) const
-{
-  QVariant aParentValue = TreeModel_ItemBase::initValue(theItemRole);
-  if (aParentValue.isValid())
-    return aParentValue;
-
-  if (Column() != 0)
-    return QVariant();
-
-  if (theItemRole == Qt::ForegroundRole)
-    return QColor(Qt::darkBlue);
-
-  if (theItemRole != Qt::DisplayRole && theItemRole != Qt::EditRole
-      && theItemRole != Qt::ToolTipRole)
-    return QVariant();
-
-  switch (Column())
-  {
-    case 0:
-      return Properties() ? Properties()->Key().ToCString() : "";
-  }
-  return QVariant();
-}
-
-// =======================================================================
-// function : StoreItemProperties
-// purpose :
-// =======================================================================
-void TreeModel_ItemStream::StoreItemProperties(const int, const int, const QVariant& theValue)
-{
-  Parent()->StoreItemProperties(-1, -1, theValue);
-}
-
-// =======================================================================
-// function : initStream
-// purpose :
-// =======================================================================
-void TreeModel_ItemStream::initStream(Standard_OStream& theOStream) const
-{
-  if (!Properties())
-    return;
-
-  theOStream << Properties()->StreamValue();
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void TreeModel_ItemStream::initItem() const
-{
-  if (IsInitialized())
-    return;
-  const_cast<TreeModel_ItemStream*>(this)->Init();
-}
-
-// =======================================================================
-// function : createChild
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr TreeModel_ItemStream::createChild(int theRow, int theColumn)
-{
-  return TreeModel_ItemStream::CreateItem(currentItem(), theRow, theColumn);
-}
diff --git a/tools/TreeModel/TreeModel_ItemStream.hxx b/tools/TreeModel/TreeModel_ItemStream.hxx
deleted file mode 100644
index b33fcea736..0000000000
--- a/tools/TreeModel/TreeModel_ItemStream.hxx
+++ /dev/null
@@ -1,105 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 TreeModel_ItemStream_H
-#define TreeModel_ItemStream_H
-
-#include <Standard.hxx>
-#include <NCollection_IndexedDataMap.hxx>
-#include <TCollection_AsciiString.hxx>
-
-#include <inspector/TreeModel_ItemBase.hxx>
-
-class TreeModel_ItemProperties;
-class TreeModel_ItemStream;
-
-typedef QExplicitlySharedDataPointer<TreeModel_ItemStream> TreeModel_ItemStreamPtr;
-
-//! \class TreeModel_ItemStream
-//! Parent item, that corresponds to AIS_InteractiveContext
-//! Children of the item are:
-//! - "Property" item to show context attributes such as selection filters and drawer properties
-//! - presentation items to show all interactive elements displayed/erased in the context
-class TreeModel_ItemStream : public TreeModel_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  static TreeModel_ItemStreamPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                            const int             theRow,
-                                            const int             theColumn)
-  {
-    return TreeModel_ItemStreamPtr(new TreeModel_ItemStream(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~TreeModel_ItemStream() {}
-
-  //! Sets the item internal initialized state to the true. If the item has internal values,
-  //! there should be initialized here.
-  Standard_EXPORT virtual void Init() Standard_OVERRIDE;
-
-  //! Resets the item and the child items content. Sets the initialized state to false.
-  //! If the item has internal values, they should be reset here.
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-  //! Returns number of displayed presentations
-  //! \return rows count
-  virtual int initRowCount() const Standard_OVERRIDE
-  {
-    initItem();
-    return 0;
-  }
-
-  //! Returns item information for the given role. Fills internal container if it was not filled yet
-  //! \param theItemRole a value role
-  //! \return the value
-  Standard_EXPORT virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
-
-  //! Stores values of the item properties into the item object
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \param theValue the cell value
-  Standard_EXPORT virtual void StoreItemProperties(const int       theRow,
-                                                   const int       theColumn,
-                                                   const QVariant& theValue) Standard_OVERRIDE;
-
-protected:
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  Standard_EXPORT virtual void initStream(Standard_OStream& theOStream) const Standard_OVERRIDE;
-
-  //! Initializes the current item. It creates a backup of the specific item information
-  //! Does nothing as context has been already set into item
-  Standard_EXPORT virtual void initItem() const Standard_OVERRIDE;
-
-protected:
-  //! Creates a child item in the given position.
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \return the created item
-  Standard_EXPORT virtual TreeModel_ItemBasePtr createChild(int theRow,
-                                                            int theColumn) Standard_OVERRIDE;
-
-private:
-  //! Constructor
-  //! \param theParent a parent item
-  //! \param theRow the item row position in the parent item
-  //! \param theColumn the item column position in the parent item
-  Standard_EXPORT TreeModel_ItemStream(TreeModel_ItemBasePtr theParent,
-                                       const int             theRow,
-                                       const int             theColumn);
-};
-
-#endif
diff --git a/tools/TreeModel/TreeModel_ModelBase.cxx b/tools/TreeModel/TreeModel_ModelBase.cxx
deleted file mode 100644
index 8d82faf377..0000000000
--- a/tools/TreeModel/TreeModel_ModelBase.cxx
+++ /dev/null
@@ -1,371 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TreeModel_ModelBase.hxx>
-
-#include <inspector/TreeModel_ItemBase.hxx>
-#include <inspector/TreeModel_ItemProperties.hxx>
-#include <inspector/TreeModel_Tools.hxx>
-#include <inspector/TreeModel_VisibilityState.hxx>
-
-#include <Standard_Transient.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QIcon>
-#include <Standard_WarningsRestore.hxx>
-
-const int COLUMN_NAME_WIDTH = 260;
-const int COLUMN_SIZE_WIDTH = 30;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-TreeModel_ModelBase::TreeModel_ModelBase(QObject* theParent)
-    : QAbstractItemModel(theParent),
-      m_pUseVisibilityColumn(false),
-      myVisibilityState(0)
-{
-  myVisibleIcon   = QIcon(":/icons/item_visible.png");
-  myInvisibleIcon = QIcon(":/icons/item_invisible.png");
-}
-
-// =======================================================================
-// function :  InitColumns
-// purpose :
-// =======================================================================
-void TreeModel_ModelBase::InitColumns()
-{
-  setHeaderItem(TreeModel_ColumnType_Name, TreeModel_HeaderSection("Name", COLUMN_NAME_WIDTH));
-  setHeaderItem(
-    TreeModel_ColumnType_Visibility,
-    TreeModel_HeaderSection("Visibility", TreeModel_ModelBase::ColumnVisibilityWidth()));
-  setHeaderItem(TreeModel_ColumnType_Row, TreeModel_HeaderSection("Row", COLUMN_SIZE_WIDTH));
-}
-
-// =======================================================================
-// function :  GetItemByIndex
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr TreeModel_ModelBase::GetItemByIndex(const QModelIndex& theIndex)
-{
-  TreeModel_ItemBase* anItem = (TreeModel_ItemBase*)theIndex.internalPointer();
-  return TreeModel_ItemBasePtr(anItem);
-}
-
-// =======================================================================
-// function :  reset
-// purpose :
-// =======================================================================
-void TreeModel_ModelBase::Reset()
-{
-  for (int aColId = 0, aNbColumns = columnCount(); aColId < aNbColumns; aColId++)
-  {
-    TreeModel_ItemBasePtr aRootItem = RootItem(aColId);
-    if (aRootItem)
-      aRootItem->Reset();
-  }
-}
-
-// =======================================================================
-// function :  index
-// purpose :
-// =======================================================================
-QModelIndex TreeModel_ModelBase::index(int                theRow,
-                                       int                theColumn,
-                                       const QModelIndex& theParent) const
-{
-  if (!hasIndex(theRow, theColumn, theParent))
-    return QModelIndex();
-
-  // to create index on the root item
-  if (!theParent.isValid())
-    return createIndex(theRow, theColumn, getIndexValue(RootItem(theColumn)));
-
-  TreeModel_ItemBasePtr aParentItem;
-  if (!theParent.isValid())
-    aParentItem = RootItem(theColumn);
-  else
-    aParentItem = GetItemByIndex(theParent);
-
-  TreeModel_ItemBasePtr aChildItem = aParentItem->Child(theRow, theColumn);
-  return aChildItem ? createIndex(theRow, theColumn, getIndexValue(aChildItem)) : QModelIndex();
-}
-
-// =======================================================================
-// function :  data
-// purpose :
-// =======================================================================
-QVariant TreeModel_ModelBase::data(const QModelIndex& theIndex, int theRole) const
-{
-  if (!theIndex.isValid())
-    return QVariant("undefined");
-
-  if (IsUseVisibilityColumn() && theIndex.column() == TreeModel_ColumnType_Visibility)
-  {
-    if (theRole != Qt::DecorationRole)
-      return QVariant();
-
-    TreeModel_ItemBasePtr anItem = GetItemByIndex(theIndex);
-    if (!anItem->data(theIndex, theRole).isNull()) // value is already in cache
-      return anItem->data(theIndex, theRole);
-
-    if (!anItem->IsInitialized())
-      anItem->Init();
-
-    if (!myVisibilityState || !myVisibilityState->CanBeVisible(theIndex))
-      return QVariant();
-
-    QVariant aValue = myVisibilityState->IsVisible(theIndex) ? myVisibleIcon : myInvisibleIcon;
-    anItem->SetCustomData(aValue, theRole);
-    return aValue;
-  }
-
-  TreeModel_ItemBasePtr anItem     = GetItemByIndex(theIndex);
-  QVariant              anItemData = anItem->data(theIndex, theRole);
-
-  if (anItemData.isNull() && theRole == Qt::BackgroundRole
-      && myHighlightedIndices.contains(theIndex))
-    anItemData = TreeModel_Tools::LightHighlightColor();
-
-  return anItemData;
-}
-
-// =======================================================================
-// function :  parent
-// purpose :
-// =======================================================================
-QModelIndex TreeModel_ModelBase::parent(const QModelIndex& theIndex) const
-{
-  if (!theIndex.isValid())
-    return QModelIndex();
-
-  TreeModel_ItemBasePtr aChildItem  = GetItemByIndex(theIndex);
-  TreeModel_ItemBasePtr aParentItem = aChildItem ? aChildItem->Parent() : TreeModel_ItemBasePtr();
-
-  if (!aParentItem)
-    return QModelIndex();
-
-  return createIndex(aParentItem->Row(), aParentItem->Column(), getIndexValue(aParentItem));
-}
-
-// =======================================================================
-// function :  flags
-// purpose :
-// =======================================================================
-Qt::ItemFlags TreeModel_ModelBase::flags(const QModelIndex& theIndex) const
-{
-  if (!theIndex.isValid())
-  {
-    return Qt::ItemFlags();
-  }
-  return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
-}
-
-// =======================================================================
-// function : headerData
-// purpose :
-// =======================================================================
-QVariant TreeModel_ModelBase::headerData(int             theSection,
-                                         Qt::Orientation theOrientation,
-                                         int             theRole) const
-{
-  if (theOrientation != Qt::Horizontal || theRole != Qt::DisplayRole)
-    return QVariant();
-
-  if (IsUseVisibilityColumn() && theSection == TreeModel_ColumnType_Visibility)
-    return QVariant();
-
-  return myHeaderValues[theSection].GetName();
-}
-
-// =======================================================================
-// function :  rowCount
-// purpose :
-// =======================================================================
-int TreeModel_ModelBase::rowCount(const QModelIndex& theParent) const
-{
-  // to create index on the root item
-  if (!theParent.isValid())
-    return 1;
-
-  TreeModel_ItemBasePtr aParentItem;
-  if (!theParent.isValid())
-    aParentItem = RootItem(0);
-  else
-    aParentItem = GetItemByIndex(theParent);
-
-  if (!aParentItem)
-    return 0;
-
-  return aParentItem ? aParentItem->rowCount() : 0;
-}
-
-// =======================================================================
-// function : EmitLayoutChanged
-// purpose :
-// =======================================================================
-void TreeModel_ModelBase::EmitLayoutChanged()
-{
-  emit layoutChanged();
-}
-
-// =======================================================================
-// function : EmitLayoutChanged
-// purpose :
-// =======================================================================
-void TreeModel_ModelBase::EmitDataChanged(const QModelIndex&  theTopLeft,
-                                          const QModelIndex&  theBottomRight,
-                                          const QVector<int>& theRoles,
-                                          const bool          isResetItem)
-{
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(theTopLeft);
-  if (anItemBase && isResetItem)
-    anItemBase->Reset();
-
-#if QT_VERSION < 0x050000
-  (void)theRoles;
-  emit dataChanged(theTopLeft, theBottomRight);
-#else
-  emit dataChanged(theTopLeft, theBottomRight, theRoles);
-#endif
-}
-
-// =======================================================================
-// function : Selected
-// purpose :
-// =======================================================================
-QModelIndexList TreeModel_ModelBase::Selected(const QModelIndexList& theIndices,
-                                              const int              theCellId,
-                                              const Qt::Orientation  theOrientation)
-{
-  QModelIndexList aSelected;
-  for (QModelIndexList::const_iterator anIndicesIt = theIndices.begin();
-       anIndicesIt != theIndices.end();
-       anIndicesIt++)
-  {
-    QModelIndex anIndex = *anIndicesIt;
-    if ((theOrientation == Qt::Horizontal && anIndex.column() == theCellId)
-        || (theOrientation == Qt::Vertical && anIndex.row() == theCellId))
-      aSelected.append(anIndex);
-  }
-  return aSelected;
-}
-
-// =======================================================================
-// function : SingleSelected
-// purpose :
-// =======================================================================
-QModelIndex TreeModel_ModelBase::SingleSelected(const QModelIndexList& theIndices,
-                                                const int              theCellId,
-                                                const Qt::Orientation  theOrientation)
-{
-  QModelIndexList aSelected = Selected(theIndices, theCellId, theOrientation);
-  return aSelected.size() == 1 ? aSelected.first() : QModelIndex();
-}
-
-// =======================================================================
-// function :  SelectedItems
-// purpose :
-// =======================================================================
-QList<TreeModel_ItemBasePtr> TreeModel_ModelBase::SelectedItems(const QModelIndexList& theIndices)
-{
-  QList<TreeModel_ItemBasePtr> anItems;
-
-  for (QModelIndexList::const_iterator anIndicesIt = theIndices.begin();
-       anIndicesIt != theIndices.end();
-       anIndicesIt++)
-  {
-    TreeModel_ItemBasePtr anItem = TreeModel_ModelBase::GetItemByIndex(*anIndicesIt);
-    if (!anItem || anItems.contains(anItem))
-      continue;
-    anItems.append(anItem);
-  }
-  return anItems;
-}
-
-// =======================================================================
-// function : SubItemsPresentations
-// purpose :
-// =======================================================================
-void TreeModel_ModelBase::SubItemsPresentations(
-  const QModelIndexList&                        theIndices,
-  NCollection_List<Handle(Standard_Transient)>& thePresentations)
-{
-  QList<TreeModel_ItemBasePtr> anItems;
-
-  for (QModelIndexList::const_iterator anIndicesIt = theIndices.begin();
-       anIndicesIt != theIndices.end();
-       anIndicesIt++)
-  {
-    TreeModel_ItemBasePtr anItem = TreeModel_ModelBase::GetItemByIndex(*anIndicesIt);
-    if (!anItem || anItems.contains(anItem))
-      continue;
-    subItemsPresentations(anItem, thePresentations);
-  }
-}
-
-// =======================================================================
-// function : subItemPresentations
-// purpose :
-// =======================================================================
-void TreeModel_ModelBase::subItemsPresentations(
-  const TreeModel_ItemBasePtr&                  theItem,
-  NCollection_List<Handle(Standard_Transient)>& thePresentations)
-{
-  theItem->Presentations(thePresentations);
-
-  QList<TreeModel_ItemBasePtr> anItems;
-  for (int aRowId = 0; aRowId < theItem->rowCount(); aRowId++)
-  {
-    subItemsPresentations(theItem->Child(aRowId, theItem->Column()), thePresentations);
-  }
-}
-
-// =======================================================================
-// function : createRoot
-// purpose :
-// =======================================================================
-void TreeModel_ModelBase::createRoot(const int theColumnId)
-{
-  myRootItems.insert(theColumnId, createRootItem(theColumnId));
-}
-
-// =======================================================================
-// function : setHeaderItem
-// purpose :
-// =======================================================================
-void TreeModel_ModelBase::setHeaderItem(const int                      theColumnId,
-                                        const TreeModel_HeaderSection& theSection)
-{
-  if (theSection.IsEmpty())
-  {
-    // remove section
-    myHeaderValues.remove(theColumnId);
-    myRootItems.remove(theColumnId);
-  }
-
-  myHeaderValues[theColumnId] = theSection;
-  createRoot(theColumnId);
-}
-
-// =======================================================================
-// function :  getIndexValue
-// purpose :
-// =======================================================================
-void* TreeModel_ModelBase::getIndexValue(const TreeModel_ItemBasePtr& theItem)
-{
-  return theItem.data();
-}
diff --git a/tools/TreeModel/TreeModel_ModelBase.hxx b/tools/TreeModel/TreeModel_ModelBase.hxx
deleted file mode 100644
index 8eb7f9ba0a..0000000000
--- a/tools/TreeModel/TreeModel_ModelBase.hxx
+++ /dev/null
@@ -1,246 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TreeModel_ModelBase_H
-#define TreeModel_ModelBase_H
-
-#include <Standard.hxx>
-#include <inspector/TreeModel_ItemBase.hxx>
-#include <inspector/TreeModel_HeaderSection.hxx>
-
-#include <NCollection_List.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractItemModel>
-#include <QExplicitlySharedDataPointer>
-#include <QMap>
-#include <QModelIndex>
-#include <QVariant>
-#include <QVector>
-#include <Standard_WarningsRestore.hxx>
-
-class TreeModel_VisibilityState;
-
-//! \class TreeModel_ModelBase
-//! \brief Implementation of the tree item based model of QAbstractItemModel.
-//! The TreeModel_ModelBase class defines the abstract model realization through the base item
-//! architecture. By the model index creation, a base item is created and attached to the index.
-//! Each item contains an iformation about the item parent, position in the parent and
-//! the item's children. So, it is possible to get the model index relation from the item.
-class TreeModel_ModelBase : public QAbstractItemModel
-{
-public:
-  //! Constructor
-  //! \param theParent the parent object
-  Standard_EXPORT TreeModel_ModelBase(QObject* theParent = 0);
-
-  //! Destructor
-  virtual ~TreeModel_ModelBase() {}
-
-  //! Creates model columns and root items.
-  //! Default columns are: [0] - Name, [1] - Visibility, [2] - Row
-  Standard_EXPORT virtual void InitColumns();
-
-  //! Returns the item shared pointer by the model index
-  //! if it is in the index internal pointer
-  //! @param theIndex a model index
-  Standard_EXPORT static TreeModel_ItemBasePtr GetItemByIndex(const QModelIndex& theIndex);
-
-  //! Resets the model items content. Calls the same method of the root item.
-  //! It leads to reset of all child/sub child items.
-  Standard_EXPORT virtual void Reset();
-
-  //! Returns the model root item.
-  //! It is realized for OCAFBrowser
-  TreeModel_ItemBasePtr RootItem(const int theColumn) const { return myRootItems[theColumn]; }
-
-  //! Emits the layoutChanged signal from outside of this class
-  Standard_EXPORT void EmitLayoutChanged();
-
-  //! Emits the dataChanged signal from outside of this class
-  Standard_EXPORT void EmitDataChanged(const QModelIndex&  theTopLeft,
-                                       const QModelIndex&  theBottomRight,
-                                       const QVector<int>& theRoles    = QVector<int>(),
-                                       const bool          isResetItem = true);
-
-  //! Sets state whether visibility column (0) is used in the model
-  //! \param theState state
-  void SetUseVisibilityColumn(const bool theState) { m_pUseVisibilityColumn = theState; }
-
-  //! Returns state whether visibility column (0) is used in the model
-  //! \param theState state
-  bool IsUseVisibilityColumn() const { return m_pUseVisibilityColumn; }
-
-  //! Fills visibility state checker
-  //! \param theController the checker interface
-  void SetVisibilityState(TreeModel_VisibilityState* theController)
-  {
-    myVisibilityState = theController;
-  }
-
-  //! Returns visibility state checker
-  //! \return the checker interface
-  TreeModel_VisibilityState* GetVisibilityState() const { return myVisibilityState; }
-
-  //! Returns true if the tree view model contains highlighted items. This highlight is set
-  //! manually.
-  bool HasHighlighted() { return !myHighlightedIndices.isEmpty(); }
-
-  //! Sets items of the indices highlighted in the model.
-  //! \param theIndices a list of tree model indices
-  void SetHighlighted(const QModelIndexList& theIndices = QModelIndexList())
-  {
-    myHighlightedIndices = theIndices;
-  }
-
-  //! Returns the index of the item in the model specified by the given row, column and parent
-  //! index. Saves an internal pointer at the createIndex. This pointer is a shared pointer to the
-  //! class, that realizes a base item interface. If the parent is invalid, a root item is used,
-  //! otherwise a new item is created by the pointer item saved the parent model index \param theRow
-  //! the index row position \param theColummn the index column position \param theParent the parent
-  //! index \return the model index
-  Standard_EXPORT virtual QModelIndex index(int                theRow,
-                                            int                theColumn,
-                                            const QModelIndex& theParent = QModelIndex()) const
-    Standard_OVERRIDE;
-
-  //! Returns the data stored under the given role for the item referred to by the index.
-  //! \param theIndex a model index
-  //! \param theRole an enumeration value of role for data obtaining
-  Standard_EXPORT virtual QVariant data(const QModelIndex& theIndex,
-                                        int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
-
-  //! Returns the parent index by the child index. Founds the item, saved in the index;
-  //! obtains the parent item by the item. Create a new index by the item and containing it.
-  //! \param theIndex a model index
-  Standard_EXPORT virtual QModelIndex parent(const QModelIndex& theIndex) const Standard_OVERRIDE;
-
-  //! Returns the item flags for the given index. The base class implementation returns a
-  //! combination of flags that enables the item (ItemIsEnabled) and allows it to be selected
-  //! (ItemIsSelectable) \param theIndex the model index \return Qt flag combination
-  Standard_EXPORT virtual Qt::ItemFlags flags(const QModelIndex& theIndex) const Standard_OVERRIDE;
-
-  //! Returns the header data for the given role and section in the header with the specified
-  //! orientation. \param theSection the header section. For horizontal headers - column number, for
-  //! vertical headers - row number. \param theOrientation a header orientation \param theRole a
-  //! data role \return the header data
-  Standard_EXPORT virtual QVariant headerData(int             theSection,
-                                              Qt::Orientation theOrientation,
-                                              int             theRole = Qt::DisplayRole) const
-    Standard_OVERRIDE;
-
-  //! Returns the number of rows under the given parent. When the parent is valid it means that
-  //! rowCount is returning the number of children of parent. \param theParent a parent model index
-  //! \return the number of rows
-  Standard_EXPORT virtual int rowCount(const QModelIndex& theParent = QModelIndex()) const
-    Standard_OVERRIDE;
-
-  //! Returns header item, that can be modified
-  //! \param theColumnId a column index
-  //! \return header section value
-  TreeModel_HeaderSection* ChangeHeaderItem(const int theColumnId)
-  {
-    return &myHeaderValues[theColumnId];
-  }
-
-  //! Returns count of columns in the model
-  //! \param theParent an index of the parent item
-  //! \return integer value
-  virtual int columnCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return myHeaderValues.size();
-  }
-
-  //! Returns default value of the visibility column
-  //! \return integer value
-  static int ColumnVisibilityWidth() { return 20; }
-
-  //! Returns selected items in the cell of given orientation.
-  //! \param theIndices a container of selected indices
-  //! \param theCellId column index if orientation is horizontal, row index otherwise
-  //! \param theOrientation an orientation to apply the cell index
-  //! \return model indices from the list
-  Standard_EXPORT static QModelIndexList Selected(
-    const QModelIndexList& theIndices,
-    const int              theCellId,
-    const Qt::Orientation  theOrientation = Qt::Horizontal);
-
-  //! Returns single selected item in the cell of given orientation. If the orientation is
-  //! Horizontal, in the cell id column, one row should be selected. \param theIndices a container
-  //! of selected indices \param theCellId column index if orientation is horizontal, row index
-  //! otherwise \param theOrientation an orientation to apply the cell index \return model index
-  //! from the list
-  Standard_EXPORT static QModelIndex SingleSelected(
-    const QModelIndexList& theIndices,
-    const int              theCellId,
-    const Qt::Orientation  theOrientation = Qt::Horizontal);
-
-  //! Returns selected tree model items for indices.
-  //! \param theIndices a container of selected indices
-  //! \return model items from the list
-  Standard_EXPORT static QList<TreeModel_ItemBasePtr> SelectedItems(
-    const QModelIndexList& theIndices);
-
-  //! Returns presentations of sub items
-  //! \param theIndices a container of selected indices
-  //! \thePresentations[out]  container of presentations
-  Standard_EXPORT static void SubItemsPresentations(
-    const QModelIndexList&                        theIndices,
-    NCollection_List<Handle(Standard_Transient)>& thePresentations);
-
-protected:
-  //! Creates root item
-  //! \param theColumnId index of a column
-  virtual TreeModel_ItemBasePtr createRootItem(const int theColumnId) = 0;
-
-  //! Sets header properties item.
-  //! \param theColumnId a column index
-  //! \param theSection a section value
-  Standard_EXPORT void setHeaderItem(const int                      theColumnId,
-                                     const TreeModel_HeaderSection& theSection);
-
-  //! Converts the item shared pointer to void* type
-  //! \param theItem
-  //!  \return an item pointer
-  Standard_EXPORT static void* getIndexValue(const TreeModel_ItemBasePtr& theItem);
-
-  //! Returns presentations of sub items. Recursive method to get presentations of all children
-  //! \param theItem an item to get own presentations and presentations of children
-  //! \thePresentations[out]  container of presentations found
-  static void subItemsPresentations(const TreeModel_ItemBasePtr&                  theItem,
-                                    NCollection_List<Handle(Standard_Transient)>& thePresentations);
-
-private:
-  //! Creates root item
-  //! \param theColumnId index of a column
-  Standard_EXPORT void createRoot(const int theColumnId);
-
-protected:
-  QMap<int, TreeModel_ItemBasePtr>
-    myRootItems; //!< container of root items, for each column own root item
-  QMap<int, TreeModel_HeaderSection> myHeaderValues; //!< header values
-  //!< model subclass. The model is fulfilled by this item content
-
-  bool m_pUseVisibilityColumn; //!< the state whether column=0 is reserved for Visibility state
-  TreeModel_VisibilityState* myVisibilityState; //!< the interface of item visibility
-  QIcon                      myVisibleIcon;     //!< icon of visible state
-  QIcon                      myInvisibleIcon;   //!< icon of invisible state
-
-  QModelIndexList
-    myHighlightedIndices; //!< tree model indices that should be visualized as highlighted
-};
-
-#endif
diff --git a/tools/TreeModel/TreeModel_Tools.cxx b/tools/TreeModel/TreeModel_Tools.cxx
deleted file mode 100644
index 64a32e9309..0000000000
--- a/tools/TreeModel/TreeModel_Tools.cxx
+++ /dev/null
@@ -1,257 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TreeModel_Tools.hxx>
-#include <inspector/TreeModel_ModelBase.hxx>
-#include <inspector/TreeModel_ColumnType.hxx>
-#include <inspector/TreeModel_VisibilityState.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAction>
-#include <QApplication>
-#include <QFont>
-#include <QFontMetrics>
-#include <QHeaderView>
-#include <QObject>
-#include <QRegExp>
-#include <QStringList>
-#include <QStyle>
-#include <QTreeView>
-#include <Standard_WarningsRestore.hxx>
-
-const int INFO_LENGHT = 60;
-
-// =======================================================================
-// function : ToString
-// purpose :
-// =======================================================================
-QString TreeModel_Tools::ToString(const QByteArray& theValue)
-{
-  char        aBuffer[8];
-  QStringList aBytesList;
-  for (int aByteId = 0; aByteId < theValue.size(); aByteId++)
-  {
-    ::sprintf(aBuffer, "#%02X", (unsigned char)theValue.at(aByteId));
-    aBytesList.append(QString(aBuffer));
-  }
-  return QString("@ByteArray[%1]").arg(aBytesList.join(" "));
-}
-
-// =======================================================================
-// function : ToByteArray
-// purpose :
-// =======================================================================
-QByteArray TreeModel_Tools::ToByteArray(const QString& theValue)
-{
-  QByteArray aStateArray;
-  if (!theValue.startsWith("@ByteArray[") || !theValue.endsWith(']'))
-    return aStateArray;
-
-  QString aValue = theValue.mid(11, theValue.size() - 12);
-#include <Standard_WarningsDisable.hxx>
-  QStringList lst = aValue.split(QRegExp("[\\s|,]"), QString::SkipEmptyParts);
-#include <Standard_WarningsRestore.hxx>
-  for (QStringList::ConstIterator aByteId = lst.begin(); aByteId != lst.end(); ++aByteId)
-  {
-    int     aBase   = 10;
-    QString aString = *aByteId;
-    if (aString.startsWith("#"))
-    {
-      aBase   = 16;
-      aString = aString.mid(1);
-    }
-    bool isOk = false;
-    int  aNum = aString.toInt(&isOk, aBase);
-    if (!isOk || aNum < 0 || aNum > 255)
-      continue;
-    aStateArray.append((char)aNum);
-  }
-  return aStateArray;
-}
-
-// =======================================================================
-// function : SaveState
-// purpose :
-// =======================================================================
-void TreeModel_Tools::SaveState(QTreeView*              theTreeView,
-                                QMap<QString, QString>& theItems,
-                                const QString&          thePrefix)
-{
-  QStringList aColumnWidths;
-  for (int aColumnId = 0; aColumnId < theTreeView->model()->columnCount(); aColumnId++)
-  {
-    if (theTreeView->isColumnHidden(aColumnId))
-    {
-      aColumnWidths.append(QString());
-    }
-    else
-      aColumnWidths.append(QString::number(theTreeView->columnWidth(aColumnId)));
-  }
-  theItems[thePrefix + "columns_width"] = aColumnWidths.join(",");
-}
-
-// =======================================================================
-// function : RestoreState
-// purpose :
-// =======================================================================
-bool TreeModel_Tools::RestoreState(QTreeView*     theTreeView,
-                                   const QString& theKey,
-                                   const QString& theValue,
-                                   const QString& thePrefix)
-{
-  if (theKey == thePrefix + "columns_width")
-  {
-    QStringList aValues = theValue.split(",");
-    for (int aColumnId = 0;
-         aColumnId < theTreeView->model()->columnCount() && aColumnId < aValues.size();
-         aColumnId++)
-    {
-      bool isOk;
-      int  aWidth = aValues.at(aColumnId).toInt(&isOk);
-      if (isOk && !theTreeView->isColumnHidden(aColumnId)) // do not resize hidden columns
-        theTreeView->setColumnWidth(aColumnId, aWidth);
-    }
-  }
-  else
-    return false;
-  return true;
-}
-
-// =======================================================================
-// function : SetDefaultHeaderSections
-// purpose :
-// =======================================================================
-void TreeModel_Tools::SetDefaultHeaderSections(QTreeView* theTreeView)
-{
-  TreeModel_ModelBase* aTreeModel = dynamic_cast<TreeModel_ModelBase*>(theTreeView->model());
-
-  for (int aColumnId = 0, aNbColumns = aTreeModel->columnCount(); aColumnId < aNbColumns;
-       aColumnId++)
-  {
-    TreeModel_HeaderSection* aSection = aTreeModel->ChangeHeaderItem(aColumnId);
-    theTreeView->setColumnWidth(aColumnId, aSection->GetWidth());
-    theTreeView->setColumnHidden(aColumnId, aSection->IsHidden());
-  }
-}
-
-// =======================================================================
-// function : UseVisibilityColumn
-// purpose :
-// =======================================================================
-void TreeModel_Tools::UseVisibilityColumn(QTreeView* theTreeView, const bool theActive)
-{
-  QHeaderView* aHeader = theTreeView->header();
-#if QT_VERSION < 0x050000
-  aHeader->setResizeMode(TreeModel_ColumnType_Visibility, QHeaderView::Fixed);
-#else
-  aHeader->setSectionResizeMode(TreeModel_ColumnType_Visibility, QHeaderView::Fixed);
-#endif
-  aHeader->moveSection(TreeModel_ColumnType_Name, TreeModel_ColumnType_Visibility);
-
-  TreeModel_ModelBase*     aModel = dynamic_cast<TreeModel_ModelBase*>(theTreeView->model());
-  TreeModel_HeaderSection* anItem = aModel->ChangeHeaderItem((int)TreeModel_ColumnType_Visibility);
-  anItem->SetIsHidden(theActive);
-  anItem->SetWidth(TreeModel_ModelBase::ColumnVisibilityWidth());
-
-  aModel->SetUseVisibilityColumn(theActive);
-}
-
-// =======================================================================
-// function : GetTextWidth
-// purpose :
-// =======================================================================
-int TreeModel_Tools::GetTextWidth(const QString& theText, QObject*)
-{
-  // TODO: find margins like QApplication::style()->pixelMetric(QStyle::PM_FocusFrameHMargin, 0,
-  // (QWidget*)theParent);
-  int          aTextMargin = 10;
-  QFontMetrics aFontMetrics(QApplication::font());
-  QRect        aBoundingRect = aFontMetrics.boundingRect(theText);
-#include <Standard_WarningsDisable.hxx>
-  return qMax(aBoundingRect.width(), aFontMetrics.width(theText)) + aTextMargin * 2;
-#include <Standard_WarningsRestore.hxx>
-}
-
-// =======================================================================
-// function : CutString
-// purpose :
-// =======================================================================
-QString TreeModel_Tools::CutString(const QString& theText,
-                                   const int      theWidth,
-                                   const QString& theTail)
-{
-  if (theText.isEmpty())
-    return theText;
-
-  int aLength = theWidth < 0 ? INFO_LENGHT : theWidth - 3;
-
-  int anIndex = theText.indexOf('\n');
-  if (anIndex > 0 && anIndex < aLength)
-    aLength = anIndex;
-
-  return aLength < theText.length() ? theText.mid(0, aLength) + theTail : theText;
-}
-
-// =======================================================================
-// function : LightHighlightColor
-// purpose :
-// =======================================================================
-QColor TreeModel_Tools::LightHighlightColor()
-{
-  QWidget  aWidget;
-  QPalette aPalette = aWidget.palette();
-  return aPalette.highlight().color().lighter();
-}
-
-// =======================================================================
-// function : SetExpandedTo
-// purpose :
-// =======================================================================
-void TreeModel_Tools::SetExpandedTo(QTreeView* theTreeView, const QModelIndex& theIndex)
-{
-  QAbstractItemModel* aModel = theTreeView->model();
-
-  QModelIndex aParent = aModel->parent(theIndex);
-  while (aParent.isValid())
-  {
-    theTreeView->setExpanded(aParent, true);
-    aParent = aModel->parent(aParent);
-  }
-}
-
-// =======================================================================
-// function : setExpanded
-// purpose :
-// =======================================================================
-void TreeModel_Tools::SetExpanded(QTreeView*         theTreeView,
-                                  const QModelIndex& theIndex,
-                                  const bool         isExpanded,
-                                  int&               theLevels)
-{
-  bool isToExpand = theLevels == -1 || theLevels > 0;
-  if (!isToExpand)
-    return;
-
-  theTreeView->setExpanded(theIndex, isExpanded);
-  if (theLevels != -1)
-    theLevels--;
-
-  QAbstractItemModel* aModel = theTreeView->model();
-  for (int aRowId = 0, aRows = aModel->rowCount(theIndex); aRowId < aRows; aRowId++)
-  {
-    int aLevels = theLevels;
-    SetExpanded(theTreeView, aModel->index(aRowId, 0, theIndex), isExpanded, aLevels);
-  }
-}
diff --git a/tools/TreeModel/TreeModel_Tools.hxx b/tools/TreeModel/TreeModel_Tools.hxx
deleted file mode 100644
index 41b058f51e..0000000000
--- a/tools/TreeModel/TreeModel_Tools.hxx
+++ /dev/null
@@ -1,120 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TreeModel_Tools_H
-#define TreeModel_Tools_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QByteArray>
-#include <QColor>
-#include <QMap>
-#include <QModelIndex>
-#include <QString>
-#include <QStyle>
-#include <Standard_WarningsRestore.hxx>
-
-class QAction;
-class QObject;
-class QTreeView;
-
-//! \class TreeModel_Tools
-//! \brief The tool that gives auxiliary methods for qt elements manipulation
-class TreeModel_Tools
-{
-public:
-  //! Converts a Qt string to byte array, string has mask: @ByteArray[...]
-  //! \param theValue a converted string
-  //! \return the extended filled array
-  Standard_EXPORT static QString ToString(const QByteArray& theValue);
-
-  //! Converts a Qt byte array to Qt string. It has mask: @ByteArray[...]
-  //! \param theValue a converted string
-  //! \return the extended filled array
-  Standard_EXPORT static QByteArray ToByteArray(const QString& theValue);
-
-  //! Returns header margin, defined in style settings of application
-  //! \return integer value
-  static int HeaderSectionMargin() { return qApp->style()->pixelMetric(QStyle::PM_HeaderMargin); }
-
-  //! Saves state of tree view in a container in form: key, value. It saves:
-  //! - visibility of columns,
-  //! - columns width
-  //! \param theTreeView a view instance
-  //! \param[out] theItems  properties
-  //! \param thePrefix preference item prefix
-  Standard_EXPORT static void SaveState(QTreeView*              theTreeView,
-                                        QMap<QString, QString>& theItems,
-                                        const QString&          thePrefix = QString());
-
-  //! Restores state of tree view by a container
-  //! \param theTreeView a view instance
-  //! \param theKey property key
-  //! \param theValue property value
-  //! \param thePrefix preference item prefix
-  //! \return boolean value whether the property is applied to the tree view
-  Standard_EXPORT static bool RestoreState(QTreeView*     theTreeView,
-                                           const QString& theKey,
-                                           const QString& theValue,
-                                           const QString& thePrefix = QString());
-
-  //! Fills tree view by default sections parameters obtained in view's tree model
-  //! \param theTreeView tree view instance
-  Standard_EXPORT static void SetDefaultHeaderSections(QTreeView* theTreeView);
-
-  //! Sets using visibility column in the tree view:
-  //! - sets the state in the TreeModel
-  //! - set section width, not resizable
-  //! \param theTreeView a view instance
-  //! \param theActive boolean value if the column should be connected/visible and other
-  Standard_EXPORT static void UseVisibilityColumn(QTreeView* theTreeView,
-                                                  const bool theActive = true);
-
-  //! Returns the text width
-  //! \param theText source text
-  //! \param theParent parent widget with its own style
-  //! \return calculated width value
-  Standard_EXPORT static int GetTextWidth(const QString& theText, QObject* theParent);
-
-  //! Returns string cut by width and '\n'
-  //! \param theText processing string
-  //! \param theWidth width value, if -1, default value is used
-  //! \param theTail symbols added to the end of the cut string
-  Standard_EXPORT static QString CutString(const QString& theText,
-                                           const int      theWidth = -1,
-                                           const QString& theTail  = "...");
-
-  //! Returns light highlight color
-  //! \returns Qt color
-  Standard_EXPORT static QColor LightHighlightColor();
-
-  //! Makes the view expanded from the root till the index
-  Standard_EXPORT static void SetExpandedTo(QTreeView* theTreeView, const QModelIndex& theIndex);
-
-  //! Expands items in tree view staring from the index recursive in given number of levels
-  //! \param theTreeView an OCAF tree view
-  //! \param theParentIndex an index which children should be expanded
-  //! \param isExpanded a boolean state if the item should be expanded or collapsed
-  //! \param theLevels a number of levels to be expanded, or -1 for all levels
-  Standard_EXPORT static void SetExpanded(QTreeView*         theTreeView,
-                                          const QModelIndex& theIndex,
-                                          const bool         isExpanded,
-                                          int&               theLevels);
-};
-
-#endif
diff --git a/tools/TreeModel/TreeModel_VisibilityState.cxx b/tools/TreeModel/TreeModel_VisibilityState.cxx
deleted file mode 100644
index 2be26abad3..0000000000
--- a/tools/TreeModel/TreeModel_VisibilityState.cxx
+++ /dev/null
@@ -1,32 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/TreeModel_VisibilityState.hxx>
-
-// =======================================================================
-// function : OnClicked
-// purpose :
-// =======================================================================
-bool TreeModel_VisibilityState::processClicked(const QModelIndex& theIndex)
-{
-  if (theIndex.column() != TreeModel_ColumnType_Visibility)
-    return false;
-
-  if (!CanBeVisible(theIndex))
-    return false;
-
-  SetVisible(theIndex, !IsVisible(theIndex), true);
-  return true;
-}
diff --git a/tools/TreeModel/TreeModel_VisibilityState.hxx b/tools/TreeModel/TreeModel_VisibilityState.hxx
deleted file mode 100644
index cd1b14023a..0000000000
--- a/tools/TreeModel/TreeModel_VisibilityState.hxx
+++ /dev/null
@@ -1,75 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 TreeModel_VisibilityState_H
-#define TreeModel_VisibilityState_H
-
-#include <inspector/TreeModel_ModelBase.hxx>
-#include <inspector/TreeModel_ColumnType.hxx>
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-//! \class TreeModel_VisibilityState
-//! \brief Interface that provides connection between model and visualization control to:
-//! - know whether the model item is visible
-//! - change visibility of the model item
-class TreeModel_VisibilityState
-{
-public:
-  //! Constructor
-  TreeModel_VisibilityState(TreeModel_ModelBase* theModel)
-      : myModel(theModel)
-  {
-  }
-
-  //! Destructor
-  ~TreeModel_VisibilityState() {}
-
-  //! Returns true if visibility of the item can be changed
-  //! \param theIndex tree model index
-  //! \return boolean value
-  virtual bool CanBeVisible(const QModelIndex& theIndex) const = 0;
-
-  //! Sets visibility state
-  //! \param theIndex tree model index
-  //! \param theState visibility state
-  //! \param toEmitDataChanged boolean flag whether emit of the model should be done immediately
-  //! \return true if state is changed
-  virtual bool SetVisible(const QModelIndex& theIndex,
-                          const bool         theState,
-                          const bool         toEmitDataChanged = true) = 0;
-
-  //! Returns visibility state value
-  //! \param theIndex tree model index
-  //! \return boolean value
-  virtual bool IsVisible(const QModelIndex& theIndex) const = 0;
-
-protected:
-  //! Processes the mouse clicked on the index.
-  //! It changes the item visibility if model allows to change it.
-  //! \theIndex tree model index
-  //! \return true if click is processed
-  Standard_EXPORT bool processClicked(const QModelIndex& theIndex);
-
-protected:
-  //! tree view model
-  TreeModel_ModelBase* getModel() const { return myModel; }
-
-private:
-  TreeModel_ModelBase* myModel; //!< tree view model
-};
-
-#endif
diff --git a/tools/TreeModel/icons/item_invisible.png b/tools/TreeModel/icons/item_invisible.png
deleted file mode 100644
index 8feb1e7bca..0000000000
Binary files a/tools/TreeModel/icons/item_invisible.png and /dev/null differ
diff --git a/tools/TreeModel/icons/item_visible.png b/tools/TreeModel/icons/item_visible.png
deleted file mode 100644
index e0bbf75fc8..0000000000
Binary files a/tools/TreeModel/icons/item_visible.png and /dev/null differ
diff --git a/tools/VInspector/FILES b/tools/VInspector/FILES
deleted file mode 100644
index 5b4359799d..0000000000
--- a/tools/VInspector/FILES
+++ /dev/null
@@ -1,26 +0,0 @@
-VInspector.qrc
-VInspector_Communicator.cxx
-VInspector_Communicator.hxx
-VInspector_ItemBase.cxx
-VInspector_ItemBase.hxx
-VInspector_ItemContext.cxx
-VInspector_ItemContext.hxx
-VInspector_ItemContextProperties.cxx
-VInspector_ItemContextProperties.hxx
-VInspector_ItemGraphic3dCLight.cxx
-VInspector_ItemGraphic3dCLight.hxx
-VInspector_ItemPresentableObject.cxx
-VInspector_ItemPresentableObject.hxx
-VInspector_ItemSelectMgrViewerSelector.cxx
-VInspector_ItemSelectMgrViewerSelector.hxx
-VInspector_ItemV3dViewer.cxx
-VInspector_ItemV3dViewer.hxx
-VInspector_ToolActionType.hxx
-VInspector_ToolBar.cxx
-VInspector_ToolBar.hxx
-VInspector_Tools.cxx
-VInspector_Tools.hxx
-VInspector_ViewModel.cxx
-VInspector_ViewModel.hxx
-VInspector_Window.cxx
-VInspector_Window.hxx
diff --git a/tools/VInspector/VInspector.qrc b/tools/VInspector/VInspector.qrc
deleted file mode 100644
index d6b7242dc7..0000000000
--- a/tools/VInspector/VInspector.qrc
+++ /dev/null
@@ -1,7 +0,0 @@
-<!DOCTYPE RCC><RCC version="1.0">
-    <qresource>
-        <file>icons/treeview_and.png</file>
-        <file>icons/treeview_or.png</file>
-        <file>icons/treeview_update.png</file>
-    </qresource>
-</RCC>
diff --git a/tools/VInspector/VInspector_Communicator.cxx b/tools/VInspector/VInspector_Communicator.cxx
deleted file mode 100644
index 46a10c953f..0000000000
--- a/tools/VInspector/VInspector_Communicator.cxx
+++ /dev/null
@@ -1,48 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/VInspector_Communicator.hxx>
-
-#include <inspector/VInspector_Window.hxx>
-
-#include <AIS_InteractiveContext.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QDir>
-#include <QLayout>
-#include <QMainWindow>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function :  CreateCommunicator
-// purpose : Creates a communicator by the library loading
-// =======================================================================
-Standard_EXPORTEXTERNC TInspectorAPI_Communicator* CreateCommunicator()
-{
-  return new VInspector_Communicator();
-}
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-VInspector_Communicator::VInspector_Communicator()
-    : TInspectorAPI_Communicator(),
-      myWindow(0)
-{
-  myWindow = new VInspector_Window();
-}
diff --git a/tools/VInspector/VInspector_Communicator.hxx b/tools/VInspector/VInspector_Communicator.hxx
deleted file mode 100644
index b96ba380ac..0000000000
--- a/tools/VInspector/VInspector_Communicator.hxx
+++ /dev/null
@@ -1,77 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 VInspector_Communicator_H
-#define VInspector_Communicator_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-#include <inspector/VInspector_Window.hxx>
-
-#include <inspector/TInspectorAPI_Communicator.hxx>
-
-//! \class VInspector_Communicator.
-//! \brief This is a connector from TInspector application to VInspector view
-class VInspector_Communicator : public TInspectorAPI_Communicator
-{
-public:
-  //! Constructor
-  Standard_EXPORT VInspector_Communicator();
-
-  //! Destructor
-  virtual ~VInspector_Communicator() {}
-
-  //! Provides the container with a parent where this container should be inserted.
-  //! If Qt implementation, it should be QWidget with QLayout set inside
-  //! \param theParent a parent class
-  virtual void SetParent(void* theParent) Standard_OVERRIDE { myWindow->SetParent(theParent); }
-
-  //! Sets parameters container, it should be used when the plugin is initialized or in update
-  //! content \param theParameters a parameters container
-  virtual void SetParameters(const Handle(TInspectorAPI_PluginParameters)& theParameters)
-    Standard_OVERRIDE
-  {
-    myWindow->SetParameters(theParameters);
-  }
-
-  //! Provide container for actions available in inspector on general level
-  //! \param theMenu if Qt implementation, it is QMenu object
-  virtual void FillActionsMenu(void* theMenu) Standard_OVERRIDE
-  {
-    myWindow->FillActionsMenu(theMenu);
-  }
-
-  //! Returns plugin preferences, empty implementation by default
-  //! \param theItem container of preference elements
-  virtual void GetPreferences(TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
-  {
-    myWindow->GetPreferences(theItem);
-  }
-
-  //! Stores plugin preferences, empty implementation by default
-  //! \param theItem container of preference elements
-  virtual void SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
-  {
-    myWindow->SetPreferences(theItem);
-  }
-
-  //! Calls update of the plugin's content
-  virtual void UpdateContent() Standard_OVERRIDE { myWindow->UpdateContent(); }
-
-private:
-  VInspector_Window* myWindow; //!< current window
-};
-
-#endif
diff --git a/tools/VInspector/VInspector_ItemBase.cxx b/tools/VInspector/VInspector_ItemBase.cxx
deleted file mode 100644
index b7b105c412..0000000000
--- a/tools/VInspector/VInspector_ItemBase.cxx
+++ /dev/null
@@ -1,93 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/VInspector_ItemBase.hxx>
-#include <inspector/VInspector_ItemContext.hxx>
-
-#include <inspector/ViewControl_Tools.hxx>
-
-// =======================================================================
-// function : Reset
-// purpose :
-// =======================================================================
-void VInspector_ItemBase::Reset()
-{
-  myPresentationShape = TopoDS_Shape();
-  TreeModel_ItemBase::Reset();
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant VInspector_ItemBase::initValue(const int theItemRole) const
-{
-  if (theItemRole != Qt::DisplayRole && theItemRole != Qt::ToolTipRole)
-    return QVariant();
-
-  switch (Column())
-  {
-    case 3:
-      return Standard_Dump::GetPointerInfo(Object(), true).ToCString();
-  }
-
-  return TreeModel_ItemBase::initValue(theItemRole);
-}
-
-// =======================================================================
-// function : GetContext
-// purpose :
-// =======================================================================
-Handle(AIS_InteractiveContext) VInspector_ItemBase::GetContext() const
-{
-  if (!myContext.IsNull())
-    return myContext;
-
-  Handle(AIS_InteractiveContext) aContext;
-  if (dynamic_cast<const VInspector_ItemContext*>(this))
-  {
-    return Handle(AIS_InteractiveContext)(); // context has not be set yet
-  }
-  else
-  {
-    TreeModel_ItemBasePtr anItem = Parent();
-    while (anItem)
-    {
-      if (VInspector_ItemContextPtr aContextItem = itemDynamicCast<VInspector_ItemContext>(anItem))
-      {
-        aContext = aContextItem->GetContext();
-        break;
-      }
-      anItem = anItem->Parent();
-    }
-  }
-  if (!aContext.IsNull())
-    const_cast<VInspector_ItemBase*>(this)->SetContext(aContext);
-
-  return myContext;
-}
-
-// =======================================================================
-// function : GetContext
-// purpose :
-// =======================================================================
-TopoDS_Shape VInspector_ItemBase::GetPresentationShape() const
-{
-  if (Column() != TreeModel_ColumnType_Name)
-    return TopoDS_Shape();
-
-  initItem();
-  return myPresentationShape;
-}
diff --git a/tools/VInspector/VInspector_ItemBase.hxx b/tools/VInspector/VInspector_ItemBase.hxx
deleted file mode 100644
index 9033063c2e..0000000000
--- a/tools/VInspector/VInspector_ItemBase.hxx
+++ /dev/null
@@ -1,87 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 VInspector_ItemBase_H
-#define VInspector_ItemBase_H
-
-#include <AIS_InteractiveContext.hxx>
-#include <Standard.hxx>
-#include <TopoDS_Shape.hxx>
-
-#include <inspector/TreeModel_ColumnType.hxx>
-#include <inspector/TreeModel_ItemBase.hxx>
-
-class VInspector_ItemBase;
-typedef QExplicitlySharedDataPointer<VInspector_ItemBase> VInspector_ItemBasePtr;
-
-//! \class VInspector_ItemBase
-//! Parent item for all ShapeView items
-class VInspector_ItemBase : public TreeModel_ItemBase
-{
-public:
-  //! Resets cached values
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-  //! Sets the context
-  //! \param theLabel an object where the child items structure is found
-  void SetContext(const Handle(AIS_InteractiveContext)& theContext) { myContext = theContext; }
-
-  //! Returns true if the current context is not null
-  //! \return a boolean value
-  bool HasContext() const { return !GetContext().IsNull(); }
-
-  //! Returns the current context. It iterates up by list of parents to found context item and
-  //! return context \return a context
-  Standard_EXPORT Handle(AIS_InteractiveContext) GetContext() const;
-
-  //! Returns item information for the given role. Fills internal container if it was not filled yet
-  //! \param theItemRole a value role
-  //! \return the value
-  Standard_EXPORT virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
-
-  //! Returns transform persistent of the item or NULL
-  Handle(Graphic3d_TransformPers) TransformPersistence() const { return myTransformPersistence; }
-
-  //! Returns shape of the item parameters
-  //! \return generated shape of the item parameters
-  Standard_EXPORT virtual TopoDS_Shape GetPresentationShape() const;
-
-  //! Rebuild presentation shape if the item use it
-  //! \return generated shape of the item parameters
-  void UpdatePresentationShape() { myPresentationShape = buildPresentationShape(); }
-
-protected:
-  //! Build presentation shape
-  //! \return generated shape of the item parameters
-  virtual TopoDS_Shape buildPresentationShape() { return TopoDS_Shape(); }
-
-protected:
-  //! Constructor
-  //! \param theParent a parent item
-  //! \param theRow the item row position in the parent item
-  //! \param theColumn the item column position in the parent item
-  VInspector_ItemBase(TreeModel_ItemBasePtr theParent, const int theRow, const int theColumn)
-      : TreeModel_ItemBase(theParent, theRow, theColumn),
-        myContext(0)
-  {
-  }
-
-protected:
-  Handle(AIS_InteractiveContext)  myContext;              //!< the current context
-  TopoDS_Shape                    myPresentationShape;    //!< item presentation shape
-  Handle(Graphic3d_TransformPers) myTransformPersistence; //!< item cached persistent
-};
-
-#endif
\ No newline at end of file
diff --git a/tools/VInspector/VInspector_ItemContext.cxx b/tools/VInspector/VInspector_ItemContext.cxx
deleted file mode 100644
index 0f1294205c..0000000000
--- a/tools/VInspector/VInspector_ItemContext.cxx
+++ /dev/null
@@ -1,150 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/VInspector_ItemContext.hxx>
-
-#include <AIS.hxx>
-#include <AIS_ListOfInteractive.hxx>
-#include <SelectMgr_EntityOwner.hxx>
-#include <inspector/VInspector_ItemContextProperties.hxx>
-#include <inspector/VInspector_ItemPresentableObject.hxx>
-#include <inspector/VInspector_Tools.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QStringList>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : initRowCount
-// purpose :
-// =======================================================================
-int VInspector_ItemContext::initRowCount() const
-{
-  if (Column() != 0)
-    return 0;
-
-  int aNbProperties = 1; // item to visualize Viewer information of context
-
-  Handle(AIS_InteractiveContext) aContext = Handle(AIS_InteractiveContext)::DownCast(Object());
-  if (aContext.IsNull())
-    return 0;
-
-  AIS_ListOfInteractive aListOfIO;
-  aContext->DisplayedObjects(aListOfIO);
-  aContext->ErasedObjects(aListOfIO);
-  int aNbPresentations = 0;
-  for (AIS_ListIteratorOfListOfInteractive aListOfIOIt(aListOfIO); aListOfIOIt.More();
-       aListOfIOIt.Next())
-  {
-    if (aListOfIOIt.Value()->Parent())
-      continue; // child presentation
-    aNbPresentations++;
-  }
-
-  return aNbProperties + aNbPresentations;
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant VInspector_ItemContext::initValue(const int theItemRole) const
-{
-  QVariant aParentValue = VInspector_ItemBase::initValue(theItemRole);
-  if (aParentValue.isValid())
-    return aParentValue;
-
-  if (theItemRole != Qt::DisplayRole && theItemRole != Qt::EditRole
-      && theItemRole != Qt::ToolTipRole)
-    return QVariant();
-
-  Handle(AIS_InteractiveContext) aContext = Handle(AIS_InteractiveContext)::DownCast(Object());
-  if (aContext.IsNull())
-    return Column() == 0 ? "Empty context" : "";
-
-  switch (Column())
-  {
-    case 0:
-      return aContext->DynamicType()->Name();
-    case 4: {
-      Handle(AIS_InteractiveObject) anEmptyIO;
-      int aSelectedCount = VInspector_Tools::SelectedOwners(aContext, anEmptyIO, false);
-      return aSelectedCount > 0 ? QString::number(aSelectedCount) : "";
-    }
-    case 6:
-      return aContext->DeviationCoefficient();
-    default:
-      break;
-  }
-  return QVariant();
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void VInspector_ItemContext::Init()
-{
-  Handle(AIS_InteractiveContext) aContext = GetContext();
-  if (aContext.IsNull())
-    return;
-
-  TreeModel_ItemBase::Init();
-}
-
-// =======================================================================
-// function : Reset
-// purpose :
-// =======================================================================
-void VInspector_ItemContext::Reset()
-{
-  VInspector_ItemBase::Reset();
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void VInspector_ItemContext::initItem() const
-{
-  if (IsInitialized())
-    return;
-  const_cast<VInspector_ItemContext*>(this)->Init();
-}
-
-// =======================================================================
-// function : createChild
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr VInspector_ItemContext::createChild(int theRow, int theColumn)
-{
-  if (theRow == 0)
-    return VInspector_ItemContextProperties::CreateItem(currentItem(), theRow, theColumn);
-  else
-    return VInspector_ItemPresentableObject::CreateItem(currentItem(), theRow, theColumn);
-}
-
-// =======================================================================
-// function : initStream
-// purpose :
-// =======================================================================
-void VInspector_ItemContext::initStream(Standard_OStream& theOStream) const
-{
-  Handle(AIS_InteractiveContext) aContext = GetContext();
-  if (aContext.IsNull())
-    return;
-
-  aContext->DumpJson(theOStream);
-}
diff --git a/tools/VInspector/VInspector_ItemContext.hxx b/tools/VInspector/VInspector_ItemContext.hxx
deleted file mode 100644
index 4bb7165083..0000000000
--- a/tools/VInspector/VInspector_ItemContext.hxx
+++ /dev/null
@@ -1,94 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 VInspector_ItemContext_H
-#define VInspector_ItemContext_H
-
-#include <Standard.hxx>
-#include <inspector/VInspector_ItemBase.hxx>
-
-class VInspector_ItemContext;
-typedef QExplicitlySharedDataPointer<VInspector_ItemContext> VInspector_ItemContextPtr;
-
-//! \class VInspector_ItemContext
-//! Parent item, that corresponds to AIS_InteractiveContext
-//! Children of the item are:
-//! - "Property" item to show context attributes such as selection filters and drawer properties
-//! - presentation items to show all interactive elements displayed/erased in the context
-class VInspector_ItemContext : public VInspector_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  static VInspector_ItemContextPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                              const int             theRow,
-                                              const int             theColumn)
-  {
-    return VInspector_ItemContextPtr(new VInspector_ItemContext(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~VInspector_ItemContext() {}
-
-  //! Returns data object of the item.
-  //! \return object
-  virtual const Handle(Standard_Transient)& Object() const Standard_OVERRIDE
-  {
-    initItem();
-    return myContext;
-  }
-
-  //! Returns number of displayed presentations
-  //! \return rows count
-  Standard_EXPORT virtual int initRowCount() const Standard_OVERRIDE;
-
-  //! Returns item information for the given role. Fills internal container if it was not filled yet
-  //! \param theItemRole a value role
-  //! \return the value
-  Standard_EXPORT virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
-
-  //! Inits the item, fills internal containers
-  Standard_EXPORT virtual void Init() Standard_OVERRIDE;
-
-  //! Resets cached values
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-protected:
-  //! Initializes the current item. It creates a backup of the specific item information
-  //! Does nothing as context has been already set into item
-  virtual void initItem() const Standard_OVERRIDE;
-
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  Standard_EXPORT virtual void initStream(Standard_OStream& theOStream) const Standard_OVERRIDE;
-
-protected:
-  //! Creates a child item in the given position.
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \return the created item
-  virtual TreeModel_ItemBasePtr createChild(int theRow, int theColumn) Standard_OVERRIDE;
-
-private:
-  //! Constructor
-  //! \param theParent a parent item
-  //! \param theRow the item row position in the parent item
-  //! \param theColumn the item column position in the parent item
-  VInspector_ItemContext(TreeModel_ItemBasePtr theParent, const int theRow, const int theColumn)
-      : VInspector_ItemBase(theParent, theRow, theColumn)
-  {
-  }
-};
-
-#endif
diff --git a/tools/VInspector/VInspector_ItemContextProperties.cxx b/tools/VInspector/VInspector_ItemContextProperties.cxx
deleted file mode 100644
index ba1422228f..0000000000
--- a/tools/VInspector/VInspector_ItemContextProperties.cxx
+++ /dev/null
@@ -1,93 +0,0 @@
-// Created on: 2020-02-10
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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.
-
-#include <inspector/VInspector_ItemContextProperties.hxx>
-
-#include <inspector/VInspector_ItemContext.hxx>
-#include <inspector/VInspector_ItemGraphic3dCLight.hxx>
-#include <inspector/VInspector_ItemV3dViewer.hxx>
-#include <inspector/VInspector_ItemSelectMgrViewerSelector.hxx>
-
-#include <V3d_View.hxx>
-#include <V3d_Viewer.hxx>
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant VInspector_ItemContextProperties::initValue(int theItemRole) const
-{
-  QVariant aParentValue = VInspector_ItemBase::initValue(theItemRole);
-  if (aParentValue.isValid())
-    return aParentValue;
-
-  if (Column() != 0 || (theItemRole != Qt::DisplayRole && theItemRole != Qt::ToolTipRole))
-    return QVariant();
-
-  return "Properties";
-}
-
-// =======================================================================
-// function : initRowCount
-// purpose :
-// =======================================================================
-int VInspector_ItemContextProperties::initRowCount() const
-{
-  int aLightsCount = 0;
-
-  VInspector_ItemContextPtr aParentContextItem = itemDynamicCast<VInspector_ItemContext>(Parent());
-  if (aParentContextItem)
-  {
-    Handle(AIS_InteractiveContext) aContext = aParentContextItem->GetContext();
-    Handle(V3d_Viewer)             aViewer  = aContext->CurrentViewer();
-    if (!aViewer.IsNull())
-    {
-      if (!aViewer->ActiveViews().IsEmpty())
-      {
-        Handle(V3d_View) aView = aViewer->ActiveViews().First();
-        if (!aView.IsNull())
-          aLightsCount = aView->ActiveLights().Extent();
-      }
-    }
-  }
-  return 2 + aLightsCount; // V3d_Viewer, SelectMgr_ViewerSelector
-}
-
-// =======================================================================
-// function : createChild
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr VInspector_ItemContextProperties::createChild(int theRow, int theColumn)
-{
-  if (theRow == 0)
-    return VInspector_ItemV3dViewer::CreateItem(currentItem(), theRow, theColumn);
-  else if (theRow == 1)
-    return VInspector_ItemSelectMgrViewerSelector::CreateItem(currentItem(), theRow, theColumn);
-  else // lights
-  {
-    return VInspector_ItemGraphic3dCLight::CreateItem(currentItem(), theRow, theColumn);
-  }
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void VInspector_ItemContextProperties::initItem() const
-{
-  if (IsInitialized())
-    return;
-  const_cast<VInspector_ItemContextProperties*>(this)->Init();
-}
diff --git a/tools/VInspector/VInspector_ItemContextProperties.hxx b/tools/VInspector/VInspector_ItemContextProperties.hxx
deleted file mode 100644
index 9cc003d1aa..0000000000
--- a/tools/VInspector/VInspector_ItemContextProperties.hxx
+++ /dev/null
@@ -1,77 +0,0 @@
-// Created on: 2020-02-10
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 VInspector_ItemContextProperties_H
-#define VInspector_ItemContextProperties_H
-
-#include <Standard.hxx>
-#include <inspector/VInspector_ItemBase.hxx>
-
-#include <AIS_InteractiveObject.hxx>
-#include <TCollection_AsciiString.hxx>
-
-class VInspector_ItemContextProperties;
-typedef QExplicitlySharedDataPointer<VInspector_ItemContextProperties>
-  VInspector_ItemContextPropertiesPtr;
-
-//! \class VInspector_ItemContextProperties
-//! Item presents additional level of information in the tree model.
-//! Parent is item context, child is v3d viewer item.
-class VInspector_ItemContextProperties : public VInspector_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  static VInspector_ItemContextPropertiesPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                                        const int             theRow,
-                                                        const int             theColumn)
-  {
-    return VInspector_ItemContextPropertiesPtr(
-      new VInspector_ItemContextProperties(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~VInspector_ItemContextProperties() Standard_OVERRIDE {};
-
-protected:
-  //! Initializes the current item. It is empty because Reset() is also empty.
-  virtual void initItem() const Standard_OVERRIDE;
-
-  //! Returns number of item selected
-  //! \return rows count
-  virtual int initRowCount() const Standard_OVERRIDE;
-
-  //! Returns item information for the given role. Fills internal container if it was not filled yet
-  //! \param theItemRole a value role
-  //! \return the value
-  virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
-
-  //! Creates a child item in the given position.
-  //! \param theRow the child row position
-  //! \param theColumn the child column position
-  //! \return the created item
-  virtual TreeModel_ItemBasePtr createChild(int theRow, int theColumn) Standard_OVERRIDE;
-
-private:
-  //! Constructor
-  //! param theParent a parent item
-  VInspector_ItemContextProperties(TreeModel_ItemBasePtr theParent,
-                                   const int             theRow,
-                                   const int             theColumn)
-      : VInspector_ItemBase(theParent, theRow, theColumn)
-  {
-  }
-};
-
-#endif
diff --git a/tools/VInspector/VInspector_ItemGraphic3dCLight.cxx b/tools/VInspector/VInspector_ItemGraphic3dCLight.cxx
deleted file mode 100644
index e37005063e..0000000000
--- a/tools/VInspector/VInspector_ItemGraphic3dCLight.cxx
+++ /dev/null
@@ -1,245 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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.
-
-#include <inspector/VInspector_ItemGraphic3dCLight.hxx>
-
-#include <AIS.hxx>
-#include <AIS_InteractiveContext.hxx>
-#include <inspector/VInspector_ItemContext.hxx>
-#include <inspector/VInspector_ItemContextProperties.hxx>
-#include <inspector/TreeModel_ItemProperties.hxx>
-
-#include <V3d_View.hxx>
-#include <V3d_Viewer.hxx>
-
-// =======================================================================
-// function : initRowCount
-// purpose :
-// =======================================================================
-int VInspector_ItemGraphic3dCLight::initRowCount() const
-{
-  return 0;
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant VInspector_ItemGraphic3dCLight::initValue(const int theItemRole) const
-{
-  QVariant aParentValue = VInspector_ItemBase::initValue(theItemRole);
-  if (aParentValue.isValid())
-    return aParentValue;
-
-  if (theItemRole == Qt::ForegroundRole)
-  {
-    if (GetLight().IsNull())
-      return QVariant();
-
-    if (!GetLight()->IsEnabled())
-      return QColor(Qt::darkGray);
-
-    return QVariant();
-  }
-
-  if (theItemRole != Qt::DisplayRole && theItemRole != Qt::EditRole
-      && theItemRole != Qt::ToolTipRole)
-    return QVariant();
-
-  if (GetLight().IsNull())
-    return Column() == 0 ? "Empty light" : "";
-
-  if (Column() != 0)
-    return QVariant();
-
-  switch (GetLight()->Type())
-  {
-    case Graphic3d_TOLS_AMBIENT:
-      return "Ambient light";
-    case Graphic3d_TOLS_DIRECTIONAL:
-      return "Directional light";
-    case Graphic3d_TOLS_POSITIONAL:
-      return "Positional light";
-    case Graphic3d_TOLS_SPOT:
-      return "Spot light";
-    default:
-      break;
-  }
-  return QVariant();
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void VInspector_ItemGraphic3dCLight::Init()
-{
-  VInspector_ItemContextPropertiesPtr aParentItem =
-    itemDynamicCast<VInspector_ItemContextProperties>(Parent());
-  Handle(Graphic3d_CLight) aLight;
-  if (aParentItem)
-  {
-    VInspector_ItemContextPtr aParentContextItem =
-      itemDynamicCast<VInspector_ItemContext>(aParentItem->Parent());
-    if (aParentContextItem)
-    {
-      Handle(AIS_InteractiveContext) aContext = aParentContextItem->GetContext();
-      Handle(V3d_Viewer)             aViewer  = aContext->CurrentViewer();
-      if (!aViewer.IsNull())
-      {
-        int aLightId   = Row() - 2 /*in parent*/;
-        int aCurrentId = 0;
-        for (V3d_ListOfLightIterator aLightsIt(aViewer->ActiveLightIterator()); aLightsIt.More();
-             aLightsIt.Next(), aCurrentId++)
-        {
-          if (aCurrentId != aLightId)
-            continue;
-          aLight = aLightsIt.Value();
-        }
-      }
-    }
-  }
-  myLight = aLight;
-  TreeModel_ItemBase::Init();
-}
-
-// =======================================================================
-// function : Reset
-// purpose :
-// =======================================================================
-void VInspector_ItemGraphic3dCLight::Reset()
-{
-  VInspector_ItemBase::Reset();
-
-  myLight = NULL;
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void VInspector_ItemGraphic3dCLight::StoreItemProperties(const int       theRow,
-                                                         const int       theColumn,
-                                                         const QVariant& theValue)
-{
-  if (myLight.IsNull())
-    return;
-
-  const Handle(TreeModel_ItemProperties)& aProperties = Properties();
-  if (theRow == -1 && theColumn == -1) // processing sub-item value
-  {
-    Standard_SStream aStream;
-    aStream << theValue.toString().toStdString().c_str();
-
-    int                aStartPos = 1;
-    Quantity_ColorRGBA aColor;
-    if (aColor.InitFromJson(aStream, aStartPos))
-    {
-      myLight->SetColor(aColor.GetRGB());
-      return;
-    }
-
-    // "Direction"
-    gp_Dir aDir;
-    if (aDir.InitFromJson(aStream, aStartPos))
-    {
-      myLight->SetDirection(aDir);
-      return;
-    }
-
-    // "Position"
-    gp_Pnt aPnt;
-    if (aPnt.InitFromJson(aStream, aStartPos))
-    {
-      myLight->SetPosition(aPnt);
-      return;
-    }
-  }
-
-  QString  aPropertyName  = aProperties->Data(theRow, 0).toString();
-  QVariant aPropertyValue = aProperties->Data(theRow, 1);
-  if (aPropertyName == "Position")
-  {
-  }
-  else if (aPropertyName == "Intensity")
-  {
-    myLight->SetIntensity((Standard_ShortReal)aPropertyValue.toReal());
-  }
-  else if (aPropertyName == "ConstAttenuation")
-  {
-    myLight->SetAttenuation((Standard_ShortReal)aPropertyValue.toReal(),
-                            (Standard_ShortReal)aProperties->Data(theRow + 1, 1).toReal());
-  }
-  else if (aPropertyName == "LinearAttenuation")
-  {
-    myLight->SetAttenuation((Standard_ShortReal)aProperties->Data(theRow - 1, 1).toReal(),
-                            (Standard_ShortReal)aPropertyValue.toReal());
-  }
-  else if (aPropertyName == "Angle")
-  {
-    myLight->SetAngle((Standard_ShortReal)aPropertyValue.toReal());
-  }
-  else if (aPropertyName == "Concentration")
-  {
-    myLight->SetConcentration((Standard_ShortReal)aPropertyValue.toReal());
-  }
-  else if (aPropertyName == "Range")
-  {
-    myLight->SetRange((Standard_ShortReal)aPropertyValue.toReal());
-  }
-  else if (aPropertyName == "Smoothness")
-  {
-    if (myLight->Type() == Graphic3d_TOLS_DIRECTIONAL)
-    {
-      myLight->SetSmoothAngle((Standard_ShortReal)aPropertyValue.toReal());
-    }
-    else
-    {
-      myLight->SetSmoothRadius((Standard_ShortReal)aPropertyValue.toReal());
-    }
-  }
-  else if (aPropertyName == "IsHeadlight")
-  {
-    myLight->SetHeadlight(aPropertyValue.toInt() == 1);
-  }
-  else if (aPropertyName == "IsEnabled")
-  {
-    myLight->SetEnabled(aPropertyValue.toInt() == 1);
-  }
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void VInspector_ItemGraphic3dCLight::initItem() const
-{
-  if (IsInitialized())
-    return;
-  const_cast<VInspector_ItemGraphic3dCLight*>(this)->Init();
-}
-
-// =======================================================================
-// function : initStream
-// purpose :
-// =======================================================================
-void VInspector_ItemGraphic3dCLight::initStream(Standard_OStream& theOStream) const
-{
-  Handle(Graphic3d_CLight) aLight = GetLight();
-  if (aLight.IsNull())
-    return;
-
-  aLight->DumpJson(theOStream);
-}
diff --git a/tools/VInspector/VInspector_ItemGraphic3dCLight.hxx b/tools/VInspector/VInspector_ItemGraphic3dCLight.hxx
deleted file mode 100644
index 9b30d0923a..0000000000
--- a/tools/VInspector/VInspector_ItemGraphic3dCLight.hxx
+++ /dev/null
@@ -1,101 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 VInspector_ItemGraphic3dCLight_H
-#define VInspector_ItemGraphic3dCLight_H
-
-#include <Standard.hxx>
-#include <inspector/VInspector_ItemBase.hxx>
-
-#include <Graphic3d_CLight.hxx>
-
-class VInspector_ItemGraphic3dCLight;
-typedef QExplicitlySharedDataPointer<VInspector_ItemGraphic3dCLight>
-  VInspector_ItemGraphic3dCLightPtr;
-
-//! \class VInspector_ItemGraphic3dCLight
-//! Parent item is context properties, that corresponds to AIS_InteractiveContext
-class VInspector_ItemGraphic3dCLight : public VInspector_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  static VInspector_ItemGraphic3dCLightPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                                      const int             theRow,
-                                                      const int             theColumn)
-  {
-    return VInspector_ItemGraphic3dCLightPtr(
-      new VInspector_ItemGraphic3dCLight(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~VInspector_ItemGraphic3dCLight() Standard_OVERRIDE {};
-
-  //! Inits the item, fills internal containers
-  Standard_EXPORT virtual void Init() Standard_OVERRIDE;
-
-  //! Resets cached values
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-  //! Returns data object of the item.
-  //! \return object
-  virtual const Handle(Standard_Transient)& Object() const Standard_OVERRIDE
-  {
-    initItem();
-    return myLight;
-  }
-
-  //! Returns the current light, init item if it was not initialized yet
-  //! \return interactive object
-  Handle(Graphic3d_CLight) GetLight() const { return Handle(Graphic3d_CLight)::DownCast(Object()); }
-
-  //! Updates item by the item properties value
-  virtual void StoreItemProperties(const int       theRow,
-                                   const int       theColumn,
-                                   const QVariant& theValue) Standard_OVERRIDE;
-
-protected:
-  //! Initializes the current item. It is empty because Reset() is also empty.
-  virtual void initItem() const Standard_OVERRIDE;
-
-  //! Returns number of displayed presentations
-  //! \return rows count
-  Standard_EXPORT virtual int initRowCount() const Standard_OVERRIDE;
-
-  //! Returns item information for the given role. Fills internal container if it was not filled yet
-  //! \param theItemRole a value role
-  //! \return the value
-  Standard_EXPORT virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
-
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  Standard_EXPORT virtual void initStream(Standard_OStream& theOStream) const Standard_OVERRIDE;
-
-private:
-  //! Constructor
-  //! param theParent a parent item
-  //! \param theRow the item row positition in the parent item
-  //! \param theColumn the item column positition in the parent item
-  VInspector_ItemGraphic3dCLight(TreeModel_ItemBasePtr theParent,
-                                 const int             theRow,
-                                 const int             theColumn)
-      : VInspector_ItemBase(theParent, theRow, theColumn)
-  {
-  }
-
-protected:
-  Handle(Graphic3d_CLight) myLight; //!< the current light
-};
-
-#endif
diff --git a/tools/VInspector/VInspector_ItemPresentableObject.cxx b/tools/VInspector/VInspector_ItemPresentableObject.cxx
deleted file mode 100644
index a711e5e9bc..0000000000
--- a/tools/VInspector/VInspector_ItemPresentableObject.cxx
+++ /dev/null
@@ -1,252 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/VInspector_ItemPresentableObject.hxx>
-
-#include <AIS.hxx>
-#include <AIS_Shape.hxx>
-#include <AIS_ListOfInteractive.hxx>
-#include <AIS_ListIteratorOfListOfInteractive.hxx>
-
-#include <inspector/VInspector_ItemContext.hxx>
-#include <inspector/VInspector_Tools.hxx>
-#include <inspector/VInspector_ViewModel.hxx>
-
-#include <inspector/ViewControl_Table.hxx>
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <NCollection_List.hxx>
-#include <Prs3d.hxx>
-#include <Prs3d_Drawer.hxx>
-#include <SelectMgr_EntityOwner.hxx>
-#include <StdSelect_BRepOwner.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QColor>
-#include <QItemSelectionModel>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant VInspector_ItemPresentableObject::initValue(int theItemRole) const
-{
-  QVariant aParentValue = VInspector_ItemBase::initValue(theItemRole);
-  if (aParentValue.isValid())
-    return aParentValue;
-
-  if (theItemRole == Qt::DisplayRole || theItemRole == Qt::ToolTipRole)
-  {
-    Handle(AIS_InteractiveObject) anIO    = GetInteractiveObject();
-    bool                          aNullIO = anIO.IsNull();
-    switch (Column())
-    {
-      case 0: {
-        if (aNullIO)
-          return theItemRole == Qt::ToolTipRole ? QVariant("Owners where Selectable is empty")
-                                                : QVariant("Free Owners");
-        else
-          return theItemRole == Qt::ToolTipRole ? QVariant("")
-                                                : QVariant(anIO->DynamicType()->Name());
-      }
-      case 4: {
-        int aNbSelected = VInspector_Tools::SelectedOwners(GetContext(), anIO, false);
-        return aNbSelected > 0 ? QString::number(aNbSelected) : "";
-      }
-      case 6: {
-        double            aDeviationCoefficient = 0;
-        Handle(AIS_Shape) anAISShape            = Handle(AIS_Shape)::DownCast(anIO);
-        if (!anAISShape.IsNull())
-        {
-          Standard_Real aPreviousCoefficient;
-          anAISShape->OwnDeviationCoefficient(aDeviationCoefficient, aPreviousCoefficient);
-        }
-        return QString::number(aDeviationCoefficient);
-      }
-      case 8: {
-        double            aDeviationCoefficient = 0;
-        Handle(AIS_Shape) anAISShape            = Handle(AIS_Shape)::DownCast(anIO);
-        if (!anAISShape.IsNull())
-        {
-          Standard_Real aPreviousCoefficient;
-          anAISShape->OwnDeviationCoefficient(aDeviationCoefficient, aPreviousCoefficient);
-        }
-        Handle(AIS_Shape) aShapeIO = Handle(AIS_Shape)::DownCast(anIO);
-        bool anIsAutoTriangulation = aNullIO ? false : anIO->Attributes()->IsAutoTriangulation();
-        return anIsAutoTriangulation ? QString("true") : QString("false");
-      }
-      default:
-        break;
-    }
-  }
-  if (theItemRole == Qt::BackgroundRole || theItemRole == Qt::ForegroundRole)
-  {
-    Handle(AIS_InteractiveContext) aContext = GetContext();
-    if (Column() == 2
-        && VInspector_Tools::SelectedOwners(aContext, GetInteractiveObject(), false) > 0)
-    {
-      return (theItemRole == Qt::BackgroundRole) ? QColor(Qt::darkBlue) : QColor(Qt::white);
-    }
-    else if (theItemRole == Qt::ForegroundRole)
-    {
-      Handle(AIS_InteractiveObject) anIO = GetInteractiveObject();
-      if (anIO.IsNull())
-        return QVariant();
-
-      AIS_ListOfInteractive aListOfIO;
-      GetContext()->ErasedObjects(aListOfIO);
-      for (AIS_ListIteratorOfListOfInteractive anIOIt(aListOfIO); anIOIt.More(); anIOIt.Next())
-      {
-        if (anIO == anIOIt.Value())
-          return QColor(Qt::darkGray);
-      }
-      return QColor(Qt::black);
-    }
-  }
-  return QVariant();
-}
-
-// =======================================================================
-// function : initRowCount
-// purpose :
-// =======================================================================
-int VInspector_ItemPresentableObject::initRowCount() const
-{
-  return 0;
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void VInspector_ItemPresentableObject::Init()
-{
-  VInspector_ItemContextPtr      aParentItem = itemDynamicCast<VInspector_ItemContext>(Parent());
-  Handle(AIS_InteractiveContext) aContext    = aParentItem->GetContext();
-  SetContext(aContext);
-
-  Handle(AIS_InteractiveObject) anIO;
-  if (!GetContext().IsNull())
-  {
-    int                   aRowId = Row();
-    AIS_ListOfInteractive aListOfIO;
-    GetContext()->DisplayedObjects(
-      aListOfIO);                           // the presentation is in displayed objects of Context
-    GetContext()->ErasedObjects(aListOfIO); // the presentation is in erased objects of Context
-
-    std::vector<Handle(AIS_InteractiveObject)> aListOfIOSorted;
-    aListOfIOSorted.reserve(aListOfIO.Size());
-    for (AIS_ListIteratorOfListOfInteractive anIOIt(aListOfIO); anIOIt.More(); anIOIt.Next())
-    {
-      aListOfIOSorted.push_back(anIOIt.Value());
-    }
-    std::sort(aListOfIOSorted.begin(), aListOfIOSorted.end());
-
-    int aCurrentIndex = 1; /* Properties item of context*/
-    for (std::vector<Handle(AIS_InteractiveObject)>::const_iterator anIOIt =
-           aListOfIOSorted.begin();
-         anIOIt != aListOfIOSorted.end();
-         anIOIt++, aCurrentIndex++)
-    {
-      if (aCurrentIndex != aRowId)
-        continue;
-      anIO = *anIOIt;
-      break;
-    }
-  }
-
-  setInteractiveObject(anIO);
-  myTransformPersistence = !anIO.IsNull() ? anIO->TransformPersistence() : NULL;
-  UpdatePresentationShape();
-  TreeModel_ItemBase::Init(); // to use getIO() without circling initialization
-}
-
-// =======================================================================
-// function : Reset
-// purpose :
-// =======================================================================
-void VInspector_ItemPresentableObject::Reset()
-{
-  VInspector_ItemBase::Reset();
-
-  SetContext(NULL);
-  setInteractiveObject(NULL);
-  myTransformPersistence = NULL;
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void VInspector_ItemPresentableObject::initItem() const
-{
-  if (IsInitialized())
-    return;
-  const_cast<VInspector_ItemPresentableObject*>(this)->Init();
-}
-
-// =======================================================================
-// function : buildPresentationShape
-// purpose :
-// =======================================================================
-TopoDS_Shape VInspector_ItemPresentableObject::buildPresentationShape()
-{
-  Handle(AIS_InteractiveObject) aPrs = myIO;
-  if (aPrs.IsNull())
-    return TopoDS_Shape();
-
-  Handle(AIS_Shape) aShapePrs = Handle(AIS_Shape)::DownCast(aPrs);
-  if (!aShapePrs.IsNull())
-    return aShapePrs->Shape();
-
-  return TopoDS_Shape();
-}
-
-// =======================================================================
-// function : PointerInfo
-// purpose :
-// =======================================================================
-QString VInspector_ItemPresentableObject::PointerInfo() const
-{
-  return Standard_Dump::GetPointerInfo(GetInteractiveObject(), true).ToCString();
-}
-
-// =======================================================================
-// function : Presentations
-// purpose :
-// =======================================================================
-void VInspector_ItemPresentableObject::Presentations(
-  NCollection_List<Handle(Standard_Transient)>& thePresentations)
-{
-  TreeModel_ItemBase::Presentations(thePresentations);
-
-  if (Column() != 0)
-    return;
-  thePresentations.Append(GetInteractiveObject());
-}
-
-// =======================================================================
-// function : initStream
-// purpose :
-// =======================================================================
-void VInspector_ItemPresentableObject::initStream(Standard_OStream& theOStream) const
-{
-  Handle(AIS_InteractiveObject) anIO = GetInteractiveObject();
-  if (anIO.IsNull())
-    return;
-
-  anIO->DumpJson(theOStream);
-}
diff --git a/tools/VInspector/VInspector_ItemPresentableObject.hxx b/tools/VInspector/VInspector_ItemPresentableObject.hxx
deleted file mode 100644
index 7d0340c9b4..0000000000
--- a/tools/VInspector/VInspector_ItemPresentableObject.hxx
+++ /dev/null
@@ -1,120 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 VInspector_ItemPresentableObject_H
-#define VInspector_ItemPresentableObject_H
-
-#include <Standard.hxx>
-#include <inspector/VInspector_ItemBase.hxx>
-
-#include <AIS_InteractiveObject.hxx>
-#include <NCollection_List.hxx>
-
-class QItemSelectionModel;
-
-class VInspector_ItemPresentableObject;
-typedef QExplicitlySharedDataPointer<VInspector_ItemPresentableObject>
-  VInspector_ItemPresentableObjectPtr;
-
-//! \class VInspector_ItemPresentableObject
-//! Item presents information about AIS_InteractiveObject.
-//! Parent is item context, children are item selections.
-class VInspector_ItemPresentableObject : public VInspector_ItemBase
-{
-
-public:
-  //! Creates an item wrapped by a shared pointer
-  static VInspector_ItemPresentableObjectPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                                        const int             theRow,
-                                                        const int             theColumn)
-  {
-    return VInspector_ItemPresentableObjectPtr(
-      new VInspector_ItemPresentableObject(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~VInspector_ItemPresentableObject() {}
-
-  //! Returns data object of the item.
-  //! \return object
-  virtual const Handle(Standard_Transient)& Object() const Standard_OVERRIDE
-  {
-    initItem();
-    return myIO;
-  }
-
-  //! Returns the current interactive object, init item if it was not initialized yet
-  //! \return interactive object
-  Handle(AIS_InteractiveObject) GetInteractiveObject() const
-  {
-    return Handle(AIS_InteractiveObject)::DownCast(Object());
-  }
-
-  //! Returns pointer information for the current interactive object, init item if it was not
-  //! initialized yet \return string value
-  Standard_EXPORT QString PointerInfo() const;
-
-  //! Inits the item, fills internal containers
-  Standard_EXPORT virtual void Init() Standard_OVERRIDE;
-
-  //! Resets cached values
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-  //! Returns presentation of the attribute to be visualized in the view
-  //! \thePresentations[out]  container of presentation handles to be visualized
-  Standard_EXPORT virtual void Presentations(
-    NCollection_List<Handle(Standard_Transient)>& thePresentations) Standard_OVERRIDE;
-
-protected:
-  //! Initialize the current item. It is empty because Reset() is also empty.
-  virtual void initItem() const Standard_OVERRIDE;
-
-  //! Returns number of item selected
-  //! \return rows count
-  virtual int initRowCount() const Standard_OVERRIDE;
-
-  //! Returns item information for the given role. Fills internal container if it was not filled yet
-  //! \param theItemRole a value role
-  //! \return the value
-  virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
-
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  Standard_EXPORT virtual void initStream(Standard_OStream& theOStream) const Standard_OVERRIDE;
-
-protected:
-  //! Build presentation shape
-  //! \return generated shape of the item parameters
-  virtual TopoDS_Shape buildPresentationShape() Standard_OVERRIDE;
-
-  //! Set interactive object into the current field
-  //! \param theIO a presentation
-  void setInteractiveObject(Handle(AIS_InteractiveObject) theIO) { myIO = theIO; }
-
-private:
-  //! Constructor
-  //! \param theParent a parent item
-  VInspector_ItemPresentableObject(TreeModel_ItemBasePtr theParent,
-                                   const int             theRow,
-                                   const int             theColumn)
-      : VInspector_ItemBase(theParent, theRow, theColumn)
-  {
-  }
-
-protected:
-  Handle(AIS_InteractiveObject) myIO; //!< the current interactive context
-};
-
-#endif
diff --git a/tools/VInspector/VInspector_ItemSelectMgrViewerSelector.cxx b/tools/VInspector/VInspector_ItemSelectMgrViewerSelector.cxx
deleted file mode 100644
index 975e102f28..0000000000
--- a/tools/VInspector/VInspector_ItemSelectMgrViewerSelector.cxx
+++ /dev/null
@@ -1,108 +0,0 @@
-// Created on: 2020-02-10
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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.
-
-#include <inspector/VInspector_ItemSelectMgrViewerSelector.hxx>
-
-#include <AIS.hxx>
-#include <AIS_InteractiveContext.hxx>
-#include <inspector/VInspector_ItemContext.hxx>
-#include <inspector/VInspector_ItemContextProperties.hxx>
-
-// =======================================================================
-// function : initRowCount
-// purpose :
-// =======================================================================
-int VInspector_ItemSelectMgrViewerSelector::initRowCount() const
-{
-  return 0;
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant VInspector_ItemSelectMgrViewerSelector::initValue(const int theItemRole) const
-{
-  QVariant aParentValue = VInspector_ItemBase::initValue(theItemRole);
-  if (aParentValue.isValid())
-    return aParentValue;
-
-  if (theItemRole != Qt::DisplayRole && theItemRole != Qt::EditRole
-      && theItemRole != Qt::ToolTipRole)
-    return QVariant();
-
-  if (GetViewerSelector().IsNull())
-    return Column() == 0 ? "Empty viewer selector" : "";
-
-  return Column() == 0 ? GetViewerSelector()->DynamicType()->Name() : QVariant();
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void VInspector_ItemSelectMgrViewerSelector::Init()
-{
-  VInspector_ItemContextPropertiesPtr aParentItem =
-    itemDynamicCast<VInspector_ItemContextProperties>(Parent());
-  Handle(SelectMgr_ViewerSelector) aViewerSelector;
-  if (aParentItem)
-  {
-    VInspector_ItemContextPtr aParentContextItem =
-      itemDynamicCast<VInspector_ItemContext>(aParentItem->Parent());
-    if (aParentContextItem)
-    {
-      Handle(AIS_InteractiveContext) aContext = aParentContextItem->GetContext();
-      aViewerSelector                         = aContext->MainSelector();
-    }
-  }
-  myViewerSelector = aViewerSelector;
-  TreeModel_ItemBase::Init();
-}
-
-// =======================================================================
-// function : Reset
-// purpose :
-// =======================================================================
-void VInspector_ItemSelectMgrViewerSelector::Reset()
-{
-  VInspector_ItemBase::Reset();
-
-  myViewerSelector = NULL;
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void VInspector_ItemSelectMgrViewerSelector::initItem() const
-{
-  if (IsInitialized())
-    return;
-  const_cast<VInspector_ItemSelectMgrViewerSelector*>(this)->Init();
-}
-
-// =======================================================================
-// function : initStream
-// purpose :
-// =======================================================================
-void VInspector_ItemSelectMgrViewerSelector::initStream(Standard_OStream& theOStream) const
-{
-  Handle(SelectMgr_ViewerSelector) aViewerSelector = GetViewerSelector();
-  if (aViewerSelector.IsNull())
-    return;
-
-  aViewerSelector->DumpJson(theOStream);
-}
diff --git a/tools/VInspector/VInspector_ItemSelectMgrViewerSelector.hxx b/tools/VInspector/VInspector_ItemSelectMgrViewerSelector.hxx
deleted file mode 100644
index 59bc7ce907..0000000000
--- a/tools/VInspector/VInspector_ItemSelectMgrViewerSelector.hxx
+++ /dev/null
@@ -1,99 +0,0 @@
-// Created on: 2020-02-10
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 VInspector_ItemSelectMgrViewerSelector_H
-#define VInspector_ItemSelectMgrViewerSelector_H
-
-#include <Standard.hxx>
-#include <inspector/VInspector_ItemBase.hxx>
-
-#include <SelectMgr_ViewerSelector.hxx>
-
-class VInspector_ItemSelectMgrViewerSelector;
-typedef QExplicitlySharedDataPointer<VInspector_ItemSelectMgrViewerSelector>
-  VInspector_ItemSelectMgrViewerSelectorPtr;
-
-//! \class VInspector_ItemSelectMgrViewerSelector
-//! Parent item is context properties, that corresponds to SelectMgr_ViewerSelector
-class VInspector_ItemSelectMgrViewerSelector : public VInspector_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  static VInspector_ItemSelectMgrViewerSelectorPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                                              const int             theRow,
-                                                              const int             theColumn)
-  {
-    return VInspector_ItemSelectMgrViewerSelectorPtr(
-      new VInspector_ItemSelectMgrViewerSelector(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~VInspector_ItemSelectMgrViewerSelector() Standard_OVERRIDE {};
-
-  //! Inits the item, fills internal containers
-  Standard_EXPORT virtual void Init() Standard_OVERRIDE;
-
-  //! Resets cached values
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-  //! Returns data object of the item.
-  //! \return object
-  virtual const Handle(Standard_Transient)& Object() const Standard_OVERRIDE
-  {
-    initItem();
-    return myViewerSelector;
-  }
-
-  //! Returns the current viewer, init item if it was not initialized yet
-  //! \return interactive object
-  Handle(SelectMgr_ViewerSelector) GetViewerSelector() const
-  {
-    return Handle(SelectMgr_ViewerSelector)::DownCast(Object());
-  }
-
-protected:
-  //! Initializes the current item. It is empty because Reset() is also empty.
-  virtual void initItem() const Standard_OVERRIDE;
-
-  //! Returns number of displayed presentations
-  //! \return rows count
-  Standard_EXPORT virtual int initRowCount() const Standard_OVERRIDE;
-
-  //! Returns item information for the given role. Fills internal container if it was not filled yet
-  //! \param theItemRole a value role
-  //! \return the value
-  Standard_EXPORT virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
-
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  Standard_EXPORT virtual void initStream(Standard_OStream& theOStream) const Standard_OVERRIDE;
-
-private:
-  //! Constructor
-  //! param theParent a parent item
-  //! \param theRow the item row positition in the parent item
-  //! \param theColumn the item column positition in the parent item
-  VInspector_ItemSelectMgrViewerSelector(TreeModel_ItemBasePtr theParent,
-                                         const int             theRow,
-                                         const int             theColumn)
-      : VInspector_ItemBase(theParent, theRow, theColumn)
-  {
-  }
-
-protected:
-  Handle(SelectMgr_ViewerSelector) myViewerSelector; //!< the current viewer selector
-};
-
-#endif
diff --git a/tools/VInspector/VInspector_ItemV3dViewer.cxx b/tools/VInspector/VInspector_ItemV3dViewer.cxx
deleted file mode 100644
index 54f698b38a..0000000000
--- a/tools/VInspector/VInspector_ItemV3dViewer.cxx
+++ /dev/null
@@ -1,108 +0,0 @@
-// Created on: 2020-02-10
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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.
-
-#include <inspector/VInspector_ItemV3dViewer.hxx>
-
-#include <AIS.hxx>
-#include <AIS_InteractiveContext.hxx>
-#include <inspector/VInspector_ItemContext.hxx>
-#include <inspector/VInspector_ItemContextProperties.hxx>
-
-// =======================================================================
-// function : initRowCount
-// purpose :
-// =======================================================================
-int VInspector_ItemV3dViewer::initRowCount() const
-{
-  return 0;
-}
-
-// =======================================================================
-// function : initValue
-// purpose :
-// =======================================================================
-QVariant VInspector_ItemV3dViewer::initValue(const int theItemRole) const
-{
-  QVariant aParentValue = VInspector_ItemBase::initValue(theItemRole);
-  if (aParentValue.isValid())
-    return aParentValue;
-
-  if (theItemRole != Qt::DisplayRole && theItemRole != Qt::EditRole
-      && theItemRole != Qt::ToolTipRole)
-    return QVariant();
-
-  if (GetViewer().IsNull())
-    return Column() == 0 ? "Empty viewer" : "";
-
-  return Column() == 0 ? GetViewer()->DynamicType()->Name() : QVariant();
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void VInspector_ItemV3dViewer::Init()
-{
-  VInspector_ItemContextPropertiesPtr aParentItem =
-    itemDynamicCast<VInspector_ItemContextProperties>(Parent());
-  Handle(V3d_Viewer) aViewer;
-  if (aParentItem)
-  {
-    VInspector_ItemContextPtr aParentContextItem =
-      itemDynamicCast<VInspector_ItemContext>(aParentItem->Parent());
-    if (aParentContextItem)
-    {
-      Handle(AIS_InteractiveContext) aContext = aParentContextItem->GetContext();
-      aViewer                                 = aContext->CurrentViewer();
-    }
-  }
-  myViewer = aViewer;
-  TreeModel_ItemBase::Init();
-}
-
-// =======================================================================
-// function : Reset
-// purpose :
-// =======================================================================
-void VInspector_ItemV3dViewer::Reset()
-{
-  VInspector_ItemBase::Reset();
-
-  myViewer = NULL;
-}
-
-// =======================================================================
-// function : initItem
-// purpose :
-// =======================================================================
-void VInspector_ItemV3dViewer::initItem() const
-{
-  if (IsInitialized())
-    return;
-  const_cast<VInspector_ItemV3dViewer*>(this)->Init();
-}
-
-// =======================================================================
-// function : initStream
-// purpose :
-// =======================================================================
-void VInspector_ItemV3dViewer::initStream(Standard_OStream& theOStream) const
-{
-  Handle(V3d_Viewer) aViewer = GetViewer();
-  if (aViewer.IsNull())
-    return;
-
-  aViewer->DumpJson(theOStream);
-}
diff --git a/tools/VInspector/VInspector_ItemV3dViewer.hxx b/tools/VInspector/VInspector_ItemV3dViewer.hxx
deleted file mode 100644
index e9ca2b46bf..0000000000
--- a/tools/VInspector/VInspector_ItemV3dViewer.hxx
+++ /dev/null
@@ -1,92 +0,0 @@
-// Created on: 2020-02-10
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 VInspector_ItemV3dViewer_H
-#define VInspector_ItemV3dViewer_H
-
-#include <Standard.hxx>
-#include <inspector/VInspector_ItemBase.hxx>
-
-#include <V3d_Viewer.hxx>
-
-class VInspector_ItemV3dViewer;
-typedef QExplicitlySharedDataPointer<VInspector_ItemV3dViewer> VInspector_ItemV3dViewerPtr;
-
-//! \class VInspector_ItemV3dViewer
-//! Parent item is context properties, that corresponds to AIS_InteractiveContext
-class VInspector_ItemV3dViewer : public VInspector_ItemBase
-{
-public:
-  //! Creates an item wrapped by a shared pointer
-  static VInspector_ItemV3dViewerPtr CreateItem(TreeModel_ItemBasePtr theParent,
-                                                const int             theRow,
-                                                const int             theColumn)
-  {
-    return VInspector_ItemV3dViewerPtr(new VInspector_ItemV3dViewer(theParent, theRow, theColumn));
-  }
-
-  //! Destructor
-  virtual ~VInspector_ItemV3dViewer() Standard_OVERRIDE {};
-
-  //! Inits the item, fills internal containers
-  Standard_EXPORT virtual void Init() Standard_OVERRIDE;
-
-  //! Resets cached values
-  Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
-
-  //! Returns data object of the item.
-  //! \return object
-  virtual const Handle(Standard_Transient)& Object() const Standard_OVERRIDE
-  {
-    initItem();
-    return myViewer;
-  }
-
-  //! Returns the current viewer, init item if it was not initialized yet
-  //! \return interactive object
-  Handle(V3d_Viewer) GetViewer() const { return Handle(V3d_Viewer)::DownCast(Object()); }
-
-protected:
-  //! Initializes the current item. It is empty because Reset() is also empty.
-  virtual void initItem() const Standard_OVERRIDE;
-
-  //! Returns number of displayed presentations
-  //! \return rows count
-  Standard_EXPORT virtual int initRowCount() const Standard_OVERRIDE;
-
-  //! Returns item information for the given role. Fills internal container if it was not filled yet
-  //! \param theItemRole a value role
-  //! \return the value
-  Standard_EXPORT virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
-
-  //! Returns stream value of the item to fulfill property panel.
-  //! \return stream value or dummy
-  Standard_EXPORT virtual void initStream(Standard_OStream& theOStream) const Standard_OVERRIDE;
-
-private:
-  //! Constructor
-  //! param theParent a parent item
-  //! \param theRow the item row positition in the parent item
-  //! \param theColumn the item column positition in the parent item
-  VInspector_ItemV3dViewer(TreeModel_ItemBasePtr theParent, const int theRow, const int theColumn)
-      : VInspector_ItemBase(theParent, theRow, theColumn)
-  {
-  }
-
-protected:
-  Handle(V3d_Viewer) myViewer; //!< the current viewer
-};
-
-#endif
diff --git a/tools/VInspector/VInspector_ToolActionType.hxx b/tools/VInspector/VInspector_ToolActionType.hxx
deleted file mode 100644
index 203c4b1be6..0000000000
--- a/tools/VInspector/VInspector_ToolActionType.hxx
+++ /dev/null
@@ -1,27 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 VInspector_ToolActionType_H
-#define VInspector_ToolActionType_H
-
-//! \enum VInspector_ToolActionType
-enum VInspector_ToolActionType
-{
-  VInspector_ToolActionType_NoneId,  //!< No action activated
-  VInspector_ToolActionType_UpdateId //!< Update content of tree view (content of
-                                     //!< AIS_InteractiveContext)
-};
-
-#endif
diff --git a/tools/VInspector/VInspector_ToolBar.cxx b/tools/VInspector/VInspector_ToolBar.cxx
deleted file mode 100644
index 09adcabe16..0000000000
--- a/tools/VInspector/VInspector_ToolBar.cxx
+++ /dev/null
@@ -1,85 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/VInspector_ToolBar.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QHBoxLayout>
-#include <QPushButton>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-VInspector_ToolBar::VInspector_ToolBar(QWidget* theParent)
-    : QObject(theParent)
-{
-  myActionsMap[VInspector_ToolActionType_UpdateId] = new QPushButton(theParent);
-  myActionsMap[VInspector_ToolActionType_UpdateId]->setIcon(QIcon(":/icons/treeview_update.png"));
-  myActionsMap[VInspector_ToolActionType_UpdateId]->setText(tr("Update Tree Model"));
-  myActionsMap[VInspector_ToolActionType_UpdateId]->setToolTip(tr("Update Tree Model"));
-
-  myActionsMap[VInspector_ToolActionType_UpdateId]->setText("Update");
-
-  myMainWindow = new QWidget(theParent);
-
-  QHBoxLayout* aLay = new QHBoxLayout(myMainWindow);
-  aLay->setMargin(0);
-  for (QMap<VInspector_ToolActionType, QPushButton*>::ConstIterator anActionsIt =
-         myActionsMap.begin();
-       anActionsIt != myActionsMap.end();
-       anActionsIt++)
-  {
-    QPushButton* aBtn = anActionsIt.value();
-    connect(aBtn, SIGNAL(clicked()), this, SLOT(onActionClicked()));
-    aLay->addWidget(aBtn);
-  }
-  aLay->addStretch(1);
-}
-
-// =======================================================================
-// function : GetToolButton
-// purpose :
-// =======================================================================
-QPushButton* VInspector_ToolBar::GetToolButton(const VInspector_ToolActionType& theActionId) const
-{
-  return myActionsMap.contains(theActionId) ? myActionsMap[theActionId] : 0;
-}
-
-// =======================================================================
-// function : onActionClicked
-// purpose :
-// =======================================================================
-void VInspector_ToolBar::onActionClicked()
-{
-  int          anId       = -1;
-  QPushButton* aSenderBtn = (QPushButton*)sender();
-
-  for (QMap<VInspector_ToolActionType, QPushButton*>::ConstIterator anActionsIt =
-         myActionsMap.begin();
-       anActionsIt != myActionsMap.end();
-       anActionsIt++)
-  {
-    if (anActionsIt.value() != aSenderBtn)
-      continue;
-    anId = anActionsIt.key();
-    break;
-  }
-
-  if (anId != -1)
-    emit actionClicked(anId);
-}
diff --git a/tools/VInspector/VInspector_ToolBar.hxx b/tools/VInspector/VInspector_ToolBar.hxx
deleted file mode 100644
index 491f6e8593..0000000000
--- a/tools/VInspector/VInspector_ToolBar.hxx
+++ /dev/null
@@ -1,67 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 VInspector_ToolBar_H
-#define VInspector_ToolBar_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-#include <inspector/VInspector_ToolActionType.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QMap>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-class QWidget;
-class QPushButton;
-
-//! \class VInspector_ToolBar
-//! Container of View tool bar actions
-class VInspector_ToolBar : public QObject
-{
-  Q_OBJECT
-
-public:
-  //! Constructor
-  Standard_EXPORT VInspector_ToolBar(QWidget* theParent);
-
-  //! Destructor
-  virtual ~VInspector_ToolBar() {}
-
-  //! Returns main control
-  QWidget* GetControl() const { return myMainWindow; }
-
-  //! Returns tool button by action index
-  //! \param theActionId index of action
-  Standard_EXPORT QPushButton* GetToolButton(const VInspector_ToolActionType& theActionId) const;
-
-signals:
-
-  //! Signal about action click
-  //! \param theActionId an action index
-  void actionClicked(int theActionId);
-
-private slots:
-
-  //! Provides switch for action. Emits signal about action click
-  void onActionClicked();
-
-private:
-  QWidget*                                      myMainWindow; //!< the main control
-  QMap<VInspector_ToolActionType, QPushButton*> myActionsMap; //!< container of type into button
-};
-
-#endif
diff --git a/tools/VInspector/VInspector_Tools.cxx b/tools/VInspector/VInspector_Tools.cxx
deleted file mode 100644
index 1e476899f2..0000000000
--- a/tools/VInspector/VInspector_Tools.cxx
+++ /dev/null
@@ -1,400 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/VInspector_Tools.hxx>
-
-#include <inspector/ViewControl_TableModelValues.hxx>
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <inspector/Convert_Tools.hxx>
-
-#include <AIS_ListIteratorOfListOfInteractive.hxx>
-#include <AIS_ListOfInteractive.hxx>
-#include <AIS_Selection.hxx>
-#include <AIS_Shape.hxx>
-#include <BRepPrimAPI_MakeBox.hxx>
-#include <BRepBuilderAPI_MakeEdge.hxx>
-#include <BRepBuilderAPI_MakeVertex.hxx>
-#include <Graphic3d_IndexBuffer.hxx>
-#include <Graphic3d_Buffer.hxx>
-#include <Graphic3d_BoundBuffer.hxx>
-
-#include <SelectMgr_StateOfSelection.hxx>
-#include <SelectMgr_TypeOfUpdate.hxx>
-#include <SelectMgr_TypeOfBVHUpdate.hxx>
-#include <StdSelect_BRepOwner.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QStringList>
-#include <Standard_WarningsRestore.hxx>
-
-#include <TopoDS_Compound.hxx>
-
-#include <sstream>
-
-// =======================================================================
-// function : GetShapeTypeInfo
-// purpose :
-// =======================================================================
-TCollection_AsciiString VInspector_Tools::GetShapeTypeInfo(const TopAbs_ShapeEnum& theType)
-{
-  Standard_SStream aSStream;
-  TopAbs::Print(theType, aSStream);
-  return aSStream.str().c_str();
-}
-
-// =======================================================================
-// function : SelectedOwners
-// purpose :
-// =======================================================================
-int VInspector_Tools::SelectedOwners(const Handle(AIS_InteractiveContext)& theContext,
-                                     const Handle(AIS_InteractiveObject)&  theObject,
-                                     const bool                            theShapeInfoOnly)
-{
-  QStringList anObjects;
-  if (theContext.IsNull())
-    return 0;
-
-  QList<size_t> aSelectedIds; // Remember of selected address in order to avoid duplicates
-  for (theContext->InitSelected(); theContext->MoreSelected(); theContext->NextSelected())
-  {
-    Handle(SelectMgr_EntityOwner) anOwner = theContext->SelectedOwner();
-    if (anOwner.IsNull()) // TODO: check why it is possible
-      continue;
-
-    if (!theObject.IsNull())
-    {
-      Handle(AIS_InteractiveObject) anOwnerPresentation =
-        Handle(AIS_InteractiveObject)::DownCast(anOwner->Selectable());
-      if (anOwnerPresentation != theObject)
-        continue;
-    }
-    Handle(StdSelect_BRepOwner) BROwnr = Handle(StdSelect_BRepOwner)::DownCast(anOwner);
-    if (theShapeInfoOnly && BROwnr.IsNull())
-      continue;
-
-    Standard_Transient* anOwnerPtr = anOwner.get();
-    if (aSelectedIds.contains((size_t)anOwnerPtr))
-      continue;
-    aSelectedIds.append((size_t)anOwnerPtr);
-
-    anObjects.append(Standard_Dump::GetPointerInfo(anOwnerPtr, true).ToCString());
-  }
-  return anObjects.size();
-}
-
-// =======================================================================
-// function : IsOwnerSelected
-// purpose :
-// =======================================================================
-bool VInspector_Tools::IsOwnerSelected(const Handle(AIS_InteractiveContext)& theContext,
-                                       const Handle(SelectMgr_EntityOwner)&  theOwner)
-{
-  bool anIsSelected = false;
-  for (theContext->InitSelected(); theContext->MoreSelected() && !anIsSelected;
-       theContext->NextSelected())
-    anIsSelected = theContext->SelectedOwner() == theOwner;
-  return anIsSelected;
-}
-
-// =======================================================================
-// function : ContextOwners
-// purpose :
-// =======================================================================
-NCollection_List<Handle(SelectMgr_EntityOwner)> VInspector_Tools::ContextOwners(
-  const Handle(AIS_InteractiveContext)& theContext)
-{
-  NCollection_List<Handle(SelectMgr_EntityOwner)> aResultOwners;
-  if (theContext.IsNull())
-    return aResultOwners;
-
-  AIS_ListOfInteractive aListOfIO;
-  theContext->DisplayedObjects(aListOfIO);
-  QList<size_t> aSelectedIds; // Remember of selected address in order to avoid duplicates
-  for (AIS_ListIteratorOfListOfInteractive aIt(aListOfIO); aIt.More(); aIt.Next())
-  {
-    Handle(AIS_InteractiveObject) anIO = aIt.Value();
-    if (anIO.IsNull())
-      continue;
-    for (SelectMgr_SequenceOfSelection::Iterator aSelIter(anIO->Selections()); aSelIter.More();
-         aSelIter.Next())
-    {
-      Handle(SelectMgr_Selection) aSelection = aSelIter.Value();
-      if (aSelection.IsNull())
-        continue;
-      for (NCollection_Vector<Handle(SelectMgr_SensitiveEntity)>::Iterator aSelEntIter(
-             aSelection->Entities());
-           aSelEntIter.More();
-           aSelEntIter.Next())
-      {
-        Handle(SelectMgr_SensitiveEntity) anEntity = aSelEntIter.Value();
-        if (anEntity.IsNull())
-          continue;
-        const Handle(Select3D_SensitiveEntity)& aBase      = anEntity->BaseSensitive();
-        Handle(SelectMgr_EntityOwner)           anOwner    = aBase->OwnerId();
-        Standard_Transient*                     anOwnerPtr = anOwner.get();
-        if (aSelectedIds.contains((size_t)anOwnerPtr))
-          continue;
-        aSelectedIds.append((size_t)anOwnerPtr);
-        aResultOwners.Append(anOwner);
-      }
-    }
-  }
-  return aResultOwners;
-}
-
-// =======================================================================
-// function : ActiveOwners
-// purpose :
-// =======================================================================
-NCollection_List<Handle(SelectMgr_EntityOwner)> VInspector_Tools::ActiveOwners(
-  const Handle(AIS_InteractiveContext)&            theContext,
-  NCollection_List<Handle(SelectMgr_EntityOwner)>& theEmptySelectableOwners)
-{
-  NCollection_List<Handle(SelectMgr_EntityOwner)> aResultOwners;
-
-  // only local context is processed: TODO for global context
-  Handle(AIS_InteractiveContext) aContext = theContext;
-  if (aContext.IsNull())
-    return aResultOwners;
-  NCollection_List<Handle(SelectMgr_EntityOwner)> anActiveOwners;
-  // OCCT BUG:1 - equal pointer owners are appears in the list
-  aContext->MainSelector()->ActiveOwners(anActiveOwners);
-  QList<size_t> aSelectedIds; // Remember of selected address in order to avoid duplicates
-  Handle(SelectMgr_EntityOwner) anOwner;
-  for (NCollection_List<Handle(SelectMgr_EntityOwner)>::Iterator anOwnersIt(anActiveOwners);
-       anOwnersIt.More();
-       anOwnersIt.Next())
-  {
-    anOwner = anOwnersIt.Value();
-    if (anOwner.IsNull())
-      continue;
-
-    Standard_Transient* anOwnerPtr = anOwner.get();
-    if (aSelectedIds.contains((size_t)anOwnerPtr))
-      continue;
-    aSelectedIds.append((size_t)anOwnerPtr);
-
-    aResultOwners.Append(anOwner);
-    Handle(SelectMgr_SelectableObject) aSelectable = anOwner->Selectable();
-    if (aSelectable.IsNull()
-        || !theContext->IsDisplayed(Handle(AIS_InteractiveObject)::DownCast(aSelectable)))
-      theEmptySelectableOwners.Append(anOwner);
-  }
-  return aResultOwners;
-}
-
-// =======================================================================
-// function : AddOrRemoveSelectedShapes
-// purpose :
-// =======================================================================
-void VInspector_Tools::AddOrRemoveSelectedShapes(
-  const Handle(AIS_InteractiveContext)&                  theContext,
-  const NCollection_List<Handle(SelectMgr_EntityOwner)>& theOwners)
-{
-  // TODO: the next two rows are to be removed later
-  theContext->UnhilightSelected(false);
-  theContext->ClearSelected(false);
-
-  theContext->UnhilightSelected(Standard_False);
-
-  for (NCollection_List<Handle(SelectMgr_EntityOwner)>::Iterator anOwnersIt(theOwners);
-       anOwnersIt.More();
-       anOwnersIt.Next())
-  {
-    Handle(SelectMgr_EntityOwner) anOwner = anOwnersIt.Value();
-    theContext->AddOrRemoveSelected(anOwner, Standard_False);
-  }
-  theContext->UpdateCurrentViewer();
-}
-
-// =======================================================================
-// function : AddOrRemovePresentations
-// purpose :
-// =======================================================================
-void VInspector_Tools::AddOrRemovePresentations(
-  const Handle(AIS_InteractiveContext)&                  theContext,
-  const NCollection_List<Handle(AIS_InteractiveObject)>& thePresentations)
-{
-  // TODO: the next two rows are to be removed later
-  theContext->UnhilightSelected(false);
-  theContext->ClearSelected(false);
-
-  for (NCollection_List<Handle(AIS_InteractiveObject)>::Iterator anIOIt(thePresentations);
-       anIOIt.More();
-       anIOIt.Next())
-    theContext->AddOrRemoveSelected(anIOIt.Value(), false);
-
-  theContext->UpdateCurrentViewer();
-}
-
-// =======================================================================
-// function : GetInfo
-// purpose :
-// =======================================================================
-QList<QVariant> VInspector_Tools::GetInfo(Handle(AIS_InteractiveObject)& theObject)
-{
-  QList<QVariant> anInfo;
-  anInfo.append(theObject->DynamicType()->Name());
-  anInfo.append(Standard_Dump::GetPointerInfo(theObject, true).ToCString());
-
-  Handle(AIS_Shape) aShapeIO = Handle(AIS_Shape)::DownCast(theObject);
-  if (aShapeIO.IsNull())
-    return anInfo;
-
-  const TopoDS_Shape& aShape = aShapeIO->Shape();
-  if (!aShape.IsNull())
-    anInfo.append(VInspector_Tools::GetShapeTypeInfo(aShape.ShapeType()).ToCString());
-
-  return anInfo;
-}
-
-// =======================================================================
-// function : GetHighlightInfo
-// purpose :
-// =======================================================================
-QList<QVariant> VInspector_Tools::GetHighlightInfo(const Handle(AIS_InteractiveContext)& theContext)
-{
-  QList<QVariant> aValues;
-  if (theContext.IsNull())
-    return aValues;
-
-  QStringList   aSelectedNames;
-  QStringList   aSelectedPointers;
-  QStringList   aSelectedTypes;
-  QStringList   aSelectedOwners;
-  QList<size_t> aSelectedIds; // Remember of selected address in order to avoid duplicates
-  for (theContext->InitDetected(); theContext->MoreDetected(); theContext->NextDetected())
-  {
-    Handle(SelectMgr_EntityOwner) anOwner = theContext->DetectedOwner();
-    if (anOwner.IsNull())
-      continue;
-    Standard_Transient* anOwnerPtr = anOwner.get();
-    if (aSelectedIds.contains((size_t)anOwnerPtr))
-      continue;
-    aSelectedIds.append((size_t)anOwnerPtr);
-    Handle(AIS_InteractiveObject) anIO =
-      Handle(AIS_InteractiveObject)::DownCast(anOwner->Selectable());
-    if (anIO.IsNull())
-      continue;
-    QList<QVariant> anIOInfo = VInspector_Tools::GetInfo(anIO);
-    if (anIOInfo.size() == 3)
-    {
-      aSelectedNames.append(anIOInfo[0].toString());
-      aSelectedPointers.append(anIOInfo[1].toString());
-      aSelectedTypes.append(anIOInfo[2].toString());
-    }
-    aSelectedOwners.append(Standard_Dump::GetPointerInfo(anOwnerPtr, true).ToCString());
-  }
-  aValues.append(aSelectedNames.join(", "));
-  aValues.append(aSelectedPointers.join(", "));
-  aValues.append(aSelectedTypes.join(", "));
-  aValues.append(aSelectedOwners.join(", "));
-
-  return aValues;
-}
-
-// =======================================================================
-// function : GetSelectedInfo
-// purpose :
-// =======================================================================
-QList<QVariant> VInspector_Tools::GetSelectedInfo(const Handle(AIS_InteractiveContext)& theContext)
-{
-  QList<QVariant> aValues;
-  if (theContext.IsNull())
-    return aValues;
-
-  QStringList   aSelectedNames;
-  QStringList   aSelectedPointers;
-  QStringList   aSelectedTypes;
-  QStringList   aSelectedOwners;
-  QList<size_t> aSelectedIds; // Remember of selected address in order to avoid duplicates
-  for (theContext->InitSelected(); theContext->MoreSelected(); theContext->NextSelected())
-  {
-    Handle(SelectMgr_EntityOwner) anOwner = theContext->SelectedOwner();
-    if (anOwner.IsNull())
-      continue;
-    Standard_Transient* anOwnerPtr = anOwner.get();
-    if (aSelectedIds.contains((size_t)anOwnerPtr))
-      continue;
-    aSelectedIds.append((size_t)anOwnerPtr);
-    Handle(AIS_InteractiveObject) anIO =
-      Handle(AIS_InteractiveObject)::DownCast(anOwner->Selectable());
-    if (anIO.IsNull())
-      continue;
-
-    QList<QVariant> anIOInfo = VInspector_Tools::GetInfo(anIO);
-    if (anIOInfo.size() == 3)
-    {
-      aSelectedNames.append(anIOInfo[0].toString());
-      aSelectedPointers.append(anIOInfo[1].toString());
-      aSelectedTypes.append(anIOInfo[2].toString());
-    }
-    aSelectedOwners.append(Standard_Dump::GetPointerInfo(anOwnerPtr, true).ToCString());
-  }
-  aValues.append(aSelectedNames.join(", "));
-  aValues.append(aSelectedPointers.join(", "));
-  aValues.append(aSelectedTypes.join(", "));
-  aValues.append(aSelectedOwners.join(", "));
-  return aValues;
-}
-
-// =======================================================================
-// function : GetSelectedInfoPointers
-// purpose :
-// =======================================================================
-QString VInspector_Tools::GetSelectedInfoPointers(const Handle(AIS_InteractiveContext)& theContext)
-{
-  QList<QVariant> aSelectedInfo = VInspector_Tools::GetSelectedInfo(theContext);
-  return aSelectedInfo.size() > 2 ? aSelectedInfo[1].toString() : QString();
-}
-
-namespace
-{
-static Standard_CString VInspector_Table_PrintDisplayActionType[5] = {"None",
-                                                                      "Display",
-                                                                      "Redisplay",
-                                                                      "Erase",
-                                                                      "Remove"};
-}
-
-//=======================================================================
-// function : DisplayActionTypeToString
-// purpose  :
-//=======================================================================
-Standard_CString VInspector_Tools::DisplayActionTypeToString(View_DisplayActionType theType)
-{
-  return VInspector_Table_PrintDisplayActionType[theType];
-}
-
-//=======================================================================
-// function : DisplayActionTypeFromString
-// purpose  :
-//=======================================================================
-Standard_Boolean VInspector_Tools::DisplayActionTypeFromString(Standard_CString theTypeString,
-                                                               View_DisplayActionType& theType)
-{
-  const TCollection_AsciiString aName(theTypeString);
-  for (Standard_Integer aTypeIter = 0; aTypeIter <= View_DisplayActionType_RemoveId; ++aTypeIter)
-  {
-    Standard_CString aTypeName = VInspector_Table_PrintDisplayActionType[aTypeIter];
-    if (aName == aTypeName)
-    {
-      theType = View_DisplayActionType(aTypeIter);
-      return Standard_True;
-    }
-  }
-  return Standard_False;
-}
diff --git a/tools/VInspector/VInspector_Tools.hxx b/tools/VInspector/VInspector_Tools.hxx
deleted file mode 100644
index df176a4da2..0000000000
--- a/tools/VInspector/VInspector_Tools.hxx
+++ /dev/null
@@ -1,150 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 VInspector_Tools_H
-#define VInspector_Tools_H
-
-#include <AIS_InteractiveContext.hxx>
-#include <Bnd_Box.hxx>
-#include <Bnd_OBB.hxx>
-#include <Graphic3d_Buffer.hxx>
-#include <Graphic3d_Mat4.hxx>
-#include <Graphic3d_Mat4d.hxx>
-#include <Select3D_BndBox3d.hxx>
-#include <SelectMgr_EntityOwner.hxx>
-#include <Standard.hxx>
-#include <TCollection_AsciiString.hxx>
-#include <TopAbs_Orientation.hxx>
-#include <TopAbs_ShapeEnum.hxx>
-#include <TopLoc_Location.hxx>
-#include <TopoDS_Shape.hxx>
-
-#include <inspector/View_DisplayActionType.hxx>
-
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QList>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-class ViewControl_TableModelValues;
-
-class Graphic3d_IndexBuffer;
-class Graphic3d_Buffer;
-class Graphic3d_BoundBuffer;
-
-//! \class VInspector_Tools
-//! The class that gives auxiliary methods for Visualization elements manipulation
-class VInspector_Tools
-{
-
-public:
-  //! Returns string value of enumeration value
-  //! \param theType a shape type
-  //! \return text value
-  Standard_EXPORT static TCollection_AsciiString GetShapeTypeInfo(const TopAbs_ShapeEnum& theType);
-
-  //! Returns number of selected owners for presentation
-  //! \param theContext an interactive context
-  //! \param theObject a presentation
-  //! \param theShapeInfoOnly if true, only BRep owners are taken
-  Standard_EXPORT static int SelectedOwners(const Handle(AIS_InteractiveContext)& theContext,
-                                            const Handle(AIS_InteractiveObject)&  theObject,
-                                            const bool                            theShapeInfoOnly);
-
-  //! Returns true if the owner is selected in the context
-  //! \param theContext an interactive context
-  //! \param theOwner a selectable owner
-  //! \return boolean value
-  Standard_EXPORT static bool IsOwnerSelected(const Handle(AIS_InteractiveContext)& theContext,
-                                              const Handle(SelectMgr_EntityOwner)&  theOwner);
-
-  //! Returns all owners present in the context
-  //! \param theContext an interactive context
-  //! \return container of owners
-  Standard_EXPORT static NCollection_List<Handle(SelectMgr_EntityOwner)> ContextOwners(
-    const Handle(AIS_InteractiveContext)& theContext);
-
-  //! Returns active owners in main selector of context
-  //! \param theContext an interactive context
-  //! \param theEmptySelectableOwners container of owners with NULL presentation or not displayed
-  //! presentation \return container of owners
-  Standard_EXPORT static NCollection_List<Handle(SelectMgr_EntityOwner)> ActiveOwners(
-    const Handle(AIS_InteractiveContext)&            theContext,
-    NCollection_List<Handle(SelectMgr_EntityOwner)>& theEmptySelectableOwners);
-
-  //! Unhighlight selected, set selected the owners
-  //! \param theContext an interactive context
-  //! \param theOwners a container of owners
-  Standard_EXPORT static void AddOrRemoveSelectedShapes(
-    const Handle(AIS_InteractiveContext)&                  theContext,
-    const NCollection_List<Handle(SelectMgr_EntityOwner)>& theOwners);
-
-  //! Unhighlight selected, set selected presentations
-  //! \param theContext an interactive context
-  //! \param thePresentations a container of presentations
-  Standard_EXPORT static void AddOrRemovePresentations(
-    const Handle(AIS_InteractiveContext)&                  theContext,
-    const NCollection_List<Handle(AIS_InteractiveObject)>& thePresentations);
-
-  //! Returns information about presentation: Dynamic Type, Pointer info, Shape type info
-  //! \param theObject a presentation
-  //! \return container of values
-  Standard_EXPORT static QList<QVariant> GetInfo(Handle(AIS_InteractiveObject)& theObject);
-
-  //! Returns information about current highlight: Names, Owners, Pointers, Owners
-  //! \param theContext an interactive context
-  //! \return container of values
-  Standard_EXPORT static QList<QVariant> GetHighlightInfo(
-    const Handle(AIS_InteractiveContext)& theContext);
-
-  //! Returns information about current selection: Names, Owners, Pointers, Owners
-  //! \param theContext an interactive context
-  //! \return container of values
-  Standard_EXPORT static QList<QVariant> GetSelectedInfo(
-    const Handle(AIS_InteractiveContext)& theContext);
-
-  //! Returns the first pointer of selection in the context
-  Standard_EXPORT static QString GetSelectedInfoPointers(
-    const Handle(AIS_InteractiveContext)& theContext);
-
-  //! Returns the string name for a given type.
-  //! @param theType action type
-  //! @return string identifier from the display action type
-  Standard_EXPORT static Standard_CString DisplayActionTypeToString(View_DisplayActionType theType);
-
-  //! Returns the enumeration type from the given string identifier (using case-insensitive
-  //! comparison).
-  //! @param theTypeString string identifier
-  //! @return string identifier from the display action type
-  static View_DisplayActionType DisplayActionTypeFromString(Standard_CString theTypeString)
-  {
-    View_DisplayActionType aType = View_DisplayActionType_NoneId;
-    DisplayActionTypeFromString(theTypeString, aType);
-    return aType;
-  }
-
-  //! Determines the enumeration type from the given string identifier (using case-insensitive
-  //! comparison).
-  //! @param theTypeString string identifier
-  //! @param theType detected action type
-  //! @return TRUE if string identifier is known
-  Standard_EXPORT static Standard_Boolean DisplayActionTypeFromString(
-    Standard_CString        theTypeString,
-    View_DisplayActionType& theType);
-};
-
-#endif
diff --git a/tools/VInspector/VInspector_ViewModel.cxx b/tools/VInspector/VInspector_ViewModel.cxx
deleted file mode 100644
index 6cdc6218fe..0000000000
--- a/tools/VInspector/VInspector_ViewModel.cxx
+++ /dev/null
@@ -1,147 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/VInspector_ViewModel.hxx>
-
-#include <inspector/TreeModel_Tools.hxx>
-#include <inspector/VInspector_ItemContext.hxx>
-#include <inspector/VInspector_ItemPresentableObject.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QItemSelectionModel>
-#include <QStringList>
-#include <Standard_WarningsRestore.hxx>
-
-const int COLUMN_POINTER_WIDTH = 70;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-VInspector_ViewModel::VInspector_ViewModel(QObject* theParent)
-    : TreeModel_ModelBase(theParent)
-{
-}
-
-// =======================================================================
-// function : InitColumns
-// purpose :
-// =======================================================================
-void VInspector_ViewModel::InitColumns()
-{
-  TreeModel_ModelBase::InitColumns();
-
-  setHeaderItem(3, TreeModel_HeaderSection("Pointer", COLUMN_POINTER_WIDTH));
-  setHeaderItem(4, TreeModel_HeaderSection("SelectedOwners", -1));
-}
-
-// =======================================================================
-// function : createRootItem
-// purpose :
-// =======================================================================
-TreeModel_ItemBasePtr VInspector_ViewModel::createRootItem(const int theColumnId)
-{
-  return VInspector_ItemContext::CreateItem(TreeModel_ItemBasePtr(), 0, theColumnId);
-}
-
-// =======================================================================
-// function : GetContext
-// purpose :
-// =======================================================================
-Handle(AIS_InteractiveContext) VInspector_ViewModel::GetContext() const
-{
-  return itemDynamicCast<VInspector_ItemContext>(RootItem(0))->GetContext();
-}
-
-// =======================================================================
-// function : SetContext
-// purpose :
-// =======================================================================
-void VInspector_ViewModel::SetContext(const Handle(AIS_InteractiveContext)& theContext)
-{
-  // fill root item by the application
-  for (int aColId = 0, aNbColumns = columnCount(); aColId < aNbColumns; aColId++)
-    itemDynamicCast<VInspector_ItemContext>(myRootItems[aColId])->SetContext(theContext);
-
-  UpdateTreeModel();
-}
-
-// =======================================================================
-// function : FindPointers
-// purpose :
-// =======================================================================
-void VInspector_ViewModel::FindPointers(const QStringList& thePointers,
-                                        const QModelIndex& theParent,
-                                        QModelIndexList&   theFoundIndices)
-{
-  (void)thePointers;
-  (void)theParent;
-  (void)theFoundIndices;
-  // should be used after Object of items is improved, as it takes a lot of time on BVH item
-  /*
-  if (thePointers.isEmpty())
-    return;
-
-  QModelIndex aParentIndex = theParent.isValid() ? theParent : index (0, 0);
-  TreeModel_ItemBasePtr aParentItem = TreeModel_ModelBase::GetItemByIndex (aParentIndex); // context
-  item for (int aRowId = 0, aCount = aParentItem->rowCount(); aRowId < aCount; aRowId++)
-  {
-    QModelIndex anIndex = index (aRowId, 0, aParentIndex);
-    TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex (anIndex);
-    VInspector_ItemBasePtr aVItem = itemDynamicCast<VInspector_ItemBase>(anItemBase);
-    if (!aVItem)
-      continue;
-    const Handle(Standard_Transient)& anObject = aVItem->Object();
-    TCollection_AsciiString aPointerInfo = Standard_Dump::GetPointerInfo (anObject);
-    if (thePointers.contains (aPointerInfo.ToCString()))
-      theFoundIndices.append (anIndex);
-
-    FindPointers (thePointers, anIndex, theFoundIndices);
-  }*/
-}
-
-// =======================================================================
-// function : FindIndex
-// purpose :
-// =======================================================================
-QModelIndex VInspector_ViewModel::FindIndex(
-  const Handle(AIS_InteractiveObject)& thePresentation) const
-{
-  QModelIndex           aParentIndex = index(0, 0);
-  TreeModel_ItemBasePtr aParentItem =
-    TreeModel_ModelBase::GetItemByIndex(aParentIndex); // context item
-  for (int aRowId = 0, aCount = aParentItem->rowCount(); aRowId < aCount; aRowId++)
-  {
-    QModelIndex                         anIndex    = index(aRowId, 0, aParentIndex);
-    TreeModel_ItemBasePtr               anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-    VInspector_ItemPresentableObjectPtr anItemPrs =
-      itemDynamicCast<VInspector_ItemPresentableObject>(anItemBase);
-    if (!anItemPrs)
-      continue;
-    if (anItemPrs->GetInteractiveObject() == thePresentation)
-      return anIndex;
-  }
-  return QModelIndex();
-}
-
-// =======================================================================
-// function : UpdateTreeModel
-// purpose :
-// =======================================================================
-void VInspector_ViewModel::UpdateTreeModel()
-{
-  Reset();
-  EmitLayoutChanged();
-}
diff --git a/tools/VInspector/VInspector_ViewModel.hxx b/tools/VInspector/VInspector_ViewModel.hxx
deleted file mode 100644
index ef3e102aa6..0000000000
--- a/tools/VInspector/VInspector_ViewModel.hxx
+++ /dev/null
@@ -1,85 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 VInspector_ViewModel_H
-#define VInspector_ViewModel_H
-
-#include <AIS_InteractiveContext.hxx>
-#include <NCollection_List.hxx>
-#include <SelectMgr_EntityOwner.hxx>
-
-#include <inspector/TreeModel_ModelBase.hxx>
-#include <inspector/VInspector_ItemBase.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QByteArray>
-#include <QHash>
-#include <QMap>
-#include <QObject>
-#include <Standard_WarningsRestore.hxx>
-
-class OCAFSampleAPI_Module;
-class OCAFSampleModel_DocumentMgr;
-
-class QItemSelectionModel;
-
-//! \class VInspector_ViewModel
-//! The class that visualizes the AIS context content
-class VInspector_ViewModel : public TreeModel_ModelBase
-{
-  Q_OBJECT
-
-public:
-  //! Constructor
-  Standard_EXPORT VInspector_ViewModel(QObject* theParent);
-
-  //! Destructor
-  virtual ~VInspector_ViewModel() {}
-
-  //! Creates model columns and root items.
-  Standard_EXPORT virtual void InitColumns() Standard_OVERRIDE;
-
-  //! Initialize the model by the given context
-  //! \param theContext viewer context
-  Standard_EXPORT Handle(AIS_InteractiveContext) GetContext() const;
-
-  //! Initialize the model by the given context
-  //! \param theContext viewer context
-  Standard_EXPORT void SetContext(const Handle(AIS_InteractiveContext)& theContext);
-
-  //! Returns tree view indices for the given pointers of presentable object
-  //! \param thePointers a list of presentation pointers
-  //! \param theParent an index of the parent item
-  //! \param[out]  container of indices
-  Standard_EXPORT void FindPointers(const QStringList& thePointers,
-                                    const QModelIndex& theParent,
-                                    QModelIndexList&   theFoundIndices);
-
-  //! Returns tree model index of the presentation item in the tree view.
-  //! \param thePresentation a presentation
-  //! \return model index if the value is found or Null model index
-  Standard_EXPORT QModelIndex FindIndex(const Handle(AIS_InteractiveObject)& thePresentation) const;
-
-  //! Updates tree model
-  Standard_EXPORT void UpdateTreeModel();
-
-protected:
-  //! Creates root item
-  //! \param theColumnId index of a column
-  Standard_EXPORT virtual TreeModel_ItemBasePtr createRootItem(const int theColumnId)
-    Standard_OVERRIDE;
-};
-
-#endif
diff --git a/tools/VInspector/VInspector_Window.cxx b/tools/VInspector/VInspector_Window.cxx
deleted file mode 100644
index 2bab8c4e77..0000000000
--- a/tools/VInspector/VInspector_Window.cxx
+++ /dev/null
@@ -1,1039 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/VInspector_Window.hxx>
-
-#include <AIS_Shape.hxx>
-#include <BRepBuilderAPI_MakeVertex.hxx>
-#include <V3d_Viewer.hxx>
-
-#include <inspector/Convert_Tools.hxx>
-
-#include <inspector/TreeModel_ColumnType.hxx>
-#include <inspector/TreeModel_ContextMenu.hxx>
-#include <inspector/TreeModel_Tools.hxx>
-
-#include <inspector/ViewControl_MessageDialog.hxx>
-#include <inspector/ViewControl_TableModel.hxx>
-#include <inspector/ViewControl_Tools.hxx>
-#include <inspector/Convert_TransientShape.hxx>
-
-#include <inspector/VInspector_ToolBar.hxx>
-#include <inspector/VInspector_Tools.hxx>
-#include <inspector/VInspector_ViewModel.hxx>
-#include <inspector/VInspector_Communicator.hxx>
-#include <inspector/VInspector_ItemContext.hxx>
-#include <inspector/VInspector_ItemContextProperties.hxx>
-#include <inspector/VInspector_ItemGraphic3dCLight.hxx>
-#include <inspector/VInspector_ToolBar.hxx>
-#include <inspector/VInspector_Tools.hxx>
-#include <inspector/VInspector_ViewModel.hxx>
-
-#include <inspector/ViewControl_PropertyView.hxx>
-#include <inspector/ViewControl_TreeView.hxx>
-
-#include <inspector/View_Displayer.hxx>
-#include <inspector/View_DisplayPreview.hxx>
-#include <inspector/View_PreviewParameters.hxx>
-#include <inspector/View_Widget.hxx>
-#include <inspector/View_Window.hxx>
-#include <inspector/View_Viewer.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QDockWidget>
-#include <QHeaderView>
-#include <QGridLayout>
-#include <QItemSelectionModel>
-#include <QMainWindow>
-#include <QMenu>
-#include <QMessageBox>
-#include <QToolButton>
-#include <QTreeView>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-const int VINSPECTOR_DEFAULT_PROPERTY_VIEW_WIDTH  = 300;
-const int VINSPECTOR_DEFAULT_PROPERTY_VIEW_HEIGHT = 1000;
-
-const int VINSPECTOR_DEFAULT_WIDTH  = 1250;
-const int VINSPECTOR_DEFAULT_HEIGHT = 800;
-
-const int VINSPECTOR_DEFAULT_POSITION_X = 200;
-const int VINSPECTOR_DEFAULT_POSITION_Y = 60;
-
-const int VINSPECTOR_DEFAULT_VIEW_WIDTH  = 400;
-const int VINSPECTOR_DEFAULT_VIEW_HEIGHT = 1000;
-
-const int VINSPECTOR_DEFAULT_VIEW_POSITION_X =
-  200 + 900 + 100; // TINSPECTOR_DEFAULT_POSITION_X + TINSPECTOR_DEFAULT_WIDTH + 100
-const int VINSPECTOR_DEFAULT_VIEW_POSITION_Y = 60; // TINSPECTOR_DEFAULT_POSITION_Y + 50
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-VInspector_Window::VInspector_Window()
-    : myParent(0),
-      myExportToShapeViewDialog(0),
-      myViewWindow(0)
-{
-  myDisplayer = new View_Displayer();
-
-  myMainWindow = new QMainWindow(0);
-
-  QWidget*     aCentralWidget = new QWidget(myMainWindow);
-  QGridLayout* aParentLay     = new QGridLayout(aCentralWidget);
-  aParentLay->setContentsMargins(0, 0, 0, 0);
-  aParentLay->setSpacing(0);
-
-  // restore state of tool bar: on the bottom of the window
-  myToolBar = new VInspector_ToolBar(aCentralWidget);
-  connect(myToolBar, SIGNAL(actionClicked(int)), this, SLOT(onToolBarActionClicked(int)));
-  aParentLay->addWidget(myToolBar->GetControl(), 0, 0);
-
-  // tree view
-  myTreeView = new QTreeView(aCentralWidget);
-  myTreeView->setSelectionBehavior(QAbstractItemView::SelectRows);
-  myTreeView->setSelectionMode(QAbstractItemView::ExtendedSelection);
-  myTreeView->header()->setStretchLastSection(true);
-  myTreeView->setContextMenuPolicy(Qt::CustomContextMenu);
-  VInspector_ViewModel* aTreeModel = new VInspector_ViewModel(myTreeView);
-  aTreeModel->InitColumns();
-  myTreeView->setModel(aTreeModel);
-  // hide Visibility column
-  TreeModel_HeaderSection* anItem =
-    aTreeModel->ChangeHeaderItem((int)TreeModel_ColumnType_Visibility);
-  anItem->SetIsHidden(true);
-
-  connect(myTreeView,
-          SIGNAL(customContextMenuRequested(const QPoint&)),
-          this,
-          SLOT(onTreeViewContextMenuRequested(const QPoint&)));
-  new TreeModel_ContextMenu(myTreeView);
-
-  QItemSelectionModel* aSelModel = new QItemSelectionModel(myTreeView->model(), myTreeView);
-  myTreeView->setSelectionModel(aSelModel);
-  connect(aSelModel,
-          SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-          this,
-          SLOT(onTreeViewSelectionChanged(const QItemSelection&, const QItemSelection&)));
-
-  aParentLay->addWidget(myTreeView, 1, 0);
-  aParentLay->setRowStretch(1, 1);
-  myMainWindow->setCentralWidget(aCentralWidget);
-
-  // property view
-  myPropertyView = new ViewControl_PropertyView(
-    myMainWindow,
-    QSize(VINSPECTOR_DEFAULT_PROPERTY_VIEW_WIDTH, VINSPECTOR_DEFAULT_PROPERTY_VIEW_HEIGHT));
-  myPropertyPanelWidget = new QDockWidget(tr("PropertyPanel"), myMainWindow);
-  myPropertyPanelWidget->setObjectName(myPropertyPanelWidget->windowTitle());
-  myPropertyPanelWidget->setTitleBarWidget(new QWidget(myMainWindow));
-  myPropertyPanelWidget->setWidget(myPropertyView->GetControl());
-  myMainWindow->addDockWidget(Qt::RightDockWidgetArea, myPropertyPanelWidget);
-  connect(myPropertyPanelWidget->toggleViewAction(),
-          SIGNAL(toggled(bool)),
-          this,
-          SLOT(onPropertyPanelShown(bool)));
-
-  myMainWindow->resize(450, 800);
-  myMainWindow->move(60, 20);
-
-  myMainWindow->resize(VINSPECTOR_DEFAULT_WIDTH, VINSPECTOR_DEFAULT_HEIGHT);
-  myMainWindow->move(VINSPECTOR_DEFAULT_POSITION_X, VINSPECTOR_DEFAULT_POSITION_Y);
-}
-
-// =======================================================================
-// function : SetParent
-// purpose :
-// =======================================================================
-void VInspector_Window::SetParent(void* theParent)
-{
-  myParent = (QWidget*)theParent;
-  if (!myParent)
-    return;
-
-  QLayout* aLayout = myParent->layout();
-  if (aLayout)
-    aLayout->addWidget(GetMainWindow());
-}
-
-// =======================================================================
-// function : FillActionsMenu
-// purpose :
-// =======================================================================
-void VInspector_Window::FillActionsMenu(void* theMenu)
-{
-  QMenu*              aMenu        = (QMenu*)theMenu;
-  QList<QDockWidget*> aDockwidgets = myMainWindow->findChildren<QDockWidget*>();
-  for (QList<QDockWidget*>::iterator it = aDockwidgets.begin(); it != aDockwidgets.end(); ++it)
-  {
-    QDockWidget* aDockWidget = *it;
-    if (aDockWidget->parentWidget() == myMainWindow)
-      aMenu->addAction(aDockWidget->toggleViewAction());
-  }
-}
-
-// =======================================================================
-// function : GetPreferences
-// purpose :
-// =======================================================================
-void VInspector_Window::GetPreferences(TInspectorAPI_PreferencesDataMap& theItem)
-{
-  theItem.Bind("geometry",
-               TreeModel_Tools::ToString(myMainWindow->saveState()).toStdString().c_str());
-
-  QMap<QString, QString> anItems;
-  TreeModel_Tools::SaveState(myTreeView, anItems);
-  for (QMap<QString, QString>::const_iterator anItemsIt = anItems.begin();
-       anItemsIt != anItems.end();
-       anItemsIt++)
-  {
-    theItem.Bind(anItemsIt.key().toStdString().c_str(), anItemsIt.value().toStdString().c_str());
-  }
-
-  anItems.clear();
-  View_PreviewParameters::SaveState(displayer()->DisplayPreview()->GetPreviewParameters(),
-                                    anItems,
-                                    "preview_parameters_");
-  for (QMap<QString, QString>::const_iterator anItemsIt = anItems.begin();
-       anItemsIt != anItems.end();
-       anItemsIt++)
-    theItem.Bind(anItemsIt.key().toStdString().c_str(), anItemsIt.value().toStdString().c_str());
-
-  anItems.clear();
-  TreeModel_Tools::SaveState(myTreeView, anItems);
-  for (QMap<QString, QString>::const_iterator anItemsIt = anItems.begin();
-       anItemsIt != anItems.end();
-       anItemsIt++)
-  {
-    theItem.Bind(anItemsIt.key().toStdString().c_str(), anItemsIt.value().toStdString().c_str());
-  }
-
-  anItems.clear();
-  ViewControl_PropertyView::SaveState(myPropertyView, anItems, "property_view_parameters_");
-  for (QMap<QString, QString>::const_iterator anItemsIt = anItems.begin();
-       anItemsIt != anItems.end();
-       anItemsIt++)
-    theItem.Bind(anItemsIt.key().toStdString().c_str(), anItemsIt.value().toStdString().c_str());
-
-  if (myViewWindow)
-  {
-    anItems.clear();
-    View_Window::SaveState(myViewWindow, anItems);
-    for (QMap<QString, QString>::const_iterator anItemsIt = anItems.begin();
-         anItemsIt != anItems.end();
-         anItemsIt++)
-      theItem.Bind(anItemsIt.key().toStdString().c_str(), anItemsIt.value().toStdString().c_str());
-  }
-}
-
-// =======================================================================
-// function : SetPreferences
-// purpose :
-// =======================================================================
-void VInspector_Window::SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem)
-{
-  if (theItem.IsEmpty())
-  {
-    TreeModel_Tools::SetDefaultHeaderSections(myTreeView);
-    return;
-  }
-
-  for (TInspectorAPI_IteratorOfPreferencesDataMap anItemIt(theItem); anItemIt.More();
-       anItemIt.Next())
-  {
-    TCollection_AsciiString anItemKey   = anItemIt.Key();
-    TCollection_AsciiString anItemValue = anItemIt.Value();
-    if (anItemKey.IsEqual("geometry"))
-      myMainWindow->restoreState(TreeModel_Tools::ToByteArray(anItemValue.ToCString()));
-    else if (TreeModel_Tools::RestoreState(myTreeView,
-                                           anItemKey.ToCString(),
-                                           anItemValue.ToCString()))
-      continue;
-    else if (View_PreviewParameters::RestoreState(
-               displayer()->DisplayPreview()->GetPreviewParameters(),
-               anItemKey.ToCString(),
-               anItemValue.ToCString(),
-               "preview_parameters_"))
-      continue;
-    else if (ViewControl_PropertyView::RestoreState(myPropertyView,
-                                                    anItemKey.ToCString(),
-                                                    anItemValue.ToCString(),
-                                                    "property_view_parameters_"))
-      continue;
-    else if (myViewWindow
-             && View_Window::RestoreState(myViewWindow,
-                                          anItemIt.Key().ToCString(),
-                                          anItemIt.Value().ToCString()))
-      continue;
-  }
-}
-
-// =======================================================================
-// function : UpdateContent
-// purpose :
-// =======================================================================
-void VInspector_Window::UpdateContent()
-{
-  TCollection_AsciiString aName = "TKVInspector";
-
-  bool isModelUpdated = false;
-  if (myParameters->FindParameters(aName))
-    isModelUpdated = Init(myParameters->Parameters(aName));
-  if (myParameters->FindFileNames(aName))
-  {
-    for (NCollection_List<TCollection_AsciiString>::Iterator aFileNamesIt(
-           myParameters->FileNames(aName));
-         aFileNamesIt.More();
-         aFileNamesIt.Next())
-      isModelUpdated = OpenFile(aFileNamesIt.Value()) || isModelUpdated;
-
-    NCollection_List<TCollection_AsciiString> aNames;
-    myParameters->SetFileNames(aName, aNames);
-  }
-  if (!isModelUpdated)
-    UpdateTreeModel();
-
-  // make AIS_InteractiveObject selected selected if exist in select parameters
-  NCollection_List<Handle(Standard_Transient)> anObjects;
-  VInspector_ViewModel* aViewModel = dynamic_cast<VInspector_ViewModel*>(myTreeView->model());
-  if (aViewModel && myParameters->GetSelectedObjects(aName, anObjects))
-  {
-    QItemSelectionModel* aSelectionModel = myTreeView->selectionModel();
-    aSelectionModel->clear();
-    for (NCollection_List<Handle(Standard_Transient)>::Iterator aParamsIt(anObjects);
-         aParamsIt.More();
-         aParamsIt.Next())
-    {
-      Handle(Standard_Transient)    anObject = aParamsIt.Value();
-      Handle(AIS_InteractiveObject) aPresentation =
-        Handle(AIS_InteractiveObject)::DownCast(anObject);
-      if (aPresentation.IsNull())
-        continue;
-
-      QModelIndex aPresentationIndex = aViewModel->FindIndex(aPresentation);
-      if (!aPresentationIndex.isValid())
-        continue;
-      aSelectionModel->select(aPresentationIndex, QItemSelectionModel::Select);
-      myTreeView->scrollTo(aPresentationIndex);
-    }
-  }
-}
-
-// =======================================================================
-// function : SelectedPresentations
-// purpose :
-// =======================================================================
-NCollection_List<Handle(AIS_InteractiveObject)> VInspector_Window::SelectedPresentations(
-  QItemSelectionModel* theModel)
-{
-  NCollection_List<Handle(AIS_InteractiveObject)> aSelectedPresentations;
-
-  QList<TreeModel_ItemBasePtr> anItems =
-    TreeModel_ModelBase::SelectedItems(theModel->selectedIndexes());
-
-  QList<size_t> aSelectedIds; // Remember of selected address in order to avoid duplicates
-  NCollection_List<Handle(Standard_Transient)> anItemPresentations;
-  for (QList<TreeModel_ItemBasePtr>::const_iterator anItemIt = anItems.begin();
-       anItemIt != anItems.end();
-       ++anItemIt)
-  {
-    TreeModel_ItemBasePtr  anItem = *anItemIt;
-    VInspector_ItemBasePtr aVItem = itemDynamicCast<VInspector_ItemBase>(anItem);
-    if (!aVItem)
-      continue;
-
-    anItemPresentations.Clear();
-    aVItem->Presentations(anItemPresentations);
-
-    for (NCollection_List<Handle(Standard_Transient)>::Iterator anIt(anItemPresentations);
-         anIt.More();
-         anIt.Next())
-    {
-      Handle(AIS_InteractiveObject) aPresentation =
-        Handle(AIS_InteractiveObject)::DownCast(anIt.Value());
-      if (aSelectedIds.contains((size_t)aPresentation.get()))
-        continue;
-      aSelectedIds.append((size_t)aPresentation.get());
-      if (!aPresentation.IsNull())
-        aSelectedPresentations.Append(aPresentation);
-    }
-  }
-  return aSelectedPresentations;
-}
-
-// =======================================================================
-// function : SelectedShapes
-// purpose :
-// =======================================================================
-void VInspector_Window::SelectedShapes(
-  NCollection_List<Handle(Standard_Transient)>& theSelPresentations)
-{
-  QModelIndexList theIndices = myTreeView->selectionModel()->selectedIndexes();
-
-  QList<TreeModel_ItemBasePtr> anItems = TreeModel_ModelBase::SelectedItems(theIndices);
-  for (QList<TreeModel_ItemBasePtr>::const_iterator anItemIt = anItems.begin();
-       anItemIt != anItems.end();
-       ++anItemIt)
-  {
-    TreeModel_ItemBasePtr  anItem = *anItemIt;
-    VInspector_ItemBasePtr aVItem = itemDynamicCast<VInspector_ItemBase>(anItem);
-    if (!aVItem /*|| aVItem->Row() == 0*/)
-    {
-      anItem->Presentations(theSelPresentations);
-      continue;
-    }
-
-    TopoDS_Shape aShape = aVItem->GetPresentationShape();
-    if (aShape.IsNull())
-      continue;
-
-    theSelPresentations.Append(new Convert_TransientShape(aShape));
-  }
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-bool VInspector_Window::Init(const NCollection_List<Handle(Standard_Transient)>& theParameters)
-{
-  VInspector_ViewModel* aViewModel = dynamic_cast<VInspector_ViewModel*>(myTreeView->model());
-  if (!aViewModel)
-    return Standard_False;
-
-  Handle(AIS_InteractiveContext) aContext;
-  Standard_Boolean               isModelUpdated = Standard_False;
-
-  for (NCollection_List<Handle(Standard_Transient)>::Iterator aParamsIt(theParameters);
-       aParamsIt.More();
-       aParamsIt.Next())
-  {
-    Handle(Standard_Transient) anObject = aParamsIt.Value();
-    if (aContext.IsNull())
-      aContext = Handle(AIS_InteractiveContext)::DownCast(anObject);
-  }
-  if (aViewModel->GetContext() != aContext)
-    SetContext(aContext);
-  else
-    isModelUpdated = Standard_True;
-
-  if (isModelUpdated)
-    UpdateTreeModel();
-
-  return true;
-}
-
-// =======================================================================
-// function : SetContext
-// purpose :
-// =======================================================================
-void VInspector_Window::SetContext(const Handle(AIS_InteractiveContext)& theContext)
-{
-  if (theContext.IsNull())
-    return;
-
-  VInspector_ViewModel* aViewModel = dynamic_cast<VInspector_ViewModel*>(myTreeView->model());
-  aViewModel->SetContext(theContext);
-  myTreeView->setExpanded(aViewModel->index(0, 0), true);
-
-  if (myDisplayer)
-    myDisplayer->SetContext(theContext);
-}
-
-// =======================================================================
-// function : OpenFile
-// purpose :
-// =======================================================================
-bool VInspector_Window::OpenFile(const TCollection_AsciiString& theFileName)
-{
-  VInspector_ViewModel* aViewModel = dynamic_cast<VInspector_ViewModel*>(myTreeView->model());
-  if (!aViewModel)
-    return false;
-
-  Handle(AIS_InteractiveContext) aContext       = aViewModel->GetContext();
-  bool                           isModelUpdated = false;
-  if (aContext.IsNull())
-  {
-    aContext = createView();
-    SetContext(aContext);
-
-    const Handle(V3d_Viewer) aViewer = aViewModel->GetContext()->CurrentViewer();
-    if (!aViewer.IsNull())
-    {
-      addLight(Graphic3d_TOLS_POSITIONAL, aViewer);
-      addLight(Graphic3d_TOLS_SPOT, aViewer);
-    }
-
-    isModelUpdated = true;
-  }
-
-  TopoDS_Shape aShape = Convert_Tools::ReadShape(theFileName);
-  if (aShape.IsNull())
-    return isModelUpdated;
-
-  Handle(AIS_Shape) aPresentation = new AIS_Shape(aShape);
-  aPresentation->Attributes()->SetAutoTriangulation(Standard_False);
-
-  View_Displayer* aDisplayer = displayer();
-  aDisplayer->DisplayPresentation(aPresentation);
-  aContext->UpdateCurrentViewer();
-
-  UpdateTreeModel();
-  myTreeView->setExpanded(aViewModel->index(0, 0), true);
-  return true;
-}
-
-// =======================================================================
-// function : onTreeViewContextMenuRequested
-// purpose :
-// =======================================================================
-void VInspector_Window::onTreeViewContextMenuRequested(const QPoint& thePosition)
-{
-  QMenu* aMenu = new QMenu(GetMainWindow());
-  aMenu->addAction(ViewControl_Tools::CreateAction(tr("Export to ShapeView"),
-                                                   SLOT(onExportToShapeView()),
-                                                   GetMainWindow(),
-                                                   this));
-  aMenu->addSeparator();
-
-  QModelIndex anIndex =
-    TreeModel_ModelBase::SingleSelected(myTreeView->selectionModel()->selectedIndexes(), 0);
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-  if (anItemBase)
-  {
-    if (itemDynamicCast<VInspector_ItemContextProperties>(anItemBase))
-    {
-      aMenu->addSeparator();
-      QMenu* anExplodeMenu = aMenu->addMenu("Add Light");
-
-      anExplodeMenu->addAction(
-        ViewControl_Tools::CreateAction("Ambient", SLOT(onAddLight()), myMainWindow, this));
-      anExplodeMenu->addAction(
-        ViewControl_Tools::CreateAction("Directional", SLOT(onAddLight()), myMainWindow, this));
-      anExplodeMenu->addAction(
-        ViewControl_Tools::CreateAction("Positional", SLOT(onAddLight()), myMainWindow, this));
-      anExplodeMenu->addAction(
-        ViewControl_Tools::CreateAction("Spot", SLOT(onAddLight()), myMainWindow, this));
-    }
-
-    if (itemDynamicCast<VInspector_ItemGraphic3dCLight>(anItemBase))
-    {
-      aMenu->addSeparator();
-      aMenu->addAction(
-        ViewControl_Tools::CreateAction("Remove Light", SLOT(onRemoveLight()), myMainWindow, this));
-      VInspector_ItemGraphic3dCLightPtr anItemLight =
-        itemDynamicCast<VInspector_ItemGraphic3dCLight>(anItemBase);
-      if (!anItemLight->GetLight().IsNull())
-      {
-        bool isOn = anItemLight->GetLight()->IsEnabled();
-        aMenu->addAction(ViewControl_Tools::CreateAction(isOn ? "OFF Light" : "ON Light",
-                                                         SLOT(onOnOffLight()),
-                                                         myMainWindow,
-                                                         this));
-      }
-    }
-  }
-
-  aMenu->addSeparator();
-  for (int aTypeId = (int)View_DisplayActionType_DisplayId;
-       aTypeId <= (int)View_DisplayActionType_RemoveId;
-       aTypeId++)
-  {
-    aMenu->addAction(ViewControl_Tools::CreateAction(
-      VInspector_Tools::DisplayActionTypeToString((View_DisplayActionType)aTypeId),
-      SLOT(onDisplayActionTypeClicked()),
-      GetMainWindow(),
-      this));
-  }
-  aMenu->addSeparator();
-
-  aMenu->addAction(
-    ViewControl_Tools::CreateAction(tr("Expand"), SLOT(onExpand()), GetMainWindow(), this));
-  aMenu->addAction(
-    ViewControl_Tools::CreateAction(tr("Expand All"), SLOT(onExpandAll()), GetMainWindow(), this));
-  aMenu->addAction(ViewControl_Tools::CreateAction(tr("Collapse All"),
-                                                   SLOT(onCollapseAll()),
-                                                   GetMainWindow(),
-                                                   this));
-
-  QPoint aPoint = myTreeView->mapToGlobal(thePosition);
-  aMenu->exec(aPoint);
-}
-
-// =======================================================================
-// function : onToolBarActionClicked
-// purpose :
-// =======================================================================
-void VInspector_Window::onToolBarActionClicked(const int theActionId)
-{
-  VInspector_ViewModel* aViewModel = dynamic_cast<VInspector_ViewModel*>(myTreeView->model());
-  if (!aViewModel)
-    return;
-
-  switch (theActionId)
-  {
-    case VInspector_ToolActionType_UpdateId: {
-      UpdateTreeModel();
-      break;
-    }
-    default:
-      break;
-  }
-}
-
-// =======================================================================
-// function : onPropertyPanelShown
-// purpose :
-// =======================================================================
-void VInspector_Window::onPropertyPanelShown(bool isToggled)
-{
-  if (!isToggled)
-    return;
-
-  myPropertyView->Init(ViewControl_Tools::CreateTableModelValues(myTreeView->selectionModel()));
-}
-
-// =======================================================================
-// function : onTreeViewSelectionChanged
-// purpose :
-// =======================================================================
-void VInspector_Window::onTreeViewSelectionChanged(const QItemSelection&, const QItemSelection&)
-{
-  if (myPropertyPanelWidget->toggleViewAction()->isChecked())
-    myPropertyView->Init(ViewControl_Tools::CreateTableModelValues(myTreeView->selectionModel()));
-
-  NCollection_List<Handle(Standard_Transient)> aSelPresentations;
-
-  QModelIndexList aSelectedIndices = myTreeView->selectionModel()->selectedIndexes();
-  for (QModelIndexList::const_iterator aSelIt = aSelectedIndices.begin();
-       aSelIt != aSelectedIndices.end();
-       aSelIt++)
-  {
-    QModelIndex anIndex = *aSelIt;
-    if (anIndex.column() != 0)
-      continue;
-
-    TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-    if (!anItemBase)
-      continue;
-
-    anItemBase->Presentations(aSelPresentations);
-  }
-
-  SelectedShapes(aSelPresentations);
-  displayer()->UpdatePreview(View_DisplayActionType_DisplayId, aSelPresentations);
-}
-
-// =======================================================================
-// function : onExportToShapeView
-// purpose :
-// =======================================================================
-void VInspector_Window::onExportToShapeView()
-{
-  NCollection_List<Handle(Standard_Transient)> aSelectedShapes;
-  SelectedShapes(aSelectedShapes);
-
-  TCollection_AsciiString                      aPluginName("TKShapeView");
-  NCollection_List<Handle(Standard_Transient)> aParameters;
-  NCollection_List<TCollection_AsciiString>    anItemNames;
-
-  QStringList anExportedPointers;
-  if (aSelectedShapes.Extent() > 0)
-  {
-    for (NCollection_List<Handle(Standard_Transient)>::Iterator aShapeIt(aSelectedShapes);
-         aShapeIt.More();
-         aShapeIt.Next())
-    {
-      Handle(Convert_TransientShape) aShapePtr =
-        Handle(Convert_TransientShape)::DownCast(aShapeIt.Value());
-      if (aShapePtr.IsNull())
-        continue;
-
-      const TopoDS_Shape& aShape = aShapePtr->Shape();
-      if (aShape.IsNull())
-        continue;
-      aParameters.Append(aShape.TShape());
-      anItemNames.Append(TInspectorAPI_PluginParameters::ParametersToString(aShape));
-      anExportedPointers.append(Standard_Dump::GetPointerInfo(aShape.TShape(), true).ToCString());
-    }
-  }
-
-  if (anExportedPointers.isEmpty())
-    return;
-
-  TCollection_AsciiString aPluginShortName = aPluginName.SubString(3, aPluginName.Length());
-  QString                 aMessage         = QString("Objects %1 are sent to %2.")
-                       .arg(anExportedPointers.join(", "))
-                       .arg(aPluginShortName.ToCString());
-  QString aQuestion = QString("Would you like to activate %1 immediately?\n")
-                        .arg(aPluginShortName.ToCString())
-                        .toStdString()
-                        .c_str();
-  if (!myExportToShapeViewDialog)
-    myExportToShapeViewDialog = new ViewControl_MessageDialog(myParent, aMessage, aQuestion);
-  else
-    myExportToShapeViewDialog->SetInformation(aMessage);
-  myExportToShapeViewDialog->Start();
-
-  myParameters->SetSelectedNames(aPluginName, anItemNames);
-  myParameters->SetParameters(aPluginName, aParameters, myExportToShapeViewDialog->IsAccepted());
-}
-
-// =======================================================================
-// function : onAddLight
-// purpose :
-// =======================================================================
-void VInspector_Window::onAddLight()
-{
-  VInspector_ViewModel* aViewModel = dynamic_cast<VInspector_ViewModel*>(myTreeView->model());
-  if (!aViewModel)
-    return;
-  const Handle(V3d_Viewer) aViewer = aViewModel->GetContext()->CurrentViewer();
-  if (aViewer.IsNull())
-    return;
-
-  QAction* anAction = (QAction*)sender();
-  QString  aText    = anAction->text();
-
-  Graphic3d_TypeOfLightSource aLightSourceType = Graphic3d_TOLS_AMBIENT;
-
-  if (aText == "Ambient")
-  {
-    aLightSourceType = Graphic3d_TOLS_AMBIENT;
-  }
-  else if (aText == "Directional")
-  {
-    aLightSourceType = Graphic3d_TOLS_DIRECTIONAL;
-  }
-  else if (aText == "Positional")
-  {
-    aLightSourceType = Graphic3d_TOLS_POSITIONAL;
-  }
-  else if (aText == "Spot")
-  {
-    aLightSourceType = Graphic3d_TOLS_SPOT;
-  }
-  else
-  {
-    return;
-  }
-
-  addLight(aLightSourceType, aViewer);
-}
-
-// =======================================================================
-// function : onRemoveLight
-// purpose :
-// =======================================================================
-void VInspector_Window::onRemoveLight()
-{
-  VInspector_ViewModel*    aViewModel = dynamic_cast<VInspector_ViewModel*>(myTreeView->model());
-  const Handle(V3d_Viewer) aViewer = aViewModel ? aViewModel->GetContext()->CurrentViewer() : NULL;
-  if (aViewer.IsNull())
-  {
-    return;
-  }
-
-  QModelIndex anIndex =
-    TreeModel_ModelBase::SingleSelected(myTreeView->selectionModel()->selectedIndexes(), 0);
-  VInspector_ItemGraphic3dCLightPtr aLightItem =
-    itemDynamicCast<VInspector_ItemGraphic3dCLight>(TreeModel_ModelBase::GetItemByIndex(anIndex));
-  if (!aLightItem)
-  {
-    return;
-  }
-
-  if (aViewer->ActiveLights().Extent() == 1) // not possible to remove the latest light
-  {
-    return;
-  }
-
-  Handle(Graphic3d_CLight) aLight = aLightItem->GetLight();
-  aViewer->DelLight(aLight);
-  aViewer->UpdateLights();
-
-  aViewer->Invalidate();
-  aViewer->Redraw();
-  UpdateTreeModel();
-}
-
-// =======================================================================
-// function : onOnOffLight
-// purpose :
-// =======================================================================
-void VInspector_Window::onOnOffLight()
-{
-  VInspector_ViewModel*    aViewModel = dynamic_cast<VInspector_ViewModel*>(myTreeView->model());
-  const Handle(V3d_Viewer) aViewer = aViewModel ? aViewModel->GetContext()->CurrentViewer() : NULL;
-  if (aViewer.IsNull())
-  {
-    return;
-  }
-
-  QModelIndex anIndex =
-    TreeModel_ModelBase::SingleSelected(myTreeView->selectionModel()->selectedIndexes(), 0);
-
-  VInspector_ItemGraphic3dCLightPtr anItemLight =
-    itemDynamicCast<VInspector_ItemGraphic3dCLight>(TreeModel_ModelBase::GetItemByIndex(anIndex));
-  if (anItemLight->GetLight().IsNull())
-    return;
-
-  bool isOn = anItemLight->GetLight()->IsEnabled();
-  anItemLight->GetLight()->SetEnabled(!isOn);
-
-  aViewer->UpdateLights();
-  aViewer->Invalidate();
-  aViewer->Redraw();
-  UpdateTreeModel();
-}
-
-// =======================================================================
-// function : onDisplayActionTypeClicked
-// purpose :
-// =======================================================================
-void VInspector_Window::onDisplayActionTypeClicked()
-{
-  QAction* anAction = (QAction*)sender();
-
-  displaySelectedPresentations(
-    VInspector_Tools::DisplayActionTypeFromString(anAction->text().toStdString().c_str()));
-}
-
-// =======================================================================
-// function : onExpand
-// purpose :
-// =======================================================================
-void VInspector_Window::onExpand()
-{
-  QApplication::setOverrideCursor(Qt::WaitCursor);
-
-  QItemSelectionModel* aSelectionModel  = myTreeView->selectionModel();
-  QModelIndexList      aSelectedIndices = aSelectionModel->selectedIndexes();
-  for (int aSelectedId = 0, aSize = aSelectedIndices.size(); aSelectedId < aSize; aSelectedId++)
-  {
-    int aLevels = 2;
-    TreeModel_Tools::SetExpanded(myTreeView, aSelectedIndices[aSelectedId], true, aLevels);
-  }
-  QApplication::restoreOverrideCursor();
-}
-
-// =======================================================================
-// function : onExpandAll
-// purpose :
-// =======================================================================
-void VInspector_Window::onExpandAll()
-{
-  QApplication::setOverrideCursor(Qt::WaitCursor);
-
-  QItemSelectionModel* aSelectionModel  = myTreeView->selectionModel();
-  QModelIndexList      aSelectedIndices = aSelectionModel->selectedIndexes();
-  for (int aSelectedId = 0, aSize = aSelectedIndices.size(); aSelectedId < aSize; aSelectedId++)
-  {
-    int aLevels = -1;
-    TreeModel_Tools::SetExpanded(myTreeView, aSelectedIndices[aSelectedId], true, aLevels);
-  }
-  QApplication::restoreOverrideCursor();
-}
-
-// =======================================================================
-// function : onCollapseAll
-// purpose :
-// =======================================================================
-void VInspector_Window::onCollapseAll()
-{
-  QItemSelectionModel* aSelectionModel  = myTreeView->selectionModel();
-  QModelIndexList      aSelectedIndices = aSelectionModel->selectedIndexes();
-  for (int aSelectedId = 0, aSize = aSelectedIndices.size(); aSelectedId < aSize; aSelectedId++)
-  {
-    int aLevels = -1;
-    TreeModel_Tools::SetExpanded(myTreeView, aSelectedIndices[aSelectedId], false, aLevels);
-  }
-}
-
-// =======================================================================
-// function : UpdateTreeModel
-// purpose :
-// =======================================================================
-void VInspector_Window::UpdateTreeModel()
-{
-  VInspector_ViewModel* aViewModel = dynamic_cast<VInspector_ViewModel*>(myTreeView->model());
-  if (aViewModel)
-    aViewModel->UpdateTreeModel();
-}
-
-// =======================================================================
-// function : displaySelectedPresentations
-// purpose :
-// =======================================================================
-
-void VInspector_Window::displaySelectedPresentations(const View_DisplayActionType theType)
-{
-  VInspector_ViewModel* aViewModel = dynamic_cast<VInspector_ViewModel*>(myTreeView->model());
-  if (!aViewModel)
-    return;
-
-  Handle(AIS_InteractiveContext) aContext = aViewModel->GetContext();
-  if (aContext.IsNull())
-    return;
-
-  QItemSelectionModel* aSelectionModel = myTreeView->selectionModel();
-  if (!aSelectionModel)
-    return;
-
-  NCollection_List<Handle(AIS_InteractiveObject)> aSelectedPresentations =
-    SelectedPresentations(aSelectionModel);
-  // the order of objects returned by AIS_InteractiveContext is changed because the processed object
-  // is moved from Erased to Displayed container or back
-  aSelectionModel->clear();
-
-  if (aSelectedPresentations.Extent() == 0)
-    return;
-
-  for (NCollection_List<Handle(AIS_InteractiveObject)>::Iterator anIOIt(aSelectedPresentations);
-       anIOIt.More();
-       anIOIt.Next())
-  {
-    Handle(AIS_InteractiveObject) aPresentation = anIOIt.Value();
-    switch (theType)
-    {
-      case View_DisplayActionType_DisplayId: {
-        aContext->Display(aPresentation, false);
-        aContext->Load(aPresentation, -1);
-      }
-      break;
-
-      case View_DisplayActionType_RedisplayId:
-        aContext->Redisplay(aPresentation, false);
-        break;
-      case View_DisplayActionType_EraseId:
-        aContext->Erase(aPresentation, false);
-        break;
-      case View_DisplayActionType_RemoveId:
-        aContext->Remove(aPresentation, false);
-        break;
-      default:
-        break;
-    }
-  }
-  aContext->UpdateCurrentViewer();
-
-  UpdateTreeModel();
-}
-
-// =======================================================================
-// function : highlightTreeViewItems
-// purpose :
-// =======================================================================
-void VInspector_Window::highlightTreeViewItems(const QStringList& thePointers)
-{
-  VInspector_ViewModel* aTreeModel = dynamic_cast<VInspector_ViewModel*>(myTreeView->model());
-  if (!aTreeModel)
-    return;
-
-  QModelIndexList anIndices;
-  aTreeModel->FindPointers(thePointers, QModelIndex(), anIndices);
-  for (int anIndicesId = 0, aSize = anIndices.size(); anIndicesId < aSize; anIndicesId++)
-  {
-    QModelIndex anIndex = anIndices[anIndicesId];
-    TreeModel_Tools::SetExpandedTo(myTreeView, anIndex);
-  }
-  aTreeModel->SetHighlighted(anIndices);
-
-  if (!anIndices.isEmpty())
-    myTreeView->scrollTo(anIndices.last());
-}
-
-// =======================================================================
-// function : selectTreeViewItems
-// purpose :
-// =======================================================================
-void VInspector_Window::selectTreeViewItems(const QStringList& thePointers)
-{
-  VInspector_ViewModel* aTreeModel = dynamic_cast<VInspector_ViewModel*>(myTreeView->model());
-  if (!aTreeModel)
-    return;
-
-  QModelIndexList anIndices;
-  aTreeModel->FindPointers(thePointers, QModelIndex(), anIndices);
-  QItemSelectionModel* aSelectionModel = myTreeView->selectionModel();
-  aSelectionModel->clear();
-  for (int anIndicesId = 0, aSize = anIndices.size(); anIndicesId < aSize; anIndicesId++)
-  {
-    QModelIndex anIndex = anIndices[anIndicesId];
-    TreeModel_Tools::SetExpandedTo(myTreeView, anIndex);
-    aSelectionModel->select(anIndex, QItemSelectionModel::Select);
-  }
-}
-
-// =======================================================================
-// function : createView
-// purpose :
-// =======================================================================
-Handle(AIS_InteractiveContext) VInspector_Window::createView()
-{
-  // create two view windows
-  Handle(AIS_InteractiveContext) aContext = View_Viewer::CreateStandardViewer();
-
-  myViewWindow = new View_Window(0, aContext, false /*for opening several BREP files*/, true);
-  myViewWindow->SetPredefinedSize(VINSPECTOR_DEFAULT_VIEW_WIDTH, VINSPECTOR_DEFAULT_VIEW_HEIGHT);
-  myViewWindow->move(VINSPECTOR_DEFAULT_VIEW_POSITION_X, VINSPECTOR_DEFAULT_VIEW_POSITION_Y);
-  myViewWindow->show();
-
-  return aContext;
-}
-
-// =======================================================================
-// function : displayer
-// purpose :
-// =======================================================================
-View_Displayer* VInspector_Window::displayer()
-{
-  if (myViewWindow)
-    return myViewWindow->Displayer();
-
-  return myDisplayer;
-}
-
-// =======================================================================
-// function : addLight
-// purpose :
-// =======================================================================
-void VInspector_Window::addLight(const Graphic3d_TypeOfLightSource& theSourceLight,
-                                 const Handle(V3d_Viewer)&          theViewer)
-{
-  Standard_Boolean aNeedDirection =
-    theSourceLight == Graphic3d_TOLS_DIRECTIONAL || theSourceLight == Graphic3d_TOLS_SPOT;
-
-  Handle(Graphic3d_CLight) aLight = new Graphic3d_CLight(theSourceLight);
-  if (aNeedDirection)
-  {
-    aLight->SetDirection(gp::DZ());
-  }
-  if (theSourceLight == Graphic3d_TOLS_SPOT)
-  {
-    aLight->SetAngle((Standard_ShortReal)M_PI - ShortRealEpsilon());
-    aLight->SetPosition(gp_Pnt(-100, -100, -100));
-  }
-
-  theViewer->AddLight(aLight);
-  theViewer->SetLightOn(aLight);
-
-  theViewer->Invalidate();
-  theViewer->Redraw();
-  UpdateTreeModel();
-}
diff --git a/tools/VInspector/VInspector_Window.hxx b/tools/VInspector/VInspector_Window.hxx
deleted file mode 100644
index 28ec62e0fe..0000000000
--- a/tools/VInspector/VInspector_Window.hxx
+++ /dev/null
@@ -1,213 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 VInspector_Window_H
-#define VInspector_Window_H
-
-#include <AIS_InteractiveContext.hxx>
-#include <NCollection_List.hxx>
-#include <SelectMgr_EntityOwner.hxx>
-
-#include <inspector/TInspectorAPI_PluginParameters.hxx>
-#include <inspector/View_DisplayActionType.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QItemSelection>
-#include <QMainWindow>
-#include <Standard_WarningsRestore.hxx>
-
-class ViewControl_MessageDialog;
-class ViewControl_PropertyView;
-
-class VInspector_ToolBar;
-
-class View_Displayer;
-class View_Window;
-
-class QAbstractItemModel;
-class QAction;
-class QDockWidget;
-class QTreeView;
-class QWidget;
-
-//! \class VInspector_Window
-//! Window that unites all VInspector controls.
-class VInspector_Window : public QObject
-{
-  Q_OBJECT
-
-public:
-  //! Constructor
-  Standard_EXPORT VInspector_Window();
-
-  //! Destructor
-  virtual ~VInspector_Window() {}
-
-  //! Provides the container with a parent where this container should be inserted.
-  //! If Qt implementation, it should be QWidget with QLayout set inside
-  //! \param theParent a parent class
-  Standard_EXPORT void SetParent(void* theParent);
-
-  //! Sets parameters container, it should be used when the plugin is initialized or in update
-  //! content \param theParameters a parameters container
-  void SetParameters(const Handle(TInspectorAPI_PluginParameters)& theParameters)
-  {
-    myParameters = theParameters;
-  }
-
-  //! Provide container for actions available in inspector on general level
-  //! \param theMenu if Qt implementation, it is QMenu object
-  Standard_EXPORT void FillActionsMenu(void* theMenu);
-
-  //! Returns plugin preferences: dock widgets state, tree view columns.
-  //! \param theItem container of preference elements
-  Standard_EXPORT void GetPreferences(TInspectorAPI_PreferencesDataMap& theItem);
-
-  //! Applies plugin preferences
-  //! \param theItem container of preference elements
-  Standard_EXPORT void SetPreferences(const TInspectorAPI_PreferencesDataMap& theItem);
-
-  //! Applies parameters to Init controls, opens files if there are in parameters, updates OCAF tree
-  //! view model
-  Standard_EXPORT void UpdateContent();
-
-  //! Returns main control
-  QWidget* GetMainWindow() const { return myMainWindow; }
-
-  //! Returns presentations of selected items in tree model
-  //! \param theModel selection model
-  //! \return container of presentations
-  NCollection_List<Handle(AIS_InteractiveObject)> SelectedPresentations(
-    QItemSelectionModel* theModel);
-
-  //! Returns selected shapes
-  //! \param[out]  container of shapes
-  void SelectedShapes(NCollection_List<Handle(Standard_Transient)>& theSelPresentations);
-
-private:
-  //! Fills controls of the plugin by parameters:
-  //! - Fine AIS_InteractiveObject and fills View if it if it differs from the current context
-  //! \param theParameters a parameters container
-  bool Init(const NCollection_List<Handle(Standard_Transient)>& theParameters);
-
-  //! Read BREP file, creates AIS presentation for the shape and visualize it in the current context
-  //! \param theFileName a name of BREP file
-  bool OpenFile(const TCollection_AsciiString& theFileName);
-
-private slots:
-
-  //! Shows context menu for tree view selected item. It contains clear view or BREP operations
-  //! items \param thePosition a clicked point
-  void onTreeViewContextMenuRequested(const QPoint& thePosition);
-
-  //! Performs the functionality of the clicked action
-  //! \param theActionId an action identifier in tool bar
-  void onToolBarActionClicked(const int theActionId);
-
-  //! Display content of selected tree view item if isToggled is true
-  //! \param isToggled true if the property dock widget is shown
-  void onPropertyPanelShown(bool isToggled);
-
-  //! Processes selection in tree view: make presentation or owner selected in the context if
-  //! corresponding check box is checked \param theSelected a selected items \param theDeselected a
-  //! deselected items
-  void onTreeViewSelectionChanged(const QItemSelection& theSelected,
-                                  const QItemSelection& theDeselected);
-
-  //! Exports the first selected shape into ShapeViewer plugin.
-  void onExportToShapeView();
-
-  //! Appends lights into the active V3d view
-  void onAddLight();
-
-  //! Removes selected light from the active V3d view
-  void onRemoveLight();
-
-  //! Switch On/Off for selected light
-  void onOnOffLight();
-
-  //! Apply activated display action
-  void onDisplayActionTypeClicked();
-
-  //! Expand two next levels for all selected item
-  void onExpand();
-
-  //! Expand all levels for all selected items
-  void onExpandAll();
-
-  //! Collapse all levels for all selected items
-  void onCollapseAll();
-
-private:
-  //! Inits the window content by the given context
-  //! \param theContext a context
-  void SetContext(const Handle(AIS_InteractiveContext)& theContext);
-
-  //! Updates tree model
-  void UpdateTreeModel();
-
-  //! Set selected in tree view presentations displayed or erased in the current context. Note that
-  //! erased presentations still belongs to the current context until Remove is called. \param
-  //! theType display action type
-  void displaySelectedPresentations(const View_DisplayActionType theType);
-
-  //! Set items of the pointers highlighted in tree view
-  //! \param theType display action type
-  void highlightTreeViewItems(const QStringList& thePointers);
-
-  //! Set items of the pointers selected in tree view
-  //! \param theType display action type
-  void selectTreeViewItems(const QStringList& thePointers);
-
-  //! Returns displayer where the presentations/preview should be shown/erased
-  //! If default view is created, it returns displayer of this view
-  Standard_EXPORT View_Displayer* displayer();
-
-  //! Creates an instance of 3D view to initialize context.
-  //! \return a context of created view.
-  Handle(AIS_InteractiveContext) createView();
-
-  //! Creates a new default light into V3d viewer
-  //! \param theSourceLight type of light source
-  //! \param theViewer viewer to add the created light
-  void addLight(const Graphic3d_TypeOfLightSource& theSourceLight,
-                const Handle(V3d_Viewer)&          theViewer);
-
-private:
-  QWidget* myParent; //!< widget, comes when Init window, the window control lays in the layout,
-                     //!< updates window title
-
-  QMainWindow*        myMainWindow; //!< main control
-  VInspector_ToolBar* myToolBar;    //!< tool bar actions
-
-  QDockWidget* myPropertyPanelWidget; //!< property pane dockable widget
-  ViewControl_PropertyView*
-    myPropertyView; //!< property control to display model item values if exist
-
-  QTreeView* myTreeView; //!< tree view of AIS content
-
-  ViewControl_MessageDialog*
-    myExportToShapeViewDialog; //!< dialog about exporting TopoDS_Shape to ShapeView plugin
-  View_Window* myViewWindow; //!< temporary view window, it is created if Open is called but context
-                             //!< is still NULL
-
-  Handle(TInspectorAPI_PluginParameters) myParameters; //!< plugins parameters container
-
-  View_Displayer*
-    myDisplayer; //!< class to display presentations/preview if myMainWindow is not used
-};
-
-#endif
diff --git a/tools/VInspector/icons/treeview_and.png b/tools/VInspector/icons/treeview_and.png
deleted file mode 100644
index cd188ad1dc..0000000000
Binary files a/tools/VInspector/icons/treeview_and.png and /dev/null differ
diff --git a/tools/VInspector/icons/treeview_or.png b/tools/VInspector/icons/treeview_or.png
deleted file mode 100644
index f948b867a5..0000000000
Binary files a/tools/VInspector/icons/treeview_or.png and /dev/null differ
diff --git a/tools/VInspector/icons/treeview_update.png b/tools/VInspector/icons/treeview_update.png
deleted file mode 100644
index 134d316403..0000000000
Binary files a/tools/VInspector/icons/treeview_update.png and /dev/null differ
diff --git a/tools/View/FILES b/tools/View/FILES
deleted file mode 100644
index 0048d3b829..0000000000
--- a/tools/View/FILES
+++ /dev/null
@@ -1,21 +0,0 @@
-View.qrc
-View_ContextType.hxx
-View_DisplayActionType.hxx
-View_Displayer.cxx
-View_Displayer.hxx
-View_DisplayPreview.cxx
-View_DisplayPreview.hxx
-View_PresentationType.hxx
-View_PreviewParameters.cxx
-View_PreviewParameters.hxx
-View_ToolActionType.hxx
-View_ToolBar.cxx
-View_ToolBar.hxx
-View_ToolButton.hxx
-View_ViewActionType.hxx
-View_Viewer.cxx
-View_Viewer.hxx
-View_Widget.cxx
-View_Widget.hxx
-View_Window.cxx
-View_Window.hxx
diff --git a/tools/View/View.qrc b/tools/View/View.qrc
deleted file mode 100644
index d403f34bb9..0000000000
--- a/tools/View/View.qrc
+++ /dev/null
@@ -1,13 +0,0 @@
-<!DOCTYPE RCC><RCC version="1.0">
-    <qresource>
-        <file>icons/keep_view_off.png</file>
-        <file>icons/keep_view_on.png</file>
-        <file>icons/trihedron.png</file>
-        <file>icons/view_clear.png</file>
-        <file>icons/view_cube.png</file>
-        <file>icons/view_dm_shading.png</file>
-        <file>icons/view_dm_wireframe.png</file>
-        <file>icons/view_fitall.png</file>
-    </qresource>
-</RCC>
-
diff --git a/tools/View/View_ContextType.hxx b/tools/View/View_ContextType.hxx
deleted file mode 100644
index 826fbe59d2..0000000000
--- a/tools/View/View_ContextType.hxx
+++ /dev/null
@@ -1,28 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 View_ConextType_H
-#define View_ConextType_H
-
-//! Type of context used in a tool library
-enum View_ContextType
-{
-  View_ContextType_Own,     //!< View widget context is used
-  View_ContextType_None,    //!< no context (is useful if visualization is not needed, for better
-                            //!< performance)
-  View_ContextType_External //!< context is set from outside
-};
-
-#endif
diff --git a/tools/View/View_DisplayActionType.hxx b/tools/View/View_DisplayActionType.hxx
deleted file mode 100644
index b5d03d57de..0000000000
--- a/tools/View/View_DisplayActionType.hxx
+++ /dev/null
@@ -1,29 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 View_DisplayActionType_H
-#define View_DisplayActionType_H
-
-//! \enum View_DisplayActionType
-enum View_DisplayActionType
-{
-  View_DisplayActionType_NoneId,      //!< No action activated
-  View_DisplayActionType_DisplayId,   //!< Display action
-  View_DisplayActionType_RedisplayId, //!< Redisplay action
-  View_DisplayActionType_EraseId,     //!< Erase action
-  View_DisplayActionType_RemoveId     //!< Remove action
-};
-
-#endif
diff --git a/tools/View/View_DisplayPreview.cxx b/tools/View/View_DisplayPreview.cxx
deleted file mode 100644
index ccd1f361c7..0000000000
--- a/tools/View/View_DisplayPreview.cxx
+++ /dev/null
@@ -1,163 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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.
-
-#include <inspector/View_DisplayPreview.hxx>
-#include <inspector/View_PreviewParameters.hxx>
-
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <inspector/Convert_Tools.hxx>
-#include <inspector/Convert_TransientShape.hxx>
-
-#include <AIS_InteractiveContext.hxx>
-#include <AIS_InteractiveObject.hxx>
-#include <AIS_Shape.hxx>
-
-#include <BRep_Builder.hxx>
-#include <BRepBuilderAPI_MakeVertex.hxx>
-#include <BRepBuilderAPI_MakeEdge.hxx>
-#include <BRepBuilderAPI_MakeFace.hxx>
-#include <BRepBuilderAPI_MakeWire.hxx>
-
-#include <Geom_Axis2Placement.hxx>
-#include <Prs3d_PointAspect.hxx>
-#include <TopoDS_Compound.hxx>
-
-static void enableGlobalClipping(const Handle(AIS_InteractiveObject)& theObject,
-                                 const bool                           theIsEnable)
-{
-  if (theIsEnable)
-  {
-    theObject->SetClipPlanes(Handle(Graphic3d_SequenceOfHClipPlane)());
-  }
-  else
-  {
-    Handle(Graphic3d_SequenceOfHClipPlane) aPlanes = new Graphic3d_SequenceOfHClipPlane();
-    aPlanes->SetOverrideGlobal(Standard_True);
-    theObject->SetClipPlanes(aPlanes);
-  }
-}
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-View_DisplayPreview::View_DisplayPreview()
-{
-  myPreviewParameters = new View_PreviewParameters();
-}
-
-// =======================================================================
-// function : SetContext
-// purpose :
-// =======================================================================
-void View_DisplayPreview::SetContext(const Handle(AIS_InteractiveContext)& theContext)
-{
-  if (myContext == theContext)
-    return;
-
-  // remove all preview presentations from the previous context, display it in the new
-
-  myContext = theContext;
-  if (!theContext.IsNull())
-    myPreviewParameters->GetDrawer()->Link(theContext->DefaultDrawer());
-}
-
-// =======================================================================
-// function : UpdatePreview
-// purpose :
-// =======================================================================
-void View_DisplayPreview::UpdatePreview(
-  const View_DisplayActionType,
-  const NCollection_List<Handle(Standard_Transient)>& thePresentations)
-{
-  if (myContext.IsNull())
-    return;
-
-  int aPreviewDisplayMode = AIS_Shaded;
-
-  // clear previous previews
-  for (NCollection_List<Handle(AIS_InteractiveObject)>::Iterator anIterator(
-         myPreviewReadyPresentations);
-       anIterator.More();
-       anIterator.Next())
-  {
-    if (!anIterator.Value()->GetContext().IsNull())
-      anIterator.Value()->GetContext()->Remove(anIterator.Value(), Standard_True);
-  }
-  myPreviewReadyPresentations.Clear();
-
-  if (thePresentations.IsEmpty())
-  {
-    if (!myPreviewPresentation.IsNull() && !myPreviewPresentation->GetContext().IsNull())
-      myPreviewPresentation->GetContext()->Remove(myPreviewPresentation, Standard_True);
-    myPreviewPresentation = NULL;
-
-    return;
-  }
-
-  // display parameter previews
-  BRep_Builder    aBuilder;
-  TopoDS_Compound aCompound;
-  aBuilder.MakeCompound(aCompound);
-  for (NCollection_List<Handle(Standard_Transient)>::Iterator anIterator(thePresentations);
-       anIterator.More();
-       anIterator.Next())
-  {
-    if (Handle(Convert_TransientShape) aShapePtr =
-          Handle(Convert_TransientShape)::DownCast(anIterator.Value()))
-    {
-      aBuilder.Add(aCompound, aShapePtr->Shape());
-    }
-    Handle(AIS_InteractiveObject) aPrs =
-      Handle(AIS_InteractiveObject)::DownCast(anIterator.Value());
-    if (!aPrs.IsNull() && aPrs->GetContext().IsNull() /*is not displayed in another context*/)
-    {
-      myContext->Display(
-        aPrs,
-        aPreviewDisplayMode,
-        View_DisplayPreview::PreviewSelectionMode() /*participate only in custom selection*/,
-        Standard_True);
-      enableGlobalClipping(aPrs, false);
-      myPreviewReadyPresentations.Append(aPrs);
-    }
-  }
-
-  if (myPreviewPresentation.IsNull())
-  {
-    myPreviewPresentation = new AIS_Shape(aCompound);
-    myPreviewPresentation->Attributes()->SetAutoTriangulation(Standard_False);
-
-    Quantity_Color aColor(Quantity_NOC_TOMATO);
-    myPreviewPresentation->Attributes()->SetPointAspect(
-      new Prs3d_PointAspect(Aspect_TOM_O_PLUS, aColor, 3.0));
-    myPreviewPresentation->SetAttributes(myPreviewParameters->GetDrawer());
-
-    myContext->Display(
-      myPreviewPresentation,
-      aPreviewDisplayMode,
-      View_DisplayPreview::PreviewSelectionMode() /*participate only in custom selection*/,
-      Standard_True);
-    enableGlobalClipping(myPreviewPresentation, false);
-  }
-  else
-  {
-    Handle(AIS_Shape)::DownCast(myPreviewPresentation)->Set(aCompound);
-    if (!myPreviewPresentation->GetContext().IsNull())
-    {
-      myPreviewPresentation->GetContext()->Redisplay(myPreviewPresentation, Standard_True);
-    }
-  }
-}
diff --git a/tools/View/View_DisplayPreview.hxx b/tools/View/View_DisplayPreview.hxx
deleted file mode 100644
index c51349cc53..0000000000
--- a/tools/View/View_DisplayPreview.hxx
+++ /dev/null
@@ -1,78 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 View_DisplayPreview_H
-#define View_DisplayPreview_H
-
-#include <inspector/View_DisplayActionType.hxx>
-
-#include <AIS_InteractiveContext.hxx>
-#include <Standard.hxx>
-#include <Standard_Handle.hxx>
-#include <Standard_Macro.hxx>
-
-class AIS_InteractiveObject;
-class View_PreviewParameters;
-
-//! \class View_DisplayPreview
-//! \brief It is responsible for communication with AIS Interactive Context to:
-//! - display/erase presentations;
-//! - change display mode of visualized presentations (Shaded or WireFrame mode)
-//!
-//! It contains containers of visualized presentations to obtain presentations relating only to this
-//! displayer. Displayer is connected to AIS Interactive Context
-class View_DisplayPreview
-{
-public:
-  //! Constructor
-  Standard_EXPORT View_DisplayPreview();
-
-  //! Destructor
-  virtual ~View_DisplayPreview() {}
-
-  //! Stores the current context where the presentations will be displayed/erased.
-  //! Erases previously displayed presentations if there were some displayed
-  //! \param theContext a context instance
-  Standard_EXPORT void SetContext(const Handle(AIS_InteractiveContext)& theContext);
-
-  //! Returns preview parameters
-  View_PreviewParameters* GetPreviewParameters() const { return myPreviewParameters; }
-
-  //! Updates visibility of the presentations for the display type
-  Standard_EXPORT void UpdatePreview(
-    const View_DisplayActionType                        theType,
-    const NCollection_List<Handle(Standard_Transient)>& thePresentations);
-
-  //! Returns true if preview presentation is shown
-  Standard_Boolean HasPreview() const { return !myPreviewPresentation.IsNull(); }
-
-  //! Custom preview selection mode
-  static Standard_Integer PreviewSelectionMode() { return 100; }
-
-private:
-  //! Returns the current context
-  const Handle(AIS_InteractiveContext)& GetContext() const { return myContext; }
-
-private:
-  Handle(AIS_InteractiveContext) myContext; //!< context, where the displayer works
-
-  View_PreviewParameters* myPreviewParameters; //!< drawer of preview presentation
-  Handle(AIS_InteractiveObject)
-    myPreviewPresentation; //!< presentation of preview for a selected object
-  NCollection_List<Handle(AIS_InteractiveObject)>
-    myPreviewReadyPresentations; //!< presentation of preview for a selected object
-};
-
-#endif
diff --git a/tools/View/View_Displayer.cxx b/tools/View/View_Displayer.cxx
deleted file mode 100644
index 6da2e0e8b4..0000000000
--- a/tools/View/View_Displayer.cxx
+++ /dev/null
@@ -1,436 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/View_Displayer.hxx>
-
-#include <AIS_InteractiveContext.hxx>
-#include <AIS_InteractiveObject.hxx>
-#include <AIS_ListIteratorOfListOfInteractive.hxx>
-#include <AIS_Shape.hxx>
-#include <AIS_Trihedron.hxx>
-#include <AIS_ViewCube.hxx>
-#include <Geom_Axis2Placement.hxx>
-#include <Prs3d_PointAspect.hxx>
-#include <V3d_View.hxx>
-#include <V3d_Viewer.hxx>
-
-#include <inspector/View_DisplayPreview.hxx>
-#include <inspector/View_Viewer.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-View_Displayer::View_Displayer()
-    : myIsKeepPresentations(false),
-      myFitAllActive(false),
-      myDisplayMode(0)
-{
-  myDisplayPreview = new View_DisplayPreview();
-}
-
-// =======================================================================
-// function : SetContext
-// purpose :
-// =======================================================================
-void View_Displayer::SetContext(const Handle(AIS_InteractiveContext)& theContext)
-{
-  NCollection_DataMap<View_PresentationType, NCollection_Shared<AIS_ListOfInteractive>> aDisplayed =
-    myDisplayed;
-  EraseAllPresentations(true);
-  myContext = theContext;
-
-  for (NCollection_DataMap<View_PresentationType,
-                           NCollection_Shared<AIS_ListOfInteractive>>::Iterator
-         aDisplayedIt(aDisplayed);
-       aDisplayedIt.More();
-       aDisplayedIt.Next())
-  {
-    View_PresentationType aType = aDisplayedIt.Key();
-    for (AIS_ListIteratorOfListOfInteractive aPresentationsIt(aDisplayedIt.Value());
-         aPresentationsIt.More();
-         aPresentationsIt.Next())
-      DisplayPresentation(aPresentationsIt.Value(), aType, false);
-  }
-  myDisplayPreview->SetContext(theContext);
-  UpdateViewer();
-}
-
-// =======================================================================
-// function : SetDisplayMode
-// purpose :
-// =======================================================================
-void View_Displayer::SetDisplayMode(const int                   theDisplayMode,
-                                    const View_PresentationType theType,
-                                    const bool                  theToUpdateViewer)
-{
-  myDisplayMode = theDisplayMode;
-  if (GetContext().IsNull())
-    return;
-
-  NCollection_Shared<AIS_ListOfInteractive> aDisplayed;
-  DisplayedPresentations(aDisplayed, theType);
-
-  for (AIS_ListIteratorOfListOfInteractive aDisplayedIt(aDisplayed); aDisplayedIt.More();
-       aDisplayedIt.Next())
-    GetContext()->SetDisplayMode(aDisplayedIt.Value(), theDisplayMode, Standard_False);
-
-  if (theToUpdateViewer)
-    UpdateViewer();
-}
-
-// =======================================================================
-// function : DisplayPresentation
-// purpose :
-// =======================================================================
-void View_Displayer::DisplayPresentation(const Handle(Standard_Transient)& thePresentation,
-                                         const View_PresentationType       theType,
-                                         const bool                        theToUpdateViewer)
-{
-  if (GetContext().IsNull())
-    return;
-
-  NCollection_Shared<AIS_ListOfInteractive> aDisplayed;
-  DisplayedPresentations(aDisplayed, theType);
-  if (!myIsKeepPresentations)
-    ErasePresentations(theType, false);
-
-  Handle(AIS_InteractiveObject) aPresentation =
-    Handle(AIS_InteractiveObject)::DownCast(thePresentation);
-  if (!aPresentation.IsNull() && aPresentation->GetContext().IsNull())
-  {
-    // one presentation can not be shown in several contexts
-    if (theType == View_PresentationType_Additional)
-    {
-      Quantity_Color aColor;
-      if (myColorAttributes.Find(View_PresentationType_Additional, aColor))
-        aPresentation->SetColor(aColor);
-    }
-    GetContext()->Display(aPresentation, false);
-    if (myDisplayMode != -1)
-      GetContext()->SetDisplayMode(aPresentation, myDisplayMode, false);
-    aDisplayed.Append(aPresentation);
-  }
-
-  if (myFitAllActive)
-    fitAllView();
-
-  myDisplayed.Bind(theType, aDisplayed);
-
-  if (theToUpdateViewer)
-    UpdateViewer();
-}
-
-// =======================================================================
-// function : RedisplayPresentation
-// purpose :
-// =======================================================================
-void View_Displayer::RedisplayPresentation(const Handle(Standard_Transient)& thePresentation,
-                                           const bool                        theToUpdateViewer)
-{
-  Handle(AIS_InteractiveObject) aPresentation =
-    Handle(AIS_InteractiveObject)::DownCast(thePresentation);
-  if (aPresentation.IsNull() || aPresentation->GetContext().IsNull())
-    return;
-
-  GetContext()->Redisplay(aPresentation, false);
-
-  if (myFitAllActive)
-    fitAllView();
-
-  if (theToUpdateViewer)
-    UpdateViewer();
-}
-
-// =======================================================================
-// function : EraseAllPresentations
-// purpose :
-// =======================================================================
-void View_Displayer::EraseAllPresentations(const bool theToUpdateViewer)
-{
-  for (NCollection_DataMap<View_PresentationType,
-                           NCollection_Shared<AIS_ListOfInteractive>>::Iterator
-         aDisplayedIt(myDisplayed);
-       aDisplayedIt.More();
-       aDisplayedIt.Next())
-    ErasePresentations(aDisplayedIt.Key(), false);
-
-  if (theToUpdateViewer)
-    UpdateViewer();
-}
-
-// =======================================================================
-// function : ErasePresentations
-// purpose :
-// =======================================================================
-void View_Displayer::ErasePresentations(const View_PresentationType theType,
-                                        const bool                  theToUpdateViewer)
-{
-  if (GetContext().IsNull())
-    return;
-
-  NCollection_Shared<AIS_ListOfInteractive> aDisplayed;
-  DisplayedPresentations(aDisplayed, theType);
-
-  for (AIS_ListIteratorOfListOfInteractive aDisplayedIt(aDisplayed); aDisplayedIt.More();
-       aDisplayedIt.Next())
-  {
-    if (aDisplayedIt.Value()->IsKind(STANDARD_TYPE(AIS_Trihedron)))
-      continue;
-
-    GetContext()->Remove(aDisplayedIt.Value(), Standard_False);
-  }
-
-  aDisplayed.Clear();
-  myDisplayed.Bind(theType, aDisplayed);
-
-  if (theToUpdateViewer)
-    UpdateViewer();
-}
-
-// =======================================================================
-// function : ErasePresentation
-// purpose :
-// =======================================================================
-void View_Displayer::ErasePresentation(const Handle(Standard_Transient)& thePresentation,
-                                       const View_PresentationType       theType,
-                                       const bool                        theToUpdateViewer)
-{
-  if (GetContext().IsNull())
-    return;
-
-  Handle(AIS_InteractiveObject) aPresentation =
-    Handle(AIS_InteractiveObject)::DownCast(thePresentation);
-  if (aPresentation.IsNull())
-    return;
-
-  GetContext()->Remove(aPresentation, Standard_False);
-
-  NCollection_Shared<AIS_ListOfInteractive> aDisplayed;
-  DisplayedPresentations(aDisplayed, theType);
-  aDisplayed.Remove(aPresentation);
-  myDisplayed.Bind(theType, aDisplayed);
-
-  if (myFitAllActive)
-    fitAllView();
-
-  if (theToUpdateViewer)
-    UpdateViewer();
-}
-
-// =======================================================================
-// function : DisplayDefaultTrihedron
-// purpose :
-// =======================================================================
-void View_Displayer::DisplayDefaultTrihedron(const Standard_Boolean toDisplay,
-                                             const bool             theToUpdateViewer)
-{
-  const Handle(AIS_Trihedron)& aTrihedron = defaultTrihedron(toDisplay);
-  if (aTrihedron.IsNull())
-    return;
-
-  if (toDisplay)
-    GetContext()->Display(aTrihedron, theToUpdateViewer);
-  else
-    GetContext()->Erase(aTrihedron, theToUpdateViewer);
-}
-
-// =======================================================================
-// function : DisplayViewCube
-// purpose :
-// =======================================================================
-void View_Displayer::DisplayViewCube(const Standard_Boolean toDisplay, const bool theToUpdateViewer)
-{
-  if (myViewCube.IsNull() && toDisplay)
-  {
-    myViewCube = new AIS_ViewCube();
-    myViewCube->SetSize(35.0);
-    myViewCube->SetBoxColor(Quantity_NOC_GRAY50);
-  }
-
-  if (myViewCube.IsNull())
-    return;
-
-  if (toDisplay)
-    GetContext()->Display(myViewCube, theToUpdateViewer);
-  else
-    GetContext()->Erase(myViewCube, theToUpdateViewer);
-}
-
-// =======================================================================
-// function : SetVisible
-// purpose :
-// =======================================================================
-void View_Displayer::SetVisible(const TopoDS_Shape&         theShape,
-                                const bool                  theState,
-                                const View_PresentationType theType)
-{
-  if (theShape.IsNull())
-    return;
-
-  if (theState)
-    DisplayPresentation(CreatePresentation(theShape), View_PresentationType_Main, Standard_False);
-  else
-  {
-    Handle(AIS_InteractiveObject) aPresentation = FindPresentation(theShape, theType);
-    if (!aPresentation.IsNull())
-      ErasePresentation(aPresentation, theType, Standard_False);
-  }
-
-  UpdateViewer();
-}
-
-// =======================================================================
-// function : IsVisible
-// purpose :
-// =======================================================================
-bool View_Displayer::IsVisible(const TopoDS_Shape&         theShape,
-                               const View_PresentationType theType) const
-{
-  Handle(AIS_InteractiveObject) aPresentation = FindPresentation(theShape, theType);
-  return !aPresentation.IsNull();
-}
-
-// =======================================================================
-// function : UpdatePreview
-// purpose :
-// =======================================================================
-void View_Displayer::UpdatePreview(
-  const View_DisplayActionType                        theType,
-  const NCollection_List<Handle(Standard_Transient)>& thePresentations)
-{
-  myDisplayPreview->UpdatePreview(theType, thePresentations);
-  if (myFitAllActive)
-    fitAllView();
-}
-
-// =======================================================================
-// function : UpdateViewer
-// purpose :
-// =======================================================================
-void View_Displayer::UpdateViewer()
-{
-  if (GetContext().IsNull())
-    return;
-
-  GetContext()->UpdateCurrentViewer();
-}
-
-// =======================================================================
-// function : SetAttributeColor
-// purpose :
-// =======================================================================
-void View_Displayer::SetAttributeColor(const Quantity_Color&       theColor,
-                                       const View_PresentationType theType)
-{
-  myColorAttributes.Bind(theType, theColor);
-}
-
-// =======================================================================
-// function : DisplayedPresentations
-// purpose :
-// =======================================================================
-void View_Displayer::DisplayedPresentations(
-  NCollection_Shared<AIS_ListOfInteractive>& thePresentations,
-  const View_PresentationType                theType) const
-{
-  myDisplayed.Find(theType, thePresentations);
-}
-
-// =======================================================================
-// function : getView
-// purpose :
-// =======================================================================
-Handle(V3d_View) View_Displayer::GetView() const
-{
-  Handle(V3d_View) aView;
-  if (GetContext().IsNull())
-    return aView;
-
-  const Handle(V3d_Viewer)& aViewer = GetContext()->CurrentViewer();
-  if (!aViewer.IsNull())
-  {
-    if (!aViewer->ActiveViews().IsEmpty())
-    {
-      aView = aViewer->ActiveViews().First();
-    }
-  }
-  return aView;
-}
-
-// =======================================================================
-// function : FindPresentation
-// purpose :
-// =======================================================================
-Handle(AIS_InteractiveObject) View_Displayer::FindPresentation(
-  const TopoDS_Shape&         theShape,
-  const View_PresentationType theType) const
-{
-  if (theShape.IsNull())
-    return Handle(AIS_InteractiveObject)();
-
-  NCollection_Shared<AIS_ListOfInteractive> aDisplayed;
-  DisplayedPresentations(aDisplayed, theType);
-
-  for (AIS_ListIteratorOfListOfInteractive aDisplayedIt(aDisplayed); aDisplayedIt.More();
-       aDisplayedIt.Next())
-  {
-    Handle(AIS_Shape) aPresentation = Handle(AIS_Shape)::DownCast(aDisplayedIt.Value());
-    if (aPresentation->Shape().IsEqual(theShape))
-      return aPresentation;
-  }
-
-  return Handle(AIS_InteractiveObject)();
-}
-
-// =======================================================================
-// function : CreatePresentation
-// purpose :
-// =======================================================================
-Handle(Standard_Transient) View_Displayer::CreatePresentation(const TopoDS_Shape& theShape)
-{
-  Handle(AIS_Shape) aPresentation = new AIS_Shape(theShape);
-  aPresentation->Attributes()->SetAutoTriangulation(Standard_False);
-
-  return aPresentation;
-}
-
-// =======================================================================
-// function : fitAllView
-// purpose :
-// =======================================================================
-void View_Displayer::fitAllView()
-{
-  Handle(V3d_View) aView = GetView();
-  if (!aView.IsNull())
-  {
-    aView->FitAll();
-    aView->Redraw();
-  }
-}
-
-// =======================================================================
-// function : defaultTrihedron
-// purpose :
-// =======================================================================
-const Handle(AIS_Trihedron)& View_Displayer::defaultTrihedron(const bool toCreate)
-{
-  if (myDefaultTrihedron.IsNull() && toCreate)
-  {
-    myDefaultTrihedron = new AIS_Trihedron(new Geom_Axis2Placement(gp::XOY()));
-    myDefaultTrihedron->SetSize(1);
-  }
-  return myDefaultTrihedron;
-}
diff --git a/tools/View/View_Displayer.hxx b/tools/View/View_Displayer.hxx
deleted file mode 100644
index 894b5db88f..0000000000
--- a/tools/View/View_Displayer.hxx
+++ /dev/null
@@ -1,225 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 View_Displayer_H
-#define View_Displayer_H
-
-#include <AIS_ListOfInteractive.hxx>
-#include <AIS_InteractiveContext.hxx>
-
-#include <NCollection_DataMap.hxx>
-#include <NCollection_Shared.hxx>
-#include <TopoDS_Shape.hxx>
-#include <Quantity_Color.hxx>
-
-#include <inspector/View_PresentationType.hxx>
-#include <inspector/View_DisplayActionType.hxx>
-
-class AIS_Trihedron;
-class AIS_ViewCube;
-class V3d_View;
-class View_DisplayPreview;
-
-//! \class View_Displayer
-//! \brief It is responsible for communication with AIS Interactive Context to:
-//! - display/erase presentations;
-//! - change display mode of visualized presentations (Shaded or WireFrame mode)
-//!
-//! It contains containers of visualized presentations to obtain presentations relating only to this
-//! displayer. Displayer is connected to AIS Interactive Context
-class View_Displayer
-{
-public:
-  //! Constructor
-  Standard_EXPORT View_Displayer();
-
-  //! Destructor
-  virtual ~View_Displayer() {}
-
-  //! Returns preview display instance
-  View_DisplayPreview* DisplayPreview() const { return myDisplayPreview; }
-
-  //! Stores the current context where the presentations will be displayed/erased.
-  //! Erases previously displayed presentations if there were some displayed
-  //! \param theContext a context instance
-  Standard_EXPORT void SetContext(const Handle(AIS_InteractiveContext)& theContext);
-
-  //! Stores boolean value if presentations should be keeped. If true, new displayed presentation is
-  //! added to already displayed ones, otherwise the displayed presentation is shown only. \param
-  //! theToKeepPresentation boolean state
-  void KeepPresentations(const bool theToKeepPresentations)
-  {
-    myIsKeepPresentations = theToKeepPresentations;
-  }
-
-  //! Returns true if fit Fit All should be performed automatically by each Display
-  bool IsFitAllActive() const { return myFitAllActive; }
-
-  //! Stores flag whether the FitAll should be done automatically for each display
-  //! \param theFitAllActive boolean value
-  void SetFitAllActive(const bool theFitAllActive) { myFitAllActive = theFitAllActive; }
-
-  //! Returns current display mode: 0 - AIS_WireFrame, 1 - AIS_Shaded
-  int DisplayMode() const { return myDisplayMode; }
-
-  //! Stores display mode and changes display mode of displayed presentations
-  //! \param theDisplayMode a mode: 0 - AIS_WireFrame, 1 - AIS_Shaded
-  //! \param theType presentation type
-  //! \param isToUpdateView boolean state if viewer should be updated
-  Standard_EXPORT void SetDisplayMode(
-    const int                   theDisplayMode,
-    const View_PresentationType theType           = View_PresentationType_Main,
-    const bool                  theToUpdateViewer = true);
-
-  //! Displays presentation in context, erase previous presentations if KeepPresentations is false,
-  //! Color of presentation is from attribute color if exists or the default color
-  //! Display mode is equal to the view state
-  //! If KeepPresentations is false, the viewer is fit all
-  //! Displayed presentation is stored in an internal map of displayed presentations
-  //! \param thePresentation a presentation, it will be casted to AIS_InteractiveObject
-  //! \param theType presentation type
-  //! \param isToUpdateView boolean state if viewer should be updated
-  Standard_EXPORT void DisplayPresentation(
-    const Handle(Standard_Transient)& thePresentation,
-    const View_PresentationType       theType           = View_PresentationType_Main,
-    const bool                        theToUpdateViewer = true);
-
-  //! Redisplays the parameter presentation in current context
-  //! \param thePresentation a presentation, it will be casted to AIS_InteractiveObject
-  //! \param isToUpdateView boolean state if viewer should be updated
-  Standard_EXPORT void RedisplayPresentation(const Handle(Standard_Transient)& thePresentation,
-                                             const bool theToUpdateViewer = true);
-
-  //! Erases all presentations from viewer. Iterates by internal map of displayed presentations and
-  //! erase these presentations.
-  //! \param isToUpdateView boolean state if viewer should be updated
-  Standard_EXPORT void EraseAllPresentations(const bool theToUpdateViewer = true);
-
-  //! Erases presentations of the given type
-  //! \param theType presentation type
-  //! \param isToUpdateView boolean state if viewer should be updated
-  Standard_EXPORT void ErasePresentations(
-    const View_PresentationType theType           = View_PresentationType_Main,
-    const bool                  theToUpdateViewer = true);
-
-  //! Erases presentation from viewer
-  //! \param thePresentation a presentation, it will be casted to AIS_InteractiveObject
-  //! \param theType presentation type
-  //! \param isToUpdateView boolean state if viewer should be updated
-  Standard_EXPORT void ErasePresentation(
-    const Handle(Standard_Transient)& thePresentation,
-    const View_PresentationType       theType           = View_PresentationType_Main,
-    const bool                        theToUpdateViewer = true);
-
-  //! Displays presentation of default trihedron, create it by the first call
-  //! \param toDisplay flag to display presentation if true, or erase it
-  //! \param isToUpdateView boolean state if viewer should be updated
-  Standard_EXPORT void DisplayDefaultTrihedron(const Standard_Boolean toDisplay,
-                                               const bool             theToUpdateViewer);
-
-  //! Displays presentation of view cube, create it by the first call
-  //! \param toDisplay flag to display presentation if true, or erase it
-  //! \param isToUpdateView boolean state if viewer should be updated
-  Standard_EXPORT void DisplayViewCube(const Standard_Boolean toDisplay,
-                                       const bool             theToUpdateViewer);
-
-  //! Sets shape visible/invisible
-  //! \theShape shape instance
-  //! \theState visibility state
-  Standard_EXPORT void SetVisible(const TopoDS_Shape&         theShape,
-                                  const bool                  theState,
-                                  const View_PresentationType theType = View_PresentationType_Main);
-
-  //! Returns visibility state value
-  //! \theShape shape instance
-  Standard_EXPORT bool IsVisible(
-    const TopoDS_Shape&         theShape,
-    const View_PresentationType theType = View_PresentationType_Main) const;
-
-  //! Updates visibility of the presentations for the display type
-  Standard_EXPORT void UpdatePreview(
-    const View_DisplayActionType                        theType,
-    const NCollection_List<Handle(Standard_Transient)>& thePresentations);
-
-  //! Calls UpdateCurrentViewer of context
-  Standard_EXPORT void UpdateViewer();
-
-  //! Stores color for type of presentation. During display of presentation of the given type, the
-  //! color is used \param theColor a presentation color \param theType presentation type
-  Standard_EXPORT void SetAttributeColor(
-    const Quantity_Color&       theColor,
-    const View_PresentationType theType = View_PresentationType_Main);
-
-  //! Returns container of displayed presentations for the given type
-  //! \param thePresentations a container to be filled
-  //! \param theType presentation type
-  Standard_EXPORT void DisplayedPresentations(
-    NCollection_Shared<AIS_ListOfInteractive>& thePresentations,
-    const View_PresentationType                theType = View_PresentationType_Main) const;
-
-  //! Returns all displayed by the trihedron objects
-  const NCollection_DataMap<View_PresentationType, NCollection_Shared<AIS_ListOfInteractive>>&
-    GetDisplayed() const
-  {
-    return myDisplayed;
-  }
-
-  //! Returns presentation if there is displayed AIS_Shape presentation for the parameter shape
-  //! \param theShape a shape instance
-  //! \param theType presentation type
-  //! \return presentation instance or NULL
-  Standard_EXPORT Handle(AIS_InteractiveObject) FindPresentation(
-    const TopoDS_Shape&         theShape,
-    const View_PresentationType theType = View_PresentationType_Main) const;
-
-  //! Creates AIS_Shape for the shape
-  //! \param theShape a shape
-  //! \return presentation
-  Standard_EXPORT static Handle(Standard_Transient) CreatePresentation(
-    const TopoDS_Shape& theShape);
-
-private:
-  //! Returns the current context
-  const Handle(AIS_InteractiveContext)& GetContext() const { return myContext; }
-
-  //! Returns 3d view
-  Handle(V3d_View) GetView() const;
-
-  //! Fits all view
-  void fitAllView();
-
-  //! Returns default trihedron, create it if flag allows
-  //! \param toCreate boolean state if trihedron should be created if it is NULL
-  const Handle(AIS_Trihedron)& defaultTrihedron(const bool toCreate);
-
-private:
-  View_DisplayPreview* myDisplayPreview; //!< class for preview display
-
-  Handle(AIS_InteractiveContext) myContext; //!< context, where the displayer works
-  Handle(AIS_Trihedron) myDefaultTrihedron; //!< trihedron presentation for the current context
-  Handle(AIS_ViewCube)  myViewCube;         //!< view cube presentation for current context
-
-  NCollection_DataMap<View_PresentationType, NCollection_Shared<AIS_ListOfInteractive>>
-    myDisplayed; //!< visualized presentations
-  NCollection_DataMap<View_PresentationType, Quantity_Color>
-    myColorAttributes; //!< color properties of presentations
-
-  bool myIsKeepPresentations; //!< flag if previously shown presentations stays in the context by
-                              //!< displaying a new one
-  bool myFitAllActive;        //!< flag if Fit All should be performed automatically by each Display
-  int  myDisplayMode;         //!< display mode: 0 - AIS_WireFrame, 1 - AIS_Shaded
-};
-
-#endif
diff --git a/tools/View/View_PresentationType.hxx b/tools/View/View_PresentationType.hxx
deleted file mode 100644
index 1593a58bbb..0000000000
--- a/tools/View/View_PresentationType.hxx
+++ /dev/null
@@ -1,26 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 View_PresentationType_H
-#define View_PresentationType_H
-
-//! Type of displayed presentation in View displayed in AIS_InteractiveContext
-enum View_PresentationType
-{
-  View_PresentationType_Main,      //!< general presentation, mostly used
-  View_PresentationType_Additional //!< additional presentation
-};
-
-#endif
diff --git a/tools/View/View_PreviewParameters.cxx b/tools/View/View_PreviewParameters.cxx
deleted file mode 100644
index e1597e25c9..0000000000
--- a/tools/View/View_PreviewParameters.cxx
+++ /dev/null
@@ -1,57 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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.
-
-#include <inspector/View_PreviewParameters.hxx>
-
-#include <Prs3d_Drawer.hxx>
-#include <Prs3d_LineAspect.hxx>
-#include <Prs3d_PointAspect.hxx>
-#include <Prs3d_ShadingAspect.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-View_PreviewParameters::View_PreviewParameters(const Standard_Boolean theToTransparent)
-{
-  myDrawer = new Prs3d_Drawer();
-
-  Quantity_Color aColor(Quantity_NOC_TOMATO);
-
-  // point parameters
-  myDrawer->SetPointAspect(new Prs3d_PointAspect(Aspect_TOM_O_PLUS, aColor, 3.0));
-
-  // shading parameters
-  Graphic3d_MaterialAspect aShadingMaterial;
-  aShadingMaterial.SetMaterialType(Graphic3d_MATERIAL_ASPECT);
-
-  myDrawer->SetShadingAspect(new Prs3d_ShadingAspect());
-  myDrawer->ShadingAspect()->Aspect()->SetInteriorStyle(Aspect_IS_SOLID);
-  myDrawer->ShadingAspect()->SetColor(aColor);
-  myDrawer->ShadingAspect()->SetMaterial(aShadingMaterial);
-
-  myDrawer->SetLineAspect(new Prs3d_LineAspect(aColor, Aspect_TOL_SOLID, 1.));
-
-  if (theToTransparent)
-  {
-    Standard_ShortReal aTransparency = 0.8f;
-
-    myDrawer->ShadingAspect()->Aspect()->ChangeFrontMaterial().SetTransparency(aTransparency);
-    myDrawer->ShadingAspect()->Aspect()->ChangeBackMaterial().SetTransparency(aTransparency);
-    myDrawer->SetTransparency(aTransparency);
-  }
-  // common parameters
-  myDrawer->SetZLayer(Graphic3d_ZLayerId_Topmost);
-}
diff --git a/tools/View/View_PreviewParameters.hxx b/tools/View/View_PreviewParameters.hxx
deleted file mode 100644
index 81bd34e360..0000000000
--- a/tools/View/View_PreviewParameters.hxx
+++ /dev/null
@@ -1,80 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 View_PreviewParameters_H
-#define View_PreviewParameters_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <Prs3d_Drawer.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QMap>
-#include <QString>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class View_PreviewParameters
-//! Container of View tool bar actions
-class View_PreviewParameters
-{
-public:
-  //! Constructor
-  Standard_EXPORT View_PreviewParameters(const Standard_Boolean theToTransparent = Standard_True);
-
-  //! Destructor
-  virtual ~View_PreviewParameters() {}
-
-  //! Returns main control
-  const Handle(Prs3d_Drawer)& GetDrawer() const { return myDrawer; }
-
-  //! Saves state of preview parameters in a container in form: key, value. It saves:
-  //! - visibility of columns,
-  //! - columns width
-  //! \param theTreeView a view instance
-  //! \param[out] theItems  properties
-  //! \param thePrefix preference item prefix
-  static void SaveState(View_PreviewParameters* theParameters,
-                        QMap<QString, QString>& theItems,
-                        const QString&          thePrefix = QString())
-  {
-    (void)theParameters;
-    (void)theItems;
-    (void)thePrefix;
-  }
-
-  //! Restores state of preview parameters by a container
-  //! \param theTreeView a view instance
-  //! \param theKey property key
-  //! \param theValue property value
-  //! \param thePrefix preference item prefix
-  //! \return boolean value whether the property is applied to the tree view
-  static bool RestoreState(View_PreviewParameters* theParameters,
-                           const QString&          theKey,
-                           const QString&          theValue,
-                           const QString&          thePrefix = QString())
-  {
-    (void)theParameters;
-    (void)theKey;
-    (void)theValue;
-    (void)thePrefix;
-    return false;
-  }
-
-private:
-  Handle(Prs3d_Drawer) myDrawer; //!< attributes for preview presentation
-};
-
-#endif
diff --git a/tools/View/View_ToolActionType.hxx b/tools/View/View_ToolActionType.hxx
deleted file mode 100644
index e5797c7eec..0000000000
--- a/tools/View/View_ToolActionType.hxx
+++ /dev/null
@@ -1,29 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 View_ToolActionType_H
-#define View_ToolActionType_H
-
-//! Actions of view tool bar
-enum View_ToolActionType
-{
-  View_ToolActionType_KeepViewId,    //!< Do not clear previously shown presentations
-  View_ToolActionType_KeepViewOffId, //!< Do show only for new displayed presentation
-  View_ToolActionType_ClearViewId,   //!< Erase all displayed presentations
-  View_ToolActionType_Trihedron,     //!< Display/Erase trihedron presentation
-  View_ToolActionType_ViewCube       //!< Display/Erase view cube presentation
-};
-
-#endif
diff --git a/tools/View/View_ToolBar.cxx b/tools/View/View_ToolBar.cxx
deleted file mode 100644
index b7598f9b8e..0000000000
--- a/tools/View/View_ToolBar.cxx
+++ /dev/null
@@ -1,245 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/View_ToolBar.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QComboBox>
-#include <QHBoxLayout>
-#include <QLabel>
-#include <QToolButton>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-const int DEFAULT_COMBO_WIDTH_MINIMUM = 80;
-const int DEFAULT_SPACING             = 3;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-View_ToolBar::View_ToolBar(QWidget* theParent, const bool isUseKeepView)
-    : QObject(theParent),
-      myDefaultContextType(-1)
-{
-  myMainWindow = new QWidget(theParent);
-
-  QHBoxLayout* aLay = new QHBoxLayout(myMainWindow);
-  aLay->setContentsMargins(0, 0, 0, 0);
-  aLay->setSpacing(DEFAULT_SPACING);
-
-  QWidget*     aViewSelectorWidget = new QWidget(myMainWindow);
-  QHBoxLayout* aViewSelectorLay    = new QHBoxLayout(aViewSelectorWidget);
-  aViewSelectorLay->setContentsMargins(0, 0, 0, 0);
-  aViewSelectorLay->setContentsMargins(0, 0, 0, 0);
-  aViewSelectorLay->addWidget(new QLabel(tr("Context: "), aViewSelectorWidget));
-  myViewSelector = new QComboBox(aViewSelectorWidget);
-  myViewSelector->setMinimumWidth(DEFAULT_COMBO_WIDTH_MINIMUM);
-  aViewSelectorLay->addWidget(myViewSelector);
-  aLay->addWidget(aViewSelectorWidget);
-  connect(myViewSelector, SIGNAL(activated(int)), this, SIGNAL(contextChanged()));
-
-  myViewContextNames[View_ContextType_None]     = tr("None");
-  myViewContextNames[View_ContextType_Own]      = tr("Own");
-  myViewContextNames[View_ContextType_External] = tr("External");
-
-  myViewSelector->insertItem(View_ContextType_None, myViewContextNames[View_ContextType_None]);
-  myViewSelector->insertItem(View_ContextType_Own, myViewContextNames[View_ContextType_Own]);
-
-  myViewSelector->setCurrentIndex(View_ContextType_Own);
-  myViewContexts[View_ContextType_None]     = Handle(AIS_InteractiveContext)();
-  myViewContexts[View_ContextType_Own]      = Handle(AIS_InteractiveContext)();
-  myViewContexts[View_ContextType_External] = Handle(AIS_InteractiveContext)();
-
-  myActionsMap[View_ToolActionType_Trihedron] = new QToolButton(theParent);
-  myActionsMap[View_ToolActionType_Trihedron]->setIcon(QIcon(":/icons/trihedron.png"));
-  myActionsMap[View_ToolActionType_Trihedron]->setToolTip(tr("Trihedron display"));
-  myActionsMap[View_ToolActionType_Trihedron]->setCheckable(true);
-  myActionsMap[View_ToolActionType_Trihedron]->setChecked(false);
-
-  myActionsMap[View_ToolActionType_ViewCube] = new QToolButton(theParent);
-  myActionsMap[View_ToolActionType_ViewCube]->setIcon(QIcon(":/icons/view_cube.png"));
-  myActionsMap[View_ToolActionType_ViewCube]->setToolTip(tr("View Cube display"));
-  myActionsMap[View_ToolActionType_ViewCube]->setCheckable(true);
-  myActionsMap[View_ToolActionType_ViewCube]->setChecked(false);
-
-  if (isUseKeepView)
-  {
-    myActionsMap[View_ToolActionType_KeepViewId] = new QToolButton(theParent);
-    myActionsMap[View_ToolActionType_KeepViewId]->setIcon(QIcon(":/icons/keep_view_on.png"));
-    myActionsMap[View_ToolActionType_KeepViewId]->setText(tr("Multi"));
-    myActionsMap[View_ToolActionType_KeepViewId]->setToolTip(
-      tr("Keep View On: does not clear previously shown presentation"));
-    myActionsMap[View_ToolActionType_KeepViewId]->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
-    myActionsMap[View_ToolActionType_KeepViewId]->setCheckable(true);
-    myActionsMap[View_ToolActionType_KeepViewId]->setChecked(false);
-
-    myActionsMap[View_ToolActionType_KeepViewOffId] = new QToolButton(theParent);
-    myActionsMap[View_ToolActionType_KeepViewOffId]->setIcon(QIcon(":/icons/keep_view_off.png"));
-    myActionsMap[View_ToolActionType_KeepViewOffId]->setText(QObject::tr("Single"));
-    myActionsMap[View_ToolActionType_KeepViewOffId]->setToolButtonStyle(
-      Qt::ToolButtonTextBesideIcon);
-    myActionsMap[View_ToolActionType_KeepViewOffId]->setToolTip(
-      tr("Keep View Off: clear previously shown presentation"));
-    myActionsMap[View_ToolActionType_KeepViewOffId]->setCheckable(true);
-    myActionsMap[View_ToolActionType_KeepViewOffId]->setChecked(true);
-
-    myActionsMap[View_ToolActionType_ClearViewId] = new QToolButton(theParent);
-    myActionsMap[View_ToolActionType_ClearViewId]->setIcon(QIcon(":/icons/view_clear.png"));
-    myActionsMap[View_ToolActionType_ClearViewId]->setText(tr("Clear View"));
-    myActionsMap[View_ToolActionType_ClearViewId]->setToolTip(
-      tr("Remove all visualized presentations from view context"));
-  }
-
-  for (QMap<View_ToolActionType, QToolButton*>::ConstIterator anActionsIt   = myActionsMap.begin(),
-                                                              anActionsLast = myActionsMap.end();
-       anActionsIt != anActionsLast;
-       anActionsIt++)
-  {
-    QToolButton* aBtn = anActionsIt.value();
-    connect(aBtn, SIGNAL(clicked()), this, SLOT(onActionClicked()));
-    aLay->addWidget(aBtn);
-  }
-  aLay->addStretch(1);
-}
-
-// =======================================================================
-// function : SetContext
-// purpose :
-// =======================================================================
-void View_ToolBar::SetContext(View_ContextType                      theType,
-                              const Handle(AIS_InteractiveContext)& theContext)
-{
-  myViewContexts[theType] = theContext;
-
-  QString aViewContextName = myViewContextNames[theType];
-  if (!theContext.IsNull())
-    aViewContextName = QString("%1 : [%2]")
-                         .arg(myViewContextNames[theType])
-                         .arg(Standard_Dump::GetPointerInfo(theContext, true).ToCString());
-  // there are only "Own" and "None" items
-  if (!theContext.IsNull() && theType == View_ContextType_External && myViewSelector->count() == 2)
-    myViewSelector->insertItem(View_ContextType_External, aViewContextName);
-  else
-    myViewSelector->setItemText(theType, aViewContextName);
-
-  if (myDefaultContextType >= 0 && myViewSelector->count() > myDefaultContextType)
-  {
-    // using default type during the first setting the external context
-    myViewSelector->setCurrentIndex(myDefaultContextType);
-    myDefaultContextType = -1;
-  }
-}
-
-// =======================================================================
-// function : CurrentContextType
-// purpose :
-// =======================================================================
-View_ContextType View_ToolBar::CurrentContextType() const
-{
-  return (View_ContextType)myViewSelector->currentIndex();
-}
-
-// =======================================================================
-// function : SetCurrentContext
-// purpose :
-// =======================================================================
-void View_ToolBar::SetCurrentContextType(View_ContextType theType)
-{
-  myViewSelector->setCurrentIndex((int)theType);
-  emit contextChanged();
-}
-
-// =======================================================================
-// function : CurrentContext
-// purpose :
-// =======================================================================
-Handle(AIS_InteractiveContext) View_ToolBar::CurrentContext() const
-{
-  View_ContextType aCurrentType = (View_ContextType)myViewSelector->currentIndex();
-  return myViewContexts[aCurrentType];
-}
-
-// =======================================================================
-// function : IsActionChecked
-// purpose :
-// =======================================================================
-bool View_ToolBar::IsActionChecked(const int theActionId) const
-{
-  View_ToolActionType anActionId = (View_ToolActionType)theActionId;
-  return myActionsMap.contains(anActionId) ? myActionsMap[anActionId]->isChecked() : false;
-}
-
-// =======================================================================
-// function : SaveState
-// purpose :
-// =======================================================================
-void View_ToolBar::SaveState(View_ToolBar*           theToolBar,
-                             QMap<QString, QString>& theItems,
-                             const QString&          thePrefix)
-{
-  theItems[thePrefix + "context_type"] = QString::number(theToolBar->CurrentContextType());
-}
-
-// =======================================================================
-// function : RestoreState
-// purpose :
-// =======================================================================
-bool View_ToolBar::RestoreState(View_ToolBar*  theToolBar,
-                                const QString& theKey,
-                                const QString& theValue,
-                                const QString& thePrefix)
-{
-  if (theKey == thePrefix + "context_type")
-  {
-    theToolBar->SetDefaultContextType((View_ContextType)theValue.toInt());
-  }
-  else
-    return false;
-
-  return true;
-}
-
-// =======================================================================
-// function : onActionClicked
-// purpose :
-// =======================================================================
-void View_ToolBar::onActionClicked()
-{
-  int          anId       = -1;
-  QToolButton* aSenderBtn = (QToolButton*)sender();
-
-  for (QMap<View_ToolActionType, QToolButton*>::ConstIterator anActionsIt   = myActionsMap.begin(),
-                                                              anActionsLast = myActionsMap.end();
-       anActionsIt != anActionsLast;
-       anActionsIt++)
-  {
-    if (anActionsIt.value() == aSenderBtn)
-    {
-      anId = anActionsIt.key();
-      break;
-    }
-  }
-  if (anId != -1)
-    emit actionClicked(anId);
-
-  if (anId == View_ToolActionType_KeepViewId || anId == View_ToolActionType_KeepViewOffId)
-  {
-    if (anId == View_ToolActionType_KeepViewId)
-      myActionsMap[View_ToolActionType_KeepViewOffId]->setChecked(!aSenderBtn->isChecked());
-    else
-      myActionsMap[View_ToolActionType_KeepViewId]->setChecked(!aSenderBtn->isChecked());
-  }
-}
diff --git a/tools/View/View_ToolBar.hxx b/tools/View/View_ToolBar.hxx
deleted file mode 100644
index 0deb13bfef..0000000000
--- a/tools/View/View_ToolBar.hxx
+++ /dev/null
@@ -1,122 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 View_ToolBar_H
-#define View_ToolBar_H
-
-#include <AIS_InteractiveContext.hxx>
-#include <Standard.hxx>
-#include <inspector/View_ContextType.hxx>
-#include <inspector/View_ToolActionType.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QMap>
-#include <Standard_WarningsRestore.hxx>
-
-class QComboBox;
-class QToolButton;
-class QWidget;
-
-//! \class View_ToolBar
-//! \brief This is a container of the next view actions:
-//! - selection of interactive context
-//! - actions of View_ToolActionType enumeration
-//!
-//! It contains container of possible interactive contexts where the presentations may be visualized
-//! and choice control to select an active context.
-//! If action is clicked, a signal about is sent.
-class View_ToolBar : public QObject
-{
-  Q_OBJECT
-
-public:
-  //! Constructor
-  Standard_EXPORT View_ToolBar(QWidget* theParent, const bool isUseKeepView = true);
-
-  //! Destructor
-  virtual ~View_ToolBar() {}
-
-  //! \returns parent widget of actions
-  QWidget* GetControl() const { return myMainWindow; }
-
-  //! Appends context for the given type
-  //! \param theType a context type
-  //! \param theContext a context
-  Standard_EXPORT void SetContext(View_ContextType                      theType,
-                                  const Handle(AIS_InteractiveContext)& theContext);
-
-  //! \returns type of active item of context selector
-  Standard_EXPORT View_ContextType CurrentContextType() const;
-
-  //! Sets current context type
-  //! \param theType a context type
-  Standard_EXPORT void SetCurrentContextType(View_ContextType theType);
-
-  //! Sets default context type
-  //! \param theType a context type
-  void SetDefaultContextType(const View_ContextType theType)
-  {
-    myDefaultContextType = (int)theType;
-  }
-
-  //! \returns an active context of context selector
-  Standard_EXPORT Handle(AIS_InteractiveContext) CurrentContext() const;
-
-  //! \returns whether the action is checked(toggled). Acceptable only if the action is checkable.
-  Standard_EXPORT bool IsActionChecked(const int theActionId) const;
-
-  //! Saves state of tool bar actions
-  //! \param theToolBar a view instance
-  //! \param[out] theItems  properties
-  //! \param thePrefix preference item prefix
-  Standard_EXPORT static void SaveState(View_ToolBar*           theToolBar,
-                                        QMap<QString, QString>& theItems,
-                                        const QString&          thePrefix = QString());
-  //! Restores state of tool bar actions
-  //! \param theToolBar a view instance
-  //! \param theKey property key
-  //! \param theValue property value
-  //! \param thePrefix preference item prefix
-  //! \return boolean value whether the property is applied to the tree view
-  Standard_EXPORT static bool RestoreState(View_ToolBar*  theToolBar,
-                                           const QString& theKey,
-                                           const QString& theValue,
-                                           const QString& thePrefix = QString());
-
-signals:
-
-  //! Signal about click on action of View_ToolActionType enumeration
-  void actionClicked(int theActionId);
-
-  //! Signal about selection of context
-  void contextChanged();
-
-private slots:
-
-  //! Processes clicked action and emit signal with action identifier
-  void onActionClicked();
-
-private:
-  QWidget*   myMainWindow;         //!< tool bar parent widget
-  QComboBox* myViewSelector;       //!< container of possible contexts
-  int        myDefaultContextType; //!< type of context read from preferences
-
-  QMap<View_ToolActionType, QToolButton*>                myActionsMap;       //!< tool actions
-  QMap<View_ContextType, Handle(AIS_InteractiveContext)> myViewContexts;     //!< contexts
-  QMap<View_ContextType, QString>                        myViewContextNames; //!< names of contexts
-};
-
-#endif
diff --git a/tools/View/View_ToolButton.hxx b/tools/View/View_ToolButton.hxx
deleted file mode 100644
index 5c8cf27a9e..0000000000
--- a/tools/View/View_ToolButton.hxx
+++ /dev/null
@@ -1,73 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 View_ToolButton_H
-#define View_ToolButton_H
-
-#include <Standard_WarningsDisable.hxx>
-#include <QToolButton>
-#include <QMouseEvent>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class View_ToolButton
-//! \brief It is a Qt control that implements change checked state for button by double click event
-//! Button becomes checked by double click mouse pressed and unchecked by the next press mouse
-class View_ToolButton : public QToolButton
-{
-  Q_OBJECT
-
-public:
-  View_ToolButton(QWidget* theParent)
-      : QToolButton(theParent)
-  {
-  }
-
-  ~View_ToolButton() {}
-
-  //! Sets the button checkable, set whether the button checkable or not
-  //! \param theChecked boolean value
-  void SetButtonChecked(const bool theChecked)
-  {
-    setCheckable(theChecked);
-    setChecked(theChecked);
-    emit checkedStateChanged(theChecked);
-  }
-
-signals:
-  //! Sends a signal about checked state is changed
-  //! \param theState the checked state
-  void checkedStateChanged(bool theState);
-
-protected:
-  //! Sets the button unchecked if it was checked
-  virtual void mousePressEvent(QMouseEvent* theEvent)
-  {
-    if (isChecked())
-      SetButtonChecked(false);
-    else
-      QToolButton::mousePressEvent(theEvent);
-  }
-
-  //! Sets the button checked if it was unchecked
-  virtual void mouseDoubleClickEvent(QMouseEvent* theEvent)
-  {
-    QToolButton::mouseDoubleClickEvent(theEvent);
-    if (!isChecked())
-      SetButtonChecked(true);
-  }
-};
-
-#endif
diff --git a/tools/View/View_ViewActionType.hxx b/tools/View/View_ViewActionType.hxx
deleted file mode 100644
index c5571a842c..0000000000
--- a/tools/View/View_ViewActionType.hxx
+++ /dev/null
@@ -1,27 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 View_ViewActionType_H
-#define View_ViewActionType_H
-
-//! Actions of view widget
-enum View_ViewActionType
-{
-  View_ViewActionType_FitAllId,     //!< fits the view to wrap the bounding box of displayed objects
-  View_ViewActionType_DisplayModeId //!< change display mode of visualized presentations (to
-                                    //!< wireframe or shading)
-};
-
-#endif
diff --git a/tools/View/View_Viewer.cxx b/tools/View/View_Viewer.cxx
deleted file mode 100644
index 09250d90b6..0000000000
--- a/tools/View/View_Viewer.cxx
+++ /dev/null
@@ -1,69 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/View_Viewer.hxx>
-
-#include <OpenGl_GraphicDriver.hxx>
-
-// =======================================================================
-// function : CreateView
-// purpose :
-// =======================================================================
-void View_Viewer::CreateView()
-{
-  if (myView.IsNull())
-    myView = myContext->CurrentViewer()->CreateView();
-}
-
-// =======================================================================
-// function : CreateView
-// purpose :
-// =======================================================================
-void View_Viewer::SetWindow(const Handle(Aspect_Window)& theWindow)
-{
-  myView->SetWindow(theWindow);
-  if (!theWindow->IsMapped())
-    theWindow->Map();
-}
-
-// =======================================================================
-// function : InitViewer
-// purpose :
-// =======================================================================
-void View_Viewer::InitViewer(const Handle(AIS_InteractiveContext)& theContext)
-{
-  myContext = theContext;
-  myViewer  = myContext->CurrentViewer();
-}
-
-// =======================================================================
-// function : CreateStandardViewer
-// purpose :
-// =======================================================================
-Handle(AIS_InteractiveContext) View_Viewer::CreateStandardViewer()
-{
-  Handle(Aspect_DisplayConnection)    aDisplayConnection = new Aspect_DisplayConnection();
-  static Handle(OpenGl_GraphicDriver) aGraphicDriver = new OpenGl_GraphicDriver(aDisplayConnection);
-
-  Handle(V3d_Viewer) aViewer = new V3d_Viewer(aGraphicDriver);
-  aViewer->SetDefaultLights();
-  aViewer->SetLightOn();
-  aViewer->SetDefaultBackgroundColor(Quantity_NOC_GRAY30);
-
-  Handle(AIS_InteractiveContext) aContext = new AIS_InteractiveContext(aViewer);
-  aContext->UpdateCurrentViewer();
-
-  return aContext;
-}
diff --git a/tools/View/View_Viewer.hxx b/tools/View/View_Viewer.hxx
deleted file mode 100644
index a894791c92..0000000000
--- a/tools/View/View_Viewer.hxx
+++ /dev/null
@@ -1,81 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 View_Viewer_H
-#define View_Viewer_H
-
-#include <Aspect_Window.hxx>
-#include <AIS_InteractiveContext.hxx>
-#include <Quantity_Color.hxx>
-#include <Standard_Macro.hxx>
-#include <V3d_Viewer.hxx>
-#include <V3d_View.hxx>
-
-//! \class View_Viewer
-//! \brief It is responsible for context/viewer/view creation and accepting access to:
-class View_Viewer
-{
-public:
-  //! Constructor
-  View_Viewer(const Quantity_Color& theColor)
-      : myDefaultColor(theColor)
-  {
-  }
-
-  //! Destructor
-  virtual ~View_Viewer() {}
-
-  //! Returns the view default colors
-  static Quantity_Color DefaultColor() { return Quantity_Color(Quantity_NOC_BLACK); }
-
-  //! Returns the view default colors
-  static Quantity_Color DisabledColor()
-  {
-    return Quantity_Color(195 / 255., 195 / 255., 195 / 255., Quantity_TOC_sRGB);
-  }
-
-  //! Creates V3d view
-  Standard_EXPORT void CreateView();
-
-  //! Fills V3d view by the given window
-  //! \param depending on platform it is either WNT_Window or Xw_Window
-  Standard_EXPORT void SetWindow(const Handle(Aspect_Window)& theWindow);
-
-  //! Creates OCC components on the window
-  //! \param theWindowHandle an id of the application window
-  Standard_EXPORT void InitViewer(const Handle(AIS_InteractiveContext)& theContext);
-
-  //! Creates OCC components on the window
-  //! \param theWindowHandle an id of the application window
-  Standard_EXPORT static Handle(AIS_InteractiveContext) CreateStandardViewer();
-
-  //! Returns an OCC viewer
-  const Handle(V3d_Viewer)& GetViewer() { return myViewer; }
-
-  //! Returns active view
-  const Handle(V3d_View)& GetView() { return myView; }
-
-  //! Returns OCCT context to provide display and selection mechanism
-  const Handle(AIS_InteractiveContext)& GetContext() const { return myContext; }
-
-private:
-  Handle(V3d_Viewer) myViewer; //!< the OCCT viewer
-  Handle(V3d_View)   myView;   //!< the OCCT view window
-  Handle(AIS_InteractiveContext)
-                 myContext;      //!< OCCT context to provide display and selection mechanism
-  Quantity_Color myDefaultColor; //!< the default color of the viewer
-};
-
-#endif // View_Viewer_H
diff --git a/tools/View/View_Widget.cxx b/tools/View/View_Widget.cxx
deleted file mode 100644
index cb70d27dcf..0000000000
--- a/tools/View/View_Widget.cxx
+++ /dev/null
@@ -1,402 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#if !defined _WIN32
-  #define QT_CLEAN_NAMESPACE /* avoid definition of INT32 and INT8 */
-#endif
-
-#include <inspector/View_Widget.hxx>
-
-#include <AIS_DisplayMode.hxx>
-#include <AIS_ViewController.hxx>
-#include <Geom_Axis2Placement.hxx>
-#include <Graphic3d_GraphicDriver.hxx>
-
-#include <inspector/View_ToolButton.hxx>
-#include <inspector/View_ViewActionType.hxx>
-#include <inspector/View_Viewer.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QColorDialog>
-#include <QCursor>
-#include <QFileInfo>
-#include <QMdiSubWindow>
-#include <QMenu>
-#include <QMessageBox>
-#include <QMouseEvent>
-#include <QPainter>
-#include <QRubberBand>
-#include <QStatusBar>
-#include <QStyleFactory>
-#include <Standard_WarningsRestore.hxx>
-
-#include <stdio.h>
-
-#ifdef _WIN32
-  #include <WNT_Window.hxx>
-#elif defined(HAVE_XLIB)
-  #include <Xw_Window.hxx>
-#elif defined(__APPLE__)
-  #include <Cocoa_Window.hxx>
-#else
-
-#endif
-
-// =======================================================================
-// function :  Constructor
-// purpose :
-// =======================================================================
-View_Widget::View_Widget(QWidget*                              theParent,
-                         const Handle(AIS_InteractiveContext)& theContext,
-                         const bool                            isFitAllActive)
-    : QWidget(theParent),
-      myFirst(true),
-      myDefaultWidth(-1),
-      myDefaultHeight(-1),
-      myViewIsEnabled(true),
-      myHasInitProj(Standard_False),
-      myInitVx(0),
-      myInitVy(0),
-      myInitVz(0)
-{
-  myViewer = new View_Viewer(View_Viewer::DefaultColor());
-  if (!theContext.IsNull())
-  {
-    myViewer->InitViewer(theContext);
-  }
-  else
-  {
-    myViewer->InitViewer(myViewer->CreateStandardViewer());
-  }
-  myController = new AIS_ViewController();
-
-  setAttribute(Qt::WA_PaintOnScreen);
-  setAttribute(Qt::WA_NoSystemBackground);
-
-  setMouseTracking(true);
-  setBackgroundRole(QPalette::NoRole);
-  // set focus policy to threat QContextMenuEvent from keyboard
-  setFocusPolicy(Qt::StrongFocus);
-
-  initViewActions();
-  ((View_ToolButton*)myFitAllAction)->SetButtonChecked(isFitAllActive);
-}
-
-// =======================================================================
-// function : SetPredefinedSize
-// purpose :
-// =======================================================================
-void View_Widget::SetPredefinedSize(int theDefaultWidth, int theDefaultHeight)
-{
-  myDefaultWidth  = theDefaultWidth;
-  myDefaultHeight = theDefaultHeight;
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void View_Widget::Init()
-{
-  myViewer->CreateView();
-
-#ifdef _WIN32
-  Aspect_Handle         aWindowHandle = (Aspect_Handle)winId();
-  Handle(Aspect_Window) aWnd          = new WNT_Window(aWindowHandle);
-#elif defined(HAVE_XLIB)
-  Aspect_Drawable                  aWindowHandle = (Aspect_Drawable)winId();
-  Handle(Aspect_DisplayConnection) aDispConnection =
-    myViewer->GetContext()->CurrentViewer()->Driver()->GetDisplayConnection();
-  Handle(Aspect_Window) aWnd = new Xw_Window(aDispConnection, aWindowHandle);
-#elif defined(__APPLE__)
-  NSView*               aViewHandle = (NSView*)winId();
-  Handle(Aspect_Window) aWnd        = new Cocoa_Window(aViewHandle);
-#else
-  //
-#endif
-  myViewer->SetWindow(aWnd);
-
-  myViewer->GetView()->SetBackgroundColor(View_Viewer::DefaultColor());
-  myViewer->GetView()->MustBeResized();
-
-  if (myHasInitProj)
-    myViewer->GetView()->SetProj(myInitVx, myInitVy, myInitVz);
-}
-
-// =======================================================================
-// function : DisplayMode
-// purpose :
-// =======================================================================
-int View_Widget::DisplayMode() const
-{
-  return myViewActions[View_ViewActionType_DisplayModeId]->isChecked() ? AIS_Shaded : AIS_WireFrame;
-}
-
-// =======================================================================
-// function : SetDisplayMode
-// purpose :
-// =======================================================================
-void View_Widget::SetDisplayMode(const int theMode)
-{
-  myViewActions[View_ViewActionType_DisplayModeId]->setChecked(theMode ? AIS_Shaded
-                                                                       : AIS_WireFrame);
-}
-
-// =======================================================================
-// function : paintEvent
-// purpose :
-// =======================================================================
-void View_Widget::paintEvent(QPaintEvent* /*theEvent*/)
-{
-#if (QT_VERSION < 0x050000 || QT_VERSION >= 0x050700)
-  if (myFirst)
-  {
-    Init();
-    myFirst = false;
-  }
-#endif
-
-  if (myViewer->GetView())
-    myViewer->GetView()->Redraw();
-}
-
-// =======================================================================
-// function : resizeEvent
-// purpose :
-// =======================================================================
-void View_Widget::resizeEvent(QResizeEvent* /*theEvent*/)
-{
-#if (QT_VERSION > 0x050000 && QT_VERSION < 0x050700)
-  if (myFirst)
-  {
-    Init();
-    myFirst = false;
-  }
-#endif
-  if (myViewer->GetView())
-    myViewer->GetView()->MustBeResized();
-}
-
-// =======================================================================
-// function : sizeHint
-// purpose :
-// =======================================================================
-QSize View_Widget::sizeHint() const
-{
-  if (myDefaultWidth > 0 && myDefaultHeight > 0)
-    return QSize(myDefaultWidth, myDefaultHeight);
-
-  return QWidget::sizeHint();
-}
-
-// =======================================================================
-// function : SetEnabledView
-// purpose :
-// =======================================================================
-void View_Widget::SetEnabledView(const bool theIsEnabled)
-{
-  myViewIsEnabled = theIsEnabled;
-
-  if (myViewer->GetView())
-    myViewer->GetView()->SetBackgroundColor(theIsEnabled ? View_Viewer::DefaultColor()
-                                                         : View_Viewer::DisabledColor());
-  ViewAction(View_ViewActionType_DisplayModeId)->setEnabled(theIsEnabled);
-}
-
-// =======================================================================
-// function : SaveState
-// purpose :
-// =======================================================================
-void View_Widget::SaveState(View_Widget*            theWidget,
-                            QMap<QString, QString>& theItems,
-                            const QString&          thePrefix)
-{
-  theItems[thePrefix + "fitall"] = theWidget->ViewAction(View_ViewActionType_FitAllId)->isChecked();
-  theItems[thePrefix + "dispmode"] = QString::number(theWidget->DisplayMode());
-}
-
-// =======================================================================
-// function : RestoreState
-// purpose :
-// =======================================================================
-bool View_Widget::RestoreState(View_Widget*   theWidget,
-                               const QString& theKey,
-                               const QString& theValue,
-                               const QString& thePrefix)
-{
-  if (theKey == thePrefix + "fitall")
-  {
-    theWidget->SetActionChecked(View_ViewActionType_FitAllId, theValue.toInt() > 0);
-  }
-  else if (theKey == thePrefix + "dispmode")
-  {
-    theWidget->SetDisplayMode(theValue.toInt());
-  }
-  else
-    return false;
-
-  return true;
-}
-
-// =======================================================================
-// function : onCheckedStateChanged
-// purpose :
-// =======================================================================
-void View_Widget::onCheckedStateChanged(bool isOn)
-{
-  QWidget* aSentByAction = (QWidget*)sender();
-
-  if (aSentByAction == myFitAllAction)
-    emit checkedStateChanged(View_ViewActionType_FitAllId, isOn);
-}
-
-// =======================================================================
-// function : initViewActions
-// purpose :
-// =======================================================================
-void View_Widget::initViewActions()
-{
-  if (!myViewActions.empty())
-    return;
-
-  myFitAllAction = new View_ToolButton(this); // action for automatic fit all
-  connect(myFitAllAction,
-          SIGNAL(checkedStateChanged(bool)),
-          this,
-          SLOT(onCheckedStateChanged(bool)));
-  createAction(View_ViewActionType_FitAllId,
-               ":/icons/view_fitall.png",
-               tr("Fit All"),
-               SLOT(OnFitAll()));
-  myFitAllAction->setDefaultAction(ViewAction(View_ViewActionType_FitAllId));
-
-  createAction(View_ViewActionType_DisplayModeId,
-               ":/icons/view_dm_shading.png",
-               tr("Display Mode"),
-               SIGNAL(displayModeClicked()),
-               true);
-}
-
-// =======================================================================
-// function : mousePressEvent
-// purpose :
-// =======================================================================
-void View_Widget::mousePressEvent(QMouseEvent* theEvent)
-{
-  if (myController->PressMouseButton(Graphic3d_Vec2i(theEvent->x(), theEvent->y()),
-                                     keyMouse(theEvent->button()),
-                                     keyFlag(theEvent->modifiers()),
-                                     Standard_False))
-  {
-    myController->FlushViewEvents(myViewer->GetContext(), myViewer->GetView(), Standard_True);
-  }
-}
-
-// =======================================================================
-// function : mouseReleaseEvent
-// purpose :
-// =======================================================================
-void View_Widget::mouseReleaseEvent(QMouseEvent* theEvent)
-{
-  if (myController->ReleaseMouseButton(Graphic3d_Vec2i(theEvent->x(), theEvent->y()),
-                                       keyMouse(theEvent->button()),
-                                       keyFlag(theEvent->modifiers()),
-                                       Standard_False))
-  {
-    myController->FlushViewEvents(myViewer->GetContext(), myViewer->GetView(), Standard_True);
-  }
-}
-
-// =======================================================================
-// function : mouseMoveEvent
-// purpose :
-// =======================================================================
-void View_Widget::mouseMoveEvent(QMouseEvent* theEvent)
-{
-  if (myViewer->GetView().IsNull())
-  {
-    return;
-  }
-
-  myController->UpdateMousePosition(Graphic3d_Vec2i(theEvent->x(), theEvent->y()),
-                                    keyMouse(theEvent->button()),
-                                    keyFlag(theEvent->modifiers()),
-                                    Standard_False);
-
-  myController->FlushViewEvents(myViewer->GetContext(), myViewer->GetView(), Standard_True);
-}
-
-// =======================================================================
-// function : createAction
-// purpose :
-// =======================================================================
-void View_Widget::createAction(const View_ViewActionType theActionId,
-                               const QString&            theIcon,
-                               const QString&            theText,
-                               const char*               theSlot,
-                               const bool                isCheckable,
-                               const QString&            theToolBar,
-                               const QString&            theStatusBar)
-{
-  QAction* anAction = new QAction(QIcon(theIcon), theText, this);
-  anAction->setToolTip(!theToolBar.isEmpty() ? theToolBar : theText);
-  anAction->setStatusTip(!theStatusBar.isEmpty() ? theStatusBar : theText);
-  if (isCheckable)
-    anAction->setCheckable(true);
-  connect(anAction, SIGNAL(triggered()), this, theSlot);
-  myViewActions[theActionId] = anAction;
-}
-
-// =======================================================================
-// function : keyFlag
-// purpose :
-// =======================================================================
-Aspect_VKeyFlags View_Widget::keyFlag(const int theModifierId)
-{
-  switch (theModifierId)
-  {
-    case Qt::NoModifier:
-      return Aspect_VKeyFlags_NONE;
-    case Qt::ShiftModifier:
-      return Aspect_VKeyFlags_SHIFT;
-    case Qt::ControlModifier:
-      return Aspect_VKeyFlags_CTRL;
-    default:
-      break;
-  }
-  return Aspect_VKeyFlags_NONE;
-}
-
-// =======================================================================
-// function : keyMouse
-// purpose :
-// =======================================================================
-Aspect_VKeyMouse View_Widget::keyMouse(const int theButtonId)
-{
-  switch (theButtonId)
-  {
-    case Qt::NoButton:
-      return Aspect_VKeyMouse_NONE;
-    case Qt::LeftButton:
-      return Aspect_VKeyMouse_LeftButton;
-    case Qt::RightButton:
-      return Aspect_VKeyMouse_RightButton;
-    case Qt::MidButton:
-      return Aspect_VKeyMouse_MiddleButton;
-    default:
-      break;
-  }
-  return Aspect_VKeyMouse_NONE;
-}
diff --git a/tools/View/View_Widget.hxx b/tools/View/View_Widget.hxx
deleted file mode 100644
index 9eefc034f2..0000000000
--- a/tools/View/View_Widget.hxx
+++ /dev/null
@@ -1,240 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 View_View_H
-#define View_View_H
-
-#include <AIS_InteractiveContext.hxx>
-#include <AIS_ViewController.hxx>
-#include <Aspect_VKeyFlags.hxx>
-#include <V3d_View.hxx>
-#include <inspector/View_ViewActionType.hxx>
-#include <inspector/View_Viewer.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAction>
-#include <QMap>
-#include <QString>
-#include <QToolButton>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-class View_Viewer;
-
-//! \class View_Widget
-//! \brief It is a Qt control that visualizes content of OCCT 3D view
-//! It creates control and actions of manipulating of this view,
-//! emits signal about selection happening in the view and signal about display mode change and
-//! changes application cursor depending on an active action.
-class View_Widget : public QWidget
-{
-  Q_OBJECT
-
-public:
-  //! Constructor
-  Standard_EXPORT View_Widget(QWidget*                              theParent,
-                              const Handle(AIS_InteractiveContext)& theContext,
-                              const bool                            isFitAllActive);
-
-  //! Destructor
-  virtual ~View_Widget() {}
-
-  //! Returns current viewer
-  View_Viewer* GetViewer() const { return myViewer; }
-
-  //! Sets default size that is used in sizeHint when the widget is firstly show
-  Standard_EXPORT void SetPredefinedSize(int theDefaultWidth, int theDefaultHeight);
-
-  //! Creates V3d view and set Qt control for it
-  Standard_EXPORT void Init();
-
-  //! Returns an action for the given action type
-  //! \param theActionId an action index
-  QAction* ViewAction(const View_ViewActionType theActionId) const
-  {
-    return myViewActions[theActionId];
-  };
-
-  //! Returns an action widget if exist. Implemented for fit all widget.
-  //! \param theActionId an action index
-  QWidget* GetWidget(const View_ViewActionType theActionId) const
-  {
-    return theActionId == View_ViewActionType_FitAllId ? myFitAllAction : 0;
-  };
-
-  //! \returns 0 - AIS_WireFrame, 1 - AIS_Shaded
-  Standard_EXPORT int DisplayMode() const;
-
-  //! Sets display mode: 0 - AIS_WireFrame, 1 - AIS_Shaded
-  Standard_EXPORT void SetDisplayMode(const int theMode);
-
-  //! Sets enable/disable view and tool bar actions depending on the parameter
-  //! \param theIsEnabled boolean value
-  Standard_EXPORT void SetEnabledView(const bool theIsEnabled);
-
-  //! Returns true if action is checked. It processes fit all action only.
-  //! \param theIsEnabled boolean value
-  bool IsActionChecked(const View_ViewActionType theActionId)
-  {
-    return theActionId == View_ViewActionType_FitAllId && myFitAllAction->isChecked();
-  }
-
-  //! Sets checked fit all action. Double click on fit all action set the action checked
-  //! automatically \param theIsEnabled boolean value
-  void SetActionChecked(const View_ViewActionType theActionId, const bool isChecked)
-  {
-    if (theActionId == View_ViewActionType_FitAllId)
-      myFitAllAction->setChecked(isChecked);
-  }
-
-  //! Sets initial camera position
-  //! \param theVx direction on Ox
-  //! \param theVy direction on Oy
-  //! \param theVz direction on Oz
-  void SetInitProj(const Standard_Real theVx, const Standard_Real theVy, const Standard_Real theVz)
-  {
-    myHasInitProj = Standard_True;
-    myInitVx      = theVx;
-    myInitVy      = theVy;
-    myInitVz      = theVz;
-  }
-
-  //! Returns paint engine for the OpenGL viewer. Avoid default execution of Qt Widget.
-  virtual QPaintEngine* paintEngine() const Standard_OVERRIDE { return 0; }
-
-  //! Return the recommended size for view. If default size exists, it returns the default size
-  Standard_EXPORT virtual QSize sizeHint() const Standard_OVERRIDE;
-
-  //! Saves state of widget actions
-  //! \param theParameters a view instance
-  //! \param[out] theItems  properties
-  //! \param thePrefix preference item prefix
-  Standard_EXPORT static void SaveState(View_Widget*            theWidget,
-                                        QMap<QString, QString>& theItems,
-                                        const QString&          thePrefix = QString());
-
-  //! Restores state of widget actions
-  //! \param theParameters a view instance
-  //! \param theKey property key
-  //! \param theValue property value
-  //! \param thePrefix preference item prefix
-  //! \return boolean value whether the property is applied to the tree view
-  Standard_EXPORT static bool RestoreState(View_Widget*   theWidget,
-                                           const QString& theKey,
-                                           const QString& theValue,
-                                           const QString& thePrefix = QString());
-
-signals:
-
-  //! Sends a signal about selection change if the left mouse button is pressed and current action
-  //! does not process it
-  void selectionChanged();
-
-  //! Sends a signal about display mode change
-  void displayModeClicked();
-
-  //! Sends a signal about checked state is changed
-  //! \param theActionId an action index
-  //! \param theState the checked state
-  void checkedStateChanged(const int theActionId, bool theState);
-
-public slots:
-
-  //! Fits all the V3d view and redraw view
-  void OnFitAll() { myViewer->GetView()->FitAll(); }
-
-  //! Updates states of widget actions
-  //!
-  //! - if the state is checked, uncheck all other actions
-  Standard_EXPORT void onCheckedStateChanged(bool isOn);
-
-protected:
-  //! Avoids Qt standard execution of this method, redraw V3d view
-  //! \param an event
-  virtual void paintEvent(QPaintEvent* theEvent) Standard_OVERRIDE;
-
-  //! Avoids Qt standard execution of this method, do mustBeResized for V3d view, Init view if it is
-  //! the first call \param an event
-  virtual void resizeEvent(QResizeEvent* theEvent) Standard_OVERRIDE;
-
-  //! Left, Middle, Right button processing
-  //! \param an event
-  virtual void mousePressEvent(QMouseEvent* theEvent) Standard_OVERRIDE;
-
-  //! Left, Middle, Right button processing
-  //! \param an event
-  virtual void mouseReleaseEvent(QMouseEvent* theEvent) Standard_OVERRIDE;
-
-  //! Left, Middle, Right button processing
-  //! \param an event
-  virtual void mouseMoveEvent(QMouseEvent* theEvent) Standard_OVERRIDE;
-
-protected:
-  //! Creates view actions and fills an internal map
-  void initViewActions();
-
-  //! Empty: template to create popup menu
-  //! \param theX a horizontal position of mouse event
-  //! \param theX a vertical position of mouse event
-  void popup(const Standard_Integer theX, const Standard_Integer theY)
-  {
-    (void)theX;
-    (void)theY;
-  }
-
-private:
-  //! Creates action and stores it in a map of actions
-  //! \param theActionId an identifier of action in internal map
-  //! \param theIcon an icon name and place according to qrc resource file, e.g.
-  //! ":/icons/view_fitall.png" \param theText an action text \param theToolBar a tool bar action
-  //! text \param theStatusBar a status bar action text
-  void createAction(const View_ViewActionType theActionId,
-                    const QString&            theIcon,
-                    const QString&            theText,
-                    const char*               theSlot,
-                    const bool                isCheckable  = false,
-                    const QString&            theToolBar   = QString(),
-                    const QString&            theStatusBar = QString());
-
-private:
-  //! Converts Qt modifier key to Aspect key flag
-  //! \param theModifierId the event modifier
-  static Aspect_VKeyFlags keyFlag(const int theModifierId);
-
-  //! Converts Qt button key to Aspect key mouse
-  //! \param theButtonId the event button
-  static Aspect_VKeyMouse keyMouse(const int theButtonId);
-
-private:
-  View_Viewer*        myViewer;     //!< connector to context, V3d viewer and V3d View
-  AIS_ViewController* myController; //!< controller to process view actions
-
-  QToolButton*
-    myFitAllAction; //!< widget for fit all, processed double click to perform action automatically
-  QMap<View_ViewActionType, QAction*> myViewActions; //!< tool bar view actions
-
-  Standard_Boolean myFirst;         //!< flag to Init view by the first resize/paint call
-  Standard_Integer myDefaultWidth;  //!< default width for the first sizeHint
-  Standard_Integer myDefaultHeight; //!< default height for the first sizeHint
-  Standard_Boolean
-    myViewIsEnabled; //!< flag if the view and tool bar view actions are enabled/disabled
-
-  Standard_Boolean myHasInitProj; //!< is initial camera position defined
-  Standard_Real    myInitVx;      //!< initial camera position on X
-  Standard_Real    myInitVy;      //!< initial camera position on Y
-  Standard_Real    myInitVz;      //!< initial camera position on Z
-};
-
-#endif
diff --git a/tools/View/View_Window.cxx b/tools/View/View_Window.cxx
deleted file mode 100644
index 0171b30cc2..0000000000
--- a/tools/View/View_Window.cxx
+++ /dev/null
@@ -1,335 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#if !defined _WIN32
-  #define QT_CLEAN_NAMESPACE /* avoid definition of INT32 and INT8 */
-#endif
-
-#include <inspector/View_Window.hxx>
-
-#include <inspector/View_Displayer.hxx>
-#include <inspector/View_DisplayPreview.hxx>
-#include <inspector/View_PreviewParameters.hxx>
-#include <inspector/View_ToolBar.hxx>
-#include <inspector/View_Viewer.hxx>
-#include <inspector/View_Widget.hxx>
-
-#include <V3d.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QComboBox>
-#include <QDockWidget>
-#include <QGridLayout>
-#include <QMenu>
-#include <QToolBar>
-#include <Standard_WarningsRestore.hxx>
-
-const int DEFAULT_SPACING = 3;
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-View_Window::View_Window(QWidget*                              theParent,
-                         const Handle(AIS_InteractiveContext)& theContext,
-                         const bool                            isUseKeepView,
-                         const bool                            isFitAllActive)
-    : QWidget(theParent)
-{
-  QGridLayout* aViewLayout = new QGridLayout(this);
-  aViewLayout->setContentsMargins(0, 0, 0, 0);
-  aViewLayout->setSpacing(DEFAULT_SPACING);
-
-  myView        = new View_Widget(this, theContext, isFitAllActive);
-  myViewToolBar = new View_ToolBar(this, isUseKeepView);
-  aViewLayout->addWidget(myViewToolBar->GetControl(), 0, 0, 1, 2);
-  connect(myViewToolBar, SIGNAL(contextChanged()), this, SLOT(onViewSelectorActivated()));
-  connect(myViewToolBar, SIGNAL(actionClicked(int)), this, SLOT(onToolBarActionClicked(int)));
-
-  connect(myView,
-          SIGNAL(checkedStateChanged(int, bool)),
-          this,
-          SLOT(onCheckedStateChanged(int, bool)));
-
-  myView->setContextMenuPolicy(Qt::CustomContextMenu);
-  connect(myView,
-          SIGNAL(customContextMenuRequested(const QPoint&)),
-          this,
-          SLOT(onViewContextMenuRequested(const QPoint&)));
-
-  myActionsToolBar = new QToolBar(this);
-  myActionsToolBar->layout()->setContentsMargins(0, 0, 0, 0);
-  myActionsToolBar->setOrientation(Qt::Vertical);
-
-  myActionsToolBar->addWidget(myView->GetWidget(View_ViewActionType_FitAllId));
-  myActionsToolBar->addAction(myView->ViewAction(View_ViewActionType_DisplayModeId));
-
-  aViewLayout->addWidget(myActionsToolBar, 1, 0);
-  aViewLayout->addWidget(myView, 1, 1);
-  aViewLayout->setRowStretch(1, 1);
-
-  Handle(AIS_InteractiveContext) aContext = myView->GetViewer()->GetContext();
-  myViewToolBar->SetContext(View_ContextType_Own, aContext);
-
-  myDisplayer = new View_Displayer();
-  if (!isUseKeepView)
-    myDisplayer->KeepPresentations(true);
-  myDisplayer->SetFitAllActive(isFitAllActive);
-  connect(myView, SIGNAL(displayModeClicked()), this, SLOT(onDisplayModeChanged()));
-  onViewSelectorActivated();
-}
-
-// =======================================================================
-// function : SetContext
-// purpose :
-// =======================================================================
-void View_Window::SetContext(View_ContextType /*theType*/,
-                             const Handle(AIS_InteractiveContext)& theContext)
-{
-  ViewToolBar()->SetContext(View_ContextType_External, theContext);
-}
-
-// =======================================================================
-// function : SetPredefinedSize
-// purpose :
-// =======================================================================
-void View_Window::SetPredefinedSize(int theDefaultWidth, int theDefaultHeight)
-{
-  myView->SetPredefinedSize(theDefaultWidth, theDefaultHeight);
-}
-
-// =======================================================================
-// function : SetInitProj
-// purpose :
-// =======================================================================
-void View_Window::SetInitProj(const Standard_Real theVx,
-                              const Standard_Real theVy,
-                              const Standard_Real theVz)
-{
-  myView->SetInitProj(theVx, theVy, theVz);
-}
-
-// =======================================================================
-// function : View
-// purpose :
-// =======================================================================
-Handle(V3d_View) View_Window::View() const
-{
-  return myView->GetViewer()->GetView();
-}
-
-// =======================================================================
-// function : SaveState
-// purpose :
-// =======================================================================
-void View_Window::SaveState(View_Window*            theView,
-                            QMap<QString, QString>& theItems,
-                            const QString&          thePrefix)
-{
-  QStringList      aCameraDirection;
-  Standard_Real    aVX, aVY, aVZ;
-  Handle(V3d_View) aView = theView->View();
-  if (aView.IsNull())
-    return;
-
-  aView->Proj(aVX, aVY, aVZ);
-  aCameraDirection << QString::number(aVX) << QString::number(aVY) << QString::number(aVZ);
-
-  theItems[thePrefix + "view_camera_direction"] = aCameraDirection.join(",");
-
-  View_PreviewParameters::SaveState(theView->Displayer()->DisplayPreview()->GetPreviewParameters(),
-                                    theItems,
-                                    "preview_parameters_");
-  View_ToolBar::SaveState(theView->ViewToolBar(), theItems, "view_toolbar_");
-  View_Widget::SaveState(theView->ViewWidget(), theItems, "view_widget_");
-}
-
-// =======================================================================
-// function : RestoreState
-// purpose :
-// =======================================================================
-bool View_Window::RestoreState(View_Window*   theView,
-                               const QString& theKey,
-                               const QString& theValue,
-                               const QString& thePrefix)
-{
-  if (theKey == thePrefix + "view_camera_direction")
-  {
-    QStringList aValues = theValue.split(",");
-    if (aValues.size() == 3)
-    {
-      Standard_Real aVX = aValues.at(0).toDouble();
-      Standard_Real aVY = aValues.at(1).toDouble();
-      Standard_Real aVZ = aValues.at(2).toDouble();
-
-      theView->SetInitProj(aVX, aVY, aVZ);
-    }
-    return true;
-  }
-  else if (View_PreviewParameters::RestoreState(
-             theView->Displayer()->DisplayPreview()->GetPreviewParameters(),
-             theKey,
-             theValue,
-             "preview_parameters_"))
-  {
-    return true;
-  }
-  else if (View_ToolBar::RestoreState(theView->ViewToolBar(), theKey, theValue, "view_toolbar_"))
-  {
-    return true;
-  }
-  else if (View_Widget::RestoreState(theView->ViewWidget(), theKey, theValue, "view_widget_"))
-  {
-    // display mode is restored
-    View_Displayer* aDisplayer = theView->Displayer();
-    if (theView->ViewWidget()->DisplayMode() != aDisplayer->DisplayMode())
-      aDisplayer->SetDisplayMode(theView->ViewWidget()->DisplayMode());
-
-    bool toFitAll = theView->ViewWidget()->IsActionChecked(View_ViewActionType_FitAllId);
-    if (toFitAll != aDisplayer->IsFitAllActive())
-      aDisplayer->SetFitAllActive(toFitAll);
-
-    return true;
-  }
-
-  return false;
-}
-
-// =======================================================================
-// function : onViewSelectorActivated
-// purpose :
-// =======================================================================
-void View_Window::onViewSelectorActivated()
-{
-  View_ContextType aType         = myViewToolBar->CurrentContextType();
-  bool             isViewEnabled = aType == View_ContextType_Own;
-
-  myView->SetEnabledView(isViewEnabled);
-
-  Handle(AIS_InteractiveContext) aContext = myViewToolBar->CurrentContext();
-  myDisplayer->EraseAllPresentations(true);
-  emit eraseAllPerformed();
-
-  myDisplayer->SetContext(aContext);
-}
-
-// =======================================================================
-// function : onToolBarActionClicked
-// purpose :
-// =======================================================================
-void View_Window::onToolBarActionClicked(const int theActionId)
-{
-  switch (theActionId)
-  {
-    case View_ToolActionType_Trihedron: {
-      myDisplayer->DisplayDefaultTrihedron(myViewToolBar->IsActionChecked(theActionId),
-                                           Standard_True);
-      break;
-    }
-    case View_ToolActionType_ViewCube: {
-      myDisplayer->DisplayViewCube(myViewToolBar->IsActionChecked(theActionId), Standard_True);
-      break;
-    }
-
-    case View_ToolActionType_KeepViewId: {
-      myDisplayer->KeepPresentations(myViewToolBar->IsActionChecked(theActionId));
-      break;
-    }
-    case View_ToolActionType_KeepViewOffId: {
-      myDisplayer->KeepPresentations(!myViewToolBar->IsActionChecked(theActionId));
-      break;
-    }
-    case View_ToolActionType_ClearViewId: {
-      myDisplayer->EraseAllPresentations(true);
-      emit eraseAllPerformed();
-      break;
-    }
-    default:
-      break;
-  }
-}
-
-// =======================================================================
-// function : onCheckedStateChanged
-// purpose :
-// =======================================================================
-void View_Window::onCheckedStateChanged(int theActionId, bool theState)
-{
-  if (theActionId == View_ViewActionType_FitAllId)
-    myDisplayer->SetFitAllActive(theState);
-}
-
-// =======================================================================
-// function : onViewContextMenuRequested
-// purpose :
-// =======================================================================
-void View_Window::onViewContextMenuRequested(const QPoint& thePosition)
-{
-  QMenu* aMenu                = new QMenu(this);
-  QMenu* anOrientationSubMenu = aMenu->addMenu("Set View Orientation");
-
-  for (int i = 0; i < (int)V3d_XnegYnegZneg; i++)
-  {
-    V3d_TypeOfOrientation anOrientationType = (V3d_TypeOfOrientation)i;
-
-    QAction* anAction = new QAction(V3d::TypeOfOrientationToString(anOrientationType), this);
-    QObject::connect(anAction, SIGNAL(triggered(bool)), this, SLOT(onSetOrientation()));
-
-    anOrientationSubMenu->addAction(anAction);
-  }
-  aMenu->addMenu(anOrientationSubMenu);
-
-  QPoint aPoint = myView->mapToGlobal(thePosition);
-  aMenu->exec(aPoint);
-}
-
-// =======================================================================
-// function : onSetOrientation
-// purpose :
-// =======================================================================
-void View_Window::onSetOrientation()
-{
-  QAction* anAction = (QAction*)(sender());
-
-  TCollection_AsciiString anOrientationStr(anAction->text().toStdString().c_str());
-
-  V3d_TypeOfOrientation anOrientationType;
-  if (!V3d::TypeOfOrientationFromString(anOrientationStr.ToCString(), anOrientationType))
-    return;
-
-  Handle(V3d_View) aView = myView->GetViewer()->GetView();
-  if (aView.IsNull())
-    return;
-
-  aView->SetProj(anOrientationType);
-  aView->FitAll();
-  aView->Redraw();
-}
-
-// =======================================================================
-// function : onDisplayModeChanged
-// purpose :
-// =======================================================================
-void View_Window::onDisplayModeChanged()
-{
-  int aDisplayMode = myView->DisplayMode();
-  for (NCollection_DataMap<View_PresentationType,
-                           NCollection_Shared<AIS_ListOfInteractive>>::Iterator
-         anIterator(myDisplayer->GetDisplayed());
-       anIterator.More();
-       anIterator.Next())
-    myDisplayer->SetDisplayMode(aDisplayMode, anIterator.Key(), false);
-  myDisplayer->UpdateViewer();
-}
diff --git a/tools/View/View_Window.hxx b/tools/View/View_Window.hxx
deleted file mode 100644
index 91063ff5b9..0000000000
--- a/tools/View/View_Window.hxx
+++ /dev/null
@@ -1,141 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 View_Window_H
-#define View_Window_H
-
-#include <AIS_InteractiveContext.hxx>
-#include <inspector/View_ContextType.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-class View_Displayer;
-class View_ToolBar;
-class View_Widget;
-
-class QToolBar;
-
-//! \class View_Window
-//! \brief It is a widget where in grid layout View widget and tool bars are placed. There are two
-//! tool bars. The first, view actions, tool bar is placed on Vertical, the window tool bar is
-//! placed Horizontally. The second tool bar contains actions of View_ToolBar.
-class View_Window : public QWidget
-{
-  Q_OBJECT
-
-public:
-  //! Constructor
-  Standard_EXPORT View_Window(
-    QWidget*                              theParent,
-    const Handle(AIS_InteractiveContext)& theContext     = Handle(AIS_InteractiveContext)(),
-    const bool                            isUseKeepView  = true,
-    const bool                            isFitAllActive = true);
-
-  //! Destructor
-  virtual ~View_Window() {}
-
-  //! Returns view displayer
-  View_Displayer* Displayer() const { return myDisplayer; }
-
-  //! Returns view widget
-  View_Widget* ViewWidget() const { return myView; }
-
-  //! Returns actions tool bar
-  QToolBar* ActionsToolBar() const { return myActionsToolBar; }
-
-  //! Returns window tool bar
-  View_ToolBar* ViewToolBar() const { return myViewToolBar; }
-
-  //! Sets a new context for context type
-  //! \param theType a type of context, will be selected in the tool bar combo box
-  //! \param theContext an AIS context
-  Standard_EXPORT void SetContext(View_ContextType                      theType,
-                                  const Handle(AIS_InteractiveContext)& theContext);
-
-  //! Sets default size that is used in sizeHint when the widget is firstly show
-  Standard_EXPORT void SetPredefinedSize(int theDefaultWidth, int theDefaultHeight);
-
-  //! Sets initial camera position
-  //! \param theVx direction on Ox
-  //! \param theVy direction on Oy
-  //! \param theVz direction on Oz
-  Standard_EXPORT void SetInitProj(const Standard_Real theVx,
-                                   const Standard_Real theVy,
-                                   const Standard_Real theVz);
-
-  //! Returns an active view
-  Standard_EXPORT Handle(V3d_View) View() const;
-
-  //! Saves state of view window in a container in form: key, value. It saves:
-  //! - visibility of columns,
-  //! - columns width
-  //! \param theTreeView a view instance
-  //! \param[out] theItems  properties
-  //! \param thePrefix preference item prefix
-  Standard_EXPORT static void SaveState(View_Window*            theView,
-                                        QMap<QString, QString>& theItems,
-                                        const QString&          thePrefix = QString());
-
-  //! Restores state of view window by a container
-  //! \param theTreeView a view instance
-  //! \param theKey property key
-  //! \param theValue property value
-  //! \param thePrefix preference item prefix
-  //! \return boolean value whether the property is applied to the tree view
-  Standard_EXPORT static bool RestoreState(View_Window*   theView,
-                                           const QString& theKey,
-                                           const QString& theValue,
-                                           const QString& thePrefix = QString());
-
-signals:
-  //! Signals about calling erasing all presentations in context
-  void eraseAllPerformed();
-
-protected slots:
-
-  //! Processing context change:
-  //! - set an active context in the displayer,
-  //! - erase all displayed presentations from the previous context,
-  //! - sets the current view enabled only if a current context type is View_ContextType_Own
-  void onViewSelectorActivated();
-
-  //! Processing widget action checked state changed: for Fit All action, if checked, displayer do
-  //! FitAll automatically \param theActionId a clicked action \param theState a result checked
-  //! state
-  void onCheckedStateChanged(int theActionId, bool theState);
-
-  //! Processing window tool bar actions
-  void onToolBarActionClicked(const int theActionId);
-
-  //! Shows context menu for view. It contains set view orientation actions.
-  //! \param thePosition a clicked point
-  void onViewContextMenuRequested(const QPoint& thePosition);
-
-  //! Sets the view scene orientation by the text of selected action
-  void onSetOrientation();
-
-  //! Sets selected display mode in the current context
-  void onDisplayModeChanged();
-
-private:
-  View_Displayer* myDisplayer;      //!< displayer
-  View_Widget*    myView;           //!< view widget
-  QToolBar*       myActionsToolBar; //!< actions tool bar
-  View_ToolBar*   myViewToolBar;    //!< window tool bar
-};
-
-#endif
diff --git a/tools/View/icons/keep_view_off.png b/tools/View/icons/keep_view_off.png
deleted file mode 100644
index 7a928d32a2..0000000000
Binary files a/tools/View/icons/keep_view_off.png and /dev/null differ
diff --git a/tools/View/icons/keep_view_on.png b/tools/View/icons/keep_view_on.png
deleted file mode 100644
index 9f3c4c71b0..0000000000
Binary files a/tools/View/icons/keep_view_on.png and /dev/null differ
diff --git a/tools/View/icons/trihedron.png b/tools/View/icons/trihedron.png
deleted file mode 100644
index bc5894dc38..0000000000
Binary files a/tools/View/icons/trihedron.png and /dev/null differ
diff --git a/tools/View/icons/view_clear.png b/tools/View/icons/view_clear.png
deleted file mode 100644
index 22578a9ba3..0000000000
Binary files a/tools/View/icons/view_clear.png and /dev/null differ
diff --git a/tools/View/icons/view_cube.png b/tools/View/icons/view_cube.png
deleted file mode 100644
index d373c4b238..0000000000
Binary files a/tools/View/icons/view_cube.png and /dev/null differ
diff --git a/tools/View/icons/view_dm_shading.png b/tools/View/icons/view_dm_shading.png
deleted file mode 100644
index caa8fc71de..0000000000
Binary files a/tools/View/icons/view_dm_shading.png and /dev/null differ
diff --git a/tools/View/icons/view_dm_wireframe.png b/tools/View/icons/view_dm_wireframe.png
deleted file mode 100644
index fb6f34e449..0000000000
Binary files a/tools/View/icons/view_dm_wireframe.png and /dev/null differ
diff --git a/tools/View/icons/view_fitall.png b/tools/View/icons/view_fitall.png
deleted file mode 100644
index 21d2f423ef..0000000000
Binary files a/tools/View/icons/view_fitall.png and /dev/null differ
diff --git a/tools/ViewControl/FILES b/tools/ViewControl/FILES
deleted file mode 100644
index 337fbc5ee3..0000000000
--- a/tools/ViewControl/FILES
+++ /dev/null
@@ -1,18 +0,0 @@
-ViewControl_ColorSelector.cxx
-ViewControl_ColorSelector.hxx
-ViewControl_EditType.hxx
-ViewControl_MessageDialog.cxx
-ViewControl_MessageDialog.hxx
-ViewControl_PropertyView.cxx
-ViewControl_PropertyView.hxx
-ViewControl_Table.cxx
-ViewControl_Table.hxx
-ViewControl_TableItemDelegate.cxx
-ViewControl_TableItemDelegate.hxx
-ViewControl_TableModel.cxx
-ViewControl_TableModel.hxx
-ViewControl_TableModelValues.cxx
-ViewControl_TableModelValues.hxx
-ViewControl_Tools.cxx
-ViewControl_Tools.hxx
-ViewControl_TreeView.hxx
diff --git a/tools/ViewControl/ViewControl_ColorSelector.cxx b/tools/ViewControl/ViewControl_ColorSelector.cxx
deleted file mode 100644
index 7533b007a6..0000000000
--- a/tools/ViewControl/ViewControl_ColorSelector.cxx
+++ /dev/null
@@ -1,591 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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.
-
-#include <inspector/ViewControl_ColorSelector.hxx>
-#include <inspector/ViewControl_TableItemDelegate.hxx>
-#include <inspector/ViewControl_TableModel.hxx>
-#include <inspector/ViewControl_TableModelValues.hxx>
-#include <inspector/ViewControl_Tools.hxx>
-#include <inspector/TreeModel_Tools.hxx>
-
-#include <Standard_Dump.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractTableModel>
-#include <QDialogButtonBox>
-#include <QHeaderView>
-#include <QGridLayout>
-#include <QItemSelectionModel>
-#include <QPainter>
-#include <QPushButton>
-#include <QTableView>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-//! Kinds of delegate cell in OCCT Color model to present a custom presentation (rect bounded by a
-//! colored frame)
-enum ViewControl_ColorDelegateKind
-{
-  ViewControl_ColorDelegateKind_None,        //!< usual item
-  ViewControl_ColorDelegateKind_Activated,   //!< active item
-  ViewControl_ColorDelegateKind_Highlighted, //!< highlighted item
-  ViewControl_ColorDelegateKind_Selected     //!< selected item
-};
-
-//! Model for a table of parameters: Current Color, Red, Green, Blue, Alpha, OCCT color name
-class ViewControl_ParametersModel : public ViewControl_TableModelValues
-{
-public:
-  ViewControl_ParametersModel(ViewControl_ColorSelector* theSelector)
-      : ViewControl_TableModelValues(),
-        mySelector(theSelector)
-  {
-  }
-
-  virtual ~ViewControl_ParametersModel() {}
-
-  //! Inits model by the parameter color
-  //! \param theColor model active color
-  void SetColor(const Quantity_ColorRGBA& theColor, ViewControl_TableModel* theModel)
-  {
-    myColor = theColor;
-    theModel->EmitLayoutChanged();
-  }
-
-  //! Returns current selected color
-  //! \return color value
-  Quantity_ColorRGBA GetColor() const { return myColor; }
-
-  //! Returns item information(short) for display role.
-  //! \param theIndex a model index
-  //! \param theRole a view role
-  //! \return value interpreted depending on the given role
-  Standard_EXPORT virtual QVariant Data(const int theRow,
-                                        const int theColumn,
-                                        int       theRole = Qt::DisplayRole) const Standard_OVERRIDE
-  {
-    //(void)theRow; (void)theColumn; (void) theRole;
-    if (theRole == Qt::BackgroundRole && theColumn == 1 && theRow == 0)
-      return ViewControl_ColorSelector::ColorToQColor(myColor);
-
-    if (theRole == Qt::ForegroundRole && theColumn == 1 && theRow >= 2 && theRow <= 5)
-      return ViewControl_TableModelValues::EditCellColor();
-
-    if (theRole != Qt::DisplayRole)
-      return QVariant();
-
-    bool isFirstColumn = theColumn == 0;
-    switch (theRow)
-    {
-      case 0:
-        return isFirstColumn ? QVariant("Color") : QVariant();
-      case 1: {
-        if (isFirstColumn)
-          return QVariant("Name");
-        Quantity_NameOfColor aColorName;
-        if (ViewControl_ColorSelector::IsExactColorName(myColor, aColorName))
-          return Quantity_Color::StringName(aColorName);
-      }
-      break;
-      case 2:
-        return isFirstColumn ? QVariant("Red")
-                             : ViewControl_Tools::ToVariant(myColor.GetRGB().Red());
-      case 3:
-        return isFirstColumn ? QVariant("Green")
-                             : ViewControl_Tools::ToVariant(myColor.GetRGB().Green());
-      case 4:
-        return isFirstColumn ? QVariant("Blue")
-                             : ViewControl_Tools::ToVariant(myColor.GetRGB().Blue());
-      case 5:
-        return isFirstColumn ? QVariant("Alpha") : ViewControl_Tools::ToVariant(myColor.Alpha());
-      case 6:
-        return isFirstColumn ? QVariant("Near Name")
-                             : Quantity_Color::StringName(myColor.GetRGB().Name());
-    }
-    return QVariant();
-  }
-
-  //! Sets content of the model index for the given role, it is applied to internal container of
-  //! values \param theRow a model index row \param theColumn a model index column \param theRole a
-  //! view role \return true if the value is changed
-  virtual bool SetData(const int theRow, const int theColumn, const QVariant& theValue, int)
-    Standard_OVERRIDE
-  {
-    if (theColumn != 1 || theRow < 2 || theRow > 5)
-      return false;
-
-    switch (theRow)
-    {
-      case 2:
-      case 3:
-      case 4: {
-        myColor.ChangeRGB().SetValues(
-          theRow == 2 ? ViewControl_Tools::ToShortRealValue(theValue) : myColor.GetRGB().Red(),
-          theRow == 3 ? ViewControl_Tools::ToShortRealValue(theValue) : myColor.GetRGB().Green(),
-          theRow == 4 ? ViewControl_Tools::ToShortRealValue(theValue) : myColor.GetRGB().Blue(),
-          Quantity_TOC_RGB);
-      }
-      break;
-      case 5:
-        myColor.SetAlpha(ViewControl_Tools::ToShortRealValue(theValue));
-        break;
-    }
-    mySelector->ParameterColorChanged();
-    return true;
-  }
-
-  //! Returns number of tree level line items = columns in table view
-  virtual int ColumnCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return 2;
-  }
-
-  //! Returns only one row in table view
-  virtual int RowCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return 7;
-  }
-
-  //! Returns editable flag for color RGB and alpha rows
-  //! \return flags
-  virtual Qt::ItemFlags Flags(const QModelIndex& theIndex) const Standard_OVERRIDE
-  {
-    Qt::ItemFlags aFlags = ViewControl_TableModelValues::Flags(theIndex);
-
-    if (theIndex.column() == 1 && theIndex.row() >= 2 && theIndex.row() <= 5)
-      aFlags = aFlags | Qt::ItemIsEditable;
-
-    return aFlags;
-  }
-
-  //! Returns type of edit control for the model index. By default, it is an empty control
-  //! \param theRow a model index row
-  //! \param theColumn a model index column
-  //! \return edit type
-  virtual ViewControl_EditType GetEditType(const int theRow, const int theColumn) const
-  {
-    if (theColumn == 1 && theRow >= 2 && theRow <= 5)
-      return ViewControl_EditType_Double;
-
-    return ViewControl_EditType_None;
-  }
-
-private:
-  Quantity_ColorRGBA         myColor;
-  ViewControl_ColorSelector* mySelector;
-};
-
-//! Table of parameters: Red, Green, Blue, Alpha, OCCT color name
-class ViewControl_OCCTColorModel : public QAbstractTableModel
-{
-public:
-  ViewControl_OCCTColorModel(QObject* theParent)
-      : QAbstractTableModel(theParent),
-        myCurrentIndexKind(ViewControl_ColorDelegateKind_None)
-  {
-  }
-
-  virtual ~ViewControl_OCCTColorModel() {}
-
-  //! Sets current color, that should have custom presented
-  //! \param theColor current color
-  //! \param theKind presentation kind
-  void SetColor(const Quantity_NameOfColor& theColor, const ViewControl_ColorDelegateKind theKind)
-  {
-    int aColorPosition = (int)theColor;
-    int aRow           = (int)(aColorPosition / columnCount());
-    int aColumn        = aColorPosition - aRow * columnCount();
-    myCurrentIndex     = index(aRow, aColumn);
-    myCurrentIndexKind = theKind;
-
-    emit layoutChanged();
-  }
-
-  //! Returns OCCT name of color if index position does not exceed Quantity_NameOfColor elements
-  //! \param theIndex model index
-  //! \param theNameOfColor [out] OCCT color name
-  //! \return true if the color is found
-  bool GetOCCTColor(const QModelIndex& theIndex, Quantity_NameOfColor& theNameOfColor) const
-  {
-    int aNameOfColorId = theIndex.row() * columnCount() + theIndex.column();
-    if (aNameOfColorId > Quantity_NOC_WHITE)
-      return false;
-    theNameOfColor = (Quantity_NameOfColor)aNameOfColorId;
-    return true;
-  }
-
-  //! Returns index that has custom presentation
-  //! \return model index
-  QModelIndex GetCurrentIndex() const { return myCurrentIndex; }
-
-  //! Returns index color kind that has custom presentation
-  //! \return kind
-  ViewControl_ColorDelegateKind GetCurrentIndexKind() const { return myCurrentIndexKind; }
-
-  //! Returns item information(short) for display role.
-  //! \param theIndex a model index
-  //! \param theRole a view role
-  //! \return value interpreted depending on the given role
-  Standard_EXPORT virtual QVariant data(const QModelIndex& theIndex,
-                                        int theRole = Qt::DisplayRole) const Standard_OVERRIDE
-  {
-    if (theRole != Qt::ToolTipRole) // background is processed in table item delegate
-      return QVariant();
-
-    Quantity_NameOfColor aNameOfColor;
-    if (!GetOCCTColor(theIndex, aNameOfColor))
-      return QVariant();
-
-    if (theRole == Qt::ToolTipRole)
-      return QString("%1").arg(
-        ViewControl_ColorSelector::ColorToString(Quantity_Color(aNameOfColor)));
-    return QVariant();
-  }
-
-  //! Returns number of tree level line items = columns in table view
-  virtual int columnCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return 26;
-  }
-
-  //! Returns only one row in table view
-  virtual int rowCount(const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
-  {
-    (void)theParent;
-    return 20;
-  }
-
-  //! Returns color for the delegate kind
-  //! \param theKind kind
-  //! \return color
-  static QColor GetKindColor(const ViewControl_ColorDelegateKind theKind)
-  {
-    switch (theKind)
-    {
-      case ViewControl_ColorDelegateKind_Activated:
-      case ViewControl_ColorDelegateKind_Highlighted:
-        return Qt::blue;
-      case ViewControl_ColorDelegateKind_Selected:
-        return Qt::black;
-      default:
-        break;
-    }
-    return QColor();
-  }
-
-private:
-  QModelIndex                   myCurrentIndex;     //!< index to be presented through item delegate
-  ViewControl_ColorDelegateKind myCurrentIndexKind; //!< kind of custom item
-};
-
-//! \class DFBrowser_HighlightDelegate
-//! \brief An item delegate to paint in highlight color the cell when the mouse cursor is over it
-class ViewControl_OCCTColorDelegate : public QItemDelegate
-{
-public:
-  //! Constructor
-  ViewControl_OCCTColorDelegate(QObject* theParent = 0)
-      : QItemDelegate(theParent)
-  {
-  }
-
-  //! Destructor
-  virtual ~ViewControl_OCCTColorDelegate() Standard_OVERRIDE {}
-
-  //! Redefine of the parent virtual method to color the cell rectangle in highlight style
-  //! \param thePainter a painter
-  //! \param theOption a paint options
-  //! \param theIndex a view index
-  virtual void paint(QPainter*                   thePainter,
-                     const QStyleOptionViewItem& theOption,
-                     const QModelIndex&          theIndex) const Standard_OVERRIDE
-  {
-    QRect aBaseRect = theOption.rect;
-    int   aNameOfColorId =
-      theIndex.row() * theIndex.model()->columnCount(theIndex) + theIndex.column();
-    Quantity_NameOfColor aNameOfColor = Quantity_NOC_WHITE;
-    if (aNameOfColorId < (int)Quantity_NOC_WHITE)
-      aNameOfColor = (Quantity_NameOfColor)aNameOfColorId;
-
-    Quantity_Color anOCCTColor(aNameOfColor);
-    QColor aQColor = ViewControl_ColorSelector::ColorToQColor(Quantity_ColorRGBA(anOCCTColor));
-    thePainter->fillRect(aBaseRect, aQColor);
-
-    QColor aColor;
-    // highlight cell
-    if (theOption.state & QStyle::State_MouseOver)
-      aColor = ViewControl_OCCTColorModel::GetKindColor(ViewControl_ColorDelegateKind_Highlighted);
-    else
-    {
-      const ViewControl_OCCTColorModel* aTableModel =
-        dynamic_cast<const ViewControl_OCCTColorModel*>(theIndex.model());
-      QModelIndex anIndex = aTableModel->GetCurrentIndex();
-      if (anIndex.isValid() && anIndex.row() == theIndex.row()
-          && anIndex.column() == theIndex.column())
-        aColor = ViewControl_OCCTColorModel::GetKindColor(aTableModel->GetCurrentIndexKind());
-    }
-
-    if (aColor.isValid())
-    {
-      int aRectSize = 2;
-      thePainter->fillRect(
-        QRect(aBaseRect.topLeft(),
-              QPoint(aBaseRect.bottomLeft().x() + aRectSize, aBaseRect.bottomLeft().y())),
-        aColor);
-      thePainter->fillRect(
-        QRect(QPoint(aBaseRect.topRight().x() - aRectSize, aBaseRect.topRight().y()),
-              aBaseRect.bottomRight()),
-        aColor);
-      thePainter->fillRect(
-        QRect(QPoint(aBaseRect.topLeft().x() + aRectSize, aBaseRect.topLeft().y()),
-              QPoint(aBaseRect.topRight().x() - aRectSize, aBaseRect.topRight().y() + aRectSize)),
-        aColor);
-      thePainter->fillRect(
-        QRect(
-          QPoint(aBaseRect.bottomLeft().x() + aRectSize, aBaseRect.bottomLeft().y() - aRectSize),
-          QPoint(aBaseRect.bottomRight().x() - aRectSize, aBaseRect.bottomRight().y())),
-        aColor);
-    }
-  }
-};
-
-//! Color picker class
-class ViewControl_ColorPicker : public QWidget
-{
-public:
-  ViewControl_ColorPicker(QWidget* theParent)
-      : QWidget(theParent)
-  {
-  }
-
-  virtual ~ViewControl_ColorPicker() {}
-};
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-ViewControl_ColorSelector::ViewControl_ColorSelector(QWidget* theParent)
-    : QDialog(theParent)
-{
-  QGridLayout* aLayout = new QGridLayout(this);
-  aLayout->setContentsMargins(0, 0, 0, 0);
-
-  myParameters                        = new QTableView(this);
-  ViewControl_TableModel* aTableModel = new ViewControl_TableModel(myParameters);
-  aTableModel->SetModelValues(new ViewControl_ParametersModel(this));
-  myParameters->setModel(aTableModel);
-
-  ViewControl_TableItemDelegate* anItemDelegate = new ViewControl_TableItemDelegate();
-  anItemDelegate->SetModelValues(aTableModel->ModelValues());
-  myParameters->setItemDelegate(anItemDelegate);
-
-  myParameters->verticalHeader()->setDefaultSectionSize(
-    myParameters->verticalHeader()->minimumSectionSize());
-  myParameters->verticalHeader()->setVisible(false);
-  myParameters->horizontalHeader()->setVisible(false);
-  myParameters->setMinimumHeight(myParameters->verticalHeader()->minimumSectionSize()
-                                   * aTableModel->rowCount()
-                                 + TreeModel_Tools::HeaderSectionMargin());
-
-  QItemSelectionModel* aSelectionModel = new QItemSelectionModel(myParameters->model());
-  myParameters->setSelectionMode(QAbstractItemView::SingleSelection);
-  myParameters->setSelectionModel(aSelectionModel);
-
-  aLayout->addWidget(myParameters, 0, 0);
-
-  myColorPicker = new ViewControl_ColorPicker(this);
-  aLayout->addWidget(myColorPicker, 0, 1);
-
-  myOCCTColors = new QTableView(this);
-  myOCCTColors->setFixedSize(525, 405);
-  myOCCTColors->verticalHeader()->setDefaultSectionSize(20);
-  myOCCTColors->verticalHeader()->setVisible(false);
-  myOCCTColors->horizontalHeader()->setDefaultSectionSize(20);
-  myOCCTColors->horizontalHeader()->setVisible(false);
-  myOCCTColors->setModel(new ViewControl_OCCTColorModel(myOCCTColors));
-
-  myOCCTColors->viewport()->setAttribute(Qt::WA_Hover);
-  myOCCTColors->setItemDelegate(new ViewControl_OCCTColorDelegate(myOCCTColors));
-
-  aSelectionModel = new QItemSelectionModel(myOCCTColors->model());
-  myOCCTColors->setSelectionMode(QAbstractItemView::SingleSelection);
-  myOCCTColors->setSelectionModel(aSelectionModel);
-  connect(aSelectionModel,
-          SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-          this,
-          SLOT(onOCCTColorsTableSelectionChanged(const QItemSelection&, const QItemSelection&)));
-  aLayout->addWidget(myOCCTColors, 1, 0, 1, 2);
-
-  QWidget* aBtnWidget = new QWidget(this);
-  aLayout->addWidget(aBtnWidget, 2, 0, 1, 2);
-
-  QHBoxLayout* aBtnLayout = new QHBoxLayout(aBtnWidget);
-  myOkButton              = new QPushButton("Ok", aBtnWidget);
-  myCancelButton          = new QPushButton("Cancel", aBtnWidget);
-  connect(myOkButton, SIGNAL(clicked()), this, SLOT(accept()));
-  connect(myCancelButton, SIGNAL(clicked()), this, SLOT(reject()));
-  aBtnLayout->addStretch();
-  aBtnLayout->addWidget(myOkButton);
-  aBtnLayout->addWidget(myCancelButton);
-}
-
-// =======================================================================
-// function : SetStreamValue
-// purpose :
-// =======================================================================
-void ViewControl_ColorSelector::SetStreamValue(const QString& theValue)
-{
-  Quantity_ColorRGBA aColor = StringToColorRGBA(theValue);
-  // parameters model
-  ViewControl_TableModel* aTableModel =
-    dynamic_cast<ViewControl_TableModel*>(myParameters->model());
-  ViewControl_ParametersModel* aParametersModel =
-    dynamic_cast<ViewControl_ParametersModel*>(aTableModel->ModelValues());
-  aParametersModel->SetColor(aColor, aTableModel);
-
-  // OCCT color model
-  Quantity_NameOfColor aColorName;
-  bool isExactColorName = ViewControl_ColorSelector::IsExactColorName(aColor, aColorName);
-  ViewControl_OCCTColorModel* anOCCTColorModel =
-    dynamic_cast<ViewControl_OCCTColorModel*>(myOCCTColors->model());
-  anOCCTColorModel->SetColor(aColorName,
-                             isExactColorName ? ViewControl_ColorDelegateKind_Selected
-                                              : ViewControl_ColorDelegateKind_Activated);
-}
-
-// =======================================================================
-// function : GetStreamValue
-// purpose :
-// =======================================================================
-QString ViewControl_ColorSelector::GetStreamValue() const
-{
-  ViewControl_TableModel* aTableModel =
-    dynamic_cast<ViewControl_TableModel*>(myParameters->model());
-  ViewControl_ParametersModel* aParametersModel =
-    dynamic_cast<ViewControl_ParametersModel*>(aTableModel->ModelValues());
-
-  Quantity_ColorRGBA aColor = aParametersModel->GetColor();
-
-  Standard_SStream aStream;
-  aColor.DumpJson(aStream);
-
-  return Standard_Dump::Text(aStream).ToCString();
-}
-
-// =======================================================================
-// function : ParameterColorChanged
-// purpose :
-// =======================================================================
-void ViewControl_ColorSelector::ParameterColorChanged()
-{
-  ViewControl_TableModel* aTableModel =
-    dynamic_cast<ViewControl_TableModel*>(myParameters->model());
-  ViewControl_ParametersModel* aParametersModel =
-    dynamic_cast<ViewControl_ParametersModel*>(aTableModel->ModelValues());
-  Quantity_ColorRGBA aColor = aParametersModel->GetColor();
-
-  // OCCT color model
-  Quantity_NameOfColor aColorName;
-  bool isExactColorName = ViewControl_ColorSelector::IsExactColorName(aColor, aColorName);
-  ViewControl_OCCTColorModel* anOCCTColorModel =
-    dynamic_cast<ViewControl_OCCTColorModel*>(myOCCTColors->model());
-  anOCCTColorModel->SetColor(aColorName,
-                             isExactColorName ? ViewControl_ColorDelegateKind_Selected
-                                              : ViewControl_ColorDelegateKind_Activated);
-}
-
-// =======================================================================
-// function : ColorToString
-// purpose :
-// =======================================================================
-QString ViewControl_ColorSelector::ColorToString(const Quantity_Color& theColor)
-{
-  Standard_Real aRed, aGreen, aBlue;
-  theColor.Values(aRed, aGreen, aBlue, Quantity_TOC_RGB);
-  return QString::number(aRed) + ViewControl_ColorSelector::ColorSeparator()
-         + QString::number(aGreen) + ViewControl_ColorSelector::ColorSeparator()
-         + QString::number(aBlue);
-}
-
-// =======================================================================
-// function : ColorToQColor
-// purpose :
-// =======================================================================
-QColor ViewControl_ColorSelector::ColorToQColor(const Quantity_ColorRGBA& theColor)
-{
-  int aDelta = 255;
-
-  Standard_Real aRed, aGreen, aBlue;
-  theColor.GetRGB().Values(aRed, aGreen, aBlue, Quantity_TOC_RGB);
-
-  return QColor((int)(aRed * aDelta), (int)(aGreen * aDelta), (int)(aBlue * aDelta));
-}
-
-// =======================================================================
-// function : StringToColorRGBA
-// purpose :
-// =======================================================================
-Quantity_ColorRGBA ViewControl_ColorSelector::StringToColorRGBA(const QString& theColor)
-{
-  Quantity_ColorRGBA aColorRGBA;
-  Standard_SStream   aStream;
-  aStream << theColor.toStdString();
-  int aStreamPos = 1;
-  aColorRGBA.InitFromJson(aStream, aStreamPos);
-  return aColorRGBA;
-}
-
-// =======================================================================
-// function : IsExactColorName
-// purpose :
-// =======================================================================
-Standard_Boolean ViewControl_ColorSelector::IsExactColorName(const Quantity_ColorRGBA& theColor,
-                                                             Quantity_NameOfColor&     theColorName)
-{
-  theColorName = theColor.GetRGB().Name();
-  return Quantity_Color(theColorName).IsEqual(theColor.GetRGB());
-}
-
-// =======================================================================
-// function : onOCCTColorsTableSelectionChanged
-// purpose :
-// =======================================================================
-void ViewControl_ColorSelector::onOCCTColorsTableSelectionChanged(const QItemSelection& theSelected,
-                                                                  const QItemSelection&)
-{
-  QModelIndexList aSelectedIndices = theSelected.indexes();
-  if (aSelectedIndices.size() != 1)
-    return;
-
-  ViewControl_OCCTColorModel* anOCCTColorModel =
-    dynamic_cast<ViewControl_OCCTColorModel*>(myOCCTColors->model());
-  Quantity_NameOfColor aNameOfColor;
-  if (!anOCCTColorModel->GetOCCTColor(aSelectedIndices.first(), aNameOfColor))
-    return;
-
-  anOCCTColorModel->SetColor(aNameOfColor, ViewControl_ColorDelegateKind_Selected);
-
-  // parameters model
-  ViewControl_TableModel* aTableModel =
-    dynamic_cast<ViewControl_TableModel*>(myParameters->model());
-  ViewControl_ParametersModel* aParametersModel =
-    dynamic_cast<ViewControl_ParametersModel*>(aTableModel->ModelValues());
-  Quantity_Color anOCCTColor(aNameOfColor);
-  aParametersModel->SetColor(Quantity_ColorRGBA(anOCCTColor), aTableModel);
-}
diff --git a/tools/ViewControl/ViewControl_ColorSelector.hxx b/tools/ViewControl/ViewControl_ColorSelector.hxx
deleted file mode 100644
index b3b7d944e6..0000000000
--- a/tools/ViewControl/ViewControl_ColorSelector.hxx
+++ /dev/null
@@ -1,93 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 ViewControl_ColorSelector_H
-#define ViewControl_ColorSelector_H
-
-#include <Quantity_ColorRGBA.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QColor>
-#include <QDialog>
-#include <QItemSelection>
-#include <QString>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-class ViewControl_ColorPicker;
-class QPushButton;
-class QTableView;
-
-//! \class ViewControl_ColorSelector
-//! \brief Selector of OCCT color
-class ViewControl_ColorSelector : public QDialog
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  ViewControl_ColorSelector(QWidget* theParent);
-
-  //! Destructor
-  virtual ~ViewControl_ColorSelector() Standard_OVERRIDE {}
-
-  //! Inits control by the color value
-  //! \param theColor text color value
-  void SetStreamValue(const QString& theColor);
-
-  //! Returns current selected color value
-  //! \return text color value
-  QString GetStreamValue() const;
-
-  //! Updates OCCT color model by changing color in parameter model
-  void ParameterColorChanged();
-
-  //! Converts color to string value in form: r;g;b
-  //! \param theColor color value
-  //! \return text value
-  static QString ColorToString(const Quantity_Color& theColor);
-
-  //! Converts color to QColor value in form: r;g;b;a
-  //! \param theColor color value
-  //! \return qt color value
-  static QColor ColorToQColor(const Quantity_ColorRGBA& theColor);
-
-  //! Converts string to color value from a form: r;g;b;a
-  //! \param theColor text color value
-  //! \return color value
-  static Quantity_ColorRGBA StringToColorRGBA(const QString& theColor);
-
-  static Standard_Boolean IsExactColorName(const Quantity_ColorRGBA& theColor,
-                                           Quantity_NameOfColor&     theColorName);
-
-private:
-  //! Returns symbol used as a separator of color components in string conversion
-  //! \return symbol value
-  static QString ColorSeparator() { return ";"; }
-
-private slots:
-  //! Slots listen selection change and update the current control content by selection
-  //! \param theSelected container of selected items
-  //! \param theDeselected container of items that become deselected
-  void onOCCTColorsTableSelectionChanged(const QItemSelection& theSelected,
-                                         const QItemSelection& theDeselected);
-
-private:
-  QTableView*              myParameters;   //!< current color parameters (RGB, alpha, color name)
-  ViewControl_ColorPicker* myColorPicker;  //!< color picker
-  QTableView*              myOCCTColors;   //!< OCCT color values
-  QPushButton*             myOkButton;     //!< accept button
-  QPushButton*             myCancelButton; //!< reject button
-};
-#endif
diff --git a/tools/ViewControl/ViewControl_EditType.hxx b/tools/ViewControl/ViewControl_EditType.hxx
deleted file mode 100644
index 4dc5108511..0000000000
--- a/tools/ViewControl/ViewControl_EditType.hxx
+++ /dev/null
@@ -1,31 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 ViewControl_EditType_H
-#define ViewControl_EditType_H
-
-//! Type of context used in a tool library
-enum ViewControl_EditType
-{
-  ViewControl_EditType_None,    //!< View widget is null
-  ViewControl_EditType_Bool,    //!< check box widget
-  ViewControl_EditType_Color,   //!< color selector widget
-  ViewControl_EditType_Double,  //!< line edit widget used double validator
-  ViewControl_EditType_Line,    //!< line edit widget
-  ViewControl_EditType_Spin,    //!< spin box widget
-  ViewControl_EditType_DoAction //!< control to perform the row action
-};
-
-#endif
diff --git a/tools/ViewControl/ViewControl_MessageDialog.cxx b/tools/ViewControl/ViewControl_MessageDialog.cxx
deleted file mode 100644
index b902c25d88..0000000000
--- a/tools/ViewControl/ViewControl_MessageDialog.cxx
+++ /dev/null
@@ -1,131 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/ViewControl_MessageDialog.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QCheckBox>
-#include <QCursor>
-#include <QGridLayout>
-#include <QLabel>
-#include <QPushButton>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-ViewControl_MessageDialog::ViewControl_MessageDialog(QWidget*       theParent,
-                                                     const QString& theInformation,
-                                                     const QString& theQuestion)
-    : QDialog(theParent),
-      myDoNotShowItAgain(false),
-      myPreviousAnswer(false),
-      myInformation(theInformation),
-      myQuestion(theQuestion)
-{
-  setWindowTitle("Information");
-
-  QGridLayout* aLayout       = new QGridLayout(this);
-  QString      anInformation = theInformation;
-  if (!theQuestion.isEmpty())
-    anInformation += QString("\n\n%2").arg(myQuestion);
-  myInformationLabel = new QLabel(anInformation, this);
-  myInformationLabel->setWordWrap(true);
-  aLayout->addWidget(myInformationLabel, 0, 0, 1, 3);
-
-  myDoNotShowCheckBox = new QCheckBox("Don't show this dialog again. Do the same next time.", this);
-  connect(myDoNotShowCheckBox, SIGNAL(toggled(bool)), this, SLOT(onDonNotShowToggled(bool)));
-  aLayout->addWidget(myDoNotShowCheckBox, 1, 0, 1, 3);
-
-  myOkButton     = new QPushButton("Ok", this);
-  myCancelButton = new QPushButton("Cancel", this);
-  connect(myOkButton, SIGNAL(clicked()), this, SLOT(onOkClicked()));
-  connect(myCancelButton, SIGNAL(clicked()), this, SLOT(onCancelClicked()));
-  aLayout->addWidget(myOkButton, 2, 1);
-  aLayout->addWidget(myCancelButton, 2, 2);
-
-  aLayout->setColumnStretch(0, 1);
-
-  myCancelButton->setDefault(true);
-
-  SetInformation(theInformation);
-}
-
-// =======================================================================
-// function : Start
-// purpose :
-// =======================================================================
-void ViewControl_MessageDialog::Start()
-{
-  if (!myDoNotShowItAgain)
-  {
-    QString anInformation = myInformation;
-    if (!myQuestion.isEmpty())
-      anInformation += QString("\n\n%2").arg(myQuestion);
-    myInformationLabel->setText(anInformation);
-    exec();
-    return;
-  }
-
-  if (IsAccepted())
-    return;
-
-  // tool tip information window
-  QWidget*     aWidget = new QWidget(this, Qt::Popup);
-  QVBoxLayout* aLayout = new QVBoxLayout(aWidget);
-  aLayout->addWidget(new QLabel(myInformation, aWidget));
-  aWidget->move(QCursor::pos());
-  aWidget->show();
-}
-
-// =======================================================================
-// function : onOkClicked
-// purpose :
-// =======================================================================
-void ViewControl_MessageDialog::onOkClicked()
-{
-  myPreviousAnswer = true;
-  if (myDoNotShowItAgain)
-    setToolTipInfoMode();
-
-  accept();
-}
-
-// =======================================================================
-// function : onCancelClicked
-// purpose :
-// =======================================================================
-void ViewControl_MessageDialog::onCancelClicked()
-{
-  myPreviousAnswer = false;
-  if (myDoNotShowItAgain)
-    setToolTipInfoMode();
-
-  reject();
-}
-
-// =======================================================================
-// function : setToolTipInfoMode
-// purpose :
-// =======================================================================
-void ViewControl_MessageDialog::setToolTipInfoMode()
-{
-  // setWindowFlags (Qt::FramelessWindowHint);
-  // myDoNotShowCheckBox->setVisible (false);
-  // myOkButton->setVisible (false);
-  // myCancelButton->setVisible (false);
-}
diff --git a/tools/ViewControl/ViewControl_MessageDialog.hxx b/tools/ViewControl/ViewControl_MessageDialog.hxx
deleted file mode 100644
index 212d2238af..0000000000
--- a/tools/ViewControl/ViewControl_MessageDialog.hxx
+++ /dev/null
@@ -1,93 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 ViewControl_MessageDialog_H
-#define ViewControl_MessageDialog_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QCheckBox>
-#include <QDialog>
-#include <QLabel>
-#include <QPushButton>
-#include <QString>
-#include <Standard_WarningsRestore.hxx>
-
-class QWidget;
-
-//! \class ViewControl_MessageDialog
-//! Dialog providing information and a question.
-//! It has a check box to do not the dialog again. In this case the previous value will be used as a
-//! result
-class ViewControl_MessageDialog : public QDialog
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT ViewControl_MessageDialog(QWidget*       theParent,
-                                            const QString& theInformation,
-                                            const QString& theQuestion);
-
-  //! Destructor
-  virtual ~ViewControl_MessageDialog() {}
-
-  //! Fills message dialog with the information
-  //! \param theInformation text
-  void SetInformation(const QString& theInformation) { myInformation = theInformation; }
-
-  //! Returns result of the dialog
-  //! \bool true if the dialog was accepted
-  bool IsAccepted() { return myPreviousAnswer; }
-
-  //! Either perform exec() for the dialog or show tool tip information depending do not be shown
-  //! again state
-  Standard_EXPORT void Start();
-
-private slots:
-
-  //! Processing this checkbox, store result in the dialog field to use by the next dialog start
-  //! \param theState current changed state of the check box
-  void onDonNotShowToggled(bool theState) { myDoNotShowItAgain = theState; }
-
-  //! Processing action button. Stores accept choice, change dialog state if do not show it again is
-  //! on
-  void onOkClicked();
-
-  //! Processing action button. Stores reject choice, change dialog state if do not show it again is
-  //! on
-  void onCancelClicked();
-
-private:
-  //! Changes state of the dialog to message tool tip. Only information control will be shown in the
-  //! dialog
-  void setToolTipInfoMode();
-
-private:
-  bool myDoNotShowItAgain; //!< state if the dialog should not be shown again, the latest result is
-                           //!< used as answer
-  bool myPreviousAnswer;   //!< the previous cached result of the dialog
-
-  QString myInformation; //!< the information text
-  QString myQuestion;    //!< the question text
-
-  QLabel*      myInformationLabel;  //!< message control
-  QCheckBox*   myDoNotShowCheckBox; //!< choice whether the dialog will be shown again
-  QPushButton* myOkButton;          //!< accept button
-  QPushButton* myCancelButton;      //!< reject button
-};
-
-#endif
diff --git a/tools/ViewControl/ViewControl_PropertyView.cxx b/tools/ViewControl/ViewControl_PropertyView.cxx
deleted file mode 100644
index fc8650956a..0000000000
--- a/tools/ViewControl/ViewControl_PropertyView.cxx
+++ /dev/null
@@ -1,220 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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.
-
-#include <inspector/ViewControl_PropertyView.hxx>
-#include <inspector/ViewControl_Table.hxx>
-#include <inspector/ViewControl_TableModel.hxx>
-#include <inspector/ViewControl_TableModelValues.hxx>
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractTableModel>
-#include <QHeaderView>
-#include <QStackedWidget>
-#include <QScrollArea>
-#include <QTableView>
-#include <QVBoxLayout>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-//! Class that uses parameter size as recommended size for the widget.
-//! If the control is placed in a dock widget of the main window, it will not be resized on free
-//! size by resizing the main window.
-class ViewControl_PredefinedSizeWidget : public QWidget
-{
-public:
-  //! Constructor
-  ViewControl_PredefinedSizeWidget(QWidget* theParent, const QSize& theSize)
-      : QWidget(theParent)
-  {
-    SetPredefinedSize(theSize);
-  }
-
-  //! Destructor
-  virtual ~ViewControl_PredefinedSizeWidget() {}
-
-  //! Sets default size of control, that is used by the first control show
-  //! \param theDefaultWidth the width value
-  //! \param theDefaultHeight the height value
-  void SetPredefinedSize(const QSize& theSize) { myDefaultSize = theSize; }
-
-  //! Returns predefined size if both values are positive, otherwise parent size hint
-  virtual QSize sizeHint() const Standard_OVERRIDE
-  {
-    return myDefaultSize.isValid() ? myDefaultSize : QWidget::sizeHint();
-  }
-
-private:
-  QSize myDefaultSize; //!< default size, empty size if it should not be used
-};
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-ViewControl_PropertyView::ViewControl_PropertyView(QWidget*     theParent,
-                                                   const QSize& thePredefinedSize)
-    : QObject(theParent),
-      myOwnSelectionChangeBlocked(false)
-{
-  myMainWidget = new ViewControl_PredefinedSizeWidget(theParent, QSize(1, 100));
-  if (!thePredefinedSize.isEmpty())
-    ((ViewControl_PredefinedSizeWidget*)myMainWidget)->SetPredefinedSize(thePredefinedSize);
-
-  QVBoxLayout* aLayout = new QVBoxLayout(myMainWidget);
-  aLayout->setContentsMargins(0, 0, 0, 0);
-
-  QScrollArea* anArea = new QScrollArea(myMainWidget);
-
-  myAttributesStack = new QStackedWidget(myMainWidget);
-  anArea->setWidget(myAttributesStack);
-  anArea->setWidgetResizable(true);
-  aLayout->addWidget(anArea);
-
-  myEmptyWidget = new QWidget(myAttributesStack);
-  myAttributesStack->addWidget(myEmptyWidget);
-
-  myTableWidget       = new QWidget(myAttributesStack);
-  myTableWidgetLayout = new QVBoxLayout(myTableWidget);
-  myTableWidgetLayout->setContentsMargins(0, 0, 0, 0);
-  myAttributesStack->addWidget(myTableWidget);
-
-  myAttributesStack->setCurrentWidget(myEmptyWidget);
-
-  // create table
-  ViewControl_Table*      aTable = new ViewControl_Table(myMainWidget);
-  ViewControl_TableModel* aModel = new ViewControl_TableModel(aTable->TableView());
-  aTable->SetModel(aModel);
-
-  connect(aTable->TableView()->selectionModel(),
-          SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
-          this,
-          SLOT(onTableSelectionChanged(const QItemSelection&, const QItemSelection&)));
-
-  connect(aModel,
-          SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&, const QVector<int>&)),
-          this,
-          SIGNAL(propertyViewDataChanged()));
-
-  myTableWidgetLayout->addWidget(aTable->GetControl());
-  myTable = aTable;
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void ViewControl_PropertyView::Init(ViewControl_TableModelValues* theTableValues)
-{
-  ViewControl_Table* aTable = Table();
-  if (theTableValues)
-  {
-    aTable->Init(theTableValues);
-    ViewControl_Tools::SetDefaultHeaderSections(aTable->TableView(), Qt::Horizontal);
-  }
-  aTable->SetActive(theTableValues != 0);
-
-  if (theTableValues)
-    myAttributesStack->setCurrentWidget(myTableWidget);
-  else
-    myAttributesStack->setCurrentWidget(myEmptyWidget);
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void ViewControl_PropertyView::Init(QWidget*) {}
-
-// =======================================================================
-// function : ClearActiveTablesSelection
-// purpose :
-// =======================================================================
-void ViewControl_PropertyView::ClearActiveTablesSelection()
-{
-  bool aWasBlocked            = myOwnSelectionChangeBlocked;
-  myOwnSelectionChangeBlocked = true;
-
-  QList<ViewControl_Table*> aTables;
-  ViewControl_Table*        aTable = Table();
-  if (aTable->IsActive())
-    aTable->TableView()->selectionModel()->clearSelection();
-
-  myOwnSelectionChangeBlocked = aWasBlocked;
-}
-
-// =======================================================================
-// function : Clear
-// purpose :
-// =======================================================================
-void ViewControl_PropertyView::Clear()
-{
-  ViewControl_Table* aTable = Table();
-  if (aTable->IsActive())
-  {
-    ViewControl_TableModel* aModel =
-      dynamic_cast<ViewControl_TableModel*>(aTable->TableView()->model());
-    aModel->SetModelValues(0);
-
-    aTable->SetActive(true);
-  }
-  myAttributesStack->setCurrentWidget(myEmptyWidget);
-}
-
-// =======================================================================
-// function : SaveState
-// purpose :
-// =======================================================================
-void ViewControl_PropertyView::SaveState(ViewControl_PropertyView* thePropertyView,
-                                         QMap<QString, QString>&   theItems,
-                                         const QString&            thePrefix)
-{
-  ViewControl_Table* aTable              = thePropertyView->Table();
-  int                aColumnWidth        = aTable->TableView()->columnWidth(0);
-  theItems[thePrefix + "column_width_0"] = QString::number(aColumnWidth);
-}
-
-// =======================================================================
-// function : RestoreState
-// purpose :
-// =======================================================================
-bool ViewControl_PropertyView::RestoreState(ViewControl_PropertyView* thePropertyView,
-                                            const QString&            theKey,
-                                            const QString&            theValue,
-                                            const QString&            thePrefix)
-{
-  if (theKey == thePrefix + "column_width_0")
-  {
-    bool isOk;
-    int  aWidth = theValue.toInt(&isOk);
-    if (isOk)
-      thePropertyView->Table()->TableView()->horizontalHeader()->setDefaultSectionSize(aWidth);
-  }
-  else
-    return false;
-  return true;
-}
-
-// =======================================================================
-// function : onTableSelectionChanged
-// purpose :
-// =======================================================================
-void ViewControl_PropertyView::onTableSelectionChanged(const QItemSelection&, const QItemSelection&)
-{
-  if (myOwnSelectionChangeBlocked)
-    return;
-
-  emit propertyViewSelectionChanged();
-}
diff --git a/tools/ViewControl/ViewControl_PropertyView.hxx b/tools/ViewControl/ViewControl_PropertyView.hxx
deleted file mode 100644
index ba8a4b3b06..0000000000
--- a/tools/ViewControl/ViewControl_PropertyView.hxx
+++ /dev/null
@@ -1,119 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 TreeModel_PropertyView_H
-#define TreeModel_PropertyView_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-
-#include <inspector/ViewControl_Table.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QObject>
-#include <QList>
-#include <Standard_WarningsRestore.hxx>
-
-class QAbstractTableModel;
-class QStackedWidget;
-class QWidget;
-class QVBoxLayout;
-
-class ViewControl_TableModelValues;
-
-//! \class ViewControl_PropertyView
-//! \brief View widget where several tables are visualized in vertical layout.
-class ViewControl_PropertyView : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT ViewControl_PropertyView(QWidget*     theParent,
-                                           const QSize& thePredefinedSize = QSize());
-
-  //! Destructor
-  virtual ~ViewControl_PropertyView() {}
-
-  //! Fills the view content with values. Number of visible tables is size of container,
-  //! Each element of container is values of the corresponded table
-  //! \param theTableValues values
-  Standard_EXPORT void Init(ViewControl_TableModelValues* theTableValues);
-
-  //! Fills the view content with the parameter custom widget.
-  //! \param theWidget control
-  Standard_EXPORT void Init(QWidget* theWidget);
-
-  //! Clears layout of the view and tables models.
-  Standard_EXPORT void Clear();
-
-  //! \return the text edit control
-  QWidget* GetControl() const { return myMainWidget; }
-
-  //! Returns container an active table or NULL
-  ViewControl_Table* Table() { return myTable; }
-
-  //! Clears selection in active tables
-  Standard_EXPORT void ClearActiveTablesSelection();
-
-  //! Saves state of property view in a container in form: key, value. It saves:
-  //! - visibility of columns,
-  //! - columns width
-  //! \param theTreeView a view instance
-  //! \param[out] theItems  properties
-  //! \param thePrefix preference item prefix
-  Standard_EXPORT static void SaveState(ViewControl_PropertyView* theParameters,
-                                        QMap<QString, QString>&   theItems,
-                                        const QString&            thePrefix = QString());
-
-  //! Restores state of property view by a container
-  //! \param theTreeView a view instance
-  //! \param theKey property key
-  //! \param theValue property value
-  //! \param thePrefix preference item prefix
-  //! \return boolean value whether the property is applied to the tree view
-  Standard_EXPORT static bool RestoreState(ViewControl_PropertyView* theParameters,
-                                           const QString&            theKey,
-                                           const QString&            theValue,
-                                           const QString&            thePrefix = QString());
-
-signals:
-  //! Signal about selection change in property view table
-  void propertyViewSelectionChanged();
-
-  //! Signal about data change in property view table
-  void propertyViewDataChanged();
-
-protected slots:
-  //! Emits signal about selection is changed
-  //! \param theSelected container of selected table cells
-  //! \param theDeselected container of selected table cells
-  void onTableSelectionChanged(const QItemSelection& theSelected,
-                               const QItemSelection& theDeselected);
-
-private:
-  bool myOwnSelectionChangeBlocked; //!< blocking emit of selection changed signal
-
-  QWidget* myMainWidget; //!< parent of all controls
-
-  QStackedWidget* myAttributesStack; //!< container of already created panes
-  QWidget*        myEmptyWidget;     //!< an empty widget when nothing is selected in tree view
-
-  QWidget* myTableWidget; //!< widget of tables in vertical layout
-  QVBoxLayout*
-    myTableWidgetLayout;      //!< main view layout where tables or custom widgets are presented
-  ViewControl_Table* myTable; //!< table view, shown only first tables filled in Init method
-  QWidget*           myCustomWidget; //!< custom view widget
-};
-#endif
diff --git a/tools/ViewControl/ViewControl_Table.cxx b/tools/ViewControl/ViewControl_Table.cxx
deleted file mode 100644
index fc3149536f..0000000000
--- a/tools/ViewControl/ViewControl_Table.cxx
+++ /dev/null
@@ -1,178 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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.
-
-#include <inspector/ViewControl_Table.hxx>
-#include <inspector/ViewControl_TableItemDelegate.hxx>
-#include <inspector/ViewControl_TableModel.hxx>
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <inspector/TreeModel_ItemProperties.hxx>
-#include <inspector/TreeModel_ItemStream.hxx>
-#include <inspector/TreeModel_Tools.hxx>
-
-#include <Standard_Dump.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAction>
-#include <QGridLayout>
-#include <QHeaderView>
-#include <QLabel>
-#include <QTableView>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-ViewControl_Table::ViewControl_Table(QWidget* theParent)
-    : QObject(theParent),
-      myIsUseProperty(false)
-{
-  myMainWidget         = new QWidget(theParent);
-  QGridLayout* aLayout = new QGridLayout(myMainWidget);
-  aLayout->setContentsMargins(0, 0, 0, 0);
-
-  myTableView = new QTableView(myMainWidget);
-  myTableView->setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
-
-  myTableView->setItemDelegate(new ViewControl_TableItemDelegate(theParent));
-
-  QHeaderView* aVHeader     = myTableView->verticalHeader();
-  int          aDefCellSize = aVHeader->minimumSectionSize();
-  aVHeader->setDefaultSectionSize(aDefCellSize);
-
-  connect(myTableView->horizontalHeader(),
-          SIGNAL(sectionResized(int, int, int)),
-          this,
-          SLOT(onHeaderResized(int, int, int)));
-
-  aLayout->addWidget(myTableView);
-}
-
-// =======================================================================
-// function : SetModel
-// purpose :
-// =======================================================================
-void ViewControl_Table::SetModel(QAbstractTableModel* theModel)
-{
-  myTableView->setModel(theModel);
-
-  myTableView->setSelectionMode(QAbstractItemView::ExtendedSelection);
-  QItemSelectionModel* aSelectionModel = new QItemSelectionModel(theModel);
-  myTableView->setSelectionModel(aSelectionModel);
-}
-
-// =======================================================================
-// function : Init
-// purpose :
-// =======================================================================
-void ViewControl_Table::Init(ViewControl_TableModelValues* theModelValues)
-{
-  myTableView->selectionModel()->clearSelection();
-
-  ViewControl_TableModel* aModel = dynamic_cast<ViewControl_TableModel*>(myTableView->model());
-  aModel->SetModelValues(theModelValues);
-
-  myTableView->horizontalHeader()->setVisible(theModelValues->IsHeaderVisible(Qt::Horizontal));
-
-  ViewControl_TableItemDelegate* anItemDelegate =
-    dynamic_cast<ViewControl_TableItemDelegate*>(myTableView->itemDelegate());
-  anItemDelegate->SetModelValues(theModelValues);
-
-  myTableView->verticalHeader()->setVisible(theModelValues->IsHeaderVisible(Qt::Vertical));
-  int aSectionSize;
-  if (theModelValues->DefaultSectionSize(Qt::Vertical, aSectionSize))
-  {
-    myTableView->verticalHeader()->setDefaultSectionSize(aSectionSize);
-  }
-  else
-    myTableView->verticalHeader()->setDefaultSectionSize(
-      myTableView->verticalHeader()->minimumSectionSize());
-
-  aModel->EmitLayoutChanged();
-}
-
-// =======================================================================
-// function : SelectedIndices
-// purpose :
-// =======================================================================
-void ViewControl_Table::SelectedIndices(QMap<int, QList<int>>& theSelectedIndices) const
-{
-  QModelIndexList aSelected = myTableView->selectionModel()->selectedIndexes();
-
-  int aRow, aColumn;
-  for (QModelIndexList::const_iterator anIt = aSelected.begin(); anIt != aSelected.end(); anIt++)
-  {
-    QModelIndex anIndex = *anIt;
-    aRow                = anIndex.row();
-    aColumn             = anIndex.column();
-    if (!theSelectedIndices.contains(aRow))
-      theSelectedIndices.insert(aRow, QList<int>());
-    theSelectedIndices[aRow].append(aColumn);
-  }
-}
-
-// =======================================================================
-// function : SeparatorData
-// purpose :
-// =======================================================================
-QString ViewControl_Table::SeparatorData()
-{
-  return ViewControl_Tools::TableSeparator();
-}
-
-// =======================================================================
-// function : SelectedPointers
-// purpose :
-// =======================================================================
-void ViewControl_Table::SelectedPointers(QStringList& thePointers) const
-{
-  QMap<int, QList<int>> aSelectedIndices;
-  SelectedIndices(aSelectedIndices);
-
-  ViewControl_TableModel* aTableModel = dynamic_cast<ViewControl_TableModel*>(TableView()->model());
-  ViewControl_TableModelValues* aTableValues = aTableModel->ModelValues();
-
-  for (QMap<int, QList<int>>::const_iterator aSelIt = aSelectedIndices.begin();
-       aSelIt != aSelectedIndices.end();
-       aSelIt++)
-  {
-    int        aRowId  = aSelIt.key();
-    QList<int> aColIds = aSelIt.value();
-    for (int aColId = 0; aColId < aColIds.size(); aColId++)
-    {
-      int aSelectedColId = aColIds[aColId];
-      if (aSelectedColId != 1)
-        continue;
-
-      QString aData = aTableValues->Data(aRowId, aSelectedColId, Qt::DisplayRole).toString();
-      if (aData.contains(Standard_Dump::GetPointerPrefix().ToCString()))
-        thePointers.append(aData);
-    }
-  }
-}
-
-// =======================================================================
-// function : onHeaderResized
-// purpose :
-// =======================================================================
-void ViewControl_Table::onHeaderResized(int theSectionId, int, int)
-{
-  if (theSectionId != 0)
-    return;
-
-  myTableView->horizontalHeader()->setDefaultSectionSize(myTableView->columnWidth(theSectionId));
-}
diff --git a/tools/ViewControl/ViewControl_Table.hxx b/tools/ViewControl/ViewControl_Table.hxx
deleted file mode 100644
index 93e392b970..0000000000
--- a/tools/ViewControl/ViewControl_Table.hxx
+++ /dev/null
@@ -1,98 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 ViewControl_Table_H
-#define ViewControl_Table_H
-
-#include <NCollection_List.hxx>
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-#include <Standard_Transient.hxx>
-
-#include <inspector/TreeModel_ItemBase.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QItemSelection>
-#include <QObject>
-#include <QTableView>
-#include <Standard_WarningsRestore.hxx>
-
-class ViewControl_TableModelValues;
-
-class QAbstractTableModel;
-class QContextMenuEvent;
-class QWidget;
-
-//! \class ViewControl_Table
-//! \brief View to display table values with possibility to change table columns
-//! if the table has 1D dimension and Horizontal orientation
-class ViewControl_Table : public QObject
-{
-  Q_OBJECT
-public:
-  //! Constructor
-  Standard_EXPORT ViewControl_Table(QWidget* theParent);
-
-  //! Destructor
-  virtual ~ViewControl_Table() {}
-
-  //! Sets model into table view, init selection model by the given model, connect to selection
-  //! change \param theModel table values model
-  void SetModel(QAbstractTableModel* theModel);
-
-  //! Fills table view and table size control by the model
-  //! \param theModel values model
-  Standard_EXPORT void Init(ViewControl_TableModelValues* theModelValues);
-
-  //! true if the table is used in property view and visible
-  bool IsActive() const { return myIsActive; }
-
-  //! Sets the table active and show the table
-  //! \param theState boolean value
-  void SetActive(const bool theState)
-  {
-    myIsActive = theState;
-    TableView()->setVisible(theState);
-  }
-
-  //! \return the text edit control
-  QWidget* GetControl() const { return myMainWidget; }
-
-  //! \return the table view
-  QTableView* TableView() const { return myTableView; }
-
-  //! Returns model indices of the selected cells in table view
-  //! \param[out] theSelectedIndices  a container of indices: row to list of columns
-  Standard_EXPORT void SelectedIndices(QMap<int, QList<int>>& aSelectedIndices) const;
-
-  //! Returns pointers from selected cells
-  Standard_EXPORT void SelectedPointers(QStringList& thePointers) const;
-
-  //! Returns text of separation row in table
-  //! \return string value
-  Standard_EXPORT static QString SeparatorData();
-
-protected slots:
-  void onHeaderResized(int theSectionId, int, int);
-
-private:
-  bool myIsActive; //!< true if the table is used in property view and visible
-
-  QWidget* myMainWidget;    //!< parent of all controls
-  bool     myIsUseProperty; //!< boolean value whether the property control should be shown/hidden
-  QTableView* myTableView;  //!< table view
-};
-#endif
diff --git a/tools/ViewControl/ViewControl_TableItemDelegate.cxx b/tools/ViewControl/ViewControl_TableItemDelegate.cxx
deleted file mode 100644
index 70d70dce02..0000000000
--- a/tools/ViewControl/ViewControl_TableItemDelegate.cxx
+++ /dev/null
@@ -1,220 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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.
-
-#include <inspector/ViewControl_TableItemDelegate.hxx>
-#include <inspector/ViewControl_ColorSelector.hxx>
-#include <inspector/ViewControl_TableModelValues.hxx>
-#include <inspector/ViewControl_EditType.hxx>
-#include <inspector/TreeModel_ItemProperties.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QFont>
-#include <QCheckBox>
-#include <QComboBox>
-#include <QDoubleValidator>
-#include <QLineEdit>
-#include <QPushButton>
-#include <QSpinBox>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : Constructor
-// purpose :
-// =======================================================================
-ViewControl_TableItemDelegate::ViewControl_TableItemDelegate(QObject* theParent)
-    : QItemDelegate(theParent),
-      myModelValues(0)
-{
-}
-
-// =======================================================================
-// function : createEditor
-// purpose :
-// =======================================================================
-QWidget* ViewControl_TableItemDelegate::createEditor(QWidget* theParent,
-                                                     const QStyleOptionViewItem&,
-                                                     const QModelIndex& theIndex) const
-{
-  if (!myModelValues)
-    return 0;
-
-  int                  aRow       = theIndex.row();
-  int                  aColumn    = theIndex.column();
-  ViewControl_EditType anEditType = myModelValues->EditType(aRow, aColumn);
-
-  QWidget* anEditor = createEditorControl(theParent, anEditType);
-  initEditorParameters(anEditor, anEditType, myModelValues, aRow, aColumn);
-  return anEditor;
-}
-
-// =======================================================================
-// function : setEditorData
-// purpose :
-// =======================================================================
-void ViewControl_TableItemDelegate::setEditorData(QWidget*           theEditor,
-                                                  const QModelIndex& theIndex) const
-{
-  if (!myModelValues)
-    return;
-
-  int                  aRow       = theIndex.row();
-  int                  aColumn    = theIndex.column();
-  ViewControl_EditType anEditType = myModelValues->EditType(aRow, aColumn);
-
-  setEditorValue(theEditor, anEditType, theIndex.model()->data(theIndex));
-}
-
-// =======================================================================
-// function : setModelData
-// purpose :
-// =======================================================================
-void ViewControl_TableItemDelegate::setModelData(QWidget*            theEditor,
-                                                 QAbstractItemModel* theModel,
-                                                 const QModelIndex&  theIndex) const
-{
-  if (!myModelValues)
-    return;
-
-  int                  aRow       = theIndex.row();
-  int                  aColumn    = theIndex.column();
-  ViewControl_EditType anEditType = myModelValues->EditType(aRow, aColumn);
-  theModel->setData(theIndex, getEditorValue(theEditor, anEditType));
-}
-
-// =======================================================================
-// function : createEditorControl
-// purpose :
-// =======================================================================
-QWidget* ViewControl_TableItemDelegate::createEditorControl(QWidget*                   theParent,
-                                                            const ViewControl_EditType theEditType)
-{
-  switch (theEditType)
-  {
-    case ViewControl_EditType_None:
-      return 0;
-    case ViewControl_EditType_Bool:
-      return new QComboBox(theParent);
-    case ViewControl_EditType_Color:
-      return new ViewControl_ColorSelector(theParent);
-    case ViewControl_EditType_Double: {
-      QLineEdit* aLineEdit = new QLineEdit(theParent);
-      aLineEdit->setValidator(new QDoubleValidator(theParent));
-      return aLineEdit;
-    }
-    case ViewControl_EditType_Line:
-      return new QLineEdit(theParent);
-    case ViewControl_EditType_Spin: {
-      QSpinBox* aSpinBox = new QSpinBox(theParent);
-      aSpinBox->setRange(IntegerFirst(), IntegerLast());
-      return aSpinBox;
-    }
-    case ViewControl_EditType_DoAction:
-      return new QPushButton(theParent);
-
-    default:
-      return 0;
-  }
-}
-
-// =======================================================================
-// function : initEditorParameters
-// purpose :
-// =======================================================================
-void ViewControl_TableItemDelegate::initEditorParameters(QWidget*                   theEditor,
-                                                         const ViewControl_EditType theEditType,
-                                                         ViewControl_TableModelValues*,
-                                                         const int,
-                                                         const int)
-{
-  switch (theEditType)
-  {
-    case ViewControl_EditType_Bool: {
-      (qobject_cast<QComboBox*>(theEditor))->insertItem(0, "true");
-      (qobject_cast<QComboBox*>(theEditor))->insertItem(1, "false");
-      break;
-    }
-    case ViewControl_EditType_Double: {
-    }
-    default:
-      break;
-  }
-}
-
-// =======================================================================
-// function : setEditorValue
-// purpose :
-// =======================================================================
-void ViewControl_TableItemDelegate::setEditorValue(QWidget*                   theEditor,
-                                                   const ViewControl_EditType theEditType,
-                                                   const QVariant&            theValue) const
-{
-  switch (theEditType)
-  {
-    case ViewControl_EditType_None:
-      break;
-    case ViewControl_EditType_Bool:
-      (qobject_cast<QComboBox*>(theEditor))->setCurrentIndex(theValue.toBool() ? 0 : 1);
-      break;
-    case ViewControl_EditType_Color: {
-      if (!myModelValues)
-        break;
-
-      const TCollection_AsciiString& aStreamValue = myModelValues->Properties()->StreamValue();
-      (qobject_cast<ViewControl_ColorSelector*>(theEditor))
-        ->SetStreamValue(aStreamValue.ToCString());
-      break;
-    }
-    case ViewControl_EditType_Double:
-    case ViewControl_EditType_Line:
-      (qobject_cast<QLineEdit*>(theEditor))->setText(theValue.toString());
-      break;
-    case ViewControl_EditType_Spin:
-      (qobject_cast<QSpinBox*>(theEditor))->setValue(theValue.toInt());
-      break;
-    case ViewControl_EditType_DoAction:
-      (qobject_cast<QPushButton*>(theEditor))->setText("UnSelect");
-      break;
-    default:
-      break;
-  }
-}
-
-// =======================================================================
-// function : getEditorValue
-// purpose :
-// =======================================================================
-
-QVariant ViewControl_TableItemDelegate::getEditorValue(QWidget*                   theEditor,
-                                                       const ViewControl_EditType theEditType)
-{
-  switch (theEditType)
-  {
-    case ViewControl_EditType_None:
-      return QVariant();
-    case ViewControl_EditType_Bool:
-      return (qobject_cast<QComboBox*>(theEditor))->currentIndex() == 0 ? true : false;
-    case ViewControl_EditType_Color:
-      return (qobject_cast<ViewControl_ColorSelector*>(theEditor))->GetStreamValue();
-    case ViewControl_EditType_Double:
-    case ViewControl_EditType_Line:
-      return (qobject_cast<QLineEdit*>(theEditor))->text();
-    case ViewControl_EditType_Spin:
-      return (qobject_cast<QSpinBox*>(theEditor))->value();
-    case ViewControl_EditType_DoAction:
-      return QVariant("Clicked");
-    default:
-      return QVariant();
-  }
-}
diff --git a/tools/ViewControl/ViewControl_TableItemDelegate.hxx b/tools/ViewControl/ViewControl_TableItemDelegate.hxx
deleted file mode 100644
index 26b08bfbc3..0000000000
--- a/tools/ViewControl/ViewControl_TableItemDelegate.hxx
+++ /dev/null
@@ -1,107 +0,0 @@
-// Created on: 2021-04-27
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2021 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 ViewControl_TableItemDelegate_H
-#define ViewControl_TableItemDelegate_H
-
-#include <Standard_Macro.hxx>
-#include <inspector/ViewControl_EditType.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QItemDelegate>
-#include <Standard_WarningsRestore.hxx>
-
-class ViewControl_TableModelValues;
-
-//! \class ViewControl_TableItemDelegate
-//! \brief This is an implementation for table cell editor
-class ViewControl_TableItemDelegate : public QItemDelegate
-{
-public:
-  //! Constructor
-  //! \param theParent parent object
-  Standard_EXPORT ViewControl_TableItemDelegate(QObject* theParent = 0);
-
-  //! Destructor
-  virtual ~ViewControl_TableItemDelegate() Standard_OVERRIDE {}
-
-  //! Sets table model values
-  //! \param theModelValues instance of model values
-  void SetModelValues(ViewControl_TableModelValues* theModelValues)
-  {
-    myModelValues = theModelValues;
-  }
-
-  //! Creates widget editor: spin box, combo box or line edit
-  //! \param theParent parent widget
-  //! \param theOption style option
-  //! \param theIndex index of requested widget
-  virtual QWidget* createEditor(QWidget*                    theParent,
-                                const QStyleOptionViewItem& theOption,
-                                const QModelIndex&          theIndex) const Standard_OVERRIDE;
-
-  //! Sets the data to be displayed and edited by the editor from the data model item specified by
-  //! the model index \param theEditor editor to be filled \param theIndex index of requested
-  //! widget, contains information about model
-  virtual void setEditorData(QWidget*           theEditor,
-                             const QModelIndex& theIndex) const Standard_OVERRIDE;
-
-  //! Gets data from the editor widget and stores it in the specified model at the item index.
-  //! \param theEditor editor to be filled
-  //! \param theModel data model
-  //! \param theIndex index of requested widget, contains information about model
-  virtual void setModelData(QWidget*            theEditor,
-                            QAbstractItemModel* theModel,
-                            const QModelIndex&  theIndex) const Standard_OVERRIDE;
-
-private:
-  //! Creates an editor
-  //! \param theParent parent widget
-  //! \param theEditType edition control type
-  //! \return edit control
-  static QWidget* createEditorControl(QWidget* theParent, const ViewControl_EditType theEditType);
-
-  //! Inits an editor by model values parameters
-  //! \param theEditor editor
-  //! \param theEditType edition control type
-  //! \param theModelValues custom implementation to provide parameters
-  //! \param theRow a model index row
-  //! \param theColumn a model index column
-  //! \return edit control
-  static void initEditorParameters(QWidget*                      theEditor,
-                                   const ViewControl_EditType    theEditType,
-                                   ViewControl_TableModelValues* theModelValues,
-                                   const int                     theRow,
-                                   const int                     theColumn);
-
-  //! Sets editor value
-  //! \param theEditor editor
-  //! \param theEditType editor typ
-  //! \param theValue new value
-  void setEditorValue(QWidget*                   theEditor,
-                      const ViewControl_EditType theEditType,
-                      const QVariant&            theValue) const;
-
-  //! Returns value of spin box editor
-  //! \param theEditor editor
-  //! \param theEditType editor typ
-  //! \return current value
-  static QVariant getEditorValue(QWidget* theEditor, const ViewControl_EditType theEditType);
-
-private:
-  ViewControl_TableModelValues* myModelValues; //!< table model values
-};
-
-#endif
diff --git a/tools/ViewControl/ViewControl_TableModel.cxx b/tools/ViewControl/ViewControl_TableModel.cxx
deleted file mode 100644
index 1151332c2d..0000000000
--- a/tools/ViewControl/ViewControl_TableModel.cxx
+++ /dev/null
@@ -1,84 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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.
-
-#include <inspector/ViewControl_TableModel.hxx>
-
-// =======================================================================
-// function : SetModelValues
-// purpose :
-// =======================================================================
-void ViewControl_TableModel::SetModelValues(ViewControl_TableModelValues* theModelValues)
-{
-  if (myModelValues)
-    delete myModelValues;
-
-  myModelValues = theModelValues;
-}
-
-// =======================================================================
-// function : columnCount
-// purpose :
-// =======================================================================
-int ViewControl_TableModel::columnCount(const QModelIndex& theParent) const
-{
-  if (!myModelValues)
-    return 0;
-
-  return myModelValues->ColumnCount(theParent);
-}
-
-// =======================================================================
-// function : rowCount
-// purpose :
-// =======================================================================
-int ViewControl_TableModel::rowCount(const QModelIndex& theParent) const
-{
-  if (!myModelValues)
-    return 0;
-
-  return myModelValues->RowCount(theParent);
-}
-
-// =======================================================================
-// function : data
-// purpose :
-// =======================================================================
-QVariant ViewControl_TableModel::data(const QModelIndex& theIndex, int theRole) const
-{
-  if (!myModelValues)
-    return QVariant();
-
-  int aRow = theIndex.row(), aColumn = theIndex.column();
-  return myModelValues->Data(aRow, aColumn, theRole);
-}
-
-// =======================================================================
-// function : setData
-// purpose :
-// =======================================================================
-bool ViewControl_TableModel::setData(const QModelIndex& theIndex,
-                                     const QVariant&    theValue,
-                                     int                theRole)
-{
-  if (!myModelValues)
-    return false;
-
-  int  aRow = theIndex.row(), aColumn = theIndex.column();
-  bool aResult = myModelValues->SetData(aRow, aColumn, theValue, theRole);
-
-  emit dataChanged(theIndex, theIndex);
-
-  return aResult;
-}
diff --git a/tools/ViewControl/ViewControl_TableModel.hxx b/tools/ViewControl/ViewControl_TableModel.hxx
deleted file mode 100644
index 8bbb51ed45..0000000000
--- a/tools/ViewControl/ViewControl_TableModel.hxx
+++ /dev/null
@@ -1,111 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 ViewControl_TableModel_H
-#define ViewControl_TableModel_H
-
-#include <Standard.hxx>
-
-#include <inspector/ViewControl_TableModelValues.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractTableModel>
-#include <QList>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-#include <vector>
-
-//! \class ViewControl_TableModel
-//! \brief This is an extension of table model to visualize a container of values
-//! It is possible to:
-//! - set orientation to interpret the values.
-//! - set table view header values.
-//! Items of the view are enabled and selectable.
-class ViewControl_TableModel : public QAbstractTableModel
-{
-public:
-  //! Constructor
-  ViewControl_TableModel(QObject* theParent = 0)
-      : myModelValues(0)
-  {
-    (void)theParent;
-  }
-
-  //! Destructor
-  virtual ~ViewControl_TableModel() {}
-
-  //! Returns instance of interface for access totable values
-  //! \return interface or NULL
-  ViewControl_TableModelValues* ModelValues() const { return myModelValues; }
-
-  //! Sets interface to table values
-  //! \theModelValues instance of values
-  Standard_EXPORT void SetModelValues(ViewControl_TableModelValues* theModelValues);
-
-  //! Emits the layoutChanged signal from outside of this class
-  void EmitLayoutChanged() { emit layoutChanged(); }
-
-  //! Returns number of columns, depending on orientation: myColumnCount or size of values container
-  //! \param theParent an index of the parent item
-  //! \return an integer value
-  Standard_EXPORT virtual int columnCount(const QModelIndex& theParent = QModelIndex()) const
-    Standard_OVERRIDE;
-
-  //! Returns number of rows, depending on orientation: myColumnCount or size of values container
-  //! \param theParent an index of the parent item
-  //! \return an integer value
-  Standard_EXPORT virtual int rowCount(const QModelIndex& theParent = QModelIndex()) const
-    Standard_OVERRIDE;
-
-  //! Returns content of the model index for the given role, it is obtained from internal container
-  //! of values It returns value only for DisplayRole. \param theIndex a model index \param theRole
-  //! a view role \return value interpreted depending on the given role
-  Standard_EXPORT virtual QVariant data(const QModelIndex& theIndex,
-                                        int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
-
-  //! Sets the new value of passed role to tree cell.
-  //! \param[in] index refers to item in tree.
-  //! \param[in] value the new value.
-  //! \param[in] role the role of value.
-  Standard_EXPORT virtual bool setData(const QModelIndex& theIndex,
-                                       const QVariant&    theValue,
-                                       int                theRole) Standard_OVERRIDE;
-
-  //! Returns content of the model index for the given role, it is obtainer from internal container
-  //! of header values It returns value only for DisplayRole. \param theSection an index of value in
-  //! the container \param theIndex a model index \param theRole a view role \return value
-  //! interpreted depending on the given role
-  virtual QVariant headerData(int             theSection,
-                              Qt::Orientation theOrientation,
-                              int             theRole = Qt::DisplayRole) const Standard_OVERRIDE
-  {
-    return myModelValues ? myModelValues->HeaderData(theSection, theOrientation, theRole)
-                         : QVariant();
-  }
-
-  //! Returns flags for the item: ItemIsEnabled | Qt::ItemIsSelectable
-  //! \param theIndex a model index
-  //! \return flags
-  virtual Qt::ItemFlags flags(const QModelIndex& theIndex) const Standard_OVERRIDE
-  {
-    return myModelValues ? myModelValues->Flags(theIndex) : Qt::NoItemFlags;
-  }
-
-private:
-  ViewControl_TableModelValues* myModelValues; //!< interface to table values
-};
-
-#endif
diff --git a/tools/ViewControl/ViewControl_TableModelValues.cxx b/tools/ViewControl/ViewControl_TableModelValues.cxx
deleted file mode 100644
index f9bd786f28..0000000000
--- a/tools/ViewControl/ViewControl_TableModelValues.cxx
+++ /dev/null
@@ -1,152 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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.
-
-#include <inspector/ViewControl_TableModelValues.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QApplication>
-#include <QFont>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : ColumnCount
-// purpose :
-// =======================================================================
-
-int ViewControl_TableModelValues::ColumnCount(const QModelIndex&) const
-{
-  if (!Properties().IsNull())
-    return Properties()->ColumnCount();
-
-  return 0;
-}
-
-// =======================================================================
-// function : RowCount
-// purpose :
-// =======================================================================
-
-int ViewControl_TableModelValues::RowCount(const QModelIndex&) const
-{
-  return !Properties().IsNull() ? Properties()->RowCount() : 0;
-}
-
-// =======================================================================
-// function : Data
-// purpose :
-// =======================================================================
-
-QVariant ViewControl_TableModelValues::Data(const int theRow,
-                                            const int theColumn,
-                                            int       theRole) const
-{
-  if (!Properties().IsNull())
-  {
-    QVariant aValue = Properties()->Data(theRow, theColumn, theRole);
-    if (aValue.isValid())
-      return aValue;
-  }
-
-  if (theRole == Qt::TextAlignmentRole) // for multi-lines text, align it to the top
-    return Qt::AlignTop;
-
-  if ((theRole == Qt::FontRole || theRole == Qt::ForegroundRole)
-      && isItalicHeader(theRow, theColumn))
-  {
-    if (theRole == Qt::FontRole)
-    {
-      QFont aFont = qApp->font();
-      aFont.setItalic(true);
-      return aFont;
-    }
-    else
-      return QColor(Qt::darkGray).darker(150);
-  }
-  return QVariant();
-}
-
-// =======================================================================
-// function : SetData
-// purpose :
-// =======================================================================
-
-bool ViewControl_TableModelValues::SetData(const int       theRow,
-                                           const int       theColumn,
-                                           const QVariant& theValue,
-                                           int)
-{
-  if (!Properties().IsNull())
-    return Properties()->SetData(theRow, theColumn, theValue);
-
-  return false;
-}
-
-// =======================================================================
-// function : HeaderData
-// purpose :
-// =======================================================================
-
-QVariant ViewControl_TableModelValues::HeaderData(int             theSection,
-                                                  Qt::Orientation theOrientation,
-                                                  int             theRole) const
-{
-  if (theRole == Qt::DisplayRole)
-    return myHeaderValues.contains(theOrientation)
-             ? myHeaderValues[theOrientation][theSection].GetName()
-             : QString::number(theSection + 1);
-  else if (theRole == Qt::ForegroundRole)
-    return QColor(Qt::darkGray);
-
-  return QVariant();
-}
-
-// =======================================================================
-// function : EditType
-// purpose :
-// =======================================================================
-ViewControl_EditType ViewControl_TableModelValues::EditType(const int theRow,
-                                                            const int theColumn) const
-{
-  if (!Properties().IsNull())
-  {
-    return Properties()->EditType(theRow, theColumn);
-  }
-  return ViewControl_EditType_None;
-}
-
-// =======================================================================
-// function : isItalicHeader
-// purpose :
-// =======================================================================
-Qt::ItemFlags ViewControl_TableModelValues::Flags(const QModelIndex& theIndex) const
-{
-  if (!Properties().IsNull())
-  {
-    return Properties()->TableFlags(theIndex.row(), theIndex.column());
-  }
-  return theIndex.isValid() ? Qt::ItemIsEnabled | Qt::ItemIsSelectable : Qt::NoItemFlags;
-}
-
-// =======================================================================
-// function : isItalicHeader
-// purpose :
-// =======================================================================
-bool ViewControl_TableModelValues::isItalicHeader(const int theRow, const int theColumn) const
-{
-  Qt::Orientation anOrientation = myOrientation == Qt::Vertical ? Qt::Horizontal : Qt::Vertical;
-  int             aCell         = anOrientation == Qt::Horizontal ? theColumn : theRow;
-
-  return HeaderItem(anOrientation, aCell).IsItalic();
-}
diff --git a/tools/ViewControl/ViewControl_TableModelValues.hxx b/tools/ViewControl/ViewControl_TableModelValues.hxx
deleted file mode 100644
index b4d5724d32..0000000000
--- a/tools/ViewControl/ViewControl_TableModelValues.hxx
+++ /dev/null
@@ -1,180 +0,0 @@
-// Created on: 2020-01-25
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2020 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 ViewControl_TableModelValues_H
-#define ViewControl_TableModelValues_H
-
-#include <Standard.hxx>
-
-#include <inspector/TreeModel_HeaderSection.hxx>
-#include <inspector/TreeModel_ItemProperties.hxx>
-#include <inspector/ViewControl_EditType.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAbstractTableModel>
-#include <QColor>
-#include <QList>
-#include <QModelIndexList>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-//! \class ViewControl_TableModelValues
-//! \brief This is an interface for ViewControl_TableModel to give real values of the model
-//! It should be filled or redefined.
-class ViewControl_TableModelValues
-{
-public:
-  //! Constructor
-  ViewControl_TableModelValues(const Qt::Orientation& theOrientation = Qt::Vertical)
-  {
-    SetOrientation(theOrientation);
-  }
-
-  //! Destructor
-  virtual ~ViewControl_TableModelValues() {}
-
-  //! Returns item table properties builder
-  const Handle(TreeModel_ItemProperties)& Properties() const { return myProperties; }
-
-  //! Sets item table properties builder
-  void SetProperties(const Handle(TreeModel_ItemProperties)& theProperties)
-  {
-    myProperties = theProperties;
-  }
-
-  //! Sets direction of the values applying, whether it should be placed by rows or by columns
-  //! \param theOrientation if horizontal, the values are applied by rows, otherwise by columns
-  void SetOrientation(const Qt::Orientation& theOrientation) { myOrientation = theOrientation; }
-
-  //! Fills the model header values for orientation.
-  //! \param theValues a container of header text values
-  //! \param theOrientation an orientation of header
-  void SetHeaderValues(const QList<TreeModel_HeaderSection>& theValues,
-                       const Qt::Orientation                 theOrientation)
-  {
-    myHeaderValues.insert(theOrientation, theValues);
-  }
-
-  //! Returns whether the column is hidden by default
-  //! \param theColumnId a column index
-  //! \return header section values container
-  TreeModel_HeaderSection HeaderItem(const Qt::Orientation theOrientation,
-                                     const int             theColumnId) const
-  {
-    return myHeaderValues.contains(theOrientation) ? myHeaderValues[theOrientation][theColumnId]
-                                                   : TreeModel_HeaderSection();
-  }
-
-  //! Stores information about table view header visibility
-  //! \param theOrientation an orientation of header
-  //! \param theVisibility if true, header is visible
-  void SetHeaderVisible(const Qt::Orientation theOrientation, const bool theVisibility)
-  {
-    myVisibleHeader.insert(theOrientation, theVisibility);
-  }
-
-  //! Stores information about table view header visibility
-  //! \param theOrientation an orientation of header
-  //! \param theVisibility if true, header is visible
-  bool IsHeaderVisible(const Qt::Orientation theOrientation) const
-  {
-    return myVisibleHeader.contains(theOrientation) ? myVisibleHeader[theOrientation] : true;
-  }
-
-  //! Get default section size if defined
-  //! \param theOrientation an orientation of header
-  //! \param theVisibility if true, header is visible
-  bool DefaultSectionSize(const Qt::Orientation theOrientation, int& theSectionSize)
-  {
-    theSectionSize =
-      myDefaultSectionSize.contains(theOrientation) ? myDefaultSectionSize[theOrientation] : -1;
-    return myDefaultSectionSize.contains(theOrientation);
-  }
-
-  //! Set default section size if defined
-  //! \param theOrientation an orientation of header
-  //! \param theVisibility if true, header is visible
-  void SetDefaultSectionSize(const Qt::Orientation theOrientation, const int& theSectionSize)
-  {
-    myDefaultSectionSize.insert(theOrientation, theSectionSize);
-  }
-
-  //! Returns number of columns, size of header values
-  //! \param theParent an index of the parent item
-  //! \return an integer value
-  Standard_EXPORT virtual int ColumnCount(const QModelIndex& theParent = QModelIndex()) const;
-
-  //! Returns number of rows, depending on orientation: myColumnCount or size of values container
-  //! \param theParent an index of the parent item
-  //! \return an integer value
-  Standard_EXPORT virtual int RowCount(const QModelIndex& theParent = QModelIndex()) const;
-
-  //! Returns content of the model index for the given role, it is obtained from internal container
-  //! of values It returns value only for DisplayRole. \param theRow a model index row \param
-  //! theColumn a model index column \param theRole a view role \return value interpreted depending
-  //! on the given role
-  Standard_EXPORT virtual QVariant Data(const int theRow,
-                                        const int theColumn,
-                                        int       theRole = Qt::DisplayRole) const;
-
-  //! Sets content of the model index for the given role, it is applied to internal container of
-  //! values \param theRow a model index row \param theColumn a model index column \param theRole a
-  //! view role \return true if the value is changed
-  Standard_EXPORT virtual bool SetData(const int       theRow,
-                                       const int       theColumn,
-                                       const QVariant& theValue,
-                                       int             theRole = Qt::DisplayRole);
-
-  //! Returns content of the model index for the given role, it is obtainer from internal container
-  //! of header values It returns value only for DisplayRole. \param theSection an index of value in
-  //! the container \param theIndex a model index \param theRole a view role \return value
-  //! interpreted depending on the given role
-  Standard_EXPORT virtual QVariant HeaderData(int             theSection,
-                                              Qt::Orientation theOrientation,
-                                              int             theRole = Qt::DisplayRole) const;
-
-  //! Returns flags for the item: ItemIsEnabled | Qt::ItemIsSelectable
-  //! \param theIndex a model index
-  //! \return flags
-  Standard_EXPORT virtual Qt::ItemFlags Flags(const QModelIndex& theIndex) const;
-
-  //! Returns type of edit control for the model index. By default, it is an empty control
-  //! \param theRow a model index row
-  //! \param theColumn a model index column
-  //! \return edit type
-  Standard_EXPORT virtual ViewControl_EditType EditType(const int theRow,
-                                                        const int theColumn) const;
-
-  //! Returns default color for editable cell
-  //! \return color value
-  static QColor EditCellColor() { return QColor(Qt::darkBlue); }
-
-protected:
-  //! Returns true if the header item is italic of the parameter index
-  //! \param theRow a model index row
-  //! \param theColumn a model index column
-  //! \param boolean value
-  bool isItalicHeader(const int theRow, const int theColumn) const;
-
-protected:
-  Qt::Orientation myOrientation; //!< orientation how the values should fill the current table view
-  QMap<Qt::Orientation, QList<TreeModel_HeaderSection>> myHeaderValues; //!< table header values
-  QMap<Qt::Orientation, bool> myVisibleHeader;                          //!< table header visibility
-  QMap<Qt::Orientation, int>  myDefaultSectionSize; //!< table section default size
-
-  Handle(TreeModel_ItemProperties) myProperties; //!< item properties
-};
-
-#endif
diff --git a/tools/ViewControl/ViewControl_Tools.cxx b/tools/ViewControl/ViewControl_Tools.cxx
deleted file mode 100644
index 90d849753a..0000000000
--- a/tools/ViewControl/ViewControl_Tools.cxx
+++ /dev/null
@@ -1,153 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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.
-
-#include <inspector/ViewControl_Tools.hxx>
-
-#include <inspector/ViewControl_TableModel.hxx>
-#include <inspector/TreeModel_ModelBase.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QAction>
-#include <QHeaderView>
-#include <QObject>
-#include <QPalette>
-#include <QTableView>
-#include <QWidget>
-#include <Standard_WarningsRestore.hxx>
-
-// =======================================================================
-// function : CreateAction
-// purpose :
-// =======================================================================
-QAction* ViewControl_Tools::CreateAction(const QString& theText,
-                                         const char*    theSlot,
-                                         QObject*       theParent,
-                                         QObject*       theContext)
-{
-  QAction* anAction = new QAction(theText, theParent);
-  QObject::connect(anAction, SIGNAL(triggered(bool)), theContext, theSlot);
-  return anAction;
-}
-
-// =======================================================================
-// function : SetWhiteBackground
-// purpose :
-// =======================================================================
-void ViewControl_Tools::SetWhiteBackground(QWidget* theControl)
-{
-  QPalette aPalette = theControl->palette();
-  aPalette.setColor(QPalette::All, QPalette::Foreground, Qt::white);
-  theControl->setPalette(aPalette);
-}
-
-// =======================================================================
-// function : SetDefaultHeaderSections
-// purpose :
-// =======================================================================
-void ViewControl_Tools::SetDefaultHeaderSections(QTableView*           theTableView,
-                                                 const Qt::Orientation theOrientation)
-{
-  ViewControl_TableModel* aTableModel =
-    dynamic_cast<ViewControl_TableModel*>(theTableView->model());
-  ViewControl_TableModelValues* aModelValues = aTableModel->ModelValues();
-  if (!aModelValues)
-    return;
-
-  int aSectionSize;
-  if (aModelValues->DefaultSectionSize(Qt::Horizontal, aSectionSize))
-    theTableView->horizontalHeader()->setDefaultSectionSize(aSectionSize);
-  else
-  {
-    bool isStretchLastSection = true;
-    for (int aColumnId = 0, aNbColumns = aTableModel->columnCount(); aColumnId < aNbColumns;
-         aColumnId++)
-    {
-      TreeModel_HeaderSection aSection = aModelValues->HeaderItem(theOrientation, aColumnId);
-      if (aSection.IsEmpty())
-        continue;
-
-      int aColumnWidth = aSection.GetWidth();
-      if (aColumnWidth > 0)
-      {
-        theTableView->setColumnWidth(aColumnId, aColumnWidth);
-        if (aColumnId == aNbColumns - 1)
-          isStretchLastSection = false;
-      }
-      theTableView->setColumnHidden(aColumnId, aSection.IsHidden());
-    }
-    if (isStretchLastSection != theTableView->horizontalHeader()->stretchLastSection())
-      theTableView->horizontalHeader()->setStretchLastSection(isStretchLastSection);
-  }
-}
-
-// =======================================================================
-// function : CreateTableModelValues
-// purpose :
-// =======================================================================
-ViewControl_TableModelValues* ViewControl_Tools::CreateTableModelValues(
-  QItemSelectionModel* theSelectionModel)
-{
-  ViewControl_TableModelValues* aTableValues = 0;
-
-  QModelIndex anIndex =
-    TreeModel_ModelBase::SingleSelected(theSelectionModel->selectedIndexes(), 0);
-  TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(anIndex);
-  if (!anItemBase)
-    return aTableValues;
-
-  const Handle(TreeModel_ItemProperties)& anItemProperties = anItemBase->Properties();
-  if (anItemProperties.IsNull())
-    return aTableValues;
-
-  aTableValues = new ViewControl_TableModelValues();
-  aTableValues->SetProperties(anItemProperties);
-  return aTableValues;
-}
-
-// =======================================================================
-// function : ToVariant
-// purpose :
-// =======================================================================
-QVariant ViewControl_Tools::ToVariant(const Standard_ShortReal theValue)
-{
-  return QVariant(QLocale().toString(theValue));
-}
-
-// =======================================================================
-// function : ToVariant
-// purpose :
-// =======================================================================
-QVariant ViewControl_Tools::ToVariant(const Standard_Real theValue)
-{
-  return QVariant(QLocale().toString(theValue));
-}
-
-// =======================================================================
-// function : ToRealValue
-// purpose :
-// =======================================================================
-Standard_ShortReal ViewControl_Tools::ToShortRealValue(const QVariant& theValue)
-{
-  return QLocale().toFloat(theValue.toString());
-}
-
-// =======================================================================
-// function : ToRealValue
-// purpose :
-// =======================================================================
-Standard_Real ViewControl_Tools::ToRealValue(const QVariant& theValue)
-{
-  return QLocale().toDouble(theValue.toString());
-}
diff --git a/tools/ViewControl/ViewControl_Tools.hxx b/tools/ViewControl/ViewControl_Tools.hxx
deleted file mode 100644
index 2271d9c6e7..0000000000
--- a/tools/ViewControl/ViewControl_Tools.hxx
+++ /dev/null
@@ -1,92 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 ViewControl_Tools_H
-#define ViewControl_Tools_H
-
-#include <Standard.hxx>
-#include <Standard_Macro.hxx>
-#include <TCollection_AsciiString.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QString>
-#include <QVariant>
-#include <Standard_WarningsRestore.hxx>
-
-class ViewControl_TableModelValues;
-
-class QAction;
-class QItemSelectionModel;
-class QObject;
-class QTableView;
-class QWidget;
-
-//! \class ViewControl_Tools
-//! \brief The tool that gives auxiliary methods for qt elements manipulation
-class ViewControl_Tools
-{
-public:
-  //! Returns text of separation row in table
-  //! \return string value
-  static QString TableSeparator() { return "---------------------------"; }
-
-  //! Creates an action with the given text connected to the slot
-  //! \param theText an action text value
-  //! \param theSlot a listener of triggered signal of the new action
-  //! \param theParent a parent object
-  //! \param theContext listener of the action toggle
-  //! \return a new action
-  Standard_EXPORT static QAction* CreateAction(const QString& theText,
-                                               const char*    theSlot,
-                                               QObject*       theParent,
-                                               QObject*       theContext);
-
-  //! Change palette of the widget to have white foreground
-  //! \param theControl a widget to be modified
-  Standard_EXPORT static void SetWhiteBackground(QWidget* theControl);
-
-  //! Fills tree view by default sections parameters obtained in view's table model
-  //! \param theTableView table view instance
-  //! \param theOrientation header orientation
-  Standard_EXPORT static void SetDefaultHeaderSections(QTableView*           theTableView,
-                                                       const Qt::Orientation theOrientation);
-
-  //! Create table of values on the current selection
-  //! It is created if the selection contains only one item and it has a property item
-  Standard_EXPORT static ViewControl_TableModelValues* CreateTableModelValues(
-    QItemSelectionModel* theSelectionModel);
-
-  //! Convert real value to string value
-  //! \param theValue a short real value
-  //! \return the string value
-  Standard_EXPORT static QVariant ToVariant(const Standard_ShortReal theValue);
-
-  //! Convert real value to string value
-  //! \param theValue a real value
-  //! \return the string value
-  Standard_EXPORT static QVariant ToVariant(const Standard_Real theValue);
-
-  //! Convert real value to real value
-  //! \param theValue a string value
-  //! \return the real value
-  Standard_EXPORT static Standard_ShortReal ToShortRealValue(const QVariant& theValue);
-
-  //! Convert real value to string value
-  //! \param theValue a string value
-  //! \return the real value
-  Standard_EXPORT static Standard_Real ToRealValue(const QVariant& theValue);
-};
-
-#endif
diff --git a/tools/ViewControl/ViewControl_TreeView.hxx b/tools/ViewControl/ViewControl_TreeView.hxx
deleted file mode 100644
index 668ee44d0a..0000000000
--- a/tools/ViewControl/ViewControl_TreeView.hxx
+++ /dev/null
@@ -1,57 +0,0 @@
-// Created on: 2017-06-16
-// Created by: Natalia ERMOLAEVA
-// Copyright (c) 2017 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 ViewControl_TreeView_H
-#define ViewControl_TreeView_H
-
-#include <Standard.hxx>
-
-#include <Standard_WarningsDisable.hxx>
-#include <QSize>
-#include <QTreeView>
-#include <Standard_WarningsRestore.hxx>
-
-class QWidget;
-
-//! \class ViewControl_TreeView
-//! Extended tree view control with possibility to set predefined size.
-class ViewControl_TreeView : public QTreeView
-{
-public:
-  //! Constructor
-  ViewControl_TreeView(QWidget* theParent)
-      : QTreeView(theParent)
-  {
-  }
-
-  //! Destructor
-  virtual ~ViewControl_TreeView() {}
-
-  //! Sets default size of control, that is used by the first control show
-  //! \param theDefaultWidth the width value
-  //! \param theDefaultHeight the height value
-  void SetPredefinedSize(const QSize& theSize) { myDefaultSize = theSize; }
-
-  //! Returns predefined size if both values are positive, otherwise parent size hint
-  virtual QSize sizeHint() const Standard_OVERRIDE
-  {
-    return myDefaultSize.isValid() ? myDefaultSize : QTreeView::sizeHint();
-  }
-
-private:
-  QSize myDefaultSize; //!< default size, empty size if it should not be used
-};
-
-#endif
diff --git a/tools/adm/cmake/occt_toolkit_prepare_tool.cmake b/tools/adm/cmake/occt_toolkit_prepare_tool.cmake
deleted file mode 100644
index 86e6851fee..0000000000
--- a/tools/adm/cmake/occt_toolkit_prepare_tool.cmake
+++ /dev/null
@@ -1,5 +0,0 @@
-if ("${TARGET_FOLDER}" STREQUAL "")
-  set (CMAKE_SOURCE_DIR "${CMAKE_SOURCE_DIR}/..")
-endif("${TARGET_FOLDER}" STREQUAL "")
-
-OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit_prepare_tool)