]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMGUI/GeometryGUI_CircleDlg.h
Salome HOME
NRI : Merge from V1_2.
[modules/geom.git] / src / GEOMGUI / GeometryGUI_CircleDlg.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_CircleDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_CIRCLE_H
30 #define DIALOGBOX_CIRCLE_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 <BRepBuilderAPI_MakeEdge.hxx>
40
41 #include <qvariant.h>
42 #include <qdialog.h>
43
44 class QVBoxLayout; 
45 class QHBoxLayout; 
46 class QGridLayout; 
47 class QButtonGroup;
48 class QGroupBox;
49 class QLabel;
50 class QLineEdit;
51 class QPushButton;
52 class QRadioButton;
53 class GeometryGUI;
54
55
56 //=================================================================================
57 // class    : GeometryGUI_CircleDlg
58 // purpose  :
59 //=================================================================================
60 class GeometryGUI_CircleDlg : public QDialog
61
62     Q_OBJECT
63
64 public:
65     GeometryGUI_CircleDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
66     ~GeometryGUI_CircleDlg();
67
68 private :
69     
70     GEOM::GEOM_Gen_var        myGeom ;                /* Current Geom object */   
71     GeometryGUI*                 myGeomGUI ;             /* Current GeomGUI object */ 
72     SALOME_Selection*            mySelection ;           /* User shape selection */
73     TopoDS_Shape                 mySimulationTopoDs;     /* Shape used for simulation display */
74     gp_Pnt                       myPoint1 ;
75     gp_Dir                       myDir ;
76     Standard_Real                myRadius ;
77     bool                         myOkPoint1 ;
78     bool                         myOkDir ;
79     QLineEdit*                   myEditCurrentArgument;  /* Current LineEdit */   
80     int                          myConstructorId ;       /* Current constructor id = radio button id */ 
81     Handle(GEOM_ShapeTypeFilter) myVertexFilter ;        /* Filter selection */
82     Handle(GEOM_EdgeFilter) myEdgeFilter; 
83
84     void closeEvent( QCloseEvent* e ) ;
85     void enterEvent( QEvent* e);
86     void Init( SALOME_Selection* Sel ) ;
87     void MakeCircleSimulationAndDisplay() ;
88
89     QButtonGroup* GroupConstructors;
90     QRadioButton* Constructor1;
91     QGroupBox* GroupButtons;
92     QPushButton* buttonOk;
93     QPushButton* buttonCancel;
94     QPushButton* buttonApply;
95     QGroupBox* GroupC1;
96     QPushButton* SelectButtonC1A2;
97     QLineEdit* LineEditC1A1;
98     QPushButton* SelectButtonC1A1;
99     QLabel* TextLabelC1A2;
100     QLineEdit* LineEditC1A2;
101     QLabel* TextLabelC1A1;
102     QLabel* TextLabelC1A3;
103
104     GeometryGUI_SpinBox* SpinBox_C1A3;
105
106 private slots:
107
108     void ConstructorsClicked(int constructorId);
109     void ClickOnOk();
110     void ClickOnCancel();
111     void ClickOnApply();
112     void SetEditCurrentArgument() ;
113     void SelectionIntoArgument() ;
114     void LineEditReturnPressed() ;
115     void DeactivateActiveDialog() ;
116     void ActivateThisDialog() ;
117     void ValueChangedInSpinBox( double newValue ) ;
118
119 protected:
120     QGridLayout* GeometryGUI_CircleDlgLayout;
121     QGridLayout* GroupConstructorsLayout;
122     QGridLayout* GroupButtonsLayout;
123     QGridLayout* GroupC1Layout;
124 };
125
126 #endif // DIALOGBOX_CIRCLE_H