Salome HOME
Update copyrights 2014.
[modules/gui.git] / src / SalomeApp / SalomeApp_CheckFileDlg.cxx
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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     QCheckBox* myCheckBox = new QCheckBox( theCheckBoxName, this );
40     QLabel*         label = new QLabel("", this);
41     QPushButton*       pb = new QPushButton(this);        
42     myCheckBoxes.append( myCheckBox );
43
44     int row = grid->rowCount();
45     grid->addWidget( label, row, 0 );
46     grid->addWidget( myCheckBox, row, 1 );
47     grid->addWidget( pb, row, 2 );
48
49     pb->hide();
50   }
51 }
52
53 /*!
54 Constructor
55 */
56 SalomeApp_CheckFileDlg::SalomeApp_CheckFileDlg( QWidget* parent, bool open, const QStringList& theCheckBoxNames, bool showQuickDir, bool modal) :
57 SUIT_FileDlg( parent, open, showQuickDir, modal )
58 {
59   if ( theCheckBoxNames.count() > 0 )
60   {
61     
62     QGridLayout* grid = ::qobject_cast<QGridLayout*>( layout() );
63     if ( grid )
64     {
65       for ( int i = 0; i < theCheckBoxNames.count(); ++i )
66       {
67         QCheckBox* myCheckBox = new QCheckBox( theCheckBoxNames.at(i), this );
68         myCheckBoxes.append( myCheckBox );
69     
70         int row = grid->rowCount();
71         grid->addWidget( myCheckBox, row, 1 );
72       }
73     }
74   }
75 }
76
77 /*!
78 Destructor
79 */
80 SalomeApp_CheckFileDlg::~SalomeApp_CheckFileDlg() 
81 {
82
83 }
84
85 /*!Sets checked.*/
86 void SalomeApp_CheckFileDlg::SetChecked( bool check, int checkBoxId/*=0*/ )
87 {
88   if ( checkBoxId >=0 && checkBoxId < myCheckBoxes.count() )
89     myCheckBoxes.at( checkBoxId )->setChecked(check);
90 }
91
92 /*!Is checked?
93  *\retval boolean - true, check box is checked, else false.
94  */
95 bool SalomeApp_CheckFileDlg::IsChecked( int checkBoxId ) const
96 {
97   if ( checkBoxId >=0 && checkBoxId < myCheckBoxes.count() )
98     return myCheckBoxes.at( checkBoxId )->isChecked();
99   return false;
100 }