Salome HOME
#16522 [CEA 7599] Viscous layers hypothesis: extract layers as a group
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_NameCheckableGrpWdg.cxx
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D, OPEN CASCADE
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 #include "StdMeshersGUI_NameCheckableGrpWdg.h"
20
21 #include <QGridLayout>
22 #include <QLabel>
23 #include <QLineEdit>
24
25 #define SPACING 6
26 #define MARGIN  11
27
28 //================================================================================
29 /*!
30  * \brief Creates a QGroupBox with a given title
31  */
32 //================================================================================
33
34 StdMeshersGUI_NameCheckableGrpWdg::StdMeshersGUI_NameCheckableGrpWdg( const QString& groupTitle,
35                                                                       const QString& nameLabel )
36   : QGroupBox( groupTitle ),
37     myNameLineEdit( new QLineEdit( this ))
38 {
39   setCheckable( true );
40
41   QLabel* label = new QLabel( nameLabel );
42
43   QGridLayout* layout = new QGridLayout( this );
44   layout->setSpacing(SPACING);
45   layout->setMargin(MARGIN);
46
47   layout->addWidget( label,          0, 0 );
48   layout->addWidget( myNameLineEdit, 0, 1 );
49
50   connect( this, SIGNAL( toggled( bool )), myNameLineEdit, SLOT( setEnabled( bool )));
51 }
52
53 QString StdMeshersGUI_NameCheckableGrpWdg::getName()
54 {
55   return isChecked() ? myNameLineEdit->text() : QString();
56 }
57
58 void StdMeshersGUI_NameCheckableGrpWdg::setName( CORBA::String_var name )
59 {
60   myNameLineEdit->setText( name.in() );
61   setChecked( ! myNameLineEdit->text().isEmpty() );
62 }
63
64 void StdMeshersGUI_NameCheckableGrpWdg::setDefaultName( QString name )
65 {
66   myNameLineEdit->setText( name );
67   setChecked( ! myNameLineEdit->text().isEmpty() );
68 }