Salome HOME
Update copyright
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_TranslationDlg.h
1 // Copyright (C) 2007-2011  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
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_TranslationDlg.h
25 // Author : Michael ZORIN, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_TRANSLATIONDLG_H
28 #define SMESHGUI_TRANSLATIONDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32 #include "SMESHGUI_PreviewDlg.h"
33
34 // IDL includes
35 #include <SALOMEconfig.h>
36 #include CORBA_SERVER_HEADER(SMESH_Mesh)
37
38 class QButtonGroup;
39 class QGroupBox;
40 class QLabel;
41 class QLineEdit;
42 class QPushButton;
43 class QRadioButton;
44 class QCheckBox;
45 class SMESHGUI;
46 class SMESHGUI_IdValidator;
47 class SMESHGUI_SpinBox;
48 class SMESHGUI_FilterDlg;
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 SMESHGUI_PreviewDlg
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   bool                   isValid();
76
77   SMESHGUI_IdValidator*  myIdValidator;
78   LightApp_SelectionMgr* mySelectionMgr;          /* User shape selection */
79   QString                myElementsId;
80   int                    myNbOkElements;          /* to check when elements are defined */
81
82   SVTK_Selector*         mySelector;
83
84   QWidget*               myEditCurrentArgument;
85
86   bool                   myBusy;
87   SMESH::SMESH_Mesh_var  myMesh;
88   SMESH_Actor*           myActor;
89   SMESH_LogicalFilter*   myMeshOrSubMeshOrGroupFilter;
90
91   SMESH::SMESH_IDSource_var mySelectedObject;
92
93   QGroupBox*             ConstructorsBox;
94   QButtonGroup*          GroupConstructors;
95   QRadioButton*          RadioButton1;
96   QRadioButton*          RadioButton2;
97   QGroupBox*             GroupButtons;
98   QPushButton*           buttonOk;
99   QPushButton*           buttonCancel;
100   QPushButton*           buttonApply;
101   QPushButton*           buttonHelp;
102   QGroupBox*             GroupArguments;
103   QLabel*                TextLabelElements;
104   QPushButton*           SelectElementsButton;
105   QLineEdit*             LineEditElements;
106   QCheckBox*             CheckBoxMesh;
107   QLabel*                TextLabel1;
108   QPushButton*           SelectButton1;
109   QLabel*                TextLabel1_1;
110   SMESHGUI_SpinBox*      SpinBox1_1;
111   QLabel*                TextLabel1_2;
112   SMESHGUI_SpinBox*      SpinBox1_2;
113   QLabel*                TextLabel1_3;
114   SMESHGUI_SpinBox*      SpinBox1_3;
115   QLabel*                TextLabel2;
116   QPushButton*           SelectButton2;
117   QLabel*                TextLabel2_1;
118   SMESHGUI_SpinBox*      SpinBox2_1;
119   QLabel*                TextLabel2_2;
120   SMESHGUI_SpinBox*      SpinBox2_2;
121   QLabel*                TextLabel2_3;
122   SMESHGUI_SpinBox*      SpinBox2_3;
123   //QCheckBox* CheckBoxCopy;
124   QGroupBox*             ActionBox;
125   QButtonGroup*          ActionGroup;
126   QCheckBox*             MakeGroupsCheck;
127   QLineEdit*             LineEditNewMesh;
128
129   QString                myHelpFileName;
130
131   QPushButton*           myFilterBtn;
132   SMESHGUI_FilterDlg*    myFilterDlg;
133
134 protected slots:
135   virtual void              onDisplaySimulation( bool );
136    
137 private slots:
138   void                   ConstructorsClicked( int );
139   void                   ClickOnOk();
140   void                   ClickOnCancel();
141   bool                   ClickOnApply();
142   void                   ClickOnHelp();
143   void                   SetEditCurrentArgument();
144   void                   SelectionIntoArgument();
145   void                   DeactivateActiveDialog();
146   void                   ActivateThisDialog();
147   void                   onTextChange( const QString& );
148   void                   onSelectMesh( bool );
149   void                   onActionClicked( int );
150   void                   setFilters();
151 };
152
153 #endif // SMESHGUI_TRANSLATIONDLG_H