Salome HOME
NRI : Merge from V1_2.
[modules/geom.git] / src / GEOMGUI / GeometryGUI_DistanceDlg.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_DistanceDlg.h
25 //  Author : Nicolas REJNERI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_DISTANCE_H
30 #define DIALOGBOX_DISTANCE_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34
35 #include <BRepExtrema_DistShapeShape.hxx>
36 #include <AIS_LengthDimension.hxx>
37
38 #include <qvariant.h>
39 #include <qdialog.h>
40
41 class QVBoxLayout; 
42 class QHBoxLayout; 
43 class QGridLayout; 
44 class QButtonGroup;
45 class QFrame;
46 class QGroupBox;
47 class QLabel;
48 class QLineEdit;
49 class QPushButton;
50 class QRadioButton;
51 class GeometryGUI;
52
53
54 //=================================================================================
55 // class    : GeometryGUI_DistanceDlg
56 // purpose  :
57 //=================================================================================
58 class GeometryGUI_DistanceDlg : public QDialog
59
60     Q_OBJECT
61
62 public:
63     GeometryGUI_DistanceDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
64     ~GeometryGUI_DistanceDlg();
65
66 private:
67
68     void Init( SALOME_Selection* Sel ) ;
69     void closeEvent( QCloseEvent* e ) ;
70     void enterEvent ( QEvent * ) ;                /* mouse enter the QWidget */
71     void MakeDistanceSimulationAndDisplay( const TopoDS_Shape& S1, const TopoDS_Shape& S2 ) ;
72     void EraseDistance() ;
73
74     GEOM::GEOM_Gen_var myGeom ;                /* Current GeomI object */
75     GeometryGUI*          myGeomGUI ;             /* Current GeomGUI object */
76     SALOME_Selection*     mySelection ;           /* User shape selection */
77     TopoDS_Shape          myShape1 ;              
78     TopoDS_Shape          myShape2 ;              
79     GEOM::GEOM_Shape_var        myGeomShape1 ;          
80     GEOM::GEOM_Shape_var        myGeomShape2 ;          
81     bool                  myOkShape1 ;
82     bool                  myOkShape2 ;            /* to check when arguments are defined */
83     int                   myConstructorId ;       /* Current constructor id = radio button id */
84     QLineEdit*            myEditCurrentArgument;  /* Current LineEdit */    
85     TopoDS_Shape          mySimulationTopoDs;     /* Shape used for simulation display */
86
87     QButtonGroup* GroupConstructors;
88     QRadioButton* Constructor1;
89
90     QGroupBox* GroupConstructor1;
91     QLineEdit* LineEditC1A1Shape;
92     QLineEdit* LineEditC1A2Shape;
93     QPushButton* SelectButtonC1A1Shape;
94     QPushButton* SelectButtonC1A2Shape;
95     QLabel* TextLabelC1A2Shape;
96     QLabel* TextLabelC1A1Shape;
97
98     QLabel* TextLabel_Length;
99     QLineEdit* LineEdit_Length;
100
101     QGroupBox* GroupButtons;
102     QPushButton* buttonApply;
103     QPushButton* buttonOk;
104     QPushButton* buttonCancel;
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
118 protected:
119     QGridLayout* GeometryGUI_DistanceDlgLayout;
120     QGridLayout* GroupConstructorsLayout;
121     QGridLayout* GroupButtonsLayout;
122     QGridLayout* GroupConstructor1Layout;
123 };
124
125 #endif // DIALOGBOX_DISTANCE_H