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