Salome HOME
Merge from V5_1_4_BR 07/05/2010
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_TranslationDlg.h
1 //  Copyright (C) 2007-2010  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
33 // Qt includes
34 #include <QDialog>
35
36 // IDL includes
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SMESH_Mesh)
39
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_IdValidator;
49 class SMESHGUI_SpinBox;
50 class SMESHGUI_FilterDlg;
51 class SMESH_Actor;
52 class SVTK_Selector;
53 class LightApp_SelectionMgr;
54 class SMESH_LogicalFilter;
55
56 //=================================================================================
57 // class    : SMESHGUI_TranslationDlg
58 // purpose  :
59 //=================================================================================
60 class SMESHGUI_EXPORT SMESHGUI_TranslationDlg : public QDialog
61
62   Q_OBJECT
63
64 public:
65   SMESHGUI_TranslationDlg( SMESHGUI* );
66   ~SMESHGUI_TranslationDlg();
67
68 private:
69   void                   Init( bool = true );
70   void                   closeEvent( QCloseEvent* );
71   void                   enterEvent( QEvent* );           /* mouse enter the QWidget */
72   void                   hideEvent( QHideEvent* );        /* ESC key */
73   void                   keyPressEvent( QKeyEvent* );
74   int                    GetConstructorId();
75   void                   setNewMeshName();
76
77   bool                   isValid();
78
79   SMESHGUI*              mySMESHGUI;              /* Current SMESHGUI object */
80   SMESHGUI_IdValidator*  myIdValidator;
81   LightApp_SelectionMgr* mySelectionMgr;          /* User shape selection */
82   QString                myElementsId;
83   int                    myNbOkElements;          /* to check when elements are defined */
84
85   SVTK_Selector*         mySelector;
86
87   QWidget*               myEditCurrentArgument;
88
89   bool                   myBusy;
90   SMESH::SMESH_Mesh_var  myMesh;
91   SMESH_Actor*           myActor;
92   SMESH_LogicalFilter*   myMeshOrSubMeshOrGroupFilter;
93
94   SMESH::SMESH_IDSource_var mySelectedObject;
95
96   QGroupBox*             ConstructorsBox;
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   QGroupBox*             ActionBox;
128   QButtonGroup*          ActionGroup;
129   QCheckBox*             MakeGroupsCheck;
130   QLineEdit*             LineEditNewMesh;
131
132   QString                myHelpFileName;
133
134   QPushButton*           myFilterBtn;
135   SMESHGUI_FilterDlg*    myFilterDlg;
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