Salome HOME
First executable version
[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 "SMESH_SMESHGUI.hxx"
33
34 #include "LightApp_SelectionMgr.h"
35
36 #include "SMESH_LogicalFilter.hxx"
37
38 // QT Includes
39 #include <qdialog.h>
40
41 class QGridLayout; 
42 class QHBoxLayout;
43 class QButtonGroup;
44 class QGroupBox;
45 class QLabel;
46 class QLineEdit;
47 class QPushButton;
48 class QRadioButton;
49 class QCheckBox;
50 class SMESHGUI_SpinBox;
51 class SMESHGUI;
52 class SMESH_Actor;
53 class SVTK_ViewWindow;
54 class SVTK_Selector;
55
56 // IDL Headers
57 #include <SALOMEconfig.h>
58 #include CORBA_SERVER_HEADER(SMESH_Mesh)
59
60
61 //=================================================================================
62 // class    : SMESHGUI_SymmetryDlg
63 // purpose  :
64 //=================================================================================
65 class SMESHGUI_EXPORT SMESHGUI_SymmetryDlg : public QDialog
66
67     Q_OBJECT
68
69 public:
70     SMESHGUI_SymmetryDlg( SMESHGUI*,
71                           const char* name = 0,
72                           bool modal = FALSE,
73                           WFlags fl = 0);
74     ~SMESHGUI_SymmetryDlg();
75
76 private:
77     void Init (bool ResetControls = true);
78     void closeEvent (QCloseEvent*);
79     void enterEvent (QEvent*);                             /* mouse enter the QWidget */
80     void hideEvent (QHideEvent*);                          /* ESC key */
81     int GetConstructorId();
82     bool IsMirrorOk();
83
84     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
85     LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
86     int                           myNbOkElements;          /* to check when elements are defined */
87     QString                       myElementsId;
88     SVTK_Selector*                mySelector;
89
90     QWidget*                      myEditCurrentArgument;   /* Current  LineEdit */
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     QRadioButton* RadioButton3;
101     QGroupBox* GroupButtons;
102     QPushButton* buttonOk;
103     QPushButton* buttonCancel;
104     QPushButton* buttonApply;
105     QGroupBox* GroupArguments;
106     QGroupBox* GroupMirror;
107     QLabel* TextLabelElements;
108     QPushButton* SelectElementsButton;
109     QLineEdit* LineEditElements;
110     QCheckBox* CheckBoxMesh;
111
112     QLabel* TextLabelPoint;
113     QPushButton* SelectPointButton;
114     QLabel* TextLabelX;
115     SMESHGUI_SpinBox* SpinBox_X;
116     QLabel* TextLabelY;
117     SMESHGUI_SpinBox* SpinBox_Y;
118     QLabel* TextLabelZ;
119     SMESHGUI_SpinBox* SpinBox_Z;
120     QLabel* TextLabelVector;
121     QPushButton* SelectVectorButton;
122     QLabel* TextLabelDX;
123     SMESHGUI_SpinBox* SpinBox_DX;
124     QLabel* TextLabelDY;
125     SMESHGUI_SpinBox* SpinBox_DY;
126     QLabel* TextLabelDZ;
127     SMESHGUI_SpinBox* SpinBox_DZ;
128     
129     QCheckBox* CheckBoxCopy;
130    
131     private slots:
132
133     void ConstructorsClicked(int constructorId);
134     void ClickOnOk();
135     void ClickOnCancel();
136     void ClickOnApply();
137     void SetEditCurrentArgument() ;
138     void SelectionIntoArgument() ;
139     void DeactivateActiveDialog() ;
140     void ActivateThisDialog() ;
141     void onTextChange(const QString&);
142     void onSelectMesh(bool toSelectMesh);
143     void onVectorChanged();
144     
145 protected:
146     QGridLayout* SMESHGUI_SymmetryDlgLayout;
147     QGridLayout* GroupConstructorsLayout;
148     QGridLayout* GroupButtonsLayout;
149     QGridLayout* GroupArgumentsLayout;
150 };
151
152 #endif // DIALOGBOX_SYMMETRY_H