Salome HOME
IPAL21120 SIGSEGV on Meshing attached Compound with Automatic Hexadralization
[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
25 //  Module : SMESH
26 //  $Header: 
27 //
28 #ifndef DIALOGBOX_TRANSLATION_H
29 #define DIALOGBOX_TRANSLATION_H
30
31 #include "SMESH_SMESHGUI.hxx"
32
33 #include "LightApp_SelectionMgr.h"
34
35 #include "SMESH_LogicalFilter.hxx"
36
37 // QT Includes
38 #include <qdialog.h>
39
40 class QGridLayout; 
41 class QButtonGroup;
42 class QGroupBox;
43 class QLabel;
44 class QLineEdit;
45 class QPushButton;
46 class QRadioButton;
47 class QCheckBox;
48 class SMESHGUI;
49 class SMESHGUI_SpinBox;
50 class SMESH_Actor;
51 class SVTK_ViewWindow;
52 class SVTK_Selector;
53
54 // IDL Headers
55 #include <SALOMEconfig.h>
56 #include CORBA_SERVER_HEADER(SMESH_Mesh)
57
58
59 //=================================================================================
60 // class    : SMESHGUI_TranslationDlg
61 // purpose  :
62 //=================================================================================
63 class SMESHGUI_EXPORT SMESHGUI_TranslationDlg : public QDialog
64
65     Q_OBJECT
66
67 public:
68     SMESHGUI_TranslationDlg( SMESHGUI*,
69                              const char* name = 0,
70                              bool modal = FALSE,
71                              WFlags fl = 0);
72     ~SMESHGUI_TranslationDlg();
73
74 private:
75     void Init (bool ResetControls = true);
76     void closeEvent (QCloseEvent*);
77     void enterEvent (QEvent*);                             /* mouse enter the QWidget */
78     void hideEvent (QHideEvent*);                          /* ESC key */
79     void keyPressEvent(QKeyEvent*);
80     int GetConstructorId();
81     void setNewMeshName();
82
83     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
84     LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
85     QString                       myElementsId;
86     int                           myNbOkElements;          /* to check when elements are defined */
87
88     SVTK_Selector*                mySelector;
89
90     QWidget*                      myEditCurrentArgument;
91
92     bool                          myBusy;
93     SMESH::SMESH_Mesh_var         myMesh;
94     SMESH_Actor*                  myActor;
95     SMESH_LogicalFilter*          myMeshOrSubMeshOrGroupFilter;
96     
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     QButtonGroup* ActionGroup;
128     QCheckBox* MakeGroupsCheck;
129     QLineEdit* LineEditNewMesh;
130
131     QString myHelpFileName;
132    
133     private slots:
134
135     void ConstructorsClicked(int constructorId);
136     void ClickOnOk();
137     void ClickOnCancel();
138     void ClickOnApply();
139     void ClickOnHelp();
140     void SetEditCurrentArgument() ;
141     void SelectionIntoArgument() ;
142     void DeactivateActiveDialog() ;
143     void ActivateThisDialog() ;
144     void onTextChange(const QString&);
145     void onSelectMesh(bool toSelectMesh);
146     void onActionClicked(int button);
147     
148 protected:
149     QGridLayout* SMESHGUI_TranslationDlgLayout;
150     QGridLayout* GroupConstructorsLayout;
151     QGridLayout* GroupButtonsLayout;
152     QGridLayout* GroupArgumentsLayout;
153 };
154
155 #endif // DIALOGBOX_TRANSLATION_H