Salome HOME
sources v1.2
[modules/geom.git] / src / GEOMGUI / GeometryGUI_RevolDlg.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_RevolDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_REVOLUTION_H
30 #define DIALOGBOX_REVOLUTION_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34 #include "GEOM_EdgeFilter.hxx"
35 #include "GeometryGUI_SpinBox.h"
36
37 #include <gp_Pnt.hxx>
38 #include <gp_Dir.hxx>
39 #include <BRepPrimAPI_MakeRevol.hxx>
40
41 #include <qvariant.h>
42 #include <qdialog.h>
43 #include <qvalidator.h>
44
45 class QVBoxLayout; 
46 class QHBoxLayout; 
47 class QGridLayout; 
48 class QButtonGroup;
49 class QCheckBox;
50 class QGroupBox;
51 class QLabel;
52 class QLineEdit;
53 class QPushButton;
54 class QRadioButton;
55 class GeometryGUI;
56
57
58 //=================================================================================
59 // class    : GeometryGUI_RevolDlg
60 // purpose  :
61 //=================================================================================
62 class GeometryGUI_RevolDlg : public QDialog
63
64     Q_OBJECT
65
66 public:
67     GeometryGUI_RevolDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
68     ~GeometryGUI_RevolDlg();
69
70 private :
71     
72     GEOM::GEOM_Gen_var        myGeom ;                /* Current Geom object */   
73     GeometryGUI*                 myGeomGUI ;             /* Current GeomGUI object */ 
74     SALOME_Selection*            mySelection ;           /* User shape selection */
75     TopoDS_Shape                 mySimulationTopoDs;     /* Shape used for simulation display */
76     TopoDS_Shape                 myBase ;
77     GEOM::GEOM_Shape_var               myGeomShape ;           /* is myBase */
78
79     gp_Pnt                       myLoc ;
80     gp_Dir                       myDir ;
81
82     Standard_Real                myAngle ;
83
84     bool                         myOkBase ; 
85     bool                         myOkAxis ;
86     QLineEdit*                   myEditCurrentArgument;  /* Current LineEdit */   
87     int                          myConstructorId ;       /* Current constructor id = radio button id */ 
88     Handle(GEOM_EdgeFilter)      myEdgeFilter;           /* Filter selection */
89
90     void closeEvent( QCloseEvent* e ) ;
91     void enterEvent( QEvent* e);
92     void Init( SALOME_Selection* Sel ) ;
93     void MakeRevolutionSimulationAndDisplay( const TopoDS_Shape& S) ;
94
95     QButtonGroup* GroupConstructors;
96     QRadioButton* Constructor1;
97     QGroupBox* GroupButtons;
98     QPushButton* buttonOk;
99     QPushButton* buttonCancel;
100     QPushButton* buttonApply;
101     QGroupBox* GroupC1;
102     QPushButton* SelectButtonC1A2;
103     QLineEdit* LineEditC1A1;
104     QLineEdit* LineEditC1A2;
105     QPushButton* SelectButtonC1A1;
106     QLabel* TextLabelC1A1;
107     QLabel* TextLabelC1A2;
108     GeometryGUI_SpinBox* SpinBox_C1A3 ; /* for angle */
109     QLabel* TextLabelC1A3;
110     QCheckBox* CheckBoxReverse;
111
112 private slots:
113
114     void ConstructorsClicked(int constructorId);
115     void ClickOnOk();
116     void ClickOnCancel();
117     void ClickOnApply();
118     void SetEditCurrentArgument() ;
119     void SelectionIntoArgument() ;
120     void LineEditReturnPressed() ;
121     void DeactivateActiveDialog() ;
122     void ActivateThisDialog() ;
123     void ReverseAngle(int state) ;
124     void ValueChangedInSpinBox( double newValue ) ;
125
126 protected:
127     QGridLayout* GeometryGUI_RevolDlgLayout;
128     QGridLayout* GroupConstructorsLayout;
129     QGridLayout* GroupButtonsLayout;
130     QGridLayout* GroupC1Layout;
131 };
132
133 #endif // DIALOGBOX_REVOLUTION_H