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