0025576: Visualization - implement AIS_ConnectedInteractive::AcceptDisplayMode()
[occt.git] / src / AIS / AIS_ParallelRelation.hxx
CommitLineData
42cf5bc1 1// Created on: 1996-12-05
2// Created by: Jean-Pierre COMBE/Odile Olivier
3// Copyright (c) 1996-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_ParallelRelation_HeaderFile
18#define _AIS_ParallelRelation_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <gp_Pnt.hxx>
24#include <gp_Dir.hxx>
25#include <AIS_Relation.hxx>
26#include <DsgPrs_ArrowSide.hxx>
27#include <Standard_Real.hxx>
28#include <Standard_Boolean.hxx>
29#include <PrsMgr_PresentationManager3d.hxx>
30#include <Standard_Integer.hxx>
31#include <SelectMgr_Selection.hxx>
32class TopoDS_Shape;
33class Geom_Plane;
34class gp_Pnt;
35class Prs3d_Presentation;
36class Prs3d_Projector;
37class Geom_Transformation;
38
39
40class AIS_ParallelRelation;
41DEFINE_STANDARD_HANDLE(AIS_ParallelRelation, AIS_Relation)
42
43//! A framework to display constraints of parallelism
44//! between two or more Interactive Objects. These
45//! entities can be faces or edges.
46class AIS_ParallelRelation : public AIS_Relation
47{
48
49public:
50
51
52 //! Constructs an object to display parallel constraints.
53 //! This object is defined by the first shape aFShape and
54 //! the second shape aSShape and the plane aPlane.
55 Standard_EXPORT AIS_ParallelRelation(const TopoDS_Shape& aFShape, const TopoDS_Shape& aSShape, const Handle(Geom_Plane)& aPlane);
56
57 //! Constructs an object to display parallel constraints.
58 //! This object is defined by the first shape aFShape and
59 //! the second shape aSShape the plane aPlane, the
60 //! position aPosition, the type of arrow, aSymbolPrs and
61 //! its size anArrowSize.
62 Standard_EXPORT AIS_ParallelRelation(const TopoDS_Shape& aFShape, const TopoDS_Shape& aSShape, const Handle(Geom_Plane)& aPlane, const gp_Pnt& aPosition, const DsgPrs_ArrowSide aSymbolPrs, const Standard_Real anArrowSize = 0.01);
63
64 //! Returns true if the parallelism is movable.
65 virtual Standard_Boolean IsMovable() const Standard_OVERRIDE;
66
67 //! computes the presentation according to a point of view
68 //! given by <aProjector>.
69 //! To be Used when the associated degenerated Presentations
70 //! have been transformed by <aTrsf> which is not a Pure
71 //! Translation. The HLR Prs can't be deducted automatically
72 //! WARNING :<aTrsf> must be applied
73 //! to the object to display before computation !!!
74 Standard_EXPORT virtual void Compute (const Handle(Prs3d_Projector)& aProjector, const Handle(Geom_Transformation)& aTrsf, const Handle(Prs3d_Presentation)& aPresentation) Standard_OVERRIDE;
75
76
77
78
92efcf78 79 DEFINE_STANDARD_RTTIEXT(AIS_ParallelRelation,AIS_Relation)
42cf5bc1 80
81protected:
82
83
84
85
86private:
87
88
89 Standard_EXPORT void Compute (const Handle(PrsMgr_PresentationManager3d)& aPresentationManager, const Handle(Prs3d_Presentation)& aPresentation, const Standard_Integer aMode = 0) Standard_OVERRIDE;
90
91 Standard_EXPORT void Compute (const Handle(Prs3d_Projector)& aProjector, const Handle(Prs3d_Presentation)& aPresentation) Standard_OVERRIDE;
92
79104795 93 Standard_EXPORT void ComputeSelection (const Handle(SelectMgr_Selection)& aSelection, const Standard_Integer aMode) Standard_OVERRIDE;
42cf5bc1 94
95 Standard_EXPORT void ComputeTwoFacesParallel (const Handle(Prs3d_Presentation)& aPresentation);
96
97 Standard_EXPORT void ComputeTwoEdgesParallel (const Handle(Prs3d_Presentation)& aPresentation);
98
99 gp_Pnt myFAttach;
100 gp_Pnt mySAttach;
101 gp_Dir myDirAttach;
102
103
104};
105
106
107#include <AIS_ParallelRelation.lxx>
108
109
110
111
112
113#endif // _AIS_ParallelRelation_HeaderFile