Salome HOME
Merge with version on tag OCC-V2_1_0d
[modules/geom.git] / src / MeasureGUI / MeasureGUI_InertiaDlg.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   : MeasureGUI_InertiaDlg.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27
28 #include "MeasureGUI_InertiaDlg.h"
29 #include "MeasureGUI_1Sel12LineEdit_QTD.h"
30 #include "SALOMEGUI_QtCatchCorbaException.hxx"
31
32 #include "GEOMBase.h"
33
34 #include <BRepGProp.hxx>
35 #include <GProp_GProps.hxx>
36 #include <GProp_PrincipalProps.hxx>
37 #include <gp_XYZ.hxx>
38 #include <TopoDS_Shape.hxx>
39
40 #include "utilities.h"
41 #include "QAD_Desktop.h"
42
43 #include <qlineedit.h>
44 #include <qlayout.h>
45 #include <qpushbutton.h>
46 #include <qradiobutton.h>
47 #include <qbuttongroup.h>
48
49 //=================================================================================
50 // class    : MeasureGUI_InertiaDlg()
51 // purpose  : Constructs a MeasureGUI_InertiaDlg which is a child of 'parent', with the
52 //            name 'name' and widget flags set to 'f'.
53 //            The dialog will by default be modeless, unless you set 'modal' to
54 //            TRUE to construct a modal dialog.
55 //=================================================================================
56
57 MeasureGUI_InertiaDlg::MeasureGUI_InertiaDlg( QWidget* parent, SALOME_Selection* Sel )
58 : MeasureGUI_Skeleton( parent, "MeasureGUI_InertiaDlg", Sel )
59 {
60   QPixmap image0( QAD_Desktop::getResourceManager()->loadPixmap(
61     "GEOM",tr( "ICON_DLG_INERTIA" ) ) );
62   QPixmap image1( QAD_Desktop::getResourceManager()->loadPixmap(
63     "GEOM",tr( "ICON_SELECT" ) ) );
64
65   setCaption( tr( "GEOM_INERTIA_TITLE" ) );
66
67   /***************************************************************/
68   
69   GroupConstructors->setTitle( tr( "GEOM_INERTIA_CONSTR" ) );
70   RadioButton1->setPixmap( image0 );
71
72   myGrp = new MeasureGUI_1Sel12LineEdit_QTD( this, "myGrp" );
73   myGrp->GroupBox1->setTitle( tr( "GEOM_MATRIX" ) );
74   myGrp->TextLabel1->setText( tr( "GEOM_OBJECT" ) );
75   myGrp->TextLabel2->setText( tr( "GEOM_INERTIA_I" ).arg( "1" ) );
76   myGrp->TextLabel3->setText( tr( "GEOM_INERTIA_I" ).arg( "2" ) );
77   myGrp->TextLabel4->setText( tr( "GEOM_INERTIA_I" ).arg( "3" ) );
78   myGrp->TextLabel5->setText( tr( "GEOM_INERTIA_IXYZ" ) );
79   myGrp->LineEdit11->setReadOnly( TRUE );
80   myGrp->LineEdit12->setReadOnly( TRUE );
81   myGrp->LineEdit13->setReadOnly( TRUE );
82   myGrp->LineEdit21->setReadOnly( TRUE );
83   myGrp->LineEdit22->setReadOnly( TRUE );
84   myGrp->LineEdit23->setReadOnly( TRUE );
85   myGrp->LineEdit31->setReadOnly( TRUE );
86   myGrp->LineEdit32->setReadOnly( TRUE );
87   myGrp->LineEdit33->setReadOnly( TRUE );
88   myGrp->LineEdit41->setReadOnly( TRUE );
89   myGrp->LineEdit42->setReadOnly( TRUE );
90   myGrp->LineEdit43->setReadOnly( TRUE );
91   myGrp->PushButton1->setPixmap( image1 );
92   myGrp->LineEdit1->setReadOnly( true );
93
94   Layout1->addWidget( myGrp, 1, 0 );
95   
96   /***************************************************************/
97
98   /* Initialisation */
99   Init( Sel );
100 }
101
102
103 //=================================================================================
104 // function : ~MeasureGUI_InertiaDlg()
105 // purpose  : Destroys the object and frees any allocated resources
106 //=================================================================================
107 MeasureGUI_InertiaDlg::~MeasureGUI_InertiaDlg()
108 {
109 }
110
111
112 //=================================================================================
113 // function : Init()
114 // purpose  :
115 //=================================================================================
116 void MeasureGUI_InertiaDlg::Init( SALOME_Selection* Sel )
117 {
118   mySelBtn = myGrp->PushButton1;
119   mySelEdit = myGrp->LineEdit1;
120   MeasureGUI_Skeleton::Init( Sel );
121 }
122
123 //=================================================================================
124 // function : processObject
125 // purpose  :
126 //=================================================================================
127 void MeasureGUI_InertiaDlg::processObject()
128 {
129   gp_XYZ anIXYZ;
130   gp_Mat aMat;
131
132   if ( !getParameters( aMat, anIXYZ ) )
133   {
134     mySelEdit->setText( "" );
135     
136     myGrp->LineEdit11->setText( "" );
137     myGrp->LineEdit12->setText( "" );
138     myGrp->LineEdit13->setText( "" );
139     
140     myGrp->LineEdit21->setText( "" );
141     myGrp->LineEdit22->setText( "" );
142     myGrp->LineEdit23->setText( "" );
143     
144     myGrp->LineEdit31->setText( "" );
145     myGrp->LineEdit32->setText( "" );
146     myGrp->LineEdit33->setText( "" );
147
148     myGrp->LineEdit41->setText( "" );
149     myGrp->LineEdit42->setText( "" );
150     myGrp->LineEdit43->setText( "" );
151   }
152   else
153   {
154     myGrp->LineEdit11->setText( QString( "%1" ).arg( aMat( 1, 1 ), 12, 'e', 4 ) );
155     myGrp->LineEdit12->setText( QString( "%1" ).arg( aMat( 1, 2 ), 12, 'e', 4 ) );
156     myGrp->LineEdit13->setText( QString( "%1" ).arg( aMat( 1, 3 ), 12, 'e', 4 ) );
157     
158     myGrp->LineEdit21->setText( QString( "%1" ).arg( aMat( 2, 1 ), 12, 'e', 4 ) );
159     myGrp->LineEdit22->setText( QString( "%1" ).arg( aMat( 2, 2 ), 12, 'e', 4 ) );
160     myGrp->LineEdit23->setText( QString( "%1" ).arg( aMat( 2, 3 ), 12, 'e', 4 ) );
161     
162     myGrp->LineEdit31->setText( QString( "%1" ).arg( aMat( 3, 1 ), 12, 'e', 4 ) );
163     myGrp->LineEdit32->setText( QString( "%1" ).arg( aMat( 3, 2 ), 12, 'e', 4 ) );
164     myGrp->LineEdit33->setText( QString( "%1" ).arg( aMat( 3, 3 ), 12, 'e', 4 ) );
165     
166     myGrp->LineEdit41->setText( QString( "%1" ).arg( anIXYZ.X(), 12, 'e', 4 ) );
167     myGrp->LineEdit42->setText( QString( "%1" ).arg( anIXYZ.Y(), 12, 'e', 4 ) );
168     myGrp->LineEdit43->setText( QString( "%1" ).arg( anIXYZ.Z(), 12, 'e', 4 ) );
169   }
170 }
171
172 //=================================================================================
173 // function : getParameters
174 // purpose  :
175 //=================================================================================
176 bool MeasureGUI_InertiaDlg::getParameters( gp_Mat& I,
177                                            gp_XYZ& theIXYZ )
178 {
179   if ( myObj->_is_nil() )
180     return false;
181   else
182   {
183     try
184     {
185       double x, y, z;
186       GEOM::GEOM_IMeasureOperations::_narrow( getOperation() )->GetInertia( myObj,
187         I( 1, 1 ), I( 1, 2 ), I( 1, 3 ),
188         I( 2, 1 ), I( 2, 2 ), I( 2, 3 ),
189         I( 3, 1 ), I( 3, 2 ), I( 3, 3 ),
190         x, y, z );
191
192         theIXYZ.SetCoord( x, y, z );
193     }
194     catch( const SALOME::SALOME_Exception& e )
195     {
196       QtCatchCorbaException( e );
197       return false;
198     }
199
200     return getOperation()->IsDone();
201   }
202 }
203