Salome HOME
8ecb6b4bbedcc068606a67807938d9114d945a54
[modules/gui.git] / src / SalomeApp / SalomeApp_CheckFileDlg.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "SalomeApp_CheckFileDlg.h"
24
25 #include <QCheckBox>
26 #include <QLabel>
27 #include <QPushButton>
28 #include <QGridLayout>
29
30 /*!
31 Constructor
32 */
33 SalomeApp_CheckFileDlg::SalomeApp_CheckFileDlg( QWidget* parent, bool open, const QString& theCheckBoxName, bool showQuickDir, bool modal) :
34 SUIT_FileDlg( parent, open, showQuickDir, modal )
35 {    
36   QGridLayout* grid = ::qobject_cast<QGridLayout*>( layout() );
37   if ( grid )
38   {
39     myCheckBox = new QCheckBox( theCheckBoxName, this );
40     QLabel* label = new QLabel("", this);
41     QPushButton* pb = new QPushButton(this);        
42     
43     int row = grid->rowCount();
44     grid->addWidget( label, row, 0 );
45     grid->addWidget( myCheckBox, row, 1 );
46     grid->addWidget( pb, row, 2 );
47       
48     pb->hide();
49   }
50 }
51
52 /*!
53 Destructor
54 */
55 SalomeApp_CheckFileDlg::~SalomeApp_CheckFileDlg() 
56 {
57
58 }
59
60 /*!Sets checked.*/
61 void SalomeApp_CheckFileDlg::SetChecked( bool check )
62 {
63   myCheckBox->setChecked(check);
64 }
65
66 /*!Is checked?
67  *\retval boolean - true, check box is checked, else false.
68  */
69 bool SalomeApp_CheckFileDlg::IsChecked() const
70 {
71   return myCheckBox->isChecked();
72 }