mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- Convert package creation. It is used to prepare some auxiliary presentations/methods to prepare variables for inspector based on occt classes. - ViewControl package improvement: Classes for property view, table, table model are implemented to visualize view of properties. This view is filled by selection in tree if the selected object has implemented DumpJson functionality. - TreeModel package improvements: Method InitColumn is implemented in TreeModel_TreeModel to fill default columns in base model. The default columns are: Name, Visibility, Rows. Additional columns should be added in successors. Container of root items is moved into the base class - View package imrovements: Store preferences: display mode, fit all checked state and type of external context View_DisplayPreview is added to process preview for selected in tree view objects hide actions Clear, Multi, Single by default (as selection in tree view or Visibility state of item define which presentations should be displayed or erased) - ShapeView plugin improvements: Property View content based on DumpJson (columns in tree view for properties are removed), Properties for TopoDS_Shape are displayed Explode shape action in tree view to see content of shape by selected shape type. Type of displayed shapes is only preview, it is not used in export action. Export shape into BREP. The previous implementation about BREP files in some directory and default view is removed. - VInspector plugin imrovements: Property View content based on DumpJson (columns in tree view for properties are removed), Properties for AIS_InteractiveContext and AIS_InteractiveObject are displayed obsolete classes to provide properties are removed. - DFBrowser plugin improvements: Property View content based on DumpJson is not used yet. But there is the USE_DUMPJSON macro. It's switch off by default. If switch ON, it creates a Property View filled with DumpJson. It's a way of DFBrowser moving on this property view. Init uses static variable CDF_Session::CurrentSession()->CurrentApplication to fill plugin if application in plugin is not set but OCAF application exists - OCC_VERSION_HEX variable used for previous OCCT versions support (before 6.9.0 or 7.2.0) is removed
233 lines
7.6 KiB
C++
233 lines
7.6 KiB
C++
// 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 <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();
|
|
|
|
const Standard_SStream& aStream = Item()->Stream();
|
|
|
|
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)
|
|
{
|
|
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)));
|
|
}
|
|
}
|
|
}
|
|
|
|
// =======================================================================
|
|
// 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;
|
|
|
|
return ViewControl_EditType_Line;
|
|
}
|
|
|
|
// =======================================================================
|
|
// function : SetData
|
|
// purpose :
|
|
// =======================================================================
|
|
bool TreeModel_ItemProperties::SetData (const int /*theRow*/, const int theColumn, const QVariant& /*theValue*/, int)
|
|
{
|
|
if (theColumn == 0)
|
|
return false;
|
|
return false;
|
|
}
|
|
|
|
// =======================================================================
|
|
// function : Presentations
|
|
// purpose :
|
|
// =======================================================================
|
|
void TreeModel_ItemProperties::Presentations (NCollection_List<Handle(Standard_Transient)>& thePresentations)
|
|
{
|
|
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();
|
|
}
|