]> SALOME platform Git repositories - modules/smesh.git/blob - src/SMESHGUI/SMESHGUI_SymmetryDlg.h
Salome HOME
0019941: EDF 766 SMESH : Max length hypothesis
[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, Open CASCADE S.A.S.
25 //
26 #ifndef SMESHGUI_SYMMETRYDLG_H
27 #define SMESHGUI_SYMMETRYDLG_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // Qt includes
33 #include <QDialog>
34
35 // IDL includes
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
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 QDialog
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   SMESHGUI*              mySMESHGUI;              /* Current SMESHGUI object */
78   SMESHGUI_IdValidator*  myIdValidator;
79   LightApp_SelectionMgr* mySelectionMgr;          /* User shape selection */
80   int                    myNbOkElements;          /* to check when elements are defined */
81   QString                myElementsId;
82   SVTK_Selector*         mySelector;
83
84   QWidget*               myEditCurrentArgument;   /* Current  LineEdit */
85
86   bool                   myBusy;
87   SMESH::SMESH_Mesh_var  myMesh;
88   SMESH_Actor*           myActor;
89   SMESH_LogicalFilter*   myMeshOrSubMeshOrGroupFilter;
90     
91   QGroupBox*             ConstructorsBox;
92   QButtonGroup*          GroupConstructors;
93   QRadioButton*          RadioButton1;
94   QRadioButton*          RadioButton2;
95   QRadioButton*          RadioButton3;
96   QGroupBox*             GroupButtons;
97   QPushButton*           buttonOk;
98   QPushButton*           buttonCancel;
99   QPushButton*           buttonApply;
100   QPushButton*           buttonHelp;
101   QGroupBox*             GroupArguments;
102   QGroupBox*             GroupMirror;
103   QLabel*                TextLabelElements;
104   QPushButton*           SelectElementsButton;
105   QLineEdit*             LineEditElements;
106   QCheckBox*             CheckBoxMesh;
107
108   QLabel*                TextLabelPoint;
109   QPushButton*           SelectPointButton;
110   QLabel*                TextLabelX;
111   SMESHGUI_SpinBox*      SpinBox_X;
112   QLabel*                TextLabelY;
113   SMESHGUI_SpinBox*      SpinBox_Y;
114   QLabel*                TextLabelZ;
115   SMESHGUI_SpinBox*      SpinBox_Z;
116   QLabel*                TextLabelVector;
117   QPushButton*           SelectVectorButton;
118   QLabel*                TextLabelDX;
119   SMESHGUI_SpinBox*      SpinBox_DX;
120   QLabel*                TextLabelDY;
121   SMESHGUI_SpinBox*      SpinBox_DY;
122   QLabel*                TextLabelDZ;
123   SMESHGUI_SpinBox*      SpinBox_DZ;
124     
125   QGroupBox*             ActionBox;
126   QButtonGroup*          ActionGroup;
127   QCheckBox*             MakeGroupsCheck;
128   QLineEdit*             LineEditNewMesh;
129
130   QString                myHelpFileName;
131    
132   SMESHGUI_FilterDlg*    myFilterDlg;
133    
134 private slots:
135   void                   ConstructorsClicked( int );
136   void                   ClickOnOk();
137   void                   ClickOnCancel();
138   void                   ClickOnApply();
139   void                   ClickOnHelp();
140   void                   SetEditCurrentArgument();
141   void                   SelectionIntoArgument();
142   void                   DeactivateActiveDialog();
143   void                   ActivateThisDialog();
144   void                   onTextChange( const QString& );
145   void                   onSelectMesh( bool );
146   void                   onVectorChanged();
147   void                   onActionClicked( int );
148   void                   setFilters();
149 };
150
151 #endif // SMESHGUI_SYMMETRYDLG_H