Salome HOME
*** empty log message ***
[modules/geom.git] / src / MeasureGUI / MeasureGUI_BndBoxDlg.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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : MeasureGUI_BndBoxDlg.cxx
23 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
24 //
25
26 #include "MeasureGUI_BndBoxDlg.h"
27 #include "MeasureGUI_Widgets.h"
28
29 #include <GEOMBase.h>
30
31 #include <BRepPrimAPI_MakeBox.hxx>
32
33 #include <SUIT_Session.h>
34 #include <SUIT_ResourceMgr.h>
35 #include <SalomeApp_Tools.h>
36
37 // #include <qlineedit.h>
38 // #include <qlabel.h>
39 // #include <qlayout.h>
40 // #include <qpushbutton.h>
41 // #include <qradiobutton.h>
42 // #include <qbuttongroup.h>
43
44 //=================================================================================
45 // class    : MeasureGUI_BndBoxDlg()
46 // purpose  : Constructs a MeasureGUI_BndBoxDlg which is a child of 'parent', with the 
47 //            name 'name' and widget flags set to 'f'.
48 //            The dialog will by default be modeless, unless you set 'modal' to
49 //            true to construct a modal dialog.
50 //=================================================================================
51 MeasureGUI_BndBoxDlg::MeasureGUI_BndBoxDlg( GeometryGUI* GUI, QWidget* parent )
52   : MeasureGUI_Skeleton( GUI, parent )
53 {
54   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap(
55     "GEOM", tr( "ICON_DLG_BOUNDING_BOX" ) ) );
56   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap(
57     "GEOM", tr( "ICON_SELECT" ) ) );
58
59   setWindowTitle( tr( "GEOM_BNDBOX_TITLE" ) );
60
61   /***************************************************************/
62   
63   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_BNDBOX" ) );
64   mainFrame()->RadioButton1->setIcon( image0 );
65
66   myGrp = new MeasureGUI_1Sel6LineEdit( centralWidget() );
67   myGrp->GroupBox1->setTitle( tr( "GEOM_BNDBOX_OBJDIM" ) );
68   myGrp->TextLabel1->setText( tr( "GEOM_OBJECT" ) );
69   myGrp->TextLabel2->setText( tr( "GEOM_MIN" ) );
70   myGrp->TextLabel3->setText( tr( "GEOM_MAX" ) );
71   myGrp->TextLabel4->setText( tr( "GEOM_X" ) );
72   myGrp->TextLabel5->setText( tr( "GEOM_Y" ) );
73   myGrp->TextLabel6->setText( tr( "GEOM_Z" ) );
74   myGrp->LineEdit11->setReadOnly( true );
75   myGrp->LineEdit12->setReadOnly( true );
76   myGrp->LineEdit21->setReadOnly( true );
77   myGrp->LineEdit22->setReadOnly( true );
78   myGrp->LineEdit31->setReadOnly( true );
79   myGrp->LineEdit32->setReadOnly( true );
80   myGrp->PushButton1->setIcon( image1 );
81   myGrp->LineEdit1->setReadOnly( true );
82
83   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
84   layout->setMargin( 0 ); layout->setSpacing( 6 );
85   layout->addWidget( myGrp );
86   
87   /***************************************************************/
88
89   myHelpFileName = "files/salome2_sp3_measuregui_functions.htm#Bounding_box";
90
91   /* Initialisation */
92   Init();
93 }
94
95
96 //=================================================================================
97 // function : ~MeasureGUI_BndBoxDlg()
98 // purpose  : Destroys the object and frees any allocated resources
99 //=================================================================================
100 MeasureGUI_BndBoxDlg::~MeasureGUI_BndBoxDlg()
101 {
102 }
103
104
105 //=================================================================================
106 // function : Init()
107 // purpose  :
108 //=================================================================================
109 void MeasureGUI_BndBoxDlg::Init()
110 {
111   mySelBtn = myGrp->PushButton1;
112   mySelEdit = myGrp->LineEdit1;
113   MeasureGUI_Skeleton::Init();
114 }
115
116 //=================================================================================
117 // function : processObject
118 // purpose  :
119 //=================================================================================
120 void MeasureGUI_BndBoxDlg::processObject()
121 {
122   double aXMin, aXMax, aYMin, aYMax, aZMin, aZMax;
123
124   if ( !getParameters( aXMin, aXMax, aYMin, aYMax, aZMin, aZMax ) ) {
125     mySelEdit->setText( "" );
126     myGrp->LineEdit11->setText( "" );
127     myGrp->LineEdit12->setText( "" );
128     myGrp->LineEdit21->setText( "" );
129     myGrp->LineEdit22->setText( "" );
130     myGrp->LineEdit31->setText( "" );
131     myGrp->LineEdit32->setText( "" );
132   }
133   else {
134     myGrp->LineEdit11->setText( tr( "%1" ).arg( aXMin, 12, 'f', 6 ) );
135     myGrp->LineEdit12->setText( tr( "%1" ).arg( aXMax, 12, 'f', 6 ) );
136
137     myGrp->LineEdit21->setText( tr( "%1" ).arg( aYMin, 12, 'f', 6 ) );
138     myGrp->LineEdit22->setText( tr( "%1" ).arg( aYMax, 12, 'f', 6 ) );
139
140     myGrp->LineEdit31->setText( tr( "%1" ).arg( aZMin, 12, 'f', 6 ) );
141     myGrp->LineEdit32->setText( tr( "%1" ).arg( aZMax, 12, 'f', 6 ) );            
142   }
143 }
144
145 //=================================================================================
146 // function : getParameters
147 // purpose  :
148 //=================================================================================
149 bool MeasureGUI_BndBoxDlg::getParameters( double& theXmin, double& theXmax,
150                                           double& theYmin, double& theYmax,
151                                           double& theZmin, double& theZmax )
152 {
153   if ( myObj->_is_nil() )
154     return false;
155   else {
156     try {
157       GEOM::GEOM_IMeasureOperations::_narrow( getOperation() )->GetBoundingBox(
158         myObj, theXmin, theXmax, theYmin, theYmax, theZmin, theZmax );
159     }
160     catch( const SALOME::SALOME_Exception& e ) {
161       SalomeApp_Tools::QtCatchCorbaException( e );
162       return false;
163     }
164
165     return getOperation()->IsDone();
166   }
167 }
168
169 //=================================================================================
170 // function : buildPrs
171 // purpose  :
172 //=================================================================================
173 SALOME_Prs* MeasureGUI_BndBoxDlg::buildPrs()
174 {
175   double aXMin, aYMin, aZMin, aXMax, aYMax, aZMax;
176
177   if ( myObj->_is_nil() || !getParameters( aXMin, aXMax, aYMin, aYMax, aZMin, aZMax ) )
178     return 0;
179
180   TopoDS_Shape aShape = BRepPrimAPI_MakeBox( gp_Pnt( aXMin, aYMin, aZMin ),
181                                              gp_Pnt( aXMax, aYMax, aZMax ) ).Shape();
182        
183   return !aShape.IsNull() ? getDisplayer()->BuildPrs( aShape ) : 0;
184
185 }