]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMGUI/GeometryGUI_BndBoxDlg.h
Salome HOME
NRI : Merge from V1_2.
[modules/geom.git] / src / GEOMGUI / GeometryGUI_BndBoxDlg.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_BndBoxDlg.h
25 //  Author : Nicolas REJNERI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_BNDBOX_H
30 #define DIALOGBOX_BNDBOX_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34
35 #include <qvariant.h>
36 #include <qdialog.h>
37
38 class QVBoxLayout; 
39 class QHBoxLayout; 
40 class QGridLayout; 
41 class QButtonGroup;
42 class QGroupBox;
43 class QLabel;
44 class QLineEdit;
45 class QPushButton;
46 class QRadioButton;
47 class GeometryGUI;
48
49 //=================================================================================
50 // class    : DialogBox_PROPERTIES
51 // purpose  :
52 //=================================================================================
53 class GeometryGUI_BndBoxDlg : public QDialog
54
55     Q_OBJECT
56
57 public:
58     GeometryGUI_BndBoxDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
59     ~GeometryGUI_BndBoxDlg();
60
61 private:
62
63     void Init( SALOME_Selection* Sel ) ;
64     void closeEvent( QCloseEvent* e ) ;
65     void enterEvent ( QEvent * ) ;                /* mouse enter the QWidget */
66     void CalculateAndDisplayBndBox(const TopoDS_Shape& S) ;
67
68     GEOM::GEOM_Gen_var myGeom ;                /* Current GeomI object */
69     GeometryGUI*          myGeomGUI ;             /* Current GeomGUI object */
70     SALOME_Selection*     mySelection ;           /* User shape selection */
71     int                   myConstructorId ;       /* Current constructor id = radio button id */
72     QLineEdit*            myEditCurrentArgument;  /* Current LineEdit */
73     TopoDS_Shape          mySimulationTopoDs ;    /* Shape used for simulation display */
74
75     QButtonGroup* GroupConstructors;
76     QRadioButton* Constructor1;
77     QGroupBox* GroupConstructor1;
78     QLineEdit* LineEditC1A1;
79     QPushButton* SelectButtonC1A1;
80     QLabel* TextLabelC1A1;
81
82     QLabel* TextLabel_Min;
83     QLabel* TextLabel_Max;
84
85     QLabel* TextLabel_X;
86     QLabel* TextLabel_Y;
87     QLabel* TextLabel_Z;
88
89     QLineEdit* LineEdit_MinX;
90     QLineEdit* LineEdit_MinY;
91     QLineEdit* LineEdit_MinZ;
92    
93     QLineEdit* LineEdit_MaxX;
94     QLineEdit* LineEdit_MaxY;
95     QLineEdit* LineEdit_MaxZ;
96
97     QGroupBox* GroupButtons;
98     QPushButton* buttonApply;
99     QPushButton* buttonOk;
100     QPushButton* buttonCancel;
101
102 private slots:
103
104     void ConstructorsClicked(int constructorId);
105     void ClickOnCancel();
106     void SetEditCurrentArgument() ;
107     void LineEditReturnPressed() ;
108     void SelectionIntoArgument() ;
109     void DeactivateActiveDialog() ;
110     void ActivateThisDialog() ;
111
112 protected:
113     QGridLayout* GeometryGUI_BndBoxDlgLayout;
114     QGridLayout* GroupConstructorsLayout;
115     QGridLayout* GroupConstructor1Layout;
116     QGridLayout* GroupButtonsLayout;
117 };
118
119 #endif // DIALOGBOX_BNDBOX_H