Salome HOME
a039ac27fef9a8b5c38a27d4c6c6137a868e45dc
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_SymmetryDlg.h
1 // Copyright (C) 2007-2012  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
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_SymmetryDlg.h
25 // Author : Michael ZORIN, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_SYMMETRYDLG_H
28 #define SMESHGUI_SYMMETRYDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32 #include "SMESHGUI_PreviewDlg.h"
33
34 // IDL includes
35 #include <SALOMEconfig.h>
36 #include CORBA_SERVER_HEADER(SMESH_Mesh)
37 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
38
39 class QButtonGroup;
40 class QGroupBox;
41 class QLabel;
42 class QLineEdit;
43 class QPushButton;
44 class QRadioButton;
45 class QCheckBox;
46 class SMESHGUI;
47 class SMESHGUI_IdValidator;
48 class SMESHGUI_SpinBox;
49 class SMESHGUI_FilterDlg;
50 class SMESH_Actor;
51 class SVTK_Selector;
52 class LightApp_SelectionMgr;
53 class SMESH_LogicalFilter;
54
55 //=================================================================================
56 // class    : SMESHGUI_SymmetryDlg
57 // purpose  :
58 //=================================================================================
59 class SMESHGUI_EXPORT SMESHGUI_SymmetryDlg : public SMESHGUI_PreviewDlg
60
61   Q_OBJECT
62
63 public:
64   SMESHGUI_SymmetryDlg( SMESHGUI* );
65   ~SMESHGUI_SymmetryDlg();
66
67 private:
68   void                   Init( bool = true );
69   void                   closeEvent( QCloseEvent* );
70   void                   enterEvent( QEvent* );         /* mouse enter the QWidget */
71   void                   hideEvent( QHideEvent* );      /* ESC key */
72   void                   keyPressEvent( QKeyEvent* );
73   int                    GetConstructorId();
74   bool                   IsMirrorOk();
75   void                   setNewMeshName();
76
77   void                   getMirror(SMESH::AxisStruct& theMirror, SMESH::SMESH_MeshEditor::MirrorType& aMirrorType);
78
79   bool                   isValid();
80
81   SMESHGUI_IdValidator*  myIdValidator;
82   LightApp_SelectionMgr* mySelectionMgr;          /* User shape selection */
83   int                    myNbOkElements;          /* to check when elements are defined */
84   QString                myElementsId;
85   SVTK_Selector*         mySelector;
86
87   QWidget*               myEditCurrentArgument;   /* Current  LineEdit */
88
89   SMESH::SMESH_IDSource_var mySelectedObject;
90
91   bool                   myBusy;
92   SMESH::SMESH_Mesh_var  myMesh;
93   SMESH_Actor*           myActor;
94   SMESH_LogicalFilter*   myMeshOrSubMeshOrGroupFilter;
95     
96   QGroupBox*             ConstructorsBox;
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   QPushButton*           buttonHelp;
106   QGroupBox*             GroupArguments;
107   QGroupBox*             GroupMirror;
108   QLabel*                TextLabelElements;
109   QPushButton*           SelectElementsButton;
110   QLineEdit*             LineEditElements;
111   QCheckBox*             CheckBoxMesh;
112
113   QLabel*                TextLabelPoint;
114   QPushButton*           SelectPointButton;
115   QLabel*                TextLabelX;
116   SMESHGUI_SpinBox*      SpinBox_X;
117   QLabel*                TextLabelY;
118   SMESHGUI_SpinBox*      SpinBox_Y;
119   QLabel*                TextLabelZ;
120   SMESHGUI_SpinBox*      SpinBox_Z;
121   QLabel*                TextLabelVector;
122   QPushButton*           SelectVectorButton;
123   QLabel*                TextLabelDX;
124   SMESHGUI_SpinBox*      SpinBox_DX;
125   QLabel*                TextLabelDY;
126   SMESHGUI_SpinBox*      SpinBox_DY;
127   QLabel*                TextLabelDZ;
128   SMESHGUI_SpinBox*      SpinBox_DZ;
129     
130   QGroupBox*             ActionBox;
131   QButtonGroup*          ActionGroup;
132   QCheckBox*             MakeGroupsCheck;
133   QLineEdit*             LineEditNewMesh;
134
135   QString                myHelpFileName;
136    
137   QPushButton*           myFilterBtn;
138   SMESHGUI_FilterDlg*    myFilterDlg;
139
140 protected slots:
141   virtual void           onDisplaySimulation( bool );
142    
143 private slots:
144   void                   ConstructorsClicked( int );
145   void                   ClickOnOk();
146   void                   ClickOnCancel();
147   bool                   ClickOnApply();
148   void                   ClickOnHelp();
149   void                   SetEditCurrentArgument();
150   void                   SelectionIntoArgument();
151   void                   DeactivateActiveDialog();
152   void                   ActivateThisDialog();
153   void                   onTextChange( const QString& );
154   void                   onSelectMesh( bool );
155   void                   onVectorChanged();
156   void                   onActionClicked( int );
157   void                   setFilters();
158 };
159
160 #endif // SMESHGUI_SYMMETRYDLG_H