0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / AIS / AIS_BadEdgeFilter.hxx
... / ...
CommitLineData
1// Created on: 1998-03-04
2// Created by: Julia Gerasimova
3// Copyright (c) 1998-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _AIS_BadEdgeFilter_HeaderFile
18#define _AIS_BadEdgeFilter_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <TopTools_DataMapOfIntegerListOfShape.hxx>
24#include <Standard_Integer.hxx>
25#include <SelectMgr_Filter.hxx>
26#include <Standard_Boolean.hxx>
27#include <TopAbs_ShapeEnum.hxx>
28class SelectMgr_EntityOwner;
29class TopoDS_Edge;
30
31
32class AIS_BadEdgeFilter;
33DEFINE_STANDARD_HANDLE(AIS_BadEdgeFilter, SelectMgr_Filter)
34
35//! A Class
36class AIS_BadEdgeFilter : public SelectMgr_Filter
37{
38
39public:
40
41
42 //! Constructs an empty filter object for bad edges.
43 Standard_EXPORT AIS_BadEdgeFilter();
44
45 Standard_EXPORT virtual Standard_Boolean ActsOn (const TopAbs_ShapeEnum aType) const Standard_OVERRIDE;
46
47 Standard_EXPORT virtual Standard_Boolean IsOk (const Handle(SelectMgr_EntityOwner)& EO) const Standard_OVERRIDE;
48
49 //! sets <myContour> with current contour. used by
50 //! IsOk.
51 Standard_EXPORT void SetContour (const Standard_Integer Index);
52
53 //! Adds an edge to the list of non-selectionnable
54 //! edges.
55 Standard_EXPORT void AddEdge (const TopoDS_Edge& anEdge, const Standard_Integer Index);
56
57 //! removes from the list of non-selectionnable edges
58 //! all edges in the contour <Index>.
59 Standard_EXPORT void RemoveEdges (const Standard_Integer Index);
60
61
62
63
64 DEFINE_STANDARD_RTTIEXT(AIS_BadEdgeFilter,SelectMgr_Filter)
65
66protected:
67
68
69
70
71private:
72
73
74 TopTools_DataMapOfIntegerListOfShape myBadEdges;
75 Standard_Integer myContour;
76
77
78};
79
80
81
82
83
84
85
86#endif // _AIS_BadEdgeFilter_HeaderFile