1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tools/DFBrowserPane/DFBrowserPane_TNamingNaming.cxx
dpasukhi a5a7b3185b Coding - Apply .clang-format formatting #286
Update empty method guards to new style with regex (see PR).
Used clang-format 18.1.8.
New actions to validate code formatting is added.
Update .clang-format with disabling of include sorting.
  It is temporary changes, then include will be sorted.
Apply formatting for /src and /tools folder.
The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
2025-01-26 00:43:57 +00:00

222 lines
8.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 <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);
}
}