1 // Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 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.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 // SMESH SMESHGUI : GUI for SMESH component
23 // File : SMESHGUI_SmoothingDlg.h
24 // Author : Michael ZORIN
28 #ifndef DIALOGBOX_SMOOTHING_H
29 #define DIALOGBOX_SMOOTHING_H
31 #include "SMESH_SMESHGUI.hxx"
33 #include "LightApp_SelectionMgr.h"
35 #include "SMESH_LogicalFilter.hxx"
50 class SMESHGUI_SpinBox;
53 class SVTK_ViewWindow;
58 #include <SALOMEconfig.h>
59 #include CORBA_SERVER_HEADER(SMESH_Mesh)
62 //=================================================================================
63 // class : SMESHGUI_SmoothingDlg
65 //=================================================================================
66 class SMESHGUI_EXPORT SMESHGUI_SmoothingDlg : public QDialog
71 SMESHGUI_SmoothingDlg( SMESHGUI*,
75 ~SMESHGUI_SmoothingDlg();
80 void closeEvent(QCloseEvent*);
81 void enterEvent (QEvent*); /* mouse enter the QWidget */
82 void hideEvent (QHideEvent*); /* ESC key */
83 void keyPressEvent(QKeyEvent*);
85 SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
86 LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
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;
95 SMESH::SMESH_Mesh_var myMesh;
97 SMESH_LogicalFilter* myMeshOrSubMeshOrGroupFilter;
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;
122 QString myHelpFileName;
126 void ConstructorsClicked(int constructorId);
128 void ClickOnCancel();
131 void SetEditCurrentArgument() ;
132 void SelectionIntoArgument() ;
133 void DeactivateActiveDialog() ;
134 void ActivateThisDialog() ;
135 void onTextChange(const QString&);
136 void onSelectMesh(bool toSelectMesh);
139 QGridLayout* SMESHGUI_SmoothingDlgLayout;
140 QGridLayout* GroupConstructorsLayout;
141 QGridLayout* GroupButtonsLayout;
142 QGridLayout* GroupArgumentsLayout;
145 #endif // DIALOGBOX_SMOOTHING_H