Salome HOME
IMPs 21044, 21057, 21067
[modules/geom.git] / src / MeasureGUI / MeasureGUI_BndBoxDlg.cxx
1 //  Copyright (C) 2007-2010  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 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : MeasureGUI_BndBoxDlg.cxx
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
26 //
27 #include "MeasureGUI_BndBoxDlg.h"
28 #include "MeasureGUI_Widgets.h"
29
30 #include "GeometryGUI.h"
31
32 #include <GEOMBase.h>
33 #include <DlgRef.h>
34
35 #include <GEOM_Function.hxx>
36 #include <GEOM_Object.hxx>
37
38 #include <BRepPrimAPI_MakeBox.hxx>
39 #include <BRepAdaptor_Surface.hxx>
40 #include <BRep_Tool.hxx>
41 #include <BRep_TFace.hxx>
42 #include <TopoDS.hxx>
43 #include <TopoDS_Face.hxx>
44 #include <TopExp_Explorer.hxx>
45
46 #include <SUIT_Session.h>
47 #include <SUIT_ResourceMgr.h>
48 #include <SalomeApp_Tools.h>
49
50 // #include <qlineedit.h>
51 // #include <qlabel.h>
52 // #include <qlayout.h>
53 // #include <qpushbutton.h>
54 // #include <qradiobutton.h>
55 // #include <qbuttongroup.h>
56
57 //=================================================================================
58 // class    : MeasureGUI_BndBoxDlg()
59 // purpose  : Constructs a MeasureGUI_BndBoxDlg which is a child of 'parent', with the 
60 //            name 'name' and widget flags set to 'f'.
61 //            The dialog will by default be modeless, unless you set 'modal' to
62 //            true to construct a modal dialog.
63 //=================================================================================
64 MeasureGUI_BndBoxDlg::MeasureGUI_BndBoxDlg( GeometryGUI* GUI, QWidget* parent )
65   : MeasureGUI_Skeleton( GUI, parent )
66 {
67   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap(
68     "GEOM", tr( "ICON_DLG_BOUNDING_BOX" ) ) );
69   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap(
70     "GEOM", tr( "ICON_SELECT" ) ) );
71
72   setWindowTitle( tr( "GEOM_BNDBOX_TITLE" ) );
73
74   /***************************************************************/
75   
76   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_BNDBOX" ) );
77   mainFrame()->RadioButton1->setIcon( image0 );
78
79   myGrp = new MeasureGUI_1Sel6LineEdit( centralWidget() );
80   myGrp->GroupBox1->setTitle( tr( "GEOM_BNDBOX_OBJDIM" ) );
81   myGrp->TextLabel1->setText( tr( "GEOM_OBJECT" ) );
82   myGrp->TextLabel2->setText( tr( "GEOM_MIN" ) );
83   myGrp->TextLabel3->setText( tr( "GEOM_MAX" ) );
84   myGrp->TextLabel4->setText( tr( "GEOM_X" ) );
85   myGrp->TextLabel5->setText( tr( "GEOM_Y" ) );
86   myGrp->TextLabel6->setText( tr( "GEOM_Z" ) );
87   myGrp->LineEdit11->setReadOnly( true );
88   myGrp->LineEdit12->setReadOnly( true );
89   myGrp->LineEdit21->setReadOnly( true );
90   myGrp->LineEdit22->setReadOnly( true );
91   myGrp->LineEdit31->setReadOnly( true );
92   myGrp->LineEdit32->setReadOnly( true );
93   myGrp->PushButton1->setIcon( image1 );
94   myGrp->LineEdit1->setReadOnly( true );
95
96   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
97   layout->setMargin( 0 ); layout->setSpacing( 6 );
98   layout->addWidget( myGrp );
99   
100   /***************************************************************/
101
102   myHelpFileName = "using_measurement_tools_page.html#bounding_box_anchor";
103
104   /* Initialisation */
105   Init();
106 }
107
108
109 //=================================================================================
110 // function : ~MeasureGUI_BndBoxDlg()
111 // purpose  : Destroys the object and frees any allocated resources
112 //=================================================================================
113 MeasureGUI_BndBoxDlg::~MeasureGUI_BndBoxDlg()
114 {
115 }
116
117
118 //=================================================================================
119 // function : Init()
120 // purpose  :
121 //=================================================================================
122 void MeasureGUI_BndBoxDlg::Init()
123 {
124   mySelBtn = myGrp->PushButton1;
125   mySelEdit = myGrp->LineEdit1;
126   MeasureGUI_Skeleton::Init();
127 }
128
129 //=================================================================================
130 // function : processObject
131 // purpose  :
132 //=================================================================================
133 void MeasureGUI_BndBoxDlg::processObject()
134 {
135   double aXMin, aXMax, aYMin, aYMax, aZMin, aZMax;
136
137   if ( !getParameters( aXMin, aXMax, aYMin, aYMax, aZMin, aZMax ) ) {
138     mySelEdit->setText( "" );
139     myGrp->LineEdit11->setText( "" );
140     myGrp->LineEdit12->setText( "" );
141     myGrp->LineEdit21->setText( "" );
142     myGrp->LineEdit22->setText( "" );
143     myGrp->LineEdit31->setText( "" );
144     myGrp->LineEdit32->setText( "" );
145   }
146   else {
147     SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
148     int aPrecision = resMgr->integerValue( "Geometry", "length_precision", 6 );
149
150     myGrp->LineEdit11->setText( DlgRef::PrintDoubleValue( aXMin, aPrecision ) );
151     myGrp->LineEdit12->setText( DlgRef::PrintDoubleValue( aXMax, aPrecision ) );
152
153     myGrp->LineEdit21->setText( DlgRef::PrintDoubleValue( aYMin, aPrecision ) );
154     myGrp->LineEdit22->setText( DlgRef::PrintDoubleValue( aYMax, aPrecision ) );
155
156     myGrp->LineEdit31->setText( DlgRef::PrintDoubleValue( aZMin, aPrecision ) );
157     myGrp->LineEdit32->setText( DlgRef::PrintDoubleValue( aZMax, aPrecision ) );
158   }
159 }
160
161 //=================================================================================
162 // function : getParameters
163 // purpose  :
164 //=================================================================================
165 bool MeasureGUI_BndBoxDlg::getParameters( double& theXmin, double& theXmax,
166                                           double& theYmin, double& theYmax,
167                                           double& theZmin, double& theZmax )
168 {
169   if ( myObj->_is_nil() )
170     return false;
171   else {
172     GEOM::GEOM_IMeasureOperations_var anOper = GEOM::GEOM_IMeasureOperations::_narrow( getOperation() );
173     try {
174       Handle(Poly_Triangulation) Trtn = 0; 
175
176       GEOM::GEOM_Gen_var aGeomGen = GeometryGUI::GetGeomGen();
177       if ( CORBA::is_nil(aGeomGen) )
178         return false;
179
180       QString IOR = GEOMBase::GetIORFromObject( myObj );
181       GEOM::GEOM_Object_var anObject = aGeomGen->GetIORFromString( IOR.toLatin1().constData() );
182       if ( CORBA::is_nil(anObject) )
183         return false;
184
185       TopoDS_Shape aShape;
186       GEOMBase::GetShape(anObject, aShape, TopAbs_SHAPE);
187       if ( aShape.IsNull() )
188         return false;
189       
190       TopLoc_Location l;
191       Handle(Poly_Triangulation) T;
192       TopExp_Explorer ex;
193       for (ex.Init(aShape,TopAbs_FACE); ex.More(); ex.Next()) {
194         const TopoDS_Face& F = TopoDS::Face(ex.Current());
195         BRepAdaptor_Surface surf(F);
196         if (surf.GetType() == GeomAbs_Sphere) {
197           T = BRep_Tool::Triangulation(F, l);
198           if (!T.IsNull()) {
199             Handle(Poly_Triangulation) NullTrtn = 0;
200             (*((Handle(BRep_TFace)*)&F.TShape()))->Triangulation(NullTrtn);
201             Trtn = T;
202             break;
203           }
204         }
205         else
206           break;
207       }
208       
209       anOper->GetBoundingBox( myObj, theXmin, theXmax, theYmin, theYmax, theZmin, theZmax );
210       
211       if (!Trtn.IsNull()) {
212         TopLoc_Location l;
213         Handle(Poly_Triangulation) T;
214         TopExp_Explorer ex;
215         for (ex.Init(aShape,TopAbs_FACE); ex.More(); ex.Next()) {
216           const TopoDS_Face& F = TopoDS::Face(ex.Current());
217           (*((Handle(BRep_TFace)*)&F.TShape()))->Triangulation(Trtn);
218           break;
219         }
220       }
221       
222     }
223     catch( const SALOME::SALOME_Exception& e ) {
224       SalomeApp_Tools::QtCatchCorbaException( e );
225       return false;
226     }
227
228     return anOper->IsDone();
229   }
230 }
231
232 //=================================================================================
233 // function : buildPrs
234 // purpose  :
235 //=================================================================================
236 SALOME_Prs* MeasureGUI_BndBoxDlg::buildPrs()
237 {
238   double aXMin, aYMin, aZMin, aXMax, aYMax, aZMax;
239
240   if ( myObj->_is_nil() || !getParameters( aXMin, aXMax, aYMin, aYMax, aZMin, aZMax ) )
241     return 0;
242
243   TopoDS_Shape aShape = BRepPrimAPI_MakeBox( gp_Pnt( aXMin, aYMin, aZMin ),
244                                              gp_Pnt( aXMax, aYMax, aZMax ) ).Shape();
245        
246   return !aShape.IsNull() ? getDisplayer()->BuildPrs( aShape ) : 0;
247
248 }