Salome HOME
PAL10332 - references are interpreted as original objects in filters, dialogs, etc.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_TranslationDlg.h
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESHGUI_TranslationDlg.h
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header: 
28
29 #ifndef DIALOGBOX_TRANSLATION_H
30 #define DIALOGBOX_TRANSLATION_H
31
32 #include "SalomeApp_SelectionMgr.h"
33
34 #include "SMESH_LogicalFilter.hxx"
35
36 // QT Includes
37 #include <qdialog.h>
38
39 class QGridLayout; 
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_SpinBox;
49 class SMESH_Actor;
50 class SVTK_ViewWindow;
51 class SVTK_Selector;
52
53 // IDL Headers
54 #include <SALOMEconfig.h>
55 #include CORBA_SERVER_HEADER(SMESH_Mesh)
56
57
58 //=================================================================================
59 // class    : SMESHGUI_TranslationDlg
60 // purpose  :
61 //=================================================================================
62 class SMESHGUI_TranslationDlg : public QDialog
63
64     Q_OBJECT
65
66 public:
67     SMESHGUI_TranslationDlg( SMESHGUI*,
68                              const char* name = 0,
69                              bool modal = FALSE,
70                              WFlags fl = 0);
71     ~SMESHGUI_TranslationDlg();
72
73 private:
74     void Init (bool ResetControls = true);
75     void closeEvent (QCloseEvent*);
76     void enterEvent (QEvent*);                             /* mouse enter the QWidget */
77     void hideEvent (QHideEvent*);                          /* ESC key */
78     int GetConstructorId();
79
80     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
81     SalomeApp_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     QButtonGroup* GroupConstructors;
95     QRadioButton* RadioButton1;
96     QRadioButton* RadioButton2;
97     QGroupBox* GroupButtons;
98     QPushButton* buttonOk;
99     QPushButton* buttonCancel;
100     QPushButton* buttonApply;
101     QGroupBox* GroupArguments;
102     QLabel* TextLabelElements;
103     QPushButton* SelectElementsButton;
104     QLineEdit* LineEditElements;
105     QCheckBox* CheckBoxMesh;
106     QLabel* TextLabel1;
107     QPushButton* SelectButton1;
108     QLabel* TextLabel1_1;
109     SMESHGUI_SpinBox* SpinBox1_1;
110     QLabel* TextLabel1_2;
111     SMESHGUI_SpinBox* SpinBox1_2;
112     QLabel* TextLabel1_3;
113     SMESHGUI_SpinBox* SpinBox1_3;
114     QLabel* TextLabel2;
115     QPushButton* SelectButton2;
116     QLabel* TextLabel2_1;
117     SMESHGUI_SpinBox* SpinBox2_1;
118     QLabel* TextLabel2_2;
119     SMESHGUI_SpinBox* SpinBox2_2;
120     QLabel* TextLabel2_3;
121     SMESHGUI_SpinBox* SpinBox2_3;
122     QCheckBox* CheckBoxCopy;
123    
124     private slots:
125
126     void ConstructorsClicked(int constructorId);
127     void ClickOnOk();
128     void ClickOnCancel();
129     void ClickOnApply();
130     void SetEditCurrentArgument() ;
131     void SelectionIntoArgument() ;
132     void DeactivateActiveDialog() ;
133     void ActivateThisDialog() ;
134     void onTextChange(const QString&);
135     void onSelectMesh(bool toSelectMesh);
136     
137 protected:
138     QGridLayout* SMESHGUI_TranslationDlgLayout;
139     QGridLayout* GroupConstructorsLayout;
140     QGridLayout* GroupButtonsLayout;
141     QGridLayout* GroupArgumentsLayout;
142 };
143
144 #endif // DIALOGBOX_TRANSLATION_H