Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_ConvToQuadDlg.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 /**
21 *  SMESH SMESHGUI
22 *
23 *  Copyright (C) 2005  CEA/DEN, EDF R&D
24 *
25 *
26 *
27 *  File   : SMESHGUI_ConvToQuadDlg.cxx
28 *  Module : SMESH
29 */
30
31 #include <SMESHGUI_ConvToQuadDlg.h>
32 #include <SUIT_Session.h>
33
34 #include <qgroupbox.h>
35 #include <qlayout.h>
36 #include <qcheckbox.h>
37 #include <qradiobutton.h>
38 #include <qbuttongroup.h>
39
40 SMESHGUI_ConvToQuadDlg::SMESHGUI_ConvToQuadDlg()
41 : SMESHGUI_Dialog( 0, false, true )
42 {
43
44   setCaption( tr( "CAPTION" ) );
45
46   // Create top controls  
47   QGroupBox* aGrp = new QGroupBox( 3, Qt::Horizontal, mainFrame() );
48   aGrp->setFrameStyle( QFrame::NoFrame );
49   aGrp->setInsideMargin( 0 );
50
51   // mesh
52   createObject( tr( "MESH" ), aGrp, 0 );
53
54   //Create check box
55    myMedNdsOnGeom = new QCheckBox( tr( "MEDIUMNDS" ), mainFrame() );
56
57   //Create RadioButtons
58   myBG = new QButtonGroup( 2, Qt::Vertical, "", mainFrame() );
59   myBG->setExclusive( true );
60   
61   myRB1 = new QRadioButton( myBG );  
62   myRB1->setText( tr( "RADIOBTN_1" ) );
63   myRB1->setChecked( true );
64
65   myRB2 = new QRadioButton( myBG );  
66   myRB2->setText( tr( "RADIOBTN_2" ) );
67
68   // Fill layout
69   QVBoxLayout* aLay = new QVBoxLayout( mainFrame(), 5, 5 );
70   aLay->addWidget( aGrp );
71   aLay->addWidget( myMedNdsOnGeom );
72   aLay->addWidget( myBG );
73   
74   connect(myBG, SIGNAL( clicked( int ) ), this, SIGNAL( onClicked( int ) ) );
75 }
76
77 SMESHGUI_ConvToQuadDlg::~SMESHGUI_ConvToQuadDlg()
78 {
79 }
80
81 bool SMESHGUI_ConvToQuadDlg::IsMediumNdsOnGeom() const
82 {
83   return !myMedNdsOnGeom->isChecked();
84 }
85
86 void SMESHGUI_ConvToQuadDlg::SetMediumNdsOnGeom(const bool theCheck)
87 {
88   myMedNdsOnGeom->setChecked(theCheck);
89 }
90
91 bool SMESHGUI_ConvToQuadDlg::IsEnabledCheck() const
92 {
93   return myMedNdsOnGeom->isEnabled();
94 }
95
96 void SMESHGUI_ConvToQuadDlg::SetEnabledCheck( const bool theCheck )
97 {
98   myMedNdsOnGeom->setEnabled( theCheck );
99 }
100
101 int SMESHGUI_ConvToQuadDlg::CurrentRB( )
102 {
103   return myBG->selectedId();
104 }
105
106 void SMESHGUI_ConvToQuadDlg::SetEnabledControls( const bool theCheck )
107 {
108   myBG->setEnabled( theCheck );
109   myMedNdsOnGeom->setEnabled( theCheck );
110   setButtonEnabled( theCheck, QtxDialog::OK | QtxDialog::Apply );
111 }
112
113 void SMESHGUI_ConvToQuadDlg::SetEnabledRB( const int idx, const bool theCheck ) 
114 {
115   if(idx)
116   {
117     myRB2->setEnabled( theCheck );
118     myRB1->setEnabled( !theCheck );
119     myRB1->setChecked( true );
120   }
121   else
122   {
123     myRB1->setEnabled( theCheck );
124     myRB2->setEnabled( !theCheck );
125     myRB2->setChecked( true );
126   }
127   emit onClicked( myBG->selectedId() );
128 }
129
130