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