smesh/src/SMESHGUI/SMESHGUI_ConvToQuadOp.cxx

397 lines
13 KiB
C++
Raw Normal View History

2014-02-20 18:25:37 +06:00
// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE
//
2012-08-09 16:03:55 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
//
2012-08-09 16:03:55 +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
2014-02-20 18:25:37 +06:00
// version 2.1 of the License, or (at your option) any later version.
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +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.
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +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
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
// SMESH SMESHGUI : GUI for SMESH component
// File : SMESHGUI_ConvToQuadOp.cxx
// Author : Open CASCADE S.A.S.
// SMESH includes
//
#include "SMESHGUI_ConvToQuadOp.h"
2012-08-09 16:03:55 +06:00
#include "SMESHGUI.h"
2009-02-17 10:27:49 +05:00
#include "SMESHGUI_ConvToQuadDlg.h"
2012-10-08 17:56:59 +06:00
#include "SMESHGUI_MeshEditPreview.h"
#include "SMESHGUI_Utils.h"
2012-10-08 17:56:59 +06:00
#include "SMESH_ActorUtils.h"
2012-08-09 16:03:55 +06:00
#include "SMESH_TypeFilter.hxx"
2012-10-08 17:56:59 +06:00
#include "SMDSAbs_ElementType.hxx"
2009-02-17 10:27:49 +05:00
// SALOME GUI includes
#include <LightApp_UpdateFlags.h>
2012-08-09 16:03:55 +06:00
#include <SUIT_MessageBox.h>
#include <SUIT_OverrideCursor.h>
#include <SalomeApp_Tools.h>
2012-10-08 17:56:59 +06:00
#include <SALOME_Actor.h>
2009-02-17 10:27:49 +05:00
// IDL includes
#include <SALOMEconfig.h>
#include CORBA_SERVER_HEADER(SMESH_MeshEditor)
2012-10-08 17:56:59 +06:00
// VTK includes
#include <vtkProperty.h>
//================================================================================
/*!
* \brief Constructor
*
* Initialize operation
*/
//================================================================================
SMESHGUI_ConvToQuadOp::SMESHGUI_ConvToQuadOp()
: SMESHGUI_SelectionOp(),
2012-10-08 17:56:59 +06:00
myDlg( 0 ),
myBadElemsPreview(0)
{
}
//================================================================================
/*!
* \brief Destructor
*/
//================================================================================
SMESHGUI_ConvToQuadOp::~SMESHGUI_ConvToQuadOp()
{
2012-10-08 17:56:59 +06:00
if ( myDlg ) delete myDlg;
if ( myBadElemsPreview ) delete myBadElemsPreview;
}
//================================================================================
/*!
* \brief Gets dialog of this operation
* \retval LightApp_Dialog* - pointer to dialog of this operation
*/
//================================================================================
LightApp_Dialog* SMESHGUI_ConvToQuadOp::dlg() const
{
return myDlg;
}
//================================================================================
/*!
* \brief Creates dialog if necessary and shows it
*
* Virtual method redefined from base class called when operation is started creates
* dialog if necessary and shows it, activates selection
*/
//================================================================================
void SMESHGUI_ConvToQuadOp::startOperation()
{
if( !myDlg )
{
myDlg = new SMESHGUI_ConvToQuadDlg( );
}
connect( myDlg, SIGNAL( onClicked( int ) ), SLOT( ConnectRadioButtons( int ) ) );
myHelpFileName = "convert_to_from_quadratic_mesh_page.html";
SMESHGUI_SelectionOp::startOperation();
myDlg->SetMediumNdsOnGeom( false );
myDlg->activateObject( 0 );
2012-08-09 16:03:55 +06:00
myDlg->ShowWarning( false );
myDlg->show();
selectionDone();
}
//================================================================================
/*!
* \brief Updates dialog's look and feel
*
* Virtual method redefined from the base class updates dialog's look and feel
*/
//================================================================================
void SMESHGUI_ConvToQuadOp::selectionDone()
{
2009-02-17 10:27:49 +05:00
if ( !dlg()->isVisible() )
return;
SMESHGUI_SelectionOp::selectionDone();
try
{
2012-08-09 16:03:55 +06:00
QString anObjEntry = myDlg->selectedObject( 0 );
_PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
if ( !pObj ) return;
2012-08-09 16:03:55 +06:00
SMESH::SMESH_IDSource_var idSource =
SMESH::SObjectToInterface<SMESH::SMESH_IDSource>( pObj );
2012-08-09 16:03:55 +06:00
myDlg->setButtonEnabled( true, QtxDialog::OK | QtxDialog::Apply );
if( idSource->_is_nil() )
{
myDlg->SetEnabledControls( false );
2012-08-09 16:03:55 +06:00
myDlg->setButtonEnabled( false, QtxDialog::OK | QtxDialog::Apply );
return;
}
2013-03-06 19:57:01 +06:00
SMESH::SMESH_Mesh_var mesh = idSource->GetMesh();
bool hasGeom = mesh->HasShapeToMesh();
MeshDestinationType meshTgtType = DestinationMesh( idSource );
myDlg->SetEnabledRB( meshTgtType, hasGeom && ( meshTgtType & ( BiQuadratic | Quadratic )));
2012-08-09 16:03:55 +06:00
// show warning on non-conformal result mesh
if ( ! idSource->_is_nil() )
{
SMESH::SMESH_subMesh_var subMesh =
SMESH::SObjectToInterface<SMESH::SMESH_subMesh>( pObj );
bool toShow = false;
if ( !subMesh->_is_nil() )
{
SMESH::SMESH_Mesh_var mesh = idSource->GetMesh();
idSource = SMESH::SMESH_IDSource::_narrow( mesh );
2013-03-06 19:57:01 +06:00
bool isMixOrder;
DestinationMesh( idSource, &isMixOrder );
toShow = !isMixOrder;
2012-08-09 16:03:55 +06:00
}
myDlg->ShowWarning( toShow );
}
}
catch ( const SALOME::SALOME_Exception& S_ex )
{
SalomeApp_Tools::QtCatchCorbaException( S_ex );
}
catch ( ... )
{
}
}
//================================================================================
/*!
* \brief Creates selection filter
* \param theId - identifier of current selection widget
* \retval SUIT_SelectionFilter* - pointer to the created filter or null
*
* Creates selection filter in accordance with identifier of current selection widget
*/
//================================================================================
SUIT_SelectionFilter* SMESHGUI_ConvToQuadOp::createFilter( const int theId ) const
{
if ( theId == 0 )
2012-12-13 17:41:29 +06:00
return new SMESH_TypeFilter( SMESH::MESHorSUBMESH );
else
return 0;
}
//================================================================================
/*!
* \brief Edits mesh
*
* Virtual slot redefined from the base class called when "Apply" button is clicked
*/
//================================================================================
bool SMESHGUI_ConvToQuadOp::onApply()
{
2012-08-09 16:03:55 +06:00
SUIT_OverrideCursor aWaitCursor;
QString aMess;
2012-08-09 16:03:55 +06:00
QString anObjEntry = myDlg->selectedObject( 0 );
_PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
if ( !pObj )
{
dlg()->show();
2009-02-17 10:27:49 +05:00
SUIT_MessageBox::warning( myDlg,
2012-08-09 16:03:55 +06:00
tr( "SMESH_WRN_WARNING" ), tr("MESH_IS_NOT_SELECTED") );
return false;
}
2012-08-09 16:03:55 +06:00
SMESH::SMESH_Mesh_var mesh;
SMESH::SMESH_IDSource_var idSource =
SMESH::SObjectToInterface<SMESH::SMESH_IDSource>( pObj );
if( !CORBA::is_nil(idSource) )
mesh = idSource->GetMesh();
if( CORBA::is_nil(mesh) )
{
2009-02-17 10:27:49 +05:00
SUIT_MessageBox::warning( myDlg,
2012-08-09 16:03:55 +06:00
tr( "SMESH_WRN_WARNING" ), tr("REF_IS_NULL") );
return false;
2012-08-09 16:03:55 +06:00
}
bool aResult = false;
try
{
SMESH::SMESH_MeshEditor_var aEditor = mesh->GetMeshEditor();
2012-08-09 16:03:55 +06:00
aResult = true;
SMESH::SMESH_Mesh_var sourceMesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>( pObj );
2013-03-06 19:57:01 +06:00
if( myDlg->CurrentRB()==1 || myDlg->CurrentRB()==2)
{
2012-10-08 17:56:59 +06:00
bool force3d = true;
if( myDlg->IsEnabledCheck() )
2012-10-08 17:56:59 +06:00
force3d = myDlg->IsMediumNdsOnGeom();
2013-03-06 19:57:01 +06:00
bool theToBiQuad = myDlg->IsBiQuadratic();
if ( sourceMesh->_is_nil() ) {
if ( theToBiQuad ) aEditor->ConvertToBiQuadratic ( force3d, idSource );
else aEditor->ConvertToQuadraticObject( force3d, idSource );
}
else {
if ( theToBiQuad ) aEditor->ConvertToBiQuadratic( force3d, sourceMesh );
else aEditor->ConvertToQuadratic ( force3d );
}
2012-10-08 17:56:59 +06:00
if ( !force3d )
{
SMESH::ComputeError_var error = aEditor->GetLastError();
if ( error->hasBadMesh )
{
if ( myBadElemsPreview ) delete myBadElemsPreview; // viewWindow may change
myBadElemsPreview = new SMESHGUI_MeshEditPreview( viewWindow() );
2013-03-06 19:57:01 +06:00
2013-03-01 19:13:25 +06:00
double aPointSize = SMESH::GetFloat("SMESH:node_size",3);
double aLineWidth = SMESH::GetFloat("SMESH:element_width",1);
2012-10-08 17:56:59 +06:00
vtkProperty* prop = vtkProperty::New();
prop->SetLineWidth( aLineWidth * 3 );
prop->SetPointSize( aPointSize * 3 );
prop->SetColor( 250, 0, 250 );
myBadElemsPreview->GetActor()->SetProperty( prop );
prop->Delete();
SMESH::MeshPreviewStruct_var previewData = aEditor->GetPreviewData();
myBadElemsPreview->SetData( & previewData.in() );
myBadElemsPreview->SetVisibility(true);
SUIT_MessageBox* mb = new SUIT_MessageBox(SUIT_MessageBox::Warning,
tr( "SMESH_WRN_WARNING" ),
tr("EDITERR_NO_MEDIUM_ON_GEOM"),
SUIT_MessageBox::Ok, myDlg);
mb->setWindowModality( Qt::NonModal );
mb->setAttribute( Qt::WA_DeleteOnClose );
mb->show();
connect ( mb, SIGNAL( finished(int) ), this, SLOT( onWarningWinFinished() ));
//connect ( mb, SIGNAL( rejected() ), this, SLOT( onWarningWinFinished() ));
}
}
}
else
{
2012-08-09 16:03:55 +06:00
if ( sourceMesh->_is_nil() )
aEditor->ConvertFromQuadraticObject( idSource );
else
aEditor->ConvertFromQuadratic();
}
}
catch ( const SALOME::SALOME_Exception& S_ex )
{
SalomeApp_Tools::QtCatchCorbaException( S_ex );
aResult = false;
}
catch ( ... )
{
aResult = false;
}
if( aResult )
{
2012-08-09 16:03:55 +06:00
SMESHGUI::Modified();
update( UF_ObjBrowser | UF_Model | UF_Viewer );
selectionDone();
}
return aResult;
}
2012-10-08 17:56:59 +06:00
//================================================================================
/*!
* \brief SLOT called when a warning window is closed
*/
//================================================================================
void SMESHGUI_ConvToQuadOp::onWarningWinFinished()
{
if ( myBadElemsPreview )
myBadElemsPreview->SetVisibility(false);
}
//================================================================================
/*! ConsistMesh
2013-03-06 19:57:01 +06:00
* Determines, what elements this mesh does not contain.
*/
//================================================================================
2013-03-06 19:57:01 +06:00
SMESHGUI_ConvToQuadOp::MeshDestinationType
SMESHGUI_ConvToQuadOp::DestinationMesh( const SMESH::SMESH_IDSource_var& idSource,
bool* isMixOrder) const
{
2012-08-09 16:03:55 +06:00
SMESH::long_array_var nbElemOfType = idSource->GetMeshInfo();
2013-03-06 19:57:01 +06:00
bool hasBiQuad = ( nbElemOfType[SMDSEntity_BiQuad_Triangle ] ||
nbElemOfType[SMDSEntity_BiQuad_Quadrangle ] ||
2013-03-06 19:57:01 +06:00
nbElemOfType[SMDSEntity_TriQuad_Hexa ] );
bool hasLinBiQuad = ( nbElemOfType[SMDSEntity_Triangle ] ||
nbElemOfType[SMDSEntity_Quadrangle ] ||
2013-03-06 19:57:01 +06:00
nbElemOfType[SMDSEntity_Hexa ] );
bool hasQuadBiQuad = ( nbElemOfType[SMDSEntity_Quad_Triangle ] ||
nbElemOfType[SMDSEntity_Quad_Quadrangle ] ||
2013-03-06 19:57:01 +06:00
nbElemOfType[SMDSEntity_Quad_Hexa ] );
2012-08-09 16:03:55 +06:00
bool hasQuad = ( nbElemOfType[SMDSEntity_Quad_Edge ] ||
nbElemOfType[SMDSEntity_Quad_Triangle ] ||
nbElemOfType[SMDSEntity_Quad_Quadrangle] ||
nbElemOfType[SMDSEntity_Quad_Tetra ] ||
nbElemOfType[SMDSEntity_Quad_Hexa ] ||
nbElemOfType[SMDSEntity_Quad_Pyramid ] ||
nbElemOfType[SMDSEntity_Quad_Penta ] );
bool hasLin = ( nbElemOfType[SMDSEntity_Edge ] ||
nbElemOfType[SMDSEntity_Triangle ] ||
nbElemOfType[SMDSEntity_Quadrangle] ||
nbElemOfType[SMDSEntity_Tetra ] ||
nbElemOfType[SMDSEntity_Hexa ] ||
nbElemOfType[SMDSEntity_Pyramid ] ||
nbElemOfType[SMDSEntity_Penta ] );
2013-03-06 19:57:01 +06:00
int tgtType = 0;
if ( hasBiQuad )
tgtType |= ( Quadratic | Linear );
if ( hasLinBiQuad )
2013-03-06 19:57:01 +06:00
tgtType |= ( BiQuadratic | Quadratic );
if ( hasQuadBiQuad )
2013-03-06 19:57:01 +06:00
tgtType |= ( BiQuadratic | Linear );
if ( hasQuad )
tgtType |= Linear;
if ( hasLin )
tgtType |= Quadratic;
if ( tgtType == 0 )
tgtType = Quadratic;
if ( isMixOrder )
*isMixOrder = ( hasLin && ( hasQuad || hasBiQuad ));
return MeshDestinationType( tgtType );
}
void SMESHGUI_ConvToQuadOp::ConnectRadioButtons( int id )
{
2012-08-09 16:03:55 +06:00
QString anObjEntry = myDlg->selectedObject( 0 );
_PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
if ( !pObj ) return;
2012-08-09 16:03:55 +06:00
SMESH::SMESH_IDSource_var idSource =
SMESH::SObjectToInterface<SMESH::SMESH_IDSource>( pObj );
SMESH::SMESH_Mesh_var mesh = idSource->GetMesh();
2012-08-09 16:03:55 +06:00
bool hasGeom = mesh->HasShapeToMesh();
2013-03-06 19:57:01 +06:00
if( id==0 || !hasGeom )
myDlg->SetEnabledCheck( false );
else
myDlg->SetEnabledCheck( true );
}