mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
- 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.
209 lines
8.1 KiB
C++
209 lines
8.1 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 <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);
|
|
}
|
|
}
|