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 "LightApp_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 LightApp_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_Selector* mySelector;
93 SMESH::SMESH_Mesh_var myMesh;
95 SMESH_LogicalFilter* myMeshOrSubMeshOrGroupFilter;
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;
121 void ConstructorsClicked(int constructorId);
123 void ClickOnCancel();
125 void SetEditCurrentArgument() ;
126 void SelectionIntoArgument() ;
127 void DeactivateActiveDialog() ;
128 void ActivateThisDialog() ;
129 void onTextChange(const QString&);
130 void onSelectMesh(bool toSelectMesh);
133 QGridLayout* SMESHGUI_SmoothingDlgLayout;
134 QGridLayout* GroupConstructorsLayout;
135 QGridLayout* GroupButtonsLayout;
136 QGridLayout* GroupArgumentsLayout;
139 #endif // DIALOGBOX_SMOOTHING_H