Salome HOME
fix PAL8469. Updating the global mesh icon when local hypotheses are edited
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_TranslationDlg.h
1 //  SMESH SMESHGUI : GUI for SMESH 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   : SMESHGUI_TranslationDlg.h
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header: 
28
29 #ifndef DIALOGBOX_TRANSLATION_H
30 #define DIALOGBOX_TRANSLATION_H
31
32 #include "SALOME_Selection.h"
33 #include "SMESH_LogicalFilter.hxx"
34
35 // QT Includes
36 #include <qdialog.h>
37
38 class QGridLayout; 
39 class QButtonGroup;
40 class QGroupBox;
41 class QLabel;
42 class QLineEdit;
43 class QPushButton;
44 class QRadioButton;
45 class QCheckBox;
46 class SMESHGUI;
47 class SMESHGUI_SpinBox;
48 class SMESH_Actor;
49
50 // IDL Headers
51 #include <SALOMEconfig.h>
52 #include CORBA_SERVER_HEADER(SMESH_Mesh)
53
54
55 //=================================================================================
56 // class    : SMESHGUI_TranslationDlg
57 // purpose  :
58 //=================================================================================
59 class SMESHGUI_TranslationDlg : public QDialog
60
61     Q_OBJECT
62
63 public:
64     SMESHGUI_TranslationDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
65     ~SMESHGUI_TranslationDlg();
66
67 private:
68
69     void Init( bool ResetControls = true ) ;
70     void closeEvent( QCloseEvent* e ) ;
71     void enterEvent ( QEvent * ) ;                          /* mouse enter the QWidget */
72     void hideEvent ( QHideEvent * );                        /* ESC key */
73     int GetConstructorId();
74
75     SMESHGUI*                     mySMESHGUI ;              /* Current SMESHGUI object */
76     SALOME_Selection*             mySelection ;             /* User shape selection */
77     QString                       myElementsId;
78     int                           myNbOkElements ;          /* to check when elements are defined */
79     
80     QWidget*                      myEditCurrentArgument;
81    
82     bool                          myBusy;
83     SMESH::SMESH_Mesh_var         myMesh;
84     SMESH_Actor*                  myActor;
85     Handle(SMESH_LogicalFilter)   myMeshOrSubMeshOrGroupFilter;
86     
87     QButtonGroup* GroupConstructors;
88     QRadioButton* RadioButton1;
89     QRadioButton* RadioButton2;
90     QGroupBox* GroupButtons;
91     QPushButton* buttonOk;
92     QPushButton* buttonCancel;
93     QPushButton* buttonApply;
94     QGroupBox* GroupArguments;
95     QLabel* TextLabelElements;
96     QPushButton* SelectElementsButton;
97     QLineEdit* LineEditElements;
98     QCheckBox* CheckBoxMesh;
99     QLabel* TextLabel1;
100     QPushButton* SelectButton1;
101     QLabel* TextLabel1_1;
102     SMESHGUI_SpinBox* SpinBox1_1;
103     QLabel* TextLabel1_2;
104     SMESHGUI_SpinBox* SpinBox1_2;
105     QLabel* TextLabel1_3;
106     SMESHGUI_SpinBox* SpinBox1_3;
107     QLabel* TextLabel2;
108     QPushButton* SelectButton2;
109     QLabel* TextLabel2_1;
110     SMESHGUI_SpinBox* SpinBox2_1;
111     QLabel* TextLabel2_2;
112     SMESHGUI_SpinBox* SpinBox2_2;
113     QLabel* TextLabel2_3;
114     SMESHGUI_SpinBox* SpinBox2_3;
115     QCheckBox* CheckBoxCopy;
116    
117     private slots:
118
119     void ConstructorsClicked(int constructorId);
120     void ClickOnOk();
121     void ClickOnCancel();
122     void ClickOnApply();
123     void SetEditCurrentArgument() ;
124     void SelectionIntoArgument() ;
125     void DeactivateActiveDialog() ;
126     void ActivateThisDialog() ;
127     void onTextChange(const QString&);
128     void onSelectMesh(bool toSelectMesh);
129     
130 protected:
131     QGridLayout* SMESHGUI_TranslationDlgLayout;
132     QGridLayout* GroupConstructorsLayout;
133     QGridLayout* GroupButtonsLayout;
134     QGridLayout* GroupArgumentsLayout;
135 };
136
137 #endif // DIALOGBOX_TRANSLATION_H