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