Salome HOME
Update copyright information
[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_IdValidator;
47 class SMESHGUI_SpinBox;
48 class SMESHGUI;
49 class SMESH_Actor;
50 class SVTK_Selector;
51 class LightApp_SelectionMgr;
52 class SMESH_LogicalFilter;
53
54 //=================================================================================
55 // class    : SMESHGUI_SymmetryDlg
56 // purpose  :
57 //=================================================================================
58 class SMESHGUI_EXPORT SMESHGUI_SymmetryDlg : public QDialog
59
60   Q_OBJECT
61
62 public:
63   SMESHGUI_SymmetryDlg( SMESHGUI* );
64   ~SMESHGUI_SymmetryDlg();
65
66 private:
67   void                   Init( bool = true );
68   void                   closeEvent( QCloseEvent* );
69   void                   enterEvent( QEvent* );         /* mouse enter the QWidget */
70   void                   hideEvent( QHideEvent* );      /* ESC key */
71   void                   keyPressEvent( QKeyEvent* );
72   int                    GetConstructorId();
73   bool                   IsMirrorOk();
74   void                   setNewMeshName();
75
76   SMESHGUI*              mySMESHGUI;              /* Current SMESHGUI object */
77   SMESHGUI_IdValidator*  myIdValidator;
78   LightApp_SelectionMgr* mySelectionMgr;          /* User shape selection */
79   int                    myNbOkElements;          /* to check when elements are defined */
80   QString                myElementsId;
81   SVTK_Selector*         mySelector;
82
83   QWidget*               myEditCurrentArgument;   /* Current  LineEdit */
84
85   bool                   myBusy;
86   SMESH::SMESH_Mesh_var  myMesh;
87   SMESH_Actor*           myActor;
88   SMESH_LogicalFilter*   myMeshOrSubMeshOrGroupFilter;
89     
90   QGroupBox*             ConstructorsBox;
91   QButtonGroup*          GroupConstructors;
92   QRadioButton*          RadioButton1;
93   QRadioButton*          RadioButton2;
94   QRadioButton*          RadioButton3;
95   QGroupBox*             GroupButtons;
96   QPushButton*           buttonOk;
97   QPushButton*           buttonCancel;
98   QPushButton*           buttonApply;
99   QPushButton*           buttonHelp;
100   QGroupBox*             GroupArguments;
101   QGroupBox*             GroupMirror;
102   QLabel*                TextLabelElements;
103   QPushButton*           SelectElementsButton;
104   QLineEdit*             LineEditElements;
105   QCheckBox*             CheckBoxMesh;
106
107   QLabel*                TextLabelPoint;
108   QPushButton*           SelectPointButton;
109   QLabel*                TextLabelX;
110   SMESHGUI_SpinBox*      SpinBox_X;
111   QLabel*                TextLabelY;
112   SMESHGUI_SpinBox*      SpinBox_Y;
113   QLabel*                TextLabelZ;
114   SMESHGUI_SpinBox*      SpinBox_Z;
115   QLabel*                TextLabelVector;
116   QPushButton*           SelectVectorButton;
117   QLabel*                TextLabelDX;
118   SMESHGUI_SpinBox*      SpinBox_DX;
119   QLabel*                TextLabelDY;
120   SMESHGUI_SpinBox*      SpinBox_DY;
121   QLabel*                TextLabelDZ;
122   SMESHGUI_SpinBox*      SpinBox_DZ;
123     
124   QGroupBox*             ActionBox;
125   QButtonGroup*          ActionGroup;
126   QCheckBox*             MakeGroupsCheck;
127   QLineEdit*             LineEditNewMesh;
128
129   QString                myHelpFileName;
130    
131 private slots:
132   void                   ConstructorsClicked( int );
133   void                   ClickOnOk();
134   void                   ClickOnCancel();
135   void                   ClickOnApply();
136   void                   ClickOnHelp();
137   void                   SetEditCurrentArgument();
138   void                   SelectionIntoArgument();
139   void                   DeactivateActiveDialog();
140   void                   ActivateThisDialog();
141   void                   onTextChange( const QString& );
142   void                   onSelectMesh( bool );
143   void                   onVectorChanged();
144   void                   onActionClicked( int );
145 };
146
147 #endif // SMESHGUI_SYMMETRYDLG_H