Salome HOME
Merging with WPdev
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 "SMESH_SMESHGUI.hxx"
33
34 #include "LightApp_SelectionMgr.h"
35
36 #include "SMESH_LogicalFilter.hxx"
37
38 // QT Includes
39 #include <qdialog.h>
40
41 class QGridLayout; 
42 class QButtonGroup;
43 class QGroupBox;
44 class QLabel;
45 class QLineEdit;
46 class QPushButton;
47 class QRadioButton;
48 class QCheckBox;
49 class SMESHGUI;
50 class SMESHGUI_SpinBox;
51 class SMESH_Actor;
52 class SVTK_ViewWindow;
53 class SVTK_Selector;
54
55 // IDL Headers
56 #include <SALOMEconfig.h>
57 #include CORBA_SERVER_HEADER(SMESH_Mesh)
58
59
60 //=================================================================================
61 // class    : SMESHGUI_TranslationDlg
62 // purpose  :
63 //=================================================================================
64 class SMESHGUI_EXPORT SMESHGUI_TranslationDlg : public QDialog
65
66     Q_OBJECT
67
68 public:
69     SMESHGUI_TranslationDlg( SMESHGUI*,
70                              const char* name = 0,
71                              bool modal = FALSE,
72                              WFlags fl = 0);
73     ~SMESHGUI_TranslationDlg();
74
75 private:
76     void Init (bool ResetControls = true);
77     void closeEvent (QCloseEvent*);
78     void enterEvent (QEvent*);                             /* mouse enter the QWidget */
79     void hideEvent (QHideEvent*);                          /* ESC key */
80     void keyPressEvent(QKeyEvent*);
81     int GetConstructorId();
82
83     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
84     LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
85     QString                       myElementsId;
86     int                           myNbOkElements;          /* to check when elements are defined */
87
88     SVTK_Selector*                mySelector;
89
90     QWidget*                      myEditCurrentArgument;
91
92     bool                          myBusy;
93     SMESH::SMESH_Mesh_var         myMesh;
94     SMESH_Actor*                  myActor;
95     SMESH_LogicalFilter*          myMeshOrSubMeshOrGroupFilter;
96     
97     QButtonGroup* GroupConstructors;
98     QRadioButton* RadioButton1;
99     QRadioButton* RadioButton2;
100     QGroupBox* GroupButtons;
101     QPushButton* buttonOk;
102     QPushButton* buttonCancel;
103     QPushButton* buttonApply;
104     QPushButton* buttonHelp;
105     QGroupBox* GroupArguments;
106     QLabel* TextLabelElements;
107     QPushButton* SelectElementsButton;
108     QLineEdit* LineEditElements;
109     QCheckBox* CheckBoxMesh;
110     QLabel* TextLabel1;
111     QPushButton* SelectButton1;
112     QLabel* TextLabel1_1;
113     SMESHGUI_SpinBox* SpinBox1_1;
114     QLabel* TextLabel1_2;
115     SMESHGUI_SpinBox* SpinBox1_2;
116     QLabel* TextLabel1_3;
117     SMESHGUI_SpinBox* SpinBox1_3;
118     QLabel* TextLabel2;
119     QPushButton* SelectButton2;
120     QLabel* TextLabel2_1;
121     SMESHGUI_SpinBox* SpinBox2_1;
122     QLabel* TextLabel2_2;
123     SMESHGUI_SpinBox* SpinBox2_2;
124     QLabel* TextLabel2_3;
125     SMESHGUI_SpinBox* SpinBox2_3;
126     QCheckBox* CheckBoxCopy;
127
128     QString myHelpFileName;
129    
130     private slots:
131
132     void ConstructorsClicked(int constructorId);
133     void ClickOnOk();
134     void ClickOnCancel();
135     void ClickOnApply();
136     void ClickOnHelp();
137     void SetEditCurrentArgument() ;
138     void SelectionIntoArgument() ;
139     void DeactivateActiveDialog() ;
140     void ActivateThisDialog() ;
141     void onTextChange(const QString&);
142     void onSelectMesh(bool toSelectMesh);
143     
144 protected:
145     QGridLayout* SMESHGUI_TranslationDlgLayout;
146     QGridLayout* GroupConstructorsLayout;
147     QGridLayout* GroupButtonsLayout;
148     QGridLayout* GroupArgumentsLayout;
149 };
150
151 #endif // DIALOGBOX_TRANSLATION_H