Salome HOME
617bc48027d6177f446ba7cd0ee2a69af36f0547
[modules/geom.git] / src / GEOMGUI / GeometryGUI_TranslationDlg.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_TranslationDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_TRANSLATION_H
30 #define DIALOGBOX_TRANSLATION_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34 #include "GeometryGUI_SpinBox.h"
35
36 #include <gp_Vec.hxx>
37 #include <TopoDS_Shape.hxx>
38 #include <BRepBuilderAPI_Transform.hxx>
39
40 #include <qvariant.h>
41 #include <qdialog.h>
42
43 class QVBoxLayout; 
44 class QHBoxLayout; 
45 class QGridLayout; 
46 class QButtonGroup;
47 class QGroupBox;
48 class QLabel;
49 class QLineEdit;
50 class QPushButton;
51 class QRadioButton;
52 class GeometryGUI;
53
54
55 //=================================================================================
56 // class    : GeometryGUI_TranslationDlg
57 // purpose  :
58 //=================================================================================
59 class GeometryGUI_TranslationDlg : public QDialog
60
61     Q_OBJECT
62
63 public:
64     GeometryGUI_TranslationDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
65     ~GeometryGUI_TranslationDlg();
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     TopoDS_Shape                        myBase ;
74     GEOM::GEOM_Shape_var                      myGeomShape ;           /* is myBase */
75     bool                                myOkBase ;
76     gp_Vec                              myVec ;
77     QLineEdit*                          myEditCurrentArgument;  /* Current LineEdit */   
78     int                                 myConstructorId ;       /* Current constructor id = radio button id */
79     Handle(GEOM_ShapeTypeFilter)        myEdgeFilter;           /* Filter selection */
80
81     void closeEvent( QCloseEvent* e ) ;
82     void enterEvent( QEvent* e);
83     void Init( SALOME_Selection* Sel ) ;
84     void MakeTranslationSimulationAndDisplay() ;
85
86     QButtonGroup* GroupConstructors;
87     QRadioButton* Constructor1;
88     QGroupBox* GroupC1;
89     QLabel* TextLabel_DX;
90     QLabel* TextLabel_DY;
91     QLabel* TextLabel_DZ;
92
93     GeometryGUI_SpinBox*  SpinBox_DX ;
94     GeometryGUI_SpinBox*  SpinBox_DY ;
95     GeometryGUI_SpinBox*  SpinBox_DZ ;
96
97     QLabel* TextLabelC1A1;
98     QPushButton* SelectButtonC1A1;
99     QLineEdit* LineEditC1A1;
100     QGroupBox* GroupButtons;
101     QPushButton* buttonOk;
102     QPushButton* buttonCancel;
103     QPushButton* buttonApply;
104
105 private slots:
106
107     void ConstructorsClicked(int constructorId);
108     void ClickOnOk();
109     void ClickOnCancel();
110     void ClickOnApply();
111     void SetEditCurrentArgument() ;
112     void SelectionIntoArgument() ;
113     void LineEditReturnPressed() ;
114     void DeactivateActiveDialog() ;
115     void ActivateThisDialog() ;
116     void ValueChangedInSpinBox( double newValue ) ;
117
118 protected:
119     QGridLayout* GeometryGUI_TranslationDlgLayout;
120     QGridLayout* GroupConstructorsLayout;
121     QGridLayout* GroupC1Layout;
122     QGridLayout* GroupButtonsLayout;
123
124     QHBoxLayout* Layout1 ;
125 };
126
127 #endif // DIALOGBOX_TRANSLATION_H