Salome HOME
IPAL21120 SIGSEGV on Meshing attached Compound with Automatic Hexadralization
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_SymmetryDlg.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_SymmetryDlg.h
24 //  Author : Michael ZORIN
25 //  Module : SMESH
26 //  $Header: 
27 //
28 #ifndef DIALOGBOX_SYMMETRY_H
29 #define DIALOGBOX_SYMMETRY_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 QHBoxLayout;
42 class QButtonGroup;
43 class QGroupBox;
44 class QLabel;
45 class QLineEdit;
46 class QPushButton;
47 class QRadioButton;
48 class QCheckBox;
49 class SMESHGUI_SpinBox;
50 class SMESHGUI;
51 class SMESH_Actor;
52 class SVTK_ViewWindow;
53 class SVTK_Selector;
54
55 // IDL Headers
56 #include <SALOMEconfig.h>
57 #include CORBA_SERVER_HEADER(SMESH_Mesh)
58
59
60 //=================================================================================
61 // class    : SMESHGUI_SymmetryDlg
62 // purpose  :
63 //=================================================================================
64 class SMESHGUI_EXPORT SMESHGUI_SymmetryDlg : public QDialog
65
66     Q_OBJECT
67
68 public:
69     SMESHGUI_SymmetryDlg( SMESHGUI*,
70                           const char* name = 0,
71                           bool modal = FALSE,
72                           WFlags fl = 0);
73     ~SMESHGUI_SymmetryDlg();
74
75 private:
76     void Init (bool ResetControls = true);
77     void closeEvent (QCloseEvent*);
78     void enterEvent (QEvent*);                             /* mouse enter the QWidget */
79     void hideEvent (QHideEvent*);                          /* ESC key */
80     void keyPressEvent(QKeyEvent*);
81     int GetConstructorId();
82     bool IsMirrorOk();
83     void setNewMeshName();
84
85     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
86     LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
87     int                           myNbOkElements;          /* to check when elements are defined */
88     QString                       myElementsId;
89     SVTK_Selector*                mySelector;
90
91     QWidget*                      myEditCurrentArgument;   /* Current  LineEdit */
92
93     bool                          myBusy;
94     SMESH::SMESH_Mesh_var         myMesh;
95     SMESH_Actor*                  myActor;
96     SMESH_LogicalFilter*          myMeshOrSubMeshOrGroupFilter;
97     
98     QButtonGroup* GroupConstructors;
99     QRadioButton* RadioButton1;
100     QRadioButton* RadioButton2;
101     QRadioButton* RadioButton3;
102     QGroupBox* GroupButtons;
103     QPushButton* buttonOk;
104     QPushButton* buttonCancel;
105     QPushButton* buttonApply;
106     QPushButton* buttonHelp;
107     QGroupBox* GroupArguments;
108     QGroupBox* GroupMirror;
109     QLabel* TextLabelElements;
110     QPushButton* SelectElementsButton;
111     QLineEdit* LineEditElements;
112     QCheckBox* CheckBoxMesh;
113
114     QLabel* TextLabelPoint;
115     QPushButton* SelectPointButton;
116     QLabel* TextLabelX;
117     SMESHGUI_SpinBox* SpinBox_X;
118     QLabel* TextLabelY;
119     SMESHGUI_SpinBox* SpinBox_Y;
120     QLabel* TextLabelZ;
121     SMESHGUI_SpinBox* SpinBox_Z;
122     QLabel* TextLabelVector;
123     QPushButton* SelectVectorButton;
124     QLabel* TextLabelDX;
125     SMESHGUI_SpinBox* SpinBox_DX;
126     QLabel* TextLabelDY;
127     SMESHGUI_SpinBox* SpinBox_DY;
128     QLabel* TextLabelDZ;
129     SMESHGUI_SpinBox* SpinBox_DZ;
130     
131     //QCheckBox* CheckBoxCopy;
132     QButtonGroup* ActionGroup;
133     QCheckBox* MakeGroupsCheck;
134     QLineEdit* LineEditNewMesh;
135
136     QString myHelpFileName;
137    
138     private slots:
139
140     void ConstructorsClicked(int constructorId);
141     void ClickOnOk();
142     void ClickOnCancel();
143     void ClickOnApply();
144     void ClickOnHelp();
145     void SetEditCurrentArgument() ;
146     void SelectionIntoArgument() ;
147     void DeactivateActiveDialog() ;
148     void ActivateThisDialog() ;
149     void onTextChange(const QString&);
150     void onSelectMesh(bool toSelectMesh);
151     void onVectorChanged();
152     void onActionClicked(int button);
153
154 protected:
155     QGridLayout* SMESHGUI_SymmetryDlgLayout;
156     QGridLayout* GroupConstructorsLayout;
157     QGridLayout* GroupButtonsLayout;
158     QGridLayout* GroupArgumentsLayout;
159 };
160
161 #endif // DIALOGBOX_SYMMETRY_H