]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMGUI/GeometryGUI_PlaneDlg.h
Salome HOME
38435a02bcc91183e5cc8df4af56a28e28d7511c
[modules/geom.git] / src / GEOMGUI / GeometryGUI_PlaneDlg.h
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : GeometryGUI_PlaneDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_PLANE_H
30 #define DIALOGBOX_PLANE_H
31
32 #include "GeometryGUI_Skeleton.h"
33 #include "GeometryGUI_2Sel1Spin.h"
34 #include "GeometryGUI_1Sel4Spin.h"
35 #include "GeometryGUI_1Sel1Spin.h"
36
37 #include "GEOM_FaceFilter.hxx"
38 #include <gp_Pnt.hxx>
39
40 //=================================================================================
41 // class    : GeometryGUI_PlaneDlg
42 // purpose  :
43 //=================================================================================
44 class GeometryGUI_PlaneDlg : public GeometryGUI_Skeleton
45
46     Q_OBJECT
47
48 public:
49     GeometryGUI_PlaneDlg(QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0);
50     ~GeometryGUI_PlaneDlg();
51
52 private :
53     void Init(SALOME_Selection* Sel);
54     void enterEvent(QEvent* e);
55
56     double step;
57     int myConstructorId;
58     Handle(GEOM_ShapeTypeFilter) myVertexFilter;  /* Filters selection */
59     Handle(GEOM_ShapeTypeFilter) myEdgeFilter;
60     Handle(GEOM_FaceFilter) myFaceFilter;
61
62     gp_Pnt myPoint1;   /* Point on the plane */
63
64     Standard_Real myDx;
65     Standard_Real myDy;
66     Standard_Real myDz;
67     Standard_Real myTrimSize;
68
69     bool myOkPoint1;   /* true when argument is defined */
70     bool myOkDirection;
71     bool myOkCoordinates;
72     bool myOkPlanarFace;
73
74     GeometryGUI_2Sel1Spin* GroupPointDirection;
75     GeometryGUI_1Sel4Spin* GroupPointPlusCoordinates;
76     GeometryGUI_1Sel1Spin* GroupFace;
77
78 private slots:
79     void ClickOnOk();
80     void ClickOnApply();
81     void ActivateThisDialog();
82     void SelectionIntoArgument();
83     void LineEditReturnPressed();
84     void SetEditCurrentArgument();
85     void ConstructorsClicked(int constructorId);
86     void ValueChangedInSpinBox(double newValue);
87     void MakePlaneSimulationAndDisplay(const gp_Pnt& P,
88                                        const Standard_Real dx,
89                                        const Standard_Real dy,
90                                        const Standard_Real dz,
91                                        const Standard_Real trimSize);
92
93 };
94
95 #endif // DIALOGBOX_PLANE_H