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