Salome HOME
#17784 [EDF] MESH-GEMS-2.9.6 Meshers options
[plugins/hybridplugin.git] / src / GUI / HYBRIDPluginGUI_StdWidget.cxx
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // ---
21 // File    : BLSURFPluginGUI_StdWidget.cxx
22 // Authors : Gilles DAVID (OCC)
23 // ---
24 //
25
26 #include "HYBRIDPluginGUI_Dlg.h"
27
28 #include <SUIT_Session.h>
29 #include <SUIT_ResourceMgr.h>
30 #include <SUIT_FileDlg.h>
31 #include <SalomeApp_Tools.h>
32
33 //using namespace std;
34
35 //////////////////////////////////////////
36 // HYBRIDPluginGUI_StdWidget
37 //////////////////////////////////////////
38
39 HYBRIDPluginGUI_StdWidget::HYBRIDPluginGUI_StdWidget( QWidget* parent, Qt::WindowFlags f )
40   : QWidget( parent, f )
41 {
42   setupUi( this );
43
44   myHeightFirstLayer->RangeStepAndValidator( 0, 1e+6, 1, "length_precision" );
45   myBoundaryLayersMaxElemAngle->RangeStepAndValidator( 90, 360, 5, "angle_precision" );
46   myBoundaryLayersProgression->RangeStepAndValidator( -100, 100, 0.1, "length_precision" );
47   myCoreSize->RangeStepAndValidator( 0, 1e+6, 1, "length_precision" );
48
49   connect( myCoreSizeEnabled,  SIGNAL( toggled(bool)), myCoreSize, SLOT( setEnabled(bool) ));
50 }
51
52 HYBRIDPluginGUI_StdWidget::~HYBRIDPluginGUI_StdWidget()
53 {
54 }