Salome HOME
Update version number: 3.1.0a2
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_SmoothingDlg.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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESHGUI_SmoothingDlg.h
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header: 
28
29 #ifndef DIALOGBOX_SMOOTHING_H
30 #define DIALOGBOX_SMOOTHING_H
31
32 #include "SalomeApp_SelectionMgr.h"
33
34 #include "SMESH_LogicalFilter.hxx"
35
36 // QT Includes
37 #include <qdialog.h>
38
39 class QGridLayout; 
40 class QButtonGroup;
41 class QGroupBox;
42 class QLabel;
43 class QLineEdit;
44 class QPushButton;
45 class QRadioButton;
46 class QComboBox;
47 class QCheckBox;
48 class QSpinBox;
49 class SMESHGUI_SpinBox;
50 class SMESHGUI;
51 class SMESH_Actor;
52 class SVTK_ViewWindow;
53 class SVTK_Selector;
54
55
56 // IDL Headers
57 #include <SALOMEconfig.h>
58 #include CORBA_SERVER_HEADER(SMESH_Mesh)
59
60
61 //=================================================================================
62 // class    : SMESHGUI_SmoothingDlg
63 // purpose  :
64 //=================================================================================
65 class SMESHGUI_SmoothingDlg : public QDialog
66
67     Q_OBJECT
68
69 public:
70     SMESHGUI_SmoothingDlg( SMESHGUI*,
71                            const char* name = 0,
72                            bool modal = FALSE,
73                            WFlags fl = 0);
74     ~SMESHGUI_SmoothingDlg();
75
76 private:
77
78     void Init();
79     void closeEvent(QCloseEvent*);
80     void enterEvent (QEvent*);                             /* mouse enter the QWidget */
81     void hideEvent (QHideEvent*);                          /* ESC key */
82
83     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
84     SalomeApp_SelectionMgr*       mySelectionMgr;          /* User shape selection */
85     QString                       myElementsId;
86     int                           myNbOkElements;          /* to check when elements are defined */
87     int                           myNbOkNodes;             /* to check when fixed nodes are defined */
88     int                           myConstructorId;         /* Current constructor id = radio button id */
89     QLineEdit*                    myEditCurrentArgument;   /* Current  LineEdit */
90     SVTK_Selector*                mySelector;
91
92     bool                          myBusy;
93     SMESH::SMESH_Mesh_var         myMesh;
94     SMESH_Actor*                  myActor;
95     SMESH_LogicalFilter*          myMeshOrSubMeshOrGroupFilter;
96
97     QButtonGroup* GroupConstructors;
98     QRadioButton* Constructor1;
99     QGroupBox* GroupButtons;
100     QPushButton* buttonOk;
101     QPushButton* buttonCancel;
102     QPushButton* buttonApply;
103     QGroupBox* GroupArguments;
104     QLabel* TextLabelElements;
105     QPushButton* SelectElementsButton;
106     QLineEdit* LineEditElements;
107     QCheckBox* CheckBoxMesh;
108     QLabel* TextLabelNodes;
109     QPushButton* SelectNodesButton;
110     QLineEdit* LineEditNodes;
111     QLabel* TextLabelMethod;
112     QComboBox* ComboBoxMethod;
113     QLabel* TextLabelLimit;
114     QSpinBox* SpinBox_IterationLimit;
115     QLabel* TextLabelAspectRatio;
116     SMESHGUI_SpinBox* SpinBox_AspectRatio;
117     QCheckBox       * CheckBoxParametric;
118     
119 private slots:
120
121     void ConstructorsClicked(int constructorId);
122     void ClickOnOk();
123     void ClickOnCancel();
124     void ClickOnApply();
125     void SetEditCurrentArgument() ;
126     void SelectionIntoArgument() ;
127     void DeactivateActiveDialog() ;
128     void ActivateThisDialog() ;
129     void onTextChange(const QString&);
130     void onSelectMesh(bool toSelectMesh);
131
132 protected:
133     QGridLayout* SMESHGUI_SmoothingDlgLayout;
134     QGridLayout* GroupConstructorsLayout;
135     QGridLayout* GroupButtonsLayout;
136     QGridLayout* GroupArgumentsLayout;
137 };
138
139 #endif // DIALOGBOX_SMOOTHING_H