mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-05 11:24:17 +03:00
AIS_InteractiveContext - removed the following unused properties: - PreSelectionColor(), DefaultColor(), WasCurrentTouched(), ZDetection(). AIS_InteractiveObject - removed unused property SelectionPriority(). Prs3d_Drawer - removed properties HighlightStyle() and SelectionStyle(). Graphic3d_HighlightStyle has been superseded by Prs3d_Drawer inheriting from new class Graphic3d_PresentationAttributes. Graphic3d_PresentationAttributes (as Graphic3d_HighlightStyle replacement) has been extended with new properties: - ZLayer() defining Z-Layer for highlighting presentation. - DisplayMode() defining display mode for highlighting. StdSelect_BRepSelectionTool methods have been corrected to take SelectMgr_EntityOwner instead of StdSelect_BRepOwner. StdSelect_Shape - duplicated field myDrawer has been dropped. AIS_InteractiveObject - myDrawer->Color() is now used instead of myOwnColor, myDrawer->Transparency() instead of myTransparency and myDrawer->ZLayer() instead of myZLayer. PrsMgr_PresentationManager::Unhighlight() now unhighlight all modes. The method taking Mode as argument has been marked deprecated. New enumeration Prs3d_TypeOfHighlight has been introduced defining different highlight types. AIS_InteractiveObject::HighlightStyle() now takes enumeration argument and defines different styles for Global and Local selection. ComesFromDecomposition() property has been moved from StdSelect_BRepOwner to SelectMgr_EntityOwner.
112 lines
3.6 KiB
C++
112 lines
3.6 KiB
C++
// Copyright (c) 1998-1999 Matra Datavision
|
|
// 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 <AIS_LocalStatus.hxx>
|
|
|
|
#include <Standard_Type.hxx>
|
|
#include <TColStd_ListIteratorOfListOfInteger.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(AIS_LocalStatus, Standard_Transient)
|
|
|
|
AIS_LocalStatus::AIS_LocalStatus (const Standard_Boolean theIsTemporary,
|
|
const Standard_Boolean theIsToDecompose,
|
|
const Standard_Integer theDisplayMode,
|
|
const Standard_Integer theSelectionMode,
|
|
const Standard_Integer theHilightMode,
|
|
const Standard_Boolean theIsSubIntensity,
|
|
const Handle(Prs3d_Drawer)& theStyle)
|
|
: myDecomposition (theIsToDecompose),
|
|
myIsTemporary (theIsTemporary),
|
|
myDMode (theDisplayMode),
|
|
myFirstDisplay (Standard_False),
|
|
myHMode (theHilightMode),
|
|
mySubIntensity (theIsSubIntensity),
|
|
myHiStyle (theStyle)
|
|
{
|
|
if (theSelectionMode != -1)
|
|
mySModes.Append (theSelectionMode);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : IsActivated
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean AIS_LocalStatus::
|
|
IsActivated(const Standard_Integer aSelMode) const
|
|
{
|
|
TColStd_ListIteratorOfListOfInteger It(mySModes);
|
|
for(;It.More();It.Next())
|
|
if(It.Value()==aSelMode)
|
|
return Standard_True;
|
|
return Standard_False;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : RemoveSelectionMode
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void AIS_LocalStatus::RemoveSelectionMode(const Standard_Integer aMode)
|
|
{
|
|
TColStd_ListIteratorOfListOfInteger It(mySModes);
|
|
for(;It.More();It.Next())
|
|
{
|
|
if(It.Value()==aMode) {
|
|
mySModes.Remove(It);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
//=======================================================================
|
|
//function : ClearSelectionModes
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void AIS_LocalStatus::ClearSelectionModes()
|
|
{mySModes.Clear();}
|
|
|
|
|
|
//=======================================================================
|
|
//function : AddSelectionMode
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void AIS_LocalStatus::AddSelectionMode(const Standard_Integer aMode)
|
|
{
|
|
if(IsSelModeIn(aMode)) return;
|
|
|
|
if(aMode!=-1)
|
|
mySModes.Append(aMode);
|
|
else
|
|
mySModes.Clear();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : IsSelModeIn
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean AIS_LocalStatus::IsSelModeIn(const Standard_Integer aMode) const
|
|
{
|
|
for(TColStd_ListIteratorOfListOfInteger It(mySModes);
|
|
It.More();
|
|
It.Next()){
|
|
if(It.Value()==aMode)
|
|
return Standard_True;
|
|
}
|
|
return Standard_False;
|
|
}
|