Salome HOME
Porting SMESH module to Qt 4
[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 // File   : SMESHGUI_TranslationDlg.h
23 // Author : Michael ZORIN, Open CASCADE S.A.S.
24 //
25
26 #ifndef SMESHGUI_TRANSLATIONDLG_H
27 #define SMESHGUI_TRANSLATIONDLG_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // Qt includes
33 #include <QDialog>
34
35 // IDL includes
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38
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 class SVTK_Selector;
50 class LightApp_SelectionMgr;
51 class SMESH_LogicalFilter;
52
53 //=================================================================================
54 // class    : SMESHGUI_TranslationDlg
55 // purpose  :
56 //=================================================================================
57 class SMESHGUI_EXPORT SMESHGUI_TranslationDlg : public QDialog
58
59   Q_OBJECT
60
61 public:
62   SMESHGUI_TranslationDlg( SMESHGUI* );
63   ~SMESHGUI_TranslationDlg();
64
65 private:
66   void                   Init( bool = true );
67   void                   closeEvent( QCloseEvent* );
68   void                   enterEvent( QEvent* );           /* mouse enter the QWidget */
69   void                   hideEvent( QHideEvent* );        /* ESC key */
70   void                   keyPressEvent( QKeyEvent* );
71   int                    GetConstructorId();
72   void                   setNewMeshName();
73
74   SMESHGUI*              mySMESHGUI;              /* Current SMESHGUI object */
75   LightApp_SelectionMgr* mySelectionMgr;          /* User shape selection */
76   QString                myElementsId;
77   int                    myNbOkElements;          /* to check when elements are defined */
78
79   SVTK_Selector*         mySelector;
80
81   QWidget*               myEditCurrentArgument;
82
83   bool                   myBusy;
84   SMESH::SMESH_Mesh_var  myMesh;
85   SMESH_Actor*           myActor;
86   SMESH_LogicalFilter*   myMeshOrSubMeshOrGroupFilter;
87
88   QGroupBox*             ConstructorsBox;
89   QButtonGroup*          GroupConstructors;
90   QRadioButton*          RadioButton1;
91   QRadioButton*          RadioButton2;
92   QGroupBox*             GroupButtons;
93   QPushButton*           buttonOk;
94   QPushButton*           buttonCancel;
95   QPushButton*           buttonApply;
96   QPushButton*           buttonHelp;
97   QGroupBox*             GroupArguments;
98   QLabel*                TextLabelElements;
99   QPushButton*           SelectElementsButton;
100   QLineEdit*             LineEditElements;
101   QCheckBox*             CheckBoxMesh;
102   QLabel*                TextLabel1;
103   QPushButton*           SelectButton1;
104   QLabel*                TextLabel1_1;
105   SMESHGUI_SpinBox*      SpinBox1_1;
106   QLabel*                TextLabel1_2;
107   SMESHGUI_SpinBox*      SpinBox1_2;
108   QLabel*                TextLabel1_3;
109   SMESHGUI_SpinBox*      SpinBox1_3;
110   QLabel*                TextLabel2;
111   QPushButton*           SelectButton2;
112   QLabel*                TextLabel2_1;
113   SMESHGUI_SpinBox*      SpinBox2_1;
114   QLabel*                TextLabel2_2;
115   SMESHGUI_SpinBox*      SpinBox2_2;
116   QLabel*                TextLabel2_3;
117   SMESHGUI_SpinBox*      SpinBox2_3;
118   //QCheckBox* CheckBoxCopy;
119   QGroupBox*             ActionBox;
120   QButtonGroup*          ActionGroup;
121   QCheckBox*             MakeGroupsCheck;
122   QLineEdit*             LineEditNewMesh;
123
124   QString                myHelpFileName;
125    
126 private slots:
127   void                   ConstructorsClicked( int );
128   void                   ClickOnOk();
129   void                   ClickOnCancel();
130   void                   ClickOnApply();
131   void                   ClickOnHelp();
132   void                   SetEditCurrentArgument();
133   void                   SelectionIntoArgument();
134   void                   DeactivateActiveDialog();
135   void                   ActivateThisDialog();
136   void                   onTextChange( const QString& );
137   void                   onSelectMesh( bool );
138   void                   onActionClicked( int );
139 };
140
141 #endif // SMESHGUI_TRANSLATIONDLG_H