1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
kgv f838dac48b 0025695: Visualization, AIS_InteractiveContext - define default HilightMode
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.
2016-12-16 11:58:10 +03:00

82 lines
2.5 KiB
C++
Executable File

#ifndef _Sample2D_Face_HeaderFile
#define _Sample2D_Face_HeaderFile
#include <Standard_Macro.hxx>
#include <Standard_DefineHandle.hxx>
#include "TopoDS_Face.hxx"
#include <TColGeom_SequenceOfCurve.hxx>
#include <Graphic3d_ArrayOfPolylines.hxx>
#include <Standard_Macro.hxx>
class Sample2D_Face;
DEFINE_STANDARD_HANDLE(Sample2D_Face,AIS_InteractiveObject)
class Sample2D_Face : public AIS_InteractiveObject {
public:
// Methods PUBLIC
//
Standard_EXPORT Sample2D_Face (const TopoDS_Shape& theFace);
DEFINE_STANDARD_RTTIEXT(Sample2D_Face,AIS_InteractiveObject)
private:
//private fields
TopoDS_Shape myshape;
TColGeom_SequenceOfCurve mySeq_FORWARD;
TColGeom_SequenceOfCurve mySeq_REVERSED;
TColGeom_SequenceOfCurve mySeq_INTERNAL;
TColGeom_SequenceOfCurve mySeq_EXTERNAL;
Handle(Graphic3d_ArrayOfPolylines) myForwardArray;
Handle(Graphic3d_ArrayOfPolylines) myReversedArray;
Handle(Graphic3d_ArrayOfPolylines) myInternalArray;
Handle(Graphic3d_ArrayOfPolylines) myExternalArray;
Standard_Integer myForwardNum,
myReversedNum,
myInternalNum,
myExternalNum,
myForwardBounds,
myReversedBounds,
myInternalBounds,
myExternalBounds;
//private methods
void FillData(Standard_Boolean isSizesRecomputed = Standard_False);
void ClearSelected ();
void HilightSelected( const Handle(PrsMgr_PresentationManager3d)& thePM,
const SelectMgr_SequenceOfOwner& theOwners);
void HilightOwnerWithColor( const Handle(PrsMgr_PresentationManager3d)& thePM,
const Handle(Prs3d_Drawer)& theStyle,
const Handle(SelectMgr_EntityOwner)& theOwner);
void Compute ( const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
const Handle(Prs3d_Presentation)& thePresentation,
const Standard_Integer theMode);
void ComputeSelection (const Handle(SelectMgr_Selection)& theSelection,
const Standard_Integer theMode);
void DrawMarker(const Handle(Geom2d_TrimmedCurve)& theCurve, const Handle(Prs3d_Presentation)& thePresentation);
public:
Quantity_Color myFORWARDColor;
Quantity_Color myREVERSEDColor;
Quantity_Color myINTERNALColor;
Quantity_Color myEXTERNALColor;
Standard_Integer myWidthIndex;
Standard_Integer myTypeIndex ;
TopoDS_Shape& Shape(){return myshape;}
void SetFace (const TopoDS_Shape& theFace){myshape = theFace;}
};
#endif