1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/tools/DFBrowserPaneXDE/DFBrowserPaneXDE_AttributePaneCreator.cxx
nds 14bbbdcbc1 0027398: Integrate Qt Browser Widget to Open CASCADE Technology
The following implementation has been made:
- CMake procedure is extended to compile Qt tools. This is optional and is handled by USE_QT_TOOLS option(OFF by default)
- It is possible to build Qt tools using Qt5 or Qt4, it is settled with USE_QT4 option.
- Sample of DFBrowser tool is available in samples/tools/TInspectorEXE. It is build with tools, executable is placed in binaries. To start the sample, use dfbrowser.bat command.
- DFBrowser tool may be started from DRAW
2017-07-28 15:35:16 +03:00

141 lines
6.2 KiB
C++

// 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 <DFBrowserPaneXDE_AttributePaneCreator.hxx>
#include <DFBrowserPaneXDE_AttributeCommonPane.hxx>
#include <DFBrowserPaneXDE_XCAFDocArea.hxx>
#include <DFBrowserPaneXDE_XCAFDocCentroid.hxx>
#include <DFBrowserPaneXDE_XCAFDocColor.hxx>
#include <DFBrowserPaneXDE_XCAFDocColorTool.hxx>
#include <DFBrowserPaneXDE_XCAFDocDatum.hxx>
#include <DFBrowserPaneXDE_XCAFDocDimension.hxx>
#include <DFBrowserPaneXDE_XCAFDocDimTol.hxx>
#include <DFBrowserPaneXDE_XCAFDocDimTolTool.hxx>
#include <DFBrowserPaneXDE_XCAFDocDocumentTool.hxx>
#include <DFBrowserPaneXDE_XCAFDocGeomTolerance.hxx>
#include <DFBrowserPaneXDE_XCAFDocGraphNode.hxx>
#include <DFBrowserPaneXDE_XCAFDocLayerTool.hxx>
#include <DFBrowserPaneXDE_XCAFDocLocation.hxx>
#include <DFBrowserPaneXDE_XCAFDocMaterial.hxx>
#include <DFBrowserPaneXDE_XCAFDocMaterialTool.hxx>
#include <DFBrowserPaneXDE_XCAFDocShapeMapTool.hxx>
#include <DFBrowserPaneXDE_XCAFDocShapeTool.hxx>
#include <Standard_Version.hxx>
#include <XCAFDoc_Area.hxx>
#include <XCAFDoc_Centroid.hxx>
#include <XCAFDoc_Color.hxx>
#include <XCAFDoc_ColorTool.hxx>
#include <XCAFDoc_Datum.hxx>
#if OCC_VERSION_HEX > 0x060901
#include <XCAFDoc_Dimension.hxx>
#include <XCAFDoc_GeomTolerance.hxx>
#endif
#include <XCAFDoc_DimTol.hxx>
#include <XCAFDoc_DimTolTool.hxx>
#include <XCAFDoc_DocumentTool.hxx>
#include <XCAFDoc_GraphNode.hxx>
#include <XCAFDoc_LayerTool.hxx>
#include <XCAFDoc_Location.hxx>
#include <XCAFDoc_Material.hxx>
#include <XCAFDoc_MaterialTool.hxx>
#include <XCAFDoc_ShapeMapTool.hxx>
#include <XCAFDoc_ShapeTool.hxx>
#include <XCAFDoc_ShapeMapTool.hxx>
//#define REQUIRE_OCAF_REVIEW:2 : start
// =======================================================================
// function : Constructor
// purpose :
// =======================================================================
DFBrowserPaneXDE_AttributePaneCreator::DFBrowserPaneXDE_AttributePaneCreator(
DFBrowserPane_AttributePaneCreatorAPI* theStandardPaneCreator)
: myStandardPaneCreator (theStandardPaneCreator)
{
}
// =======================================================================
// function : CreateAttributePane
// purpose :
// =======================================================================
DFBrowserPane_AttributePaneAPI* DFBrowserPaneXDE_AttributePaneCreator::CreateAttributePane (const Standard_CString& theAttributeName)
{
DFBrowserPane_AttributePaneAPI* aPane = 0;
if (DFBrowserPaneXDE_AttributeCommonPane::ProcessAttribute (theAttributeName))
{
DFBrowserPane_AttributePaneAPI* aStandardPane = myStandardPaneCreator->CreateAttributePane (theAttributeName);
if (!aStandardPane)
aStandardPane = createXDEPane (theAttributeName);
aPane = new DFBrowserPaneXDE_AttributeCommonPane (aStandardPane);
}
else
aPane = createXDEPane (theAttributeName);
return aPane;
}
// =======================================================================
// function : createXDEPane
// purpose :
// =======================================================================
DFBrowserPane_AttributePaneAPI* DFBrowserPaneXDE_AttributePaneCreator::createXDEPane (const Standard_CString& theAttributeName)
{
DFBrowserPane_AttributePaneAPI* aPane = 0;
if (theAttributeName == STANDARD_TYPE (XCAFDoc_ShapeMapTool)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocShapeMapTool();
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_Area)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocArea();
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_Centroid)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocCentroid();
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_Color)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocColor();
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_ColorTool)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocColorTool();
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_Datum)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocDatum();
#if OCC_VERSION_HEX > 0x060901
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_Dimension)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocDimension();
#endif
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_DimTol)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocDimTol();
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_DimTolTool)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocDimTolTool();
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_DocumentTool)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocDocumentTool();
#if OCC_VERSION_HEX > 0x060901
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_GeomTolerance)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocGeomTolerance();
#endif
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_GraphNode)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocGraphNode();
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_LayerTool)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocLayerTool();
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_Location)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocLocation();
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_Material)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocMaterial();
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_MaterialTool)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocMaterialTool();
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_ShapeMapTool)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocShapeMapTool();
else if (theAttributeName == STANDARD_TYPE (XCAFDoc_ShapeTool)->Name())
aPane = new DFBrowserPaneXDE_XCAFDocShapeTool();
return aPane;
}
//#define REQUIRE_OCAF_REVIEW:2 : end