Salome HOME
97cd85605b14296964bbd50693d1b4bb4559ba82
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_SymmetryDlg.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_SymmetryDlg.h
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header: 
28
29 #ifndef DIALOGBOX_SYMMETRY_H
30 #define DIALOGBOX_SYMMETRY_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 QHBoxLayout;
41 class QButtonGroup;
42 class QGroupBox;
43 class QLabel;
44 class QLineEdit;
45 class QPushButton;
46 class QRadioButton;
47 class QCheckBox;
48 class SMESHGUI_SpinBox;
49 class SMESHGUI;
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_SymmetryDlg
61 // purpose  :
62 //=================================================================================
63 class SMESHGUI_SymmetryDlg : public QDialog
64
65     Q_OBJECT
66
67 public:
68     SMESHGUI_SymmetryDlg( SMESHGUI*,
69                           const char* name = 0,
70                           bool modal = FALSE,
71                           WFlags fl = 0);
72     ~SMESHGUI_SymmetryDlg();
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     int GetConstructorId();
80     bool IsMirrorOk();
81
82     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
83     SalomeApp_SelectionMgr*       mySelectionMgr;          /* User shape selection */
84     int                           myNbOkElements;          /* to check when elements are defined */
85     QString                       myElementsId;
86     SVTK_ViewWindow*              myViewWindow;
87     SVTK_Selector*                mySelector;
88
89     QWidget*                      myEditCurrentArgument;   /* Current  LineEdit */
90
91     bool                          myBusy;
92     SMESH::SMESH_Mesh_var         myMesh;
93     SMESH_Actor*                  myActor;
94     SMESH_LogicalFilter*          myMeshOrSubMeshOrGroupFilter;
95     
96     QButtonGroup* GroupConstructors;
97     QRadioButton* RadioButton1;
98     QRadioButton* RadioButton2;
99     QRadioButton* RadioButton3;
100     QGroupBox* GroupButtons;
101     QPushButton* buttonOk;
102     QPushButton* buttonCancel;
103     QPushButton* buttonApply;
104     QGroupBox* GroupArguments;
105     QGroupBox* GroupMirror;
106     QLabel* TextLabelElements;
107     QPushButton* SelectElementsButton;
108     QLineEdit* LineEditElements;
109     QCheckBox* CheckBoxMesh;
110
111     QLabel* TextLabelPoint;
112     QPushButton* SelectPointButton;
113     QLabel* TextLabelX;
114     SMESHGUI_SpinBox* SpinBox_X;
115     QLabel* TextLabelY;
116     SMESHGUI_SpinBox* SpinBox_Y;
117     QLabel* TextLabelZ;
118     SMESHGUI_SpinBox* SpinBox_Z;
119     QLabel* TextLabelVector;
120     QPushButton* SelectVectorButton;
121     QLabel* TextLabelDX;
122     SMESHGUI_SpinBox* SpinBox_DX;
123     QLabel* TextLabelDY;
124     SMESHGUI_SpinBox* SpinBox_DY;
125     QLabel* TextLabelDZ;
126     SMESHGUI_SpinBox* SpinBox_DZ;
127     
128     QCheckBox* CheckBoxCopy;
129    
130     private slots:
131
132     void ConstructorsClicked(int constructorId);
133     void ClickOnOk();
134     void ClickOnCancel();
135     void ClickOnApply();
136     void SetEditCurrentArgument() ;
137     void SelectionIntoArgument() ;
138     void DeactivateActiveDialog() ;
139     void ActivateThisDialog() ;
140     void onTextChange(const QString&);
141     void onSelectMesh(bool toSelectMesh);
142     void onVectorChanged();
143     
144 protected:
145     QGridLayout* SMESHGUI_SymmetryDlgLayout;
146     QGridLayout* GroupConstructorsLayout;
147     QGridLayout* GroupButtonsLayout;
148     QGridLayout* GroupArgumentsLayout;
149 };
150
151 #endif // DIALOGBOX_SYMMETRY_H