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