Salome HOME
NRI : Merge BRANCH_V1_2c
[modules/geom.git] / src / GEOMGUI / GeometryGUI_NbIsosDlg.cxx
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : GeometryGUI_NbIsosDlg.cxx
25 //  Author : 
26 //  Module : GEOM
27 //  $Header: 
28
29 using namespace std;
30 #include "GeometryGUI_NbIsosDlg.h"
31 #include "GeometryGUI.h"
32 #include "QAD_Tools.h"
33
34 #include <qlabel.h>
35 #include <qpushbutton.h>
36 #include <qgroupbox.h>
37 #include <qlayout.h>
38 #include <qspinbox.h>
39
40 //=================================================================================
41 // class    : GeometryGUI_NbIsosDlg()
42 // purpose  : Constructs a GeometryGUI_NbIsosDlg which is a child of 'parent', with the 
43 //            name 'name' and widget flags set to 'f'.
44 //            The dialog will by default be modeless, unless you set 'modal' to
45 //            TRUE to construct a modal dialog.
46 //=================================================================================
47 GeometryGUI_NbIsosDlg::GeometryGUI_NbIsosDlg( QWidget* parent, const char* name, bool modal, WFlags fl )
48     : QDialog( parent, name, modal, WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu )
49 {
50   if ( !name )
51     setName( "GeometryGUI_NbIsosDlg" );
52   setCaption( name );
53   setSizeGripEnabled( TRUE );
54   QGridLayout* MyDialogLayout = new QGridLayout( this ); 
55   MyDialogLayout->setSpacing( 6 );
56   MyDialogLayout->setMargin( 11 );
57   
58   /***************************************************************/
59   QGroupBox* GroupC1 = new QGroupBox( this, "GroupC1" );
60   GroupC1->setColumnLayout(0, Qt::Vertical );
61   GroupC1->layout()->setSpacing( 0 );
62   GroupC1->layout()->setMargin( 0 );
63   QGridLayout* GroupC1Layout = new QGridLayout( GroupC1->layout() );
64   GroupC1Layout->setAlignment( Qt::AlignTop );
65   GroupC1Layout->setSpacing( 6 );
66   GroupC1Layout->setMargin( 11 );
67   
68   TextLabel1 = new QLabel( GroupC1, "TextLabel1" );
69   TextLabel1->setText( tr( "GEOM_MEN_ISOU") );
70   GroupC1Layout->addWidget( TextLabel1, 0, 0 );
71   
72   SpinBoxU = new QSpinBox( GroupC1, "SpinBoxU" );
73   SpinBoxU->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
74   SpinBoxU->setMinValue( 1 );
75   SpinBoxU->setValue( 1 );
76   GroupC1Layout->addWidget( SpinBoxU, 0, 1 );
77
78   TextLabel2 = new QLabel( GroupC1, "TextLabel2" );
79   TextLabel2->setText( tr( "GEOM_MEN_ISOV") ) ;
80   GroupC1Layout->addWidget( TextLabel2, 0, 2 );
81
82   SpinBoxV = new QSpinBox( GroupC1, "SpinBoxV");
83   SpinBoxV->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
84   SpinBoxV->setValue( 1 );
85   SpinBoxV->setMinValue( 1 );
86   GroupC1Layout->addWidget( SpinBoxV, 0, 3 );
87   
88   /***************************************************************/
89   QGroupBox* GroupButtons = new QGroupBox( this, "GroupButtons" );
90   GroupButtons->setColumnLayout(0, Qt::Vertical );
91   GroupButtons->layout()->setSpacing( 0 );
92   GroupButtons->layout()->setMargin( 0 );
93   QGridLayout* GroupButtonsLayout = new QGridLayout( GroupButtons->layout() );
94   GroupButtonsLayout->setAlignment( Qt::AlignTop );
95   GroupButtonsLayout->setSpacing( 6 );
96   GroupButtonsLayout->setMargin( 11 );
97   
98   buttonOk = new QPushButton( GroupButtons, "buttonOk" );
99   buttonOk->setText( tr( "GEOM_BUT_OK" ) ) ;
100   buttonOk->setAutoDefault( TRUE );
101   buttonOk->setDefault( TRUE );
102   GroupButtonsLayout->addWidget( buttonOk, 0, 0 );
103   
104   GroupButtonsLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum ), 0, 1 );
105   
106   buttonCancel = new QPushButton( GroupButtons, "buttonCancel" );
107   buttonCancel->setText( tr( "GEOM_BUT_CANCEL" ) ) ;
108   buttonCancel->setAutoDefault( TRUE );
109   GroupButtonsLayout->addWidget( buttonCancel, 0, 2 );
110   /***************************************************************/
111   
112   MyDialogLayout->addWidget( GroupC1,      0, 0 );
113   MyDialogLayout->addWidget( GroupButtons, 1, 0 );
114   
115   /* Retrieve GeomGUI */
116   myGeomGUI = GeometryGUI::GetGeometryGUI() ;
117   
118   // signals and slots connections
119   connect( buttonOk,     SIGNAL( clicked() ), this, SLOT( accept() ) );
120   connect( buttonCancel, SIGNAL( clicked() ), this, SLOT( reject() ) );
121   
122   /* Move widget on the botton right corner of main widget */
123   QAD_Tools::centerWidget( this, parent );
124 }
125
126
127 //=================================================================================
128 // function : ~GeometryGUI_NbIsosDlg()
129 // purpose  : Destroys the object and frees any allocated resources
130 //=================================================================================
131 GeometryGUI_NbIsosDlg::~GeometryGUI_NbIsosDlg()
132 {
133     // no need to delete child widgets, Qt does it all for us
134 }
135