1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tools/VInspector/VInspector_ItemSensitiveEntity.cxx
kgv 0ef04197f7 0030687: Visualization - remove redundant interfaces SelectBasics_EntityOwner and SelectBasics_SensitiveEntity
SelectBasics_EntityOwner has been merged into SelectMgr_EntityOwner.
Unused property SelectMgr_EntityOwner::ResetLocation() has been removed.
SelectBasics package has been moved from TKService to TKV3d.

SelectBasics_SensitiveEntity has been merged into Select3D_SensitiveEntity.
2019-05-21 19:42:15 +03:00

196 lines
6.5 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/VInspector_ItemSensitiveEntity.hxx>
#include <AIS_ListOfInteractive.hxx>
#include <Select3D_SensitiveEntity.hxx>
#include <SelectMgr_EntityOwner.hxx>
#include <SelectMgr_Selection.hxx>
#include <SelectMgr_SensitiveEntity.hxx>
#include <Standard_Version.hxx>
#include <StdSelect_BRepOwner.hxx>
#include <TopoDS_Shape.hxx>
#include <inspector/VInspector_ItemContext.hxx>
#include <inspector/VInspector_ItemEntityOwner.hxx>
#include <inspector/VInspector_ItemSelection.hxx>
#include <inspector/VInspector_Tools.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QStringList>
#include <QColor>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetSensitiveEntity
// purpose :
// =======================================================================
Handle(SelectMgr_SensitiveEntity) VInspector_ItemSensitiveEntity::GetSensitiveEntity() const
{
initItem();
return myEntity;
}
// =======================================================================
// function : initValue
// purpose :
// =======================================================================
QVariant VInspector_ItemSensitiveEntity::initValue (int theItemRole) const
{
Handle(SelectMgr_SensitiveEntity) aBase = GetSensitiveEntity();
Handle(SelectMgr_EntityOwner) anOwner = aBase->BaseSensitive()->OwnerId();
switch (theItemRole)
{
case Qt::DisplayRole:
case Qt::EditRole:
case Qt::ToolTipRole:
{
switch (Column())
{
case 0: return myEntity->DynamicType()->Name();
case 2: return VInspector_Tools::GetPointerInfo (GetSensitiveEntity()->BaseSensitive()->OwnerId(), true).ToCString();
case 3:
{
Handle(StdSelect_BRepOwner) BROwnr = Handle(StdSelect_BRepOwner)::DownCast (anOwner);
if (BROwnr.IsNull())
return QVariant();
const TopoDS_Shape& aShape = BROwnr->Shape();
if (aShape.IsNull())
return QVariant();
return VInspector_Tools::GetShapeTypeInfo (aShape.ShapeType()).ToCString();
}
case 13: return
#if OCC_VERSION_HEX <= 0x060901
("none");
#else
myEntity->IsActiveForSelection() ? QString ("true") : QString ("false");
#endif
case 14: return QString::number (GetSensitiveEntity()->BaseSensitive()->SensitivityFactor());
case 15: return QString::number (GetSensitiveEntity()->BaseSensitive()->NbSubElements());
case 16:
{
Handle(StdSelect_BRepOwner) BROwnr = Handle(StdSelect_BRepOwner)::DownCast (anOwner);
if (BROwnr.IsNull())
return QVariant();
return anOwner->Priority();
}
default:
break;
}
break;
}
case Qt::BackgroundRole:
case Qt::ForegroundRole:
{
if (Column() == 2)
{
Handle(AIS_InteractiveContext) aContext = GetContext();
if (!aContext.IsNull())
{
if (VInspector_Tools::IsOwnerSelected(aContext, getEntityOwner()))
return QVariant ((theItemRole == Qt::BackgroundRole) ? QColor (Qt::darkBlue) : QColor (Qt::white));
}
}
VInspector_ItemSelectionPtr aParentItem = itemDynamicCast<VInspector_ItemSelection>(Parent());
if (aParentItem)
return aParentItem->data(QModelIndex(), theItemRole);
break;
}
default:
break;
}
return QVariant();
}
// =======================================================================
// function : createChild
// purpose :
// =======================================================================
TreeModel_ItemBasePtr VInspector_ItemSensitiveEntity::createChild (int theRow, int theColumn)
{
return VInspector_ItemEntityOwner::CreateItem (currentItem(), theRow, theColumn);
}
// =======================================================================
// function : Init
// purpose :
// =======================================================================
void VInspector_ItemSensitiveEntity::Init()
{
VInspector_ItemSelectionPtr aParentItem = itemDynamicCast<VInspector_ItemSelection>(Parent());
Handle(SelectMgr_Selection) aSelection = aParentItem->getSelection();
int aRowId = Row();
int aCurrentId = 0;
#if OCC_VERSION_HEX < 0x070201
for (aSelection->Init(); aSelection->More(); aSelection->Next(), aCurrentId++)
#else
for (NCollection_Vector<Handle(SelectMgr_SensitiveEntity)>::Iterator aSelEntIter (aSelection->Entities()); aSelEntIter.More(); aSelEntIter.Next(), aCurrentId++)
#endif
{
if (aCurrentId != aRowId)
continue;
#if OCC_VERSION_HEX < 0x070201
myEntity = aSelection->Sensitive();
#else
myEntity = aSelEntIter.Value();
#endif
break;
}
TreeModel_ItemBase::Init();
}
// =======================================================================
// function : Reset
// purpose :
// =======================================================================
void VInspector_ItemSensitiveEntity::Reset()
{
// an empty method to don't clear the main label, otherwise the model will be empty
TreeModel_ItemBase::Reset();
myEntity = NULL;
}
// =======================================================================
// function : initItem
// purpose :
// =======================================================================
void VInspector_ItemSensitiveEntity::initItem() const
{
if (IsInitialized())
return;
const_cast<VInspector_ItemSensitiveEntity*>(this)->Init();
}
// =======================================================================
// function : getEntityOwner
// purpose :
// =======================================================================
Handle(SelectMgr_EntityOwner) VInspector_ItemSensitiveEntity::getEntityOwner() const
{
initItem();
Handle(SelectMgr_EntityOwner) anOwner;
const Handle(Select3D_SensitiveEntity)& aBase = myEntity->BaseSensitive();
if (aBase.IsNull())
return anOwner;
return aBase->OwnerId();
}