0031909: Visualization, AIS_Trihedron - replace maps with arrays
[occt.git] / src / AIS / AIS_Plane.hxx
1 // Created on: 1995-08-02
2 // Created by: Arnaud BOUZY/Odile Olivier
3 // Copyright (c) 1995-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_Plane_HeaderFile
18 #define _AIS_Plane_HeaderFile
19
20 #include <AIS_InteractiveObject.hxx>
21 #include <AIS_TypeOfPlane.hxx>
22 #include <gp_Pnt.hxx>
23 #include <Select3D_TypeOfSensitivity.hxx>
24
25 class Geom_Plane;
26 class Geom_Axis2Placement;
27 class gp_Pnt;
28
29 //! Constructs plane datums to be used in construction of
30 //! composite shapes.
31 class AIS_Plane : public AIS_InteractiveObject
32 {
33   DEFINE_STANDARD_RTTIEXT(AIS_Plane, AIS_InteractiveObject)
34 public:
35
36   //! initializes the plane aComponent. If
37   //! the mode aCurrentMode equals true, the drawing
38   //! tool, "Drawer" is not initialized.
39   Standard_EXPORT AIS_Plane(const Handle(Geom_Plane)& aComponent, const Standard_Boolean aCurrentMode = Standard_False);
40   
41   //! initializes the plane aComponent and
42   //! the point aCenter. If the mode aCurrentMode
43   //! equals true, the drawing tool, "Drawer" is not
44   //! initialized. aCurrentMode equals true, the drawing
45   //! tool, "Drawer" is not initialized.
46   Standard_EXPORT AIS_Plane(const Handle(Geom_Plane)& aComponent, const gp_Pnt& aCenter, const Standard_Boolean aCurrentMode = Standard_False);
47   
48   //! initializes the plane aComponent, the
49   //! point aCenter, and the minimum and maximum
50   //! points, aPmin and aPmax. If the mode
51   //! aCurrentMode equals true, the drawing tool, "Drawer" is not initialized.
52   Standard_EXPORT AIS_Plane(const Handle(Geom_Plane)& aComponent, const gp_Pnt& aCenter, const gp_Pnt& aPmin, const gp_Pnt& aPmax, const Standard_Boolean aCurrentMode = Standard_False);
53   
54   Standard_EXPORT AIS_Plane(const Handle(Geom_Axis2Placement)& aComponent, const AIS_TypeOfPlane aPlaneType, const Standard_Boolean aCurrentMode = Standard_False);
55   
56   //! Same value for x and y directions
57   Standard_EXPORT void SetSize (const Standard_Real aValue);
58   
59   //! Sets the size defined by the length along the X axis
60   //! XVal and the length along the Y axis YVal.
61   Standard_EXPORT void SetSize (const Standard_Real Xval, const Standard_Real YVal);
62   
63   Standard_EXPORT void UnsetSize();
64   
65   Standard_EXPORT Standard_Boolean Size (Standard_Real& X, Standard_Real& Y) const;
66
67   Standard_Boolean HasOwnSize() const { return myHasOwnSize; }
68
69   Standard_EXPORT virtual Standard_Integer Signature() const Standard_OVERRIDE;
70   
71   Standard_EXPORT virtual AIS_KindOfInteractive Type() const Standard_OVERRIDE;
72   
73   //! Returns the component specified in SetComponent.
74   const Handle(Geom_Plane)& Component() { return myComponent; }
75
76   //! Creates an instance of the plane aComponent.
77   Standard_EXPORT void SetComponent (const Handle(Geom_Plane)& aComponent);
78   
79   //! Returns the settings for the selected plane
80   //! aComponent, provided in SetPlaneAttributes.
81   //! These include the points aCenter, aPmin, and aPmax
82   Standard_EXPORT Standard_Boolean PlaneAttributes (Handle(Geom_Plane)& aComponent, gp_Pnt& aCenter, gp_Pnt& aPmin, gp_Pnt& aPmax);
83   
84   //! Allows you to provide settings other than default ones
85   //! for the selected plane. These include: center point
86   //! aCenter, maximum aPmax and minimum aPmin.
87   Standard_EXPORT void SetPlaneAttributes (const Handle(Geom_Plane)& aComponent, const gp_Pnt& aCenter, const gp_Pnt& aPmin, const gp_Pnt& aPmax);
88
89   //! Returns the coordinates of the center point.
90   const gp_Pnt& Center() const { return myCenter; }
91
92   //! Provides settings for the center theCenter other than (0, 0, 0).
93   void SetCenter (const gp_Pnt& theCenter) { myCenter = theCenter; }
94
95   //! Allows you to provide settings for the position and
96   //! direction of one of the plane's axes, aComponent, in
97   //! 3D space. The coordinate system used is
98   //! right-handed, and the type of plane aPlaneType is one of:
99   //! -   AIS_ TOPL_Unknown
100   //! -   AIS_ TOPL_XYPlane
101   //! -   AIS_ TOPL_XZPlane
102   //! -   AIS_ TOPL_YZPlane}.
103   Standard_EXPORT void SetAxis2Placement (const Handle(Geom_Axis2Placement)& aComponent, const AIS_TypeOfPlane aPlaneType);
104   
105   //! Returns the position of the plane's axis2 system
106   //! identifying the x, y, or z axis and giving the plane a
107   //! direction in 3D space. An axis2 system is a right-handed coordinate system.
108   Standard_EXPORT Handle(Geom_Axis2Placement) Axis2Placement();
109   
110   //! Returns the type of plane - xy, yz, xz or unknown.
111   AIS_TypeOfPlane TypeOfPlane() { return myTypeOfPlane; }
112
113   //! Returns the type of plane - xy, yz, or xz.
114   Standard_Boolean IsXYZPlane() { return myIsXYZPlane; }
115
116   //! Returns the non-default current display mode set by SetCurrentMode.
117   Standard_Boolean CurrentMode() { return myCurrentMode; }
118
119   //! Allows you to provide settings for a non-default
120   //! current display mode.
121   void SetCurrentMode (const Standard_Boolean theCurrentMode) { myCurrentMode = theCurrentMode; }
122
123   //! Returns true if the display mode selected, aMode, is valid for planes.
124   Standard_EXPORT virtual Standard_Boolean AcceptDisplayMode (const Standard_Integer aMode) const Standard_OVERRIDE;
125   
126   //! connection to <aCtx> default drawer implies a recomputation of Frame values.
127   Standard_EXPORT virtual void SetContext (const Handle(AIS_InteractiveContext)& aCtx) Standard_OVERRIDE;
128
129   //! Returns the type of sensitivity for the plane;
130   Select3D_TypeOfSensitivity TypeOfSensitivity() const { return myTypeOfSensitivity; }
131
132   //! Sets the type of sensitivity for the plane.
133   void SetTypeOfSensitivity (Select3D_TypeOfSensitivity theTypeOfSensitivity) { myTypeOfSensitivity = theTypeOfSensitivity; }
134
135   Standard_EXPORT virtual void ComputeSelection (const Handle(SelectMgr_Selection)& theSelection, const Standard_Integer theMode) Standard_OVERRIDE;
136
137   Standard_EXPORT void SetColor (const Quantity_Color& aColor) Standard_OVERRIDE;
138
139   Standard_EXPORT void UnsetColor() Standard_OVERRIDE;
140
141 private:
142
143   Standard_EXPORT virtual void Compute (const Handle(PrsMgr_PresentationManager3d)& aPresentationManager, const Handle(Prs3d_Presentation)& aPresentation, const Standard_Integer aMode = 0) Standard_OVERRIDE;
144   
145   Standard_EXPORT void ComputeFrame();
146   
147   Standard_EXPORT void ComputeFields();
148   
149   Standard_EXPORT void InitDrawerAttributes();
150
151 private:
152
153   Handle(Geom_Plane) myComponent;
154   Handle(Geom_Axis2Placement) myAx2;
155   gp_Pnt myCenter;
156   gp_Pnt myPmin;
157   gp_Pnt myPmax;
158   Standard_Boolean myCurrentMode;
159   Standard_Boolean myAutomaticPosition;
160   AIS_TypeOfPlane myTypeOfPlane;
161   Standard_Boolean myIsXYZPlane;
162   Standard_Boolean myHasOwnSize;
163   Select3D_TypeOfSensitivity myTypeOfSensitivity;
164
165 };
166
167 DEFINE_STANDARD_HANDLE(AIS_Plane, AIS_InteractiveObject)
168
169 #endif // _AIS_Plane_HeaderFile