geom/src/TransformationGUI/TransformationGUI_OffsetDlg.cxx

345 lines
12 KiB
C++
Raw Normal View History

2007-10-17 18:24:45 +06:00
// GEOM GEOMGUI : GUI for Geometry component
2004-12-01 15:39:14 +05:00
//
2007-10-17 18:24:45 +06:00
// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2004-12-01 15:39:14 +05:00
//
2007-10-17 18:24:45 +06:00
// 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.
2004-12-01 15:39:14 +05:00
//
2007-10-17 18:24:45 +06:00
// 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.
2004-12-01 15:39:14 +05:00
//
2007-10-17 18:24:45 +06:00
// 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
2004-12-01 15:39:14 +05:00
//
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2004-12-01 15:39:14 +05:00
//
2007-10-17 18:24:45 +06:00
// File : TransformationGUI_OffsetDlg.cxx
// Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
2004-12-01 15:39:14 +05:00
//
#include "TransformationGUI_OffsetDlg.h"
2007-07-11 12:23:48 +06:00
2007-10-24 14:17:54 +06:00
#include <DlgRef.h>
2007-10-17 18:24:45 +06:00
#include <GeometryGUI.h>
#include <GEOMBase.h>
2007-10-17 18:24:45 +06:00
#include <SUIT_ResourceMgr.h>
#include <SUIT_Session.h>
#include <SalomeApp_Application.h>
#include <LightApp_SelectionMgr.h>
2004-12-01 15:39:14 +05:00
//=================================================================================
// class : TransformationGUI_OffsetDlg()
// purpose : Constructs a TransformationGUI_OffsetDlg which is a child of 'parent', with the
// 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.
//=================================================================================
2007-10-17 18:24:45 +06:00
TransformationGUI_OffsetDlg::TransformationGUI_OffsetDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
bool modal, Qt::WindowFlags fl )
: GEOMBase_Skeleton( theGeometryGUI, parent, modal, fl )
2004-12-01 15:39:14 +05:00
{
2007-10-17 18:24:45 +06:00
QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_OFFSET" ) ) );
QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
2004-12-01 15:39:14 +05:00
2007-10-17 18:24:45 +06:00
setWindowTitle( tr( "GEOM_OFFSET_TITLE" ) );
2004-12-01 15:39:14 +05:00
/***************************************************************/
2007-10-17 18:24:45 +06:00
mainFrame()->GroupConstructors->setTitle( tr( "GEOM_OFFSET" ) );
mainFrame()->RadioButton1->setIcon( image0 );
mainFrame()->RadioButton2->setAttribute( Qt::WA_DeleteOnClose );
mainFrame()->RadioButton2->close();
mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
mainFrame()->RadioButton3->close();
2004-12-01 15:39:14 +05:00
2007-10-17 18:24:45 +06:00
GroupPoints = new DlgRef_1Sel1Spin1Check( centralWidget() );
GroupPoints->GroupBox1->setTitle( tr( "GEOM_ARGUMENTS" ) );
GroupPoints->TextLabel1->setText( tr( "GEOM_OBJECTS" ) );
GroupPoints->TextLabel2->setText( tr( "GEOM_OFFSET" ) );
GroupPoints->CheckButton1->setText( tr( "GEOM_CREATE_COPY" ) );
2004-12-01 15:39:14 +05:00
// san -- modification of an exisitng object by offset is not allowed
GroupPoints->CheckButton1->hide();
2007-10-17 18:24:45 +06:00
GroupPoints->PushButton1->setIcon( image1 );
2004-12-01 15:39:14 +05:00
2007-10-17 18:24:45 +06:00
QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
layout->setMargin( 0 ); layout->setSpacing( 6 );
layout->addWidget( GroupPoints );
2004-12-01 15:39:14 +05:00
/***************************************************************/
setHelpFileName( "offset_operation_page.html" );
2004-12-01 15:39:14 +05:00
Init();
}
//=================================================================================
// function : ~TransformationGUI_OffsetDlg()
// purpose : Destroys the object and frees any allocated resources
//=================================================================================
TransformationGUI_OffsetDlg::~TransformationGUI_OffsetDlg()
{
/* no need to delete child widgets, Qt does it all for us */
}
//=================================================================================
// function : Init()
// purpose :
//=================================================================================
void TransformationGUI_OffsetDlg::Init()
{
/* init variables */
myEditCurrentArgument = GroupPoints->LineEdit1;
GroupPoints->LineEdit1->setReadOnly( true );
/* Get setting of step value from file configuration */
double step = 1;
/* min, max, step and decimals for spin boxes & initial values */
initSpinBox( GroupPoints->SpinBox_DX, COORD_MIN, COORD_MAX, step, 3 ); // VSR: TODO: DBL_DIGITS_DISPLAY
2007-10-17 18:24:45 +06:00
GroupPoints->SpinBox_DX->setValue( 1e-05 );
2004-12-01 15:39:14 +05:00
// Activate Create a Copy mode
2007-10-17 18:24:45 +06:00
GroupPoints->CheckButton1->setChecked( true );
CreateCopyModeChanged( true );
2004-12-01 15:39:14 +05:00
mainFrame()->GroupBoxPublish->show();
2004-12-01 15:39:14 +05:00
/* signals and slots connections */
2007-10-17 18:24:45 +06:00
connect( buttonOk(), SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
2004-12-01 15:39:14 +05:00
2007-10-17 18:24:45 +06:00
connect( GroupPoints->PushButton1, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
connect( myGeomGUI->getApp()->selectionMgr(),
SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
2004-12-01 15:39:14 +05:00
2007-10-17 18:24:45 +06:00
connect( GroupPoints->SpinBox_DX, SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
connect( GroupPoints->CheckButton1, SIGNAL( toggled( bool ) ), this, SLOT( CreateCopyModeChanged( bool ) ) );
2004-12-01 15:39:14 +05:00
2007-10-17 18:24:45 +06:00
initName( tr( "GEOM_OFFSET" ) );
2004-12-01 15:39:14 +05:00
globalSelection( GEOM_ALLSHAPES );
}
//=================================================================================
// function : ClickOnOk()
// purpose :
//=================================================================================
void TransformationGUI_OffsetDlg::ClickOnOk()
{
if ( ClickOnApply() )
ClickOnCancel();
}
//=================================================================================
// function : ClickOnApply()
// purpose :
//=================================================================================
bool TransformationGUI_OffsetDlg::ClickOnApply()
{
if ( !onAccept( GroupPoints->CheckButton1->isChecked() ) )
return false;
initName();
return true;
}
//=================================================================================
// function : SelectionIntoArgument()
// purpose : Called when selection has changed
//=================================================================================
void TransformationGUI_OffsetDlg::SelectionIntoArgument()
{
2007-10-17 18:24:45 +06:00
myEditCurrentArgument->setText( "" );
2004-12-01 15:39:14 +05:00
QString aName;
LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
SALOME_ListIO aSelList;
aSelMgr->selectedObjects(aSelList);
int aNbSel = GEOMBase::GetNameOfSelectedIObjects(aSelList, aName);
2007-10-17 18:24:45 +06:00
if ( aNbSel < 1 ) {
myObjects.length( 0 );
return;
}
2004-12-01 15:39:14 +05:00
// nbSel > 0
GEOMBase::ConvertListOfIOInListOfGO (aSelList, myObjects);
if (!myObjects.length())
2004-12-01 15:39:14 +05:00
return;
myEditCurrentArgument->setText(aName);
2004-12-01 15:39:14 +05:00
displayPreview();
}
//=================================================================================
// function : LineEditReturnPressed()
// purpose :
//=================================================================================
void TransformationGUI_OffsetDlg::LineEditReturnPressed()
{
QLineEdit* send = (QLineEdit*)sender();
2007-10-17 18:24:45 +06:00
if ( send == GroupPoints->LineEdit1 ) {
2004-12-01 15:39:14 +05:00
myEditCurrentArgument = GroupPoints->LineEdit1;
GEOMBase_Skeleton::LineEditReturnPressed();
}
}
//=================================================================================
// function : SetEditCurrentArgument()
// purpose :
//=================================================================================
void TransformationGUI_OffsetDlg::SetEditCurrentArgument()
{
QPushButton* send = (QPushButton*)sender();
2007-10-17 18:24:45 +06:00
if ( send == GroupPoints->PushButton1 ) {
myEditCurrentArgument = GroupPoints->LineEdit1;
myEditCurrentArgument->setFocus();
SelectionIntoArgument();
}
2004-12-01 15:39:14 +05:00
}
//=================================================================================
// function : enterEvent()
// purpose : when mouse enter onto the QWidget
//=================================================================================
2007-10-17 18:24:45 +06:00
void TransformationGUI_OffsetDlg::enterEvent( QEvent* )
2004-12-01 15:39:14 +05:00
{
2007-10-17 18:24:45 +06:00
if ( !mainFrame()->GroupConstructors->isEnabled() )
2004-12-01 15:39:14 +05:00
ActivateThisDialog();
}
//=================================================================================
// function : ActivateThisDialog()
// purpose :
//=================================================================================
void TransformationGUI_OffsetDlg::ActivateThisDialog()
{
GEOMBase_Skeleton::ActivateThisDialog();
2007-10-17 18:24:45 +06:00
connect( myGeomGUI->getApp()->selectionMgr(),
SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
2004-12-01 15:39:14 +05:00
globalSelection( GEOM_ALLSHAPES );
myEditCurrentArgument = GroupPoints->LineEdit1;
myEditCurrentArgument->setFocus();
}
//=================================================================================
// function : ValueChangedInSpinBox()
// purpose :
//=================================================================================
void TransformationGUI_OffsetDlg::ValueChangedInSpinBox()
{
displayPreview();
}
//=================================================================================
// function : createOperation
// purpose :
//=================================================================================
GEOM::GEOM_IOperations_ptr TransformationGUI_OffsetDlg::createOperation()
{
return getGeomEngine()->GetITransformOperations( getStudyId() );
}
//=================================================================================
// function : isValid
// purpose :
//=================================================================================
bool TransformationGUI_OffsetDlg::isValid( QString& msg )
{
2007-02-07 16:48:21 +05:00
//return !(myObjects.length() == 0);
2007-10-17 18:24:45 +06:00
if ( myObjects.length() == 0 ) return false;
2007-02-07 16:48:21 +05:00
2007-10-17 18:24:45 +06:00
for ( int i = 0; i < myObjects.length(); i++ ) {
2007-02-07 16:48:21 +05:00
GEOM::shape_type aType = myObjects[i]->GetShapeType();
2007-10-17 18:24:45 +06:00
if ( aType != GEOM::FACE && aType != GEOM::SHELL && aType != GEOM::SOLID ) {
msg = tr( "ERROR_SHAPE_TYPE" );
return false;
2007-02-07 16:48:21 +05:00
}
}
return true;
2004-12-01 15:39:14 +05:00
}
//=================================================================================
// function : execute
// purpose :
//=================================================================================
bool TransformationGUI_OffsetDlg::execute( ObjectList& objects )
{
bool res = false;
GEOM::GEOM_Object_var anObj;
2007-10-17 18:24:45 +06:00
if ( GroupPoints->CheckButton1->isChecked() || IsPreview() ) {
for ( int i = 0; i < myObjects.length(); i++ ) {
anObj = GEOM::GEOM_ITransformOperations::_narrow( getOperation() )->OffsetShapeCopy( myObjects[i], GetOffset() );
if ( !anObj->_is_nil() )
objects.push_back( anObj._retn() );
}
}
else {
for ( int i = 0; i < myObjects.length(); i++ ) {
anObj = GEOM::GEOM_ITransformOperations::_narrow( getOperation() )->OffsetShape( myObjects[i], GetOffset() );
if ( !anObj->_is_nil() )
objects.push_back( anObj._retn() );
}
}
2004-12-01 15:39:14 +05:00
res = true;
return res;
}
//=================================================================================
// function : restoreSubShapes
// purpose :
//=================================================================================
void TransformationGUI_OffsetDlg::restoreSubShapes( SALOMEDS::Study_ptr theStudy,
SALOMEDS::SObject_ptr theSObject )
{
if ( mainFrame()->CheckBoxRestoreSS->isChecked() ) {
// empty list of arguments means that all arguments should be restored
getGeomEngine()->RestoreSubShapesSO( theStudy, theSObject, GEOM::ListOfGO(),
/*theFindMethod=*/GEOM::FSM_Transformed,
/*theInheritFirstArg=*/true );
}
}
2004-12-01 15:39:14 +05:00
//=================================================================================
// function : GetOffset()
// purpose :
//=================================================================================
double TransformationGUI_OffsetDlg::GetOffset() const
{
2007-10-17 18:24:45 +06:00
return GroupPoints->SpinBox_DX->value();
2004-12-01 15:39:14 +05:00
}
//=================================================================================
// function : CreateCopyModeChanged()
// purpose :
//=================================================================================
2007-10-17 18:24:45 +06:00
void TransformationGUI_OffsetDlg::CreateCopyModeChanged( bool isCreateCopy )
2004-12-01 15:39:14 +05:00
{
2007-10-17 18:24:45 +06:00
mainFrame()->GroupBoxName->setEnabled( isCreateCopy );
2004-12-01 15:39:14 +05:00
}