Salome HOME
40384fee52f7c18031ce638dfac13c7c63025903
[modules/geom.git] / src / GEOMGUI / GeometryGUI_ArcDlg.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_ArcDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_ARC_H
30 #define DIALOGBOX_ARC_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34
35 #include <gp_Pnt.hxx>
36 #include <Precision.hxx>
37 #include <GC_MakeArcOfCircle.hxx>
38 #include <BRepBuilderAPI_MakeEdge.hxx>
39 #include <Geom_TrimmedCurve.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 // class    : GeometryGUI_ArcDlg
57 // purpose  : 
58 //=================================================================================
59 class GeometryGUI_ArcDlg : public QDialog
60
61     Q_OBJECT
62
63 public:
64     GeometryGUI_ArcDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
65     ~GeometryGUI_ArcDlg();
66
67 private :
68
69     GEOM::GEOM_Gen_var        myGeom ;                /* Current Geom object */
70     GeometryGUI*                 myGeomGUI ;             /* Current GeomGUI object */   
71     SALOME_Selection*            mySelection ;           /* User shape selection */
72     TopoDS_Shape                 mySimulationTopoDs;     /* Shape used for simulation display */
73     gp_Pnt                       myPoint1 ;
74     gp_Pnt                       myPoint2 ;
75     gp_Pnt                       myPoint3;
76
77     bool                         myOkPoint1 ;
78     bool                         myOkPoint2;
79     bool                         myOkPoint3;
80     QLineEdit*                   myEditCurrentArgument;  /* Current LineEdit */   
81     int                          myConstructorId ;       /* Current constructor id = radio button id */ 
82     Handle(GEOM_ShapeTypeFilter) myVertexFilter ;        /* Filter selection */
83
84     void closeEvent( QCloseEvent* e ) ;
85     void enterEvent( QEvent* e);
86     void Init( SALOME_Selection* Sel ) ;
87     void MakeArcSimulationAndDisplay() ;
88
89     QButtonGroup* GroupConstructors;
90     QRadioButton* Constructor1;
91     QGroupBox* GroupButtons;
92     QPushButton* buttonOk;
93     QPushButton* buttonCancel;
94     QPushButton* buttonApply;
95     QGroupBox* GroupC1;
96     QLineEdit* LineEditC1A1;
97     QPushButton* SelectButtonC1A1;
98     QLabel* TextLabelC1A1;
99     QLabel* TextLabelC1A2;
100     QPushButton* SelectButtonC1A2;
101     QLineEdit* LineEditC1A2;
102     QLabel* TextLabelC1A3;
103     QPushButton* SelectButtonC1A3;
104     QLineEdit* LineEditC1A3;
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 DeactivateActiveDialog() ;
115     void LineEditReturnPressed() ;
116     void ActivateThisDialog() ;
117
118 protected:
119     QGridLayout* GeometryGUI_ArcDlgLayout;
120     QGridLayout* GroupConstructorsLayout;
121     QGridLayout* GroupButtonsLayout;
122     QGridLayout* GroupC1Layout;
123 };
124
125 #endif // DIALOGBOX_ARC_H