2022-05-05 18:51:12 +05:00
|
|
|
// Copyright (C) 2007-2022 CEA/DEN, EDF R&D, OPEN CASCADE
|
2008-03-07 12:47:05 +05:00
|
|
|
//
|
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
|
2008-03-07 12:47:05 +05:00
|
|
|
//
|
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.
|
2008-03-07 12:47:05 +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
|
|
|
// File : StdMeshersGUI_LayerDistributionParamWdg.cxx
|
|
|
|
// Author : Open CASCADE S.A.S.
|
|
|
|
// SMESH includes
|
2008-03-07 12:47:05 +05:00
|
|
|
//
|
|
|
|
#include "StdMeshersGUI_LayerDistributionParamWdg.h"
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
#include <SMESHGUI.h>
|
|
|
|
#include <SMESHGUI_HypothesesUtils.h>
|
|
|
|
#include <SMESHGUI_Hypotheses.h>
|
|
|
|
|
|
|
|
// SALOME GUI includes
|
|
|
|
#include <SalomeApp_Tools.h>
|
|
|
|
|
|
|
|
// Qt includes
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QCursor>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
|
|
|
|
#define SPACING 6
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Constructor initialized by filter
|
2016-01-13 18:47:35 +05:00
|
|
|
* \param f - object filter
|
2008-03-07 12:47:05 +05:00
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
StdMeshersGUI_LayerDistributionParamWdg
|
2013-04-01 19:05:47 +06:00
|
|
|
::StdMeshersGUI_LayerDistributionParamWdg(SMESH::SMESH_Hypothesis_ptr holderHyp,
|
|
|
|
SMESH::SMESH_Hypothesis_ptr distribHyp,
|
|
|
|
const QString& name,
|
2016-01-13 18:47:35 +05:00
|
|
|
QDialog* dlg):
|
|
|
|
QWidget(), myDlg( dlg ), myName(name)
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2013-04-01 19:05:47 +06:00
|
|
|
myHolderHyp = SMESH::SMESH_Hypothesis::_duplicate( holderHyp );
|
2008-03-07 12:47:05 +05:00
|
|
|
init();
|
2013-04-01 19:05:47 +06:00
|
|
|
set( distribHyp );
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief initialize fields with hypothesis
|
|
|
|
* \param hyp - hypothesis
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void StdMeshersGUI_LayerDistributionParamWdg::set(SMESH::SMESH_Hypothesis_ptr hyp)
|
|
|
|
{
|
|
|
|
myHyp = SMESH::SMESH_Hypothesis::_nil();
|
|
|
|
if ( !CORBA::is_nil( hyp )) {
|
|
|
|
myHyp = SMESH::SMESH_Hypothesis::_duplicate( hyp );
|
2013-04-01 19:05:47 +06:00
|
|
|
myHyp->SetHolderHypothesis( myHolderHyp );
|
2008-03-07 12:47:05 +05:00
|
|
|
myEditButton->setEnabled( true );
|
|
|
|
myCreateButton->setText( tr("CHANGE_TYPE"));
|
|
|
|
myParamValue = hyp->GetName();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
myEditButton->setEnabled( false );
|
|
|
|
myCreateButton->setText( tr("CREATE"));
|
|
|
|
myParamValue = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Destructor
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
StdMeshersGUI_LayerDistributionParamWdg::~StdMeshersGUI_LayerDistributionParamWdg()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
2013-04-01 19:05:47 +06:00
|
|
|
* \brief Create a layout, initialize fields
|
2008-03-07 12:47:05 +05:00
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void StdMeshersGUI_LayerDistributionParamWdg::init()
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
QHBoxLayout* aHBox = new QHBoxLayout( this );
|
|
|
|
aHBox->setMargin( 0 );
|
|
|
|
aHBox->setSpacing( SPACING );
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
mySMESHGUI = SMESHGUI::GetSMESHGUI();
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
myCreateButton = new QPushButton( this );
|
|
|
|
myCreateButton->setObjectName( "createBut" );
|
2015-10-09 17:54:46 +05:00
|
|
|
myCreateButton->setMinimumWidth(100);
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
myEditButton = new QPushButton( tr("EDIT"), this );
|
|
|
|
myEditButton->setObjectName( "editBut" );
|
2015-10-09 17:54:46 +05:00
|
|
|
myEditButton->setMinimumWidth(100);
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
myHypTypePopup = new QMenu( this );
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
// Add to pop-up hypotheses of "Regular_1D" algo
|
|
|
|
HypothesisData* algoData = SMESH::GetHypothesisData( "Regular_1D" );
|
|
|
|
myHypTypes = SMESH::GetAvailableHypotheses( false, 1 );
|
|
|
|
QStringList::const_iterator anIter = myHypTypes.begin();
|
|
|
|
for ( ; anIter != myHypTypes.end(); ++anIter )
|
|
|
|
{
|
|
|
|
HypothesisData* hypData = SMESH::GetHypothesisData( *anIter );
|
|
|
|
bool bidon;
|
|
|
|
if ( SMESH::IsAvailableHypothesis( algoData, hypData->TypeName, bidon ))
|
2009-02-17 10:27:49 +05:00
|
|
|
myHypTypePopup->addAction( hypData->Label );
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
aHBox->addWidget( myCreateButton );
|
2015-10-09 17:54:46 +05:00
|
|
|
aHBox->addStretch(5);
|
2009-02-17 10:27:49 +05:00
|
|
|
aHBox->addWidget( myEditButton );
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
connect( myCreateButton, SIGNAL(clicked()), SLOT(onCreate()));
|
|
|
|
connect( myEditButton, SIGNAL(clicked()), SLOT(onEdit()));
|
2009-02-17 10:27:49 +05:00
|
|
|
connect( myHypTypePopup, SIGNAL(triggered( QAction* ) ), SLOT( onHypTypePopup( QAction* ) ) );
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Create a new hyp of selected type
|
|
|
|
* \param int - selected type index
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void StdMeshersGUI_LayerDistributionParamWdg::onHypTypePopup( QAction* a )
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
|
|
|
SMESH::SMESH_Gen_var gen = mySMESHGUI->GetSMESHGen();
|
|
|
|
|
|
|
|
// avoid publishing a new 1D hyp
|
2017-06-13 15:01:10 +05:00
|
|
|
gen->SetEnablePublish( false );
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
// create a hyp
|
|
|
|
HypothesisData* aHypData = 0;
|
|
|
|
QStringList::const_iterator anIter = myHypTypes.begin();
|
2009-02-17 10:27:49 +05:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
for ( ; !aHypData && anIter != myHypTypes.end(); ++anIter )
|
|
|
|
{
|
|
|
|
HypothesisData* hypData = SMESH::GetHypothesisData( *anIter );
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( a->text() == hypData->Label )
|
2008-03-07 12:47:05 +05:00
|
|
|
aHypData = hypData;
|
|
|
|
}
|
|
|
|
QString aServLib = aHypData->ServerLibName;
|
|
|
|
QString aHypType = aHypData->TypeName;
|
|
|
|
try {
|
2018-01-22 13:57:06 +05:00
|
|
|
set( gen->CreateHypothesis(aHypType.toLatin1().data(), aServLib.toUtf8().data()));
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
catch (const SALOME::SALOME_Exception & S_ex) {
|
|
|
|
SalomeApp_Tools::QtCatchCorbaException(S_ex);
|
|
|
|
}
|
|
|
|
|
|
|
|
// restore current study
|
2017-06-13 15:01:10 +05:00
|
|
|
gen->SetEnablePublish( true );
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
onEdit();
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Show popup with available types
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void StdMeshersGUI_LayerDistributionParamWdg::onCreate()
|
|
|
|
{
|
|
|
|
myHypTypePopup->exec( QCursor::pos() );
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Edit hypothesis
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void StdMeshersGUI_LayerDistributionParamWdg::onEdit()
|
|
|
|
{
|
|
|
|
if ( myHyp->_is_nil() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
CORBA::String_var hypType = myHyp->GetName();
|
2012-08-09 16:03:55 +06:00
|
|
|
// BUG 0020378
|
|
|
|
SMESHGUI_GenericHypothesisCreator* editor = SMESH::GetHypothesisCreator(hypType.in());
|
2008-03-07 12:47:05 +05:00
|
|
|
if ( !editor ) return;
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( myDlg )
|
2020-05-20 22:10:27 +05:00
|
|
|
{
|
|
|
|
//myDlg->hide(); -- pb: show() does not work
|
|
|
|
myDlg->setWindowTitle( tr( "SMESH_HYPOTHESIS" ));
|
|
|
|
myDlg->setEnabled(false);
|
|
|
|
}
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
try {
|
|
|
|
QWidget* parent = this;
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( myDlg )
|
|
|
|
parent = myDlg->parentWidget();
|
|
|
|
editor->edit( myHyp, myName, parent, this, SLOT( onEdited( int ) ) );
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
catch(...)
|
|
|
|
{
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
}
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2020-08-21 10:05:05 +05:00
|
|
|
void StdMeshersGUI_LayerDistributionParamWdg::onEdited( int /*result*/ )
|
2012-08-09 16:03:55 +06:00
|
|
|
{
|
|
|
|
if ( myDlg )
|
2020-05-20 22:10:27 +05:00
|
|
|
{
|
|
|
|
//myDlg->show(); does not work
|
|
|
|
myDlg->setEnabled(true);
|
|
|
|
}
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|