Salome HOME
Dump Puthon extension
[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_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   bool                   isValid();
77
78   SMESHGUI*              mySMESHGUI;              /* Current SMESHGUI object */
79   SMESHGUI_IdValidator*  myIdValidator;
80   LightApp_SelectionMgr* mySelectionMgr;          /* User shape selection */
81   int                    myNbOkElements;          /* to check when elements are defined */
82   QString                myElementsId;
83   SVTK_Selector*         mySelector;
84
85   QWidget*               myEditCurrentArgument;   /* Current  LineEdit */
86
87   SMESH::SMESH_IDSource_var mySelectedObject;
88
89   bool                   myBusy;
90   SMESH::SMESH_Mesh_var  myMesh;
91   SMESH_Actor*           myActor;
92   SMESH_LogicalFilter*   myMeshOrSubMeshOrGroupFilter;
93     
94   QGroupBox*             ConstructorsBox;
95   QButtonGroup*          GroupConstructors;
96   QRadioButton*          RadioButton1;
97   QRadioButton*          RadioButton2;
98   QRadioButton*          RadioButton3;
99   QGroupBox*             GroupButtons;
100   QPushButton*           buttonOk;
101   QPushButton*           buttonCancel;
102   QPushButton*           buttonApply;
103   QPushButton*           buttonHelp;
104   QGroupBox*             GroupArguments;
105   QGroupBox*             GroupMirror;
106   QLabel*                TextLabelElements;
107   QPushButton*           SelectElementsButton;
108   QLineEdit*             LineEditElements;
109   QCheckBox*             CheckBoxMesh;
110
111   QLabel*                TextLabelPoint;
112   QPushButton*           SelectPointButton;
113   QLabel*                TextLabelX;
114   SMESHGUI_SpinBox*      SpinBox_X;
115   QLabel*                TextLabelY;
116   SMESHGUI_SpinBox*      SpinBox_Y;
117   QLabel*                TextLabelZ;
118   SMESHGUI_SpinBox*      SpinBox_Z;
119   QLabel*                TextLabelVector;
120   QPushButton*           SelectVectorButton;
121   QLabel*                TextLabelDX;
122   SMESHGUI_SpinBox*      SpinBox_DX;
123   QLabel*                TextLabelDY;
124   SMESHGUI_SpinBox*      SpinBox_DY;
125   QLabel*                TextLabelDZ;
126   SMESHGUI_SpinBox*      SpinBox_DZ;
127     
128   QGroupBox*             ActionBox;
129   QButtonGroup*          ActionGroup;
130   QCheckBox*             MakeGroupsCheck;
131   QLineEdit*             LineEditNewMesh;
132
133   QString                myHelpFileName;
134    
135 private slots:
136   void                   ConstructorsClicked( int );
137   void                   ClickOnOk();
138   void                   ClickOnCancel();
139   bool                   ClickOnApply();
140   void                   ClickOnHelp();
141   void                   SetEditCurrentArgument();
142   void                   SelectionIntoArgument();
143   void                   DeactivateActiveDialog();
144   void                   ActivateThisDialog();
145   void                   onTextChange( const QString& );
146   void                   onSelectMesh( bool );
147   void                   onVectorChanged();
148   void                   onActionClicked( int );
149 };
150
151 #endif // SMESHGUI_SYMMETRYDLG_H