geom/src/MeasureGUI/MeasureGUI_CenterMassDlg.cxx

341 lines
11 KiB
C++
Raw Normal View History

2004-01-07 20:46:21 +05:00
// GEOM GEOMGUI : GUI for Geometry component
//
// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2004-12-01 15:39:14 +05:00
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
2004-01-07 20:46:21 +05:00
//
//
//
// File : MeasureGUI_CenterMassDlg.cxx
// Author : Lucien PIGNOLONI
// Module : GEOM
// $Header$
#include "MeasureGUI_CenterMassDlg.h"
2004-12-01 15:39:14 +05:00
#include "MeasureGUI_1Sel3LineEdit_QTD.h"
2004-06-16 21:24:55 +06:00
#include "utilities.h"
#include "SUIT_Session.h"
#include "SalomeApp_Application.h"
#include "LightApp_SelectionMgr.h"
#include "SalomeApp_Tools.h"
2004-06-16 21:24:55 +06:00
2004-12-01 15:39:14 +05:00
#include <BRep_Tool.hxx>
#include <TopoDS_Vertex.hxx>
#include <TopoDS.hxx>
#include <gp_Pnt.hxx>
2004-06-16 21:24:55 +06:00
#include <qlabel.h>
2004-01-07 20:46:21 +05:00
//=================================================================================
// class : MeasureGUI_CenterMassDlg()
2004-12-01 15:39:14 +05:00
// purpose : Constructs a MeasureGUI_CenterMassDlg which is a child of 'parent', with the
2004-01-07 20:46:21 +05:00
// name 'name' and widget flags set to 'f'.
// The dialog will by default be modeless, unless you set 'modal' to
// TRUE to construct a modal dialog.
//=================================================================================
MeasureGUI_CenterMassDlg::MeasureGUI_CenterMassDlg( GeometryGUI* theGeometryGUI, QWidget* parent )
: GEOMBase_Skeleton(theGeometryGUI, parent, "MeasureGUI_CenterMassDlg", false,
WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
2004-01-07 20:46:21 +05:00
{
QPixmap image0 (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_DLG_CENTERMASS")));
QPixmap image1 (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_SELECT")));
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
setCaption( tr( "GEOM_CMASS_TITLE" ) );
2004-01-07 20:46:21 +05:00
/***************************************************************/
2004-12-01 15:39:14 +05:00
GroupConstructors->setTitle( tr( "GEOM_CMASS" ) );
RadioButton1->setPixmap( image0 );
RadioButton2->close( TRUE );
RadioButton3->close( TRUE );
myGrp = new MeasureGUI_1Sel3LineEdit_QTD( this, "myGrp" );
myGrp->GroupBox1->setTitle( tr( "GEOM_CENTER" ) );
myGrp->TextLabel1->setText( tr( "GEOM_OBJECT" ) );
myGrp->TextLabel2->setText( tr( "GEOM_X" ) );
myGrp->TextLabel3->setText( tr( "GEOM_Y" ) );
myGrp->TextLabel4->setText( tr( "GEOM_Z" ) );
myGrp->LineEdit2->setReadOnly( TRUE );
myGrp->LineEdit3->setReadOnly( TRUE );
myGrp->LineEdit4->setReadOnly( TRUE );
myGrp->PushButton1->setPixmap( image1 );
myGrp->LineEdit1->setReadOnly( true );
Layout1->addWidget( myGrp, 2, 0 );
2004-01-07 20:46:21 +05:00
/***************************************************************/
myHelpFileName = "files/salome2_sp3_measuregui_functions.htm#Center_gravity";
2004-01-07 20:46:21 +05:00
/* Initialisation */
Init();
2004-01-07 20:46:21 +05:00
}
//=================================================================================
// function : ~MeasureGUI_CenterMassDlg()
// purpose : Destroys the object and frees any allocated resources
//=================================================================================
MeasureGUI_CenterMassDlg::~MeasureGUI_CenterMassDlg()
{
}
//=================================================================================
// function : Init()
// purpose :
//=================================================================================
void MeasureGUI_CenterMassDlg::Init()
2004-01-07 20:46:21 +05:00
{
/* init variables */
2004-12-01 15:39:14 +05:00
myEditCurrentArgument = myGrp->LineEdit1;
2004-01-07 20:46:21 +05:00
/* signals and slots connections */
2004-12-01 15:39:14 +05:00
connect( buttonOk, SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
connect( buttonApply, SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
connect( myGrp->LineEdit1, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
connect( myGrp->PushButton1, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
2004-01-07 20:46:21 +05:00
connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(),
SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument())) ;
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
initName( tr( "GEOM_POINT") );
globalSelection();
SelectionIntoArgument();
2004-01-07 20:46:21 +05:00
/* displays Dialog */
2004-12-01 15:39:14 +05:00
myGrp->show();
2004-01-07 20:46:21 +05:00
this->show();
}
//=================================================================================
// function : ClickOnOk()
// purpose :
//=================================================================================
void MeasureGUI_CenterMassDlg::ClickOnOk()
{
2004-12-01 15:39:14 +05:00
if ( ClickOnApply() )
ClickOnCancel();
2004-01-07 20:46:21 +05:00
}
//=================================================================================
// function : ClickOnApply()
// purpose :
//=================================================================================
2004-12-01 15:39:14 +05:00
bool MeasureGUI_CenterMassDlg::ClickOnApply()
2004-01-07 20:46:21 +05:00
{
2004-12-01 15:39:14 +05:00
if ( !onAccept() )
return false;
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
initName();
return true;
// myMeasureGUI->MakeCDGAndDisplay( myGeomShape );
2004-01-07 20:46:21 +05:00
}
//=================================================================================
// function : SelectionIntoArgument()
// purpose : Called when selection as changed or other case
//=================================================================================
void MeasureGUI_CenterMassDlg::SelectionIntoArgument()
{
2004-12-01 15:39:14 +05:00
erasePreview();
myObj = GEOM::GEOM_Object::_nil();
2004-01-07 20:46:21 +05:00
if ( IObjectCount() != 1 )
2004-12-01 15:39:14 +05:00
{
processObject();
2004-01-07 20:46:21 +05:00
return;
2004-12-01 15:39:14 +05:00
}
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
Standard_Boolean testResult = Standard_False;
GEOM::GEOM_Object_var aSelectedObject =
GEOMBase::ConvertIOinGEOMObject( firstIObject(), testResult );
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
if ( !testResult || aSelectedObject->_is_nil() )
{
processObject();
2004-01-07 20:46:21 +05:00
return;
2004-12-01 15:39:14 +05:00
}
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
myObj = aSelectedObject;
processObject();
displayPreview();
2004-01-07 20:46:21 +05:00
}
//=================================================================================
// function : SetEditCurrentArgument()
// purpose :
//=================================================================================
void MeasureGUI_CenterMassDlg::SetEditCurrentArgument()
{
2004-12-01 15:39:14 +05:00
myGrp->LineEdit1->setFocus();
myEditCurrentArgument = myGrp->LineEdit1;
SelectionIntoArgument();
2004-01-07 20:46:21 +05:00
}
//=================================================================================
// function : LineEditReturnPressed()
// purpose :
//=================================================================================
void MeasureGUI_CenterMassDlg::LineEditReturnPressed()
{
2004-12-01 15:39:14 +05:00
QLineEdit* send = ( QLineEdit* )sender();
if ( send == myGrp->LineEdit1 )
{
myEditCurrentArgument = myGrp->LineEdit1;
GEOMBase_Skeleton::LineEditReturnPressed();
}
2004-01-07 20:46:21 +05:00
}
//=================================================================================
// function : ActivateThisDialog()
// purpose :
//=================================================================================
void MeasureGUI_CenterMassDlg::ActivateThisDialog()
{
GEOMBase_Skeleton::ActivateThisDialog();
2004-12-01 15:39:14 +05:00
connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(),
SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument())) ;
2004-12-01 15:39:14 +05:00
globalSelection();
displayPreview();
}
//=================================================================================
// function : processObject()
// purpose : Fill dialog fields in accordance with myObj
//=================================================================================
void MeasureGUI_CenterMassDlg::processObject()
{
if ( myObj->_is_nil() )
{
myGrp->LineEdit1->setText( "" );
myGrp->LineEdit2->setText( "" );
myGrp->LineEdit3->setText( "" );
myGrp->LineEdit4->setText( "" );
erasePreview();
}
else
{
double x = 0, y = 0, z = 0;
getParameters( x, y, z );
myGrp->LineEdit1->setText( GEOMBase::GetName( myObj ) );
myGrp->LineEdit2->setText( QString( "%1" ).arg( x ) );
myGrp->LineEdit3->setText( QString( "%1" ).arg( y ) );
myGrp->LineEdit4->setText( QString( "%1" ).arg( z ) );
displayPreview();
}
2004-01-07 20:46:21 +05:00
}
//=================================================================================
// function : enterEvent()
// purpose :
//=================================================================================
2004-12-01 15:39:14 +05:00
void MeasureGUI_CenterMassDlg::enterEvent( QEvent* e )
2004-01-07 20:46:21 +05:00
{
2004-12-01 15:39:14 +05:00
if ( !GroupConstructors->isEnabled() )
ActivateThisDialog();
2004-01-07 20:46:21 +05:00
}
2004-12-01 15:39:14 +05:00
//=================================================================================
// function : createOperation
// purpose :
//=================================================================================
GEOM::GEOM_IOperations_ptr MeasureGUI_CenterMassDlg::createOperation()
{
return getGeomEngine()->GetIMeasureOperations( getStudyId() );
}
2004-01-07 20:46:21 +05:00
//=================================================================================
2004-12-01 15:39:14 +05:00
// function : isValid
2004-01-07 20:46:21 +05:00
// purpose :
//=================================================================================
2004-12-01 15:39:14 +05:00
bool MeasureGUI_CenterMassDlg::isValid( QString& )
2004-01-07 20:46:21 +05:00
{
2004-12-01 15:39:14 +05:00
return !myObj->_is_nil();
}
//=================================================================================
// function : execute
// purpose :
//=================================================================================
bool MeasureGUI_CenterMassDlg::getParameters( double& theX, double& theY, double& theZ )
{
if ( myObj->_is_nil() )
return false;
else
{
try
{
GEOM::GEOM_Object_var anObj;
anObj = GEOM::GEOM_IMeasureOperations::_narrow( getOperation() )->GetCentreOfMass( myObj );
if ( !getOperation()->IsDone() )
return false;
TopoDS_Shape aShape;
if ( !GEOMBase::GetShape( anObj, aShape ) ||
aShape.IsNull() ||
aShape.ShapeType() != TopAbs_VERTEX )
return false;
TopoDS_Vertex aVertex = TopoDS::Vertex( aShape );
gp_Pnt aPnt = BRep_Tool::Pnt( aVertex );
theX = aPnt.X();
theY = aPnt.Y();
theZ = aPnt.Z();
2004-01-07 20:46:21 +05:00
return true;
}
2004-12-01 15:39:14 +05:00
catch( const SALOME::SALOME_Exception& e )
{
SalomeApp_Tools::QtCatchCorbaException( e );
2004-12-01 15:39:14 +05:00
return false;
}
2004-01-07 20:46:21 +05:00
}
2004-12-01 15:39:14 +05:00
}
//=================================================================================
// function : execute
// purpose :
//=================================================================================
bool MeasureGUI_CenterMassDlg::execute( ObjectList& objects )
{
GEOM::GEOM_Object_var anObj;
anObj = GEOM::GEOM_IMeasureOperations::_narrow( getOperation() )->GetCentreOfMass( myObj );
if ( !anObj->_is_nil() )
objects.push_back( anObj._retn() );
return true;
2004-01-07 20:46:21 +05:00
}