1 // SMESH SMESHGUI : GUI for SMESH component
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
24 // File : SMESHGUI_SmoothingDlg.h
25 // Author : Michael ZORIN
29 #ifndef DIALOGBOX_SMOOTHING_H
30 #define DIALOGBOX_SMOOTHING_H
32 #include "SalomeApp_SelectionMgr.h"
34 #include "SMESH_LogicalFilter.hxx"
49 class SMESHGUI_SpinBox;
52 class SVTK_ViewWindow;
57 #include <SALOMEconfig.h>
58 #include CORBA_SERVER_HEADER(SMESH_Mesh)
61 //=================================================================================
62 // class : SMESHGUI_SmoothingDlg
64 //=================================================================================
65 class SMESHGUI_SmoothingDlg : public QDialog
70 SMESHGUI_SmoothingDlg( SMESHGUI*,
74 ~SMESHGUI_SmoothingDlg();
79 void closeEvent(QCloseEvent*);
80 void enterEvent (QEvent*); /* mouse enter the QWidget */
81 void hideEvent (QHideEvent*); /* ESC key */
83 SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
84 SalomeApp_SelectionMgr* mySelectionMgr; /* User shape selection */
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_ViewWindow* myViewWindow;
91 SVTK_Selector* mySelector;
94 SMESH::SMESH_Mesh_var myMesh;
96 SMESH_LogicalFilter* myMeshOrSubMeshOrGroupFilter;
98 QButtonGroup* GroupConstructors;
99 QRadioButton* Constructor1;
100 QGroupBox* GroupButtons;
101 QPushButton* buttonOk;
102 QPushButton* buttonCancel;
103 QPushButton* buttonApply;
104 QGroupBox* GroupArguments;
105 QLabel* TextLabelElements;
106 QPushButton* SelectElementsButton;
107 QLineEdit* LineEditElements;
108 QCheckBox* CheckBoxMesh;
109 QLabel* TextLabelNodes;
110 QPushButton* SelectNodesButton;
111 QLineEdit* LineEditNodes;
112 QLabel* TextLabelMethod;
113 QComboBox* ComboBoxMethod;
114 QLabel* TextLabelLimit;
115 QSpinBox* SpinBox_IterationLimit;
116 QLabel* TextLabelAspectRatio;
117 SMESHGUI_SpinBox* SpinBox_AspectRatio;
118 QCheckBox * CheckBoxParametric;
122 void ConstructorsClicked(int constructorId);
124 void ClickOnCancel();
126 void SetEditCurrentArgument() ;
127 void SelectionIntoArgument() ;
128 void DeactivateActiveDialog() ;
129 void ActivateThisDialog() ;
130 void onTextChange(const QString&);
131 void onSelectMesh(bool toSelectMesh);
134 QGridLayout* SMESHGUI_SmoothingDlgLayout;
135 QGridLayout* GroupConstructorsLayout;
136 QGridLayout* GroupButtonsLayout;
137 QGridLayout* GroupArgumentsLayout;
140 #endif // DIALOGBOX_SMOOTHING_H