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