1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/src/XCAFDoc/XCAFDoc_ShapeMapTool.cxx
nds d16ecfe28e 0031362: Inspectors - MessageView plugin for message alerts
- append new MessageView plugin to display content of Message_Report;

- correct DumpJson of TDataStd array attributes to print Lower/Upper values;
- correct remove level of Message_Report to store stop time during removing all levels;
- append DumpJson for TFunction, TPrsStd attributes;
- correct DumpJson of XCAFDoc tools due to simplify performance of it;
- move AttributeInfo functionality from XDEDRAW into a static public method of XCAFDoc to call it outside;
- remove obsolete pane classes in DFBrowser plugin, now we may use DumpJSon panel to visualize this content of attributes;
- add new property panel in DFBrowser (synchronized with the same in other plugins);
- add button to switch ON DumpJson in DFBrowser(OFF by default, for better performance), also there is a context menu item in tree view;
- rename in DFBrowser "Property Panel" into "Property Panel (custom)";
- implement ViewControl_ColorSeletor and setting color in TreeModel_ItemProperties. Use only for light in VInspector now;
- implement setting false for all created AIS_Shape presentation to don't modify source TopoDS_Shape;
- remove not use VInspector_CallBack. It's possible using Message_Report/MessageView to track commands way;
- remove History panel in VInspector as not used, MessageView will be better solution for this;
- implement item and actions in VInspector for setting Lights in the view.
2021-05-18 19:23:10 +03:00

169 lines
5.1 KiB
C++

// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <XCAFDoc_ShapeMapTool.hxx>
#include <Standard_GUID.hxx>
#include <Standard_Type.hxx>
#include <TDF_Attribute.hxx>
#include <TDF_Label.hxx>
#include <TDF_RelocationTable.hxx>
#include <TopoDS_Iterator.hxx>
#include <TopoDS_Shape.hxx>
IMPLEMENT_STANDARD_RTTIEXT(XCAFDoc_ShapeMapTool,TDF_Attribute)
#define AUTONAMING // automatically set names for labels
// attribute methods //////////////////////////////////////////////////
//=======================================================================
//function : GetID
//purpose :
//=======================================================================
const Standard_GUID& XCAFDoc_ShapeMapTool::GetID()
{
static Standard_GUID ShapeToolID ("3B913F4D-4A82-44ef-A0BF-9E01E9FF317A");
return ShapeToolID;
}
//=======================================================================
//function : Set
//purpose :
//=======================================================================
Handle(XCAFDoc_ShapeMapTool) XCAFDoc_ShapeMapTool::Set(const TDF_Label& L)
{
Handle(XCAFDoc_ShapeMapTool) A;
if (!L.FindAttribute (XCAFDoc_ShapeMapTool::GetID(), A)) {
A = new XCAFDoc_ShapeMapTool ();
L.AddAttribute(A);
}
return A;
}
//=======================================================================
//function : ID
//purpose :
//=======================================================================
const Standard_GUID& XCAFDoc_ShapeMapTool::ID() const
{
return GetID();
}
//=======================================================================
//function : Restore
//purpose :
//=======================================================================
void XCAFDoc_ShapeMapTool::Restore(const Handle(TDF_Attribute)& /*with*/)
{
}
//=======================================================================
//function : NewEmpty
//purpose :
//=======================================================================
Handle(TDF_Attribute) XCAFDoc_ShapeMapTool::NewEmpty() const
{
return new XCAFDoc_ShapeMapTool;
}
//=======================================================================
//function : Paste
//purpose :
//=======================================================================
void XCAFDoc_ShapeMapTool::Paste (const Handle(TDF_Attribute)& /*into*/,
const Handle(TDF_RelocationTable)& /*RT*/) const
{
}
//=======================================================================
//function : Constructor
//purpose :
//=======================================================================
XCAFDoc_ShapeMapTool::XCAFDoc_ShapeMapTool()
{
}
//=======================================================================
//function : IsSubShape
//purpose :
//=======================================================================
Standard_Boolean XCAFDoc_ShapeMapTool::IsSubShape(const TopoDS_Shape& sub) const
{
return myMap.Contains(sub);
}
//=======================================================================
//function : SetShape
//purpose : auxiliary
//=======================================================================
static void AddSubShape(const TopoDS_Shape& S,
TopTools_IndexedMapOfShape& myMap)
{
myMap.Add(S);
for ( TopoDS_Iterator it(S); it.More(); it.Next() )
AddSubShape(it.Value(),myMap);
}
//=======================================================================
//function : SetShape
//purpose :
//=======================================================================
void XCAFDoc_ShapeMapTool::SetShape(const TopoDS_Shape& S)
{
myMap.Clear();
for ( TopoDS_Iterator it(S); it.More(); it.Next() )
AddSubShape(it.Value(),myMap);
}
//=======================================================================
//function : GetMap
//purpose :
//=======================================================================
const TopTools_IndexedMapOfShape& XCAFDoc_ShapeMapTool::GetMap() const
{
return myMap;
}
//=======================================================================
//function : DumpJson
//purpose :
//=======================================================================
void XCAFDoc_ShapeMapTool::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
{
OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
OCCT_DUMP_BASE_CLASS (theOStream, theDepth, TDF_Attribute)
for (TopTools_IndexedMapOfShape::Iterator aMapIt (myMap); aMapIt.More(); aMapIt.Next())
{
const Handle(TopoDS_TShape)& aShape = aMapIt.Value().TShape();
OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, aShape)
}
}