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