smesh/src/SMESHGUI/SMESHGUI_SmoothingDlg.cxx

850 lines
29 KiB
C++
Raw Normal View History

2012-08-09 16:03:55 +06:00
// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
2004-12-01 15:48:31 +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
//
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
// version 2.1 of the License.
//
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.
//
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
//
2012-08-09 16:03:55 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2004-12-01 15:48:31 +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_SmoothingDlg.cxx
// Author : Michael ZORIN, Open CASCADE S.A.S.
// SMESH includes
2004-12-01 15:48:31 +05:00
//
#include "SMESHGUI_SmoothingDlg.h"
#include "SMESHGUI.h"
#include "SMESHGUI_Utils.h"
#include "SMESHGUI_VTKUtils.h"
#include "SMESHGUI_MeshUtils.h"
#include "SMESHGUI_SpinBox.h"
2004-12-01 15:48:31 +05:00
#include "SMESHGUI_IdValidator.h"
2009-02-17 10:27:49 +05:00
#include "SMESHGUI_FilterDlg.h"
2009-02-17 10:27:49 +05:00
#include <SMESH_Actor.h>
#include <SMESH_TypeFilter.hxx>
#include <SMESH_LogicalFilter.hxx>
2009-02-17 10:27:49 +05:00
#include <SMDS_Mesh.hxx>
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
// SALOME GUI includes
#include <SUIT_ResourceMgr.h>
#include <SUIT_OverrideCursor.h>
#include <SUIT_Desktop.h>
#include <SUIT_Session.h>
#include <SUIT_MessageBox.h>
2009-02-17 10:27:49 +05:00
#include <LightApp_Application.h>
#include <LightApp_SelectionMgr.h>
2009-02-17 10:27:49 +05:00
#include <SalomeApp_IntSpinBox.h>
2009-02-17 10:27:49 +05:00
#include <SVTK_ViewModel.h>
#include <SVTK_Selector.h>
#include <SVTK_ViewWindow.h>
#include <SVTK_Selection.h>
#include <SALOME_ListIO.hxx>
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
// OCCT includes
#include <TColStd_MapOfInteger.hxx>
2009-02-17 10:27:49 +05:00
// Qt includes
#include <QApplication>
#include <QGroupBox>
#include <QLabel>
#include <QLineEdit>
#include <QPushButton>
#include <QRadioButton>
#include <QComboBox>
#include <QCheckBox>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QGridLayout>
#include <QKeyEvent>
#include <QButtonGroup>
// IDL includes
#include <SALOMEconfig.h>
2005-01-20 11:25:54 +05:00
#include CORBA_SERVER_HEADER(SMESH_Group)
#include CORBA_SERVER_HEADER(SMESH_MeshEditor)
2005-01-20 11:25:54 +05:00
2009-02-17 10:27:49 +05:00
#define SPACING 6
#define MARGIN 11
2004-12-01 15:48:31 +05:00
2012-08-09 16:03:55 +06:00
/*!
\class BusyLocker
\brief Simple 'busy state' flag locker.
\internal
*/
class BusyLocker
{
public:
//! Constructor. Sets passed boolean flag to \c true.
BusyLocker( bool& busy ) : myBusy( busy ) { myBusy = true; }
//! Destructor. Clear external boolean flag passed as parameter to the constructor to \c false.
~BusyLocker() { myBusy = false; }
private:
bool& myBusy; //! External 'busy state' boolean flag
};
2004-12-01 15:48:31 +05:00
//=================================================================================
// function : SMESHGUI_SmoothingDlg()
// purpose : constructor
2004-12-01 15:48:31 +05:00
//=================================================================================
2009-02-17 10:27:49 +05:00
SMESHGUI_SmoothingDlg::SMESHGUI_SmoothingDlg( SMESHGUI* theModule )
: QDialog( SMESH::GetDesktop( theModule ) ),
mySMESHGUI( theModule ),
mySelectionMgr( SMESH::GetSelectionMgr( theModule ) ),
myFilterDlg(0),
mySelectedObject(SMESH::SMESH_IDSource::_nil())
2004-12-01 15:48:31 +05:00
{
2005-06-08 16:45:19 +06:00
QPixmap image0 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_DLG_SMOOTHING")));
QPixmap image1 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SELECT")));
2009-02-17 10:27:49 +05:00
setModal(false);
setAttribute(Qt::WA_DeleteOnClose, true);
setWindowTitle(tr("SMESH_SMOOTHING"));
setSizeGripEnabled(true);
2004-12-01 15:48:31 +05:00
/***************************************************************/
2009-02-17 10:27:49 +05:00
QVBoxLayout* SMESHGUI_SmoothingDlgLayout = new QVBoxLayout(this);
SMESHGUI_SmoothingDlgLayout->setSpacing(SPACING);
SMESHGUI_SmoothingDlgLayout->setMargin(MARGIN);
2004-12-01 15:48:31 +05:00
/***************************************************************/
2009-02-17 10:27:49 +05:00
GroupConstructors = new QGroupBox(tr("SMESH_SMOOTHING"), this);
QButtonGroup* ButtonGroup = new QButtonGroup(this);
QHBoxLayout* GroupConstructorsLayout = new QHBoxLayout(GroupConstructors);
GroupConstructorsLayout->setSpacing(SPACING);
GroupConstructorsLayout->setMargin(MARGIN);
Constructor1 = new QRadioButton(GroupConstructors);
Constructor1->setIcon(image0);
Constructor1->setChecked(true);
GroupConstructorsLayout->addWidget(Constructor1);
ButtonGroup->addButton(Constructor1, 0);
2004-12-01 15:48:31 +05:00
/***************************************************************/
2009-02-17 10:27:49 +05:00
GroupArguments = new QGroupBox(tr("SMESH_ARGUMENTS"), this);
QGridLayout* GroupArgumentsLayout = new QGridLayout(GroupArguments);
GroupArgumentsLayout->setSpacing(SPACING);
GroupArgumentsLayout->setMargin(MARGIN);
myIdValidator = new SMESHGUI_IdValidator(this);
2004-12-01 15:48:31 +05:00
// Controls for elements selection
2009-02-17 10:27:49 +05:00
TextLabelElements = new QLabel(tr("SMESH_ID_ELEMENTS"), GroupArguments);
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
SelectElementsButton = new QPushButton(GroupArguments);
SelectElementsButton->setIcon(image1);
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
LineEditElements = new QLineEdit(GroupArguments);
LineEditElements->setValidator(myIdValidator);
2012-08-09 16:03:55 +06:00
LineEditElements->setMaxLength(-1);
myElemFilterBtn = new QPushButton( tr( "SMESH_BUT_FILTER" ), GroupArguments );
connect(myElemFilterBtn, SIGNAL(clicked()), this, SLOT(setElemFilters()));
2004-12-01 15:48:31 +05:00
// Control for the whole mesh selection
2009-02-17 10:27:49 +05:00
CheckBoxMesh = new QCheckBox(tr("SMESH_SELECT_WHOLE_MESH"), GroupArguments);
2004-12-01 15:48:31 +05:00
// Controls for nodes selection
2009-02-17 10:27:49 +05:00
TextLabelNodes = new QLabel(tr("FIXED_NODES_IDS"), GroupArguments);
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
SelectNodesButton = new QPushButton(GroupArguments);
SelectNodesButton->setIcon(image1);
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
LineEditNodes = new QLineEdit(GroupArguments);
LineEditNodes->setValidator(myIdValidator);
2012-08-09 16:03:55 +06:00
LineEditNodes->setMaxLength(-1);
2009-02-17 10:27:49 +05:00
QPushButton* filterNodeBtn = new QPushButton( tr( "SMESH_BUT_FILTER" ), GroupArguments );
connect(filterNodeBtn, SIGNAL(clicked()), this, SLOT(setNodeFilters()));
2004-12-01 15:48:31 +05:00
// Controls for method selection
2009-02-17 10:27:49 +05:00
TextLabelMethod = new QLabel(tr("METHOD"), GroupArguments);
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
ComboBoxMethod = new QComboBox(GroupArguments);
2004-12-01 15:48:31 +05:00
// Controls for iteration limit defining
2009-02-17 10:27:49 +05:00
TextLabelLimit = new QLabel(tr("ITERATION_LIMIT"), GroupArguments);
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
SpinBox_IterationLimit = new SalomeApp_IntSpinBox(GroupArguments);
2004-12-01 15:48:31 +05:00
// Controls for max. aspect ratio defining
2009-02-17 10:27:49 +05:00
TextLabelAspectRatio = new QLabel(tr("MAX_ASPECT_RATIO"), GroupArguments);
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
SpinBox_AspectRatio = new SMESHGUI_SpinBox(GroupArguments);
2004-12-01 15:48:31 +05:00
// Check box "Is Parametric"
2009-02-17 10:27:49 +05:00
CheckBoxParametric = new QCheckBox( tr("IS_PARAMETRIC"), GroupArguments );
GroupArgumentsLayout->addWidget(TextLabelElements, 0, 0);
GroupArgumentsLayout->addWidget(SelectElementsButton, 0, 1);
GroupArgumentsLayout->addWidget(LineEditElements, 0, 2);
2012-08-09 16:03:55 +06:00
GroupArgumentsLayout->addWidget(myElemFilterBtn, 0, 3);
2009-02-17 10:27:49 +05:00
GroupArgumentsLayout->addWidget(CheckBoxMesh, 1, 0, 1, 4);
GroupArgumentsLayout->addWidget(TextLabelNodes, 2, 0);
GroupArgumentsLayout->addWidget(SelectNodesButton, 2, 1);
GroupArgumentsLayout->addWidget(LineEditNodes, 2, 2);
GroupArgumentsLayout->addWidget(filterNodeBtn, 2, 3);
GroupArgumentsLayout->addWidget(TextLabelMethod, 3, 0);
GroupArgumentsLayout->addWidget(ComboBoxMethod, 3, 2, 1, 2);
GroupArgumentsLayout->addWidget(TextLabelLimit, 4, 0);
GroupArgumentsLayout->addWidget(SpinBox_IterationLimit, 4, 2, 1, 2);
GroupArgumentsLayout->addWidget(TextLabelAspectRatio, 5, 0);
GroupArgumentsLayout->addWidget(SpinBox_AspectRatio, 5, 2, 1, 2);
GroupArgumentsLayout->addWidget(CheckBoxParametric, 6, 0, 1, 4);
2009-02-17 10:27:49 +05:00
/***************************************************************/
GroupButtons = new QGroupBox(this);
QHBoxLayout* GroupButtonsLayout = new QHBoxLayout(GroupButtons);
GroupButtonsLayout->setSpacing(SPACING);
GroupButtonsLayout->setMargin(MARGIN);
buttonOk = new QPushButton(tr("SMESH_BUT_APPLY_AND_CLOSE"), GroupButtons);
buttonOk->setAutoDefault(true);
buttonOk->setDefault(true);
buttonApply = new QPushButton(tr("SMESH_BUT_APPLY"), GroupButtons);
buttonApply->setAutoDefault(true);
buttonCancel = new QPushButton(tr("SMESH_BUT_CLOSE"), GroupButtons);
buttonCancel->setAutoDefault(true);
buttonHelp = new QPushButton(tr("SMESH_BUT_HELP"), GroupButtons);
buttonHelp->setAutoDefault(true);
GroupButtonsLayout->addWidget(buttonOk);
GroupButtonsLayout->addSpacing(10);
GroupButtonsLayout->addWidget(buttonApply);
GroupButtonsLayout->addSpacing(10);
GroupButtonsLayout->addStretch();
GroupButtonsLayout->addWidget(buttonCancel);
GroupButtonsLayout->addWidget(buttonHelp);
2009-02-17 10:27:49 +05:00
/***************************************************************/
SMESHGUI_SmoothingDlgLayout->addWidget(GroupConstructors);
SMESHGUI_SmoothingDlgLayout->addWidget(GroupArguments);
SMESHGUI_SmoothingDlgLayout->addWidget(GroupButtons);
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
/***************************************************************/
2004-12-01 15:48:31 +05:00
/* Initialisations */
2009-02-17 10:27:49 +05:00
ComboBoxMethod->addItem(tr("LAPLACIAN"));
ComboBoxMethod->addItem(tr("CENTROIDAL"));
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
ComboBoxMethod->setCurrentIndex(0);
2009-02-17 10:27:49 +05:00
CheckBoxParametric->setChecked( true );
SpinBox_IterationLimit->setRange(1, 999999);
SpinBox_IterationLimit->setValue(20);
2012-08-09 16:03:55 +06:00
SpinBox_AspectRatio->RangeStepAndValidator(0.0, +999999.999, 0.1, "parametric_precision");
SpinBox_AspectRatio->SetValue(1.1);
2004-12-01 15:48:31 +05:00
GroupArguments->show();
myConstructorId = 0;
2009-02-17 10:27:49 +05:00
Constructor1->setChecked(true);
mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
2004-12-01 15:48:31 +05:00
mySMESHGUI->SetActiveDialogBox(this);
// Costruction of the logical filter for the elements: mesh/sub-mesh/group
2009-02-17 10:27:49 +05:00
QList<SUIT_SelectionFilter*> aListOfFilters;
2012-08-09 16:03:55 +06:00
aListOfFilters << new SMESH_TypeFilter(MESHorSUBMESH) << new SMESH_TypeFilter(GROUP);
myMeshOrSubMeshOrGroupFilter =
new SMESH_LogicalFilter (aListOfFilters, SMESH_LogicalFilter::LO_OR);
2004-12-01 15:48:31 +05:00
myHelpFileName = "smoothing_page.html";
2004-12-01 15:48:31 +05:00
Init();
/***************************************************************/
// signals and slots connections
connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
connect(buttonHelp, SIGNAL(clicked()), this, SLOT(ClickOnHelp()));
connect(SelectElementsButton, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
connect(SelectNodesButton, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
connect(mySMESHGUI, SIGNAL (SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
2004-12-01 15:48:31 +05:00
/* to close dialog if study change */
connect(mySMESHGUI, SIGNAL (SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
connect(LineEditElements, SIGNAL(textChanged(const QString&)),
SLOT(onTextChange(const QString&)));
connect(LineEditNodes, SIGNAL(textChanged(const QString&)),
SLOT(onTextChange(const QString&)));
connect(CheckBoxMesh, SIGNAL(toggled(bool)),
SLOT(onSelectMesh(bool)));
2004-12-01 15:48:31 +05:00
}
//=================================================================================
// function : ~SMESHGUI_SmoothingDlg()
// purpose : destructor
2004-12-01 15:48:31 +05:00
//=================================================================================
SMESHGUI_SmoothingDlg::~SMESHGUI_SmoothingDlg()
{
// no need to delete child widgets, Qt does it all for us
2009-02-17 10:27:49 +05:00
if ( myFilterDlg != 0 ) {
myFilterDlg->setParent( 0 );
delete myFilterDlg;
}
2004-12-01 15:48:31 +05:00
}
//=================================================================================
// function : Init()
// purpose : initialization
2004-12-01 15:48:31 +05:00
//=================================================================================
void SMESHGUI_SmoothingDlg::Init()
{
myBusy = false;
// ComboBoxMethod->setCurrentItem(0);
// SpinBox_IterationLimit->setValue(20);
// SpinBox_AspectRatio->SetValue(1.1);
2004-12-01 15:48:31 +05:00
myEditCurrentArgument = LineEditElements;
LineEditElements->setFocus();
2005-06-24 18:24:06 +06:00
LineEditElements->clear();
LineEditNodes->clear();
myNbOkElements = 0;
myNbOkNodes = 0;
2004-12-01 15:48:31 +05:00
myActor = 0;
2012-08-09 16:03:55 +06:00
myIO.Nullify();
2004-12-01 15:48:31 +05:00
myMesh = SMESH::SMESH_Mesh::_nil();
2004-12-01 15:48:31 +05:00
CheckBoxMesh->setChecked(false);
onSelectMesh(false);
2004-12-01 15:48:31 +05:00
}
//=================================================================================
// function : ClickOnApply()
// purpose : Called when user presses <Apply> button
2004-12-01 15:48:31 +05:00
//=================================================================================
2009-02-17 10:27:49 +05:00
bool SMESHGUI_SmoothingDlg::ClickOnApply()
2004-12-01 15:48:31 +05:00
{
if (mySMESHGUI->isActiveStudyLocked())
2009-02-17 10:27:49 +05:00
return false;
2009-02-17 10:27:49 +05:00
if (!isValid())
return false;
if (myNbOkElements && (myNbOkNodes || LineEditNodes->text().trimmed().isEmpty())) {
2012-08-09 16:03:55 +06:00
QStringList aListElementsId = LineEditElements->text().split(" ", QString::SkipEmptyParts);
2009-02-17 10:27:49 +05:00
QStringList aListNodesId = LineEditNodes->text().split(" ", QString::SkipEmptyParts);
SMESH::long_array_var anElementsId = new SMESH::long_array;
SMESH::long_array_var aNodesId = new SMESH::long_array;
anElementsId->length(aListElementsId.count());
for (int i = 0; i < aListElementsId.count(); i++)
anElementsId[i] = aListElementsId[i].toInt();
2009-02-17 10:27:49 +05:00
if ( myNbOkNodes && aListNodesId.count() > 0 ) {
aNodesId->length(aListNodesId.count());
for (int i = 0; i < aListNodesId.count(); i++)
aNodesId[i] = aListNodesId[i].toInt();
} else {
aNodesId->length(0);
}
long anIterationLimit = (long)SpinBox_IterationLimit->value();
double aMaxAspectRatio = SpinBox_AspectRatio->GetValue();
2009-02-17 10:27:49 +05:00
QStringList aParameters;
aParameters << SpinBox_IterationLimit->text();
aParameters << SpinBox_AspectRatio->text();
SMESH::SMESH_MeshEditor::Smooth_Method aMethod = SMESH::SMESH_MeshEditor::LAPLACIAN_SMOOTH;
2009-02-17 10:27:49 +05:00
if (ComboBoxMethod->currentIndex() > 0)
aMethod = SMESH::SMESH_MeshEditor::CENTROIDAL_SMOOTH;
bool aResult = false;
try {
2009-02-17 10:27:49 +05:00
SUIT_OverrideCursor aWaitCursor;
SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
2009-02-17 10:27:49 +05:00
2012-08-09 16:03:55 +06:00
myMesh->SetParameters( aParameters.join(":").toLatin1().constData() );
2009-02-17 10:27:49 +05:00
if ( CheckBoxParametric->isChecked() ) {
if(CheckBoxMesh->isChecked())
2012-08-09 16:03:55 +06:00
aResult = aMeshEditor->SmoothParametricObject(mySelectedObject, aNodesId.inout(),
anIterationLimit, aMaxAspectRatio, aMethod);
else
aResult = aMeshEditor->SmoothParametric(anElementsId.inout(), aNodesId.inout(),
anIterationLimit, aMaxAspectRatio, aMethod);
2009-02-17 10:27:49 +05:00
}
else {
if(CheckBoxMesh->isChecked())
2012-08-09 16:03:55 +06:00
aResult = aMeshEditor->SmoothObject(mySelectedObject, aNodesId.inout(),
anIterationLimit, aMaxAspectRatio, aMethod);
else
aResult = aMeshEditor->Smooth(anElementsId.inout(), aNodesId.inout(),
anIterationLimit, aMaxAspectRatio, aMethod);
2009-02-17 10:27:49 +05:00
}
} catch (...) {
2004-12-01 15:48:31 +05:00
}
if (aResult) {
2012-08-09 16:03:55 +06:00
SMESH::Update(myIO, SMESH::eDisplay);
SMESHGUI::Modified();
Init();
2009-02-17 10:27:49 +05:00
mySelectedObject = SMESH::SMESH_IDSource::_nil();
}
}
2009-02-17 10:27:49 +05:00
return true;
2004-12-01 15:48:31 +05:00
}
//=================================================================================
// function : ClickOnOk()
// purpose : Called when user presses <OK> button
2004-12-01 15:48:31 +05:00
//=================================================================================
void SMESHGUI_SmoothingDlg::ClickOnOk()
{
2009-02-17 10:27:49 +05:00
if( ClickOnApply() )
ClickOnCancel();
2004-12-01 15:48:31 +05:00
}
//=================================================================================
// function : ClickOnCancel()
// purpose : Called when dialog box is closed
2004-12-01 15:48:31 +05:00
//=================================================================================
void SMESHGUI_SmoothingDlg::ClickOnCancel()
{
disconnect(mySelectionMgr, 0, this, 0);
mySelectionMgr->clearFilters();
//mySelectionMgr->clearSelected();
2009-02-17 10:27:49 +05:00
if (SMESH::GetCurrentVtkView()) {
SMESH::RemoveFilters(); // PAL6938 -- clean all mesh entity filters
SMESH::SetPointRepresentation(false);
SMESH::SetPickable();
}
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
aViewWindow->SetSelectionMode(ActorSelection);
mySMESHGUI->ResetState();
reject();
2004-12-01 15:48:31 +05:00
}
//=================================================================================
// function : ClickOnHelp()
// purpose :
//=================================================================================
void SMESHGUI_SmoothingDlg::ClickOnHelp()
{
LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
if (app)
app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
else {
2009-02-17 10:27:49 +05:00
QString platform;
#ifdef WIN32
2009-02-17 10:27:49 +05:00
platform = "winapplication";
#else
2009-02-17 10:27:49 +05:00
platform = "application";
#endif
2009-02-17 10:27:49 +05:00
SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
2012-08-09 16:03:55 +06:00
tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
arg(app->resourceMgr()->stringValue("ExternalBrowser",
platform)).
arg(myHelpFileName));
}
}
2004-12-01 15:48:31 +05:00
//=======================================================================
// function : onTextChange()
// purpose :
2004-12-01 15:48:31 +05:00
//=======================================================================
void SMESHGUI_SmoothingDlg::onTextChange (const QString& theNewText)
2004-12-01 15:48:31 +05:00
{
QLineEdit* send = (QLineEdit*)sender();
// return if busy
2012-08-09 16:03:55 +06:00
if (myBusy || myIO.IsNull()) return;
// set busy flag
2012-08-09 16:03:55 +06:00
BusyLocker lock( myBusy );
2004-12-01 15:48:31 +05:00
if (send == LineEditElements)
myNbOkElements = 0;
else if (send == LineEditNodes)
myNbOkNodes = 0;
buttonOk->setEnabled(false);
buttonApply->setEnabled(false);
2004-12-01 15:48:31 +05:00
// hilight entered elements/nodes
2012-08-09 16:03:55 +06:00
SMDS_Mesh* aMesh = myActor ? myActor->GetObject()->GetMesh() : 0;
QStringList aListId = theNewText.split(" ", QString::SkipEmptyParts);
if (send == LineEditElements) {
TColStd_MapOfInteger newIndices;
for (int i = 0; i < aListId.count(); i++) {
int id = aListId[ i ].toInt();
if ( id > 0 ) {
bool validId = aMesh ? ( aMesh->FindElement( id ) != 0 ) : ( myMesh->GetElementType( id, true ) != SMESH::EDGE );
if ( validId )
newIndices.Add( id );
}
2012-08-09 16:03:55 +06:00
myNbOkElements = newIndices.Extent();
mySelector->AddOrRemoveIndex(myIO, newIndices, false);
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
2012-08-09 16:03:55 +06:00
aViewWindow->highlight( myIO, true, true );
}
}
else if (send == LineEditNodes) {
TColStd_MapOfInteger newIndices;
for (int i = 0; i < aListId.count(); i++) {
int id = aListId[ i ].toInt();
if ( id > 0 ) {
bool validId = aMesh ? ( aMesh->FindNode( id ) != 0 ) : ( myMesh->GetElementType( id, false ) != SMESH::EDGE );
if ( validId )
newIndices.Add( id );
}
2012-08-09 16:03:55 +06:00
myNbOkNodes = newIndices.Extent();
mySelector->AddOrRemoveIndex(myIO, newIndices, false);
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
2012-08-09 16:03:55 +06:00
aViewWindow->highlight( myIO, true, true );
2004-12-01 15:48:31 +05:00
}
}
2009-02-17 10:27:49 +05:00
if (myNbOkElements && (myNbOkNodes || LineEditNodes->text().trimmed().isEmpty())) {
buttonOk->setEnabled(true);
buttonApply->setEnabled(true);
2004-12-01 15:48:31 +05:00
}
}
//=================================================================================
// function : SelectionIntoArgument()
// purpose : Called when selection as changed or other case
//=================================================================================
void SMESHGUI_SmoothingDlg::SelectionIntoArgument()
{
if (myBusy) return;
2004-12-01 15:48:31 +05:00
// clear
QString aString = "";
2012-08-09 16:03:55 +06:00
// set busy flag
BusyLocker lock( myBusy );
2009-02-17 10:27:49 +05:00
if (myEditCurrentArgument == LineEditElements ||
myEditCurrentArgument == LineEditNodes) {
myEditCurrentArgument->setText(aString);
2012-08-09 16:03:55 +06:00
if (myEditCurrentArgument == LineEditElements) {
2009-02-17 10:27:49 +05:00
myNbOkElements = 0;
2012-08-09 16:03:55 +06:00
myActor = 0;
myIO.Nullify();
}
else {
2009-02-17 10:27:49 +05:00
myNbOkNodes = 0;
2012-08-09 16:03:55 +06:00
}
buttonOk->setEnabled(false);
buttonApply->setEnabled(false);
}
2004-12-01 15:48:31 +05:00
if (!GroupButtons->isEnabled()) // inactive
2004-12-01 15:48:31 +05:00
return;
2004-12-01 15:48:31 +05:00
// get selected mesh
SALOME_ListIO aList;
mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
int nbSel = aList.Extent();
if (nbSel != 1)
2004-12-01 15:48:31 +05:00
return;
Handle(SALOME_InteractiveObject) IO = aList.First();
if (myEditCurrentArgument == LineEditElements) {
2012-08-09 16:03:55 +06:00
myMesh = SMESH::GetMeshByIO(IO);
if (myMesh->_is_nil())
return;
myIO = IO;
myActor = SMESH::FindActorByObject(myMesh);
if (CheckBoxMesh->isChecked()) {
SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aString);
2012-08-09 16:03:55 +06:00
SMESH::SMESH_IDSource_var obj = SMESH::IObjectToInterface<SMESH::SMESH_IDSource>( myIO );
if ( !CORBA::is_nil( obj ) )
mySelectedObject = obj;
2009-02-17 10:27:49 +05:00
else
return;
2012-08-09 16:03:55 +06:00
myNbOkElements = true;
} else {
2012-08-09 16:03:55 +06:00
// get indices of selected elements
TColStd_IndexedMapOfInteger aMapIndex;
mySelector->GetIndex(IO,aMapIndex);
myNbOkElements = aMapIndex.Extent();
if (myNbOkElements < 1)
2009-02-17 10:27:49 +05:00
return;
2012-08-09 16:03:55 +06:00
QStringList elements;
for ( int i = 0; i < myNbOkElements; ++i )
elements << QString::number( aMapIndex( i+1 ) );
aString = elements.join(" ");
2004-12-01 15:48:31 +05:00
}
2012-08-09 16:03:55 +06:00
} else if (myEditCurrentArgument == LineEditNodes && !myMesh->_is_nil() && myIO == IO ) {
myNbOkNodes = SMESH::GetNameOfSelectedNodes(mySelector, IO, aString);
}
myEditCurrentArgument->setText(aString);
2009-02-17 10:27:49 +05:00
myEditCurrentArgument->repaint();
myEditCurrentArgument->setEnabled(false); // to update lineedit IPAL 19809
myEditCurrentArgument->setEnabled(true);
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
if (myNbOkElements && (myNbOkNodes || LineEditNodes->text().trimmed().isEmpty())) {
buttonOk->setEnabled(true);
buttonApply->setEnabled(true);
}
}
2004-12-01 15:48:31 +05:00
//=================================================================================
// function : SetEditCurrentArgument()
// purpose :
//=================================================================================
void SMESHGUI_SmoothingDlg::SetEditCurrentArgument()
{
QPushButton* send = (QPushButton*)sender();
switch (myConstructorId) {
case 0: /* default constructor */
2004-12-01 15:48:31 +05:00
{
disconnect(mySelectionMgr, 0, this, 0);
mySelectionMgr->clearSelected();
mySelectionMgr->clearFilters();
if (send == SelectElementsButton) {
myEditCurrentArgument = LineEditElements;
SMESH::SetPointRepresentation(false);
if (CheckBoxMesh->isChecked()) {
2012-08-09 16:03:55 +06:00
// mySelectionMgr->setSelectionModes(ActorSelection);
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
aViewWindow->SetSelectionMode(ActorSelection);
mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
} else {
2012-08-09 16:03:55 +06:00
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
aViewWindow->SetSelectionMode(FaceSelection);
}
2009-02-17 10:27:49 +05:00
} else if (send == SelectNodesButton) {
2012-08-09 16:03:55 +06:00
LineEditNodes->clear();
myEditCurrentArgument = LineEditNodes;
SMESH::SetPointRepresentation(true);
2012-08-09 16:03:55 +06:00
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI )) {
aViewWindow->SetSelectionMode(NodeSelection);
}
2004-12-01 15:48:31 +05:00
}
myEditCurrentArgument->setFocus();
connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
SelectionIntoArgument();
break;
2004-12-01 15:48:31 +05:00
}
}
2004-12-01 15:48:31 +05:00
}
//=================================================================================
// function : DeactivateActiveDialog()
// purpose : Deactivates this dialog
2004-12-01 15:48:31 +05:00
//=================================================================================
void SMESHGUI_SmoothingDlg::DeactivateActiveDialog()
{
if (GroupConstructors->isEnabled()) {
GroupConstructors->setEnabled(false);
GroupArguments->setEnabled(false);
GroupButtons->setEnabled(false);
mySMESHGUI->ResetState();
mySMESHGUI->SetActiveDialogBox(0);
2004-12-01 15:48:31 +05:00
}
}
//=================================================================================
// function : ActivateThisDialog()
// purpose : Activates this dialog
2004-12-01 15:48:31 +05:00
//=================================================================================
void SMESHGUI_SmoothingDlg::ActivateThisDialog()
{
// Emit a signal to deactivate the active dialog
mySMESHGUI->EmitSignalDeactivateDialog();
GroupConstructors->setEnabled(true);
GroupArguments->setEnabled(true);
GroupButtons->setEnabled(true);
mySMESHGUI->SetActiveDialogBox(this);
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
2009-02-17 10:27:49 +05:00
aViewWindow->SetSelectionMode(FaceSelection);
2004-12-01 15:48:31 +05:00
SelectionIntoArgument();
}
//=================================================================================
// function : enterEvent()
// purpose : Mouse enter event
2004-12-01 15:48:31 +05:00
//=================================================================================
void SMESHGUI_SmoothingDlg::enterEvent (QEvent*)
2004-12-01 15:48:31 +05:00
{
if (!GroupConstructors->isEnabled())
ActivateThisDialog();
2004-12-01 15:48:31 +05:00
}
//=================================================================================
// function : closeEvent()
// purpose :
//=================================================================================
void SMESHGUI_SmoothingDlg::closeEvent (QCloseEvent*)
2004-12-01 15:48:31 +05:00
{
/* same than click on cancel button */
2009-02-17 10:27:49 +05:00
ClickOnCancel();
2004-12-01 15:48:31 +05:00
}
//=======================================================================
// function : hideEvent()
// purpose : caused by ESC key
2004-12-01 15:48:31 +05:00
//=======================================================================
void SMESHGUI_SmoothingDlg::hideEvent (QHideEvent*)
2004-12-01 15:48:31 +05:00
{
if (!isMinimized())
2004-12-01 15:48:31 +05:00
ClickOnCancel();
}
//=======================================================================
// function : onSelectMesh()
// purpose :
2004-12-01 15:48:31 +05:00
//=======================================================================
void SMESHGUI_SmoothingDlg::onSelectMesh (bool toSelectMesh)
2004-12-01 15:48:31 +05:00
{
if (toSelectMesh)
TextLabelElements->setText(tr("SMESH_NAME"));
2004-12-01 15:48:31 +05:00
else
TextLabelElements->setText(tr("SMESH_ID_ELEMENTS"));
2012-08-09 16:03:55 +06:00
myElemFilterBtn->setEnabled(!toSelectMesh);
2009-02-17 10:27:49 +05:00
if (myEditCurrentArgument != LineEditElements &&
myEditCurrentArgument != LineEditNodes) {
LineEditElements->clear();
2009-02-17 10:27:49 +05:00
LineEditNodes->clear();
return;
}
mySelectionMgr->clearFilters();
2004-12-01 15:48:31 +05:00
SMESH::SetPointRepresentation(false);
if (toSelectMesh) {
2009-02-17 10:27:49 +05:00
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
aViewWindow->SetSelectionMode(ActorSelection);
// mySelectionMgr->setSelectionModes(ActorSelection);
mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
2009-02-17 10:27:49 +05:00
myEditCurrentArgument->setReadOnly(true);
myEditCurrentArgument->setValidator(0);
} else {
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
2009-02-17 10:27:49 +05:00
aViewWindow->SetSelectionMode(myEditCurrentArgument == LineEditElements ? FaceSelection
: NodeSelection );
myEditCurrentArgument->setReadOnly(false);
LineEditElements->setValidator(myIdValidator);
onTextChange(myEditCurrentArgument->text());
}
2004-12-01 15:48:31 +05:00
SelectionIntoArgument();
}
//=================================================================================
// function : keyPressEvent()
// purpose :
//=================================================================================
void SMESHGUI_SmoothingDlg::keyPressEvent( QKeyEvent* e )
{
QDialog::keyPressEvent( e );
if ( e->isAccepted() )
return;
2009-02-17 10:27:49 +05:00
if ( e->key() == Qt::Key_F1 ) {
e->accept();
ClickOnHelp();
}
}
//=================================================================================
// function : setFilters()
// purpose : activate filter dialog
//=================================================================================
void SMESHGUI_SmoothingDlg::setFilters( const bool theIsElem )
{
2012-08-09 16:03:55 +06:00
if(myMesh->_is_nil()) {
SUIT_MessageBox::critical(this,
tr("SMESH_ERROR"),
tr("NO_MESH_SELECTED"));
return;
}
2009-02-17 10:27:49 +05:00
if ( !myFilterDlg )
{
QList<int> types;
types.append( SMESH::NODE );
types.append( SMESH::ALL );
myFilterDlg = new SMESHGUI_FilterDlg( mySMESHGUI, types );
}
myFilterDlg->Init( theIsElem ? SMESH::ALL : SMESH::NODE );
myFilterDlg->SetSelection();
myFilterDlg->SetMesh( myMesh );
myFilterDlg->SetSourceWg( theIsElem ? LineEditElements : LineEditNodes );
myFilterDlg->show();
}
//=================================================================================
// function : setElemFilters()
// purpose : SLOT. Called when element "Filter" button pressed.
//=================================================================================
void SMESHGUI_SmoothingDlg::setElemFilters()
{
setFilters( true );
}
//=================================================================================
// function : setNodeFilters()
// purpose : SLOT. Called when node "Filter" button pressed.
//=================================================================================
void SMESHGUI_SmoothingDlg::setNodeFilters()
{
setFilters( false );
}
//=================================================================================
// function : isValid
// purpose :
//=================================================================================
bool SMESHGUI_SmoothingDlg::isValid()
{
QString msg;
bool ok = true;
ok = SpinBox_IterationLimit->isValid( msg, true ) && ok;
ok = SpinBox_AspectRatio->isValid( msg, true ) && ok;
if( !ok ) {
QString str( tr( "SMESH_INCORRECT_INPUT" ) );
if ( !msg.isEmpty() )
str += "\n" + msg;
SUIT_MessageBox::critical( this, tr( "SMESH_ERROR" ), str );
return false;
}
return true;
}