2009-02-17 10:27:49 +05:00
|
|
|
|
// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
|
2004-12-01 15:48:31 +05:00
|
|
|
|
//
|
2009-02-17 10:27:49 +05:00
|
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
2005-06-07 19:22:20 +06: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
|
|
|
|
|
//
|
2009-02-17 10:27:49 +05:00
|
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2004-12-01 15:48:31 +05:00
|
|
|
|
//
|
2009-02-17 10:27:49 +05:00
|
|
|
|
// SMESH SMESHGUI : GUI for SMESH component
|
|
|
|
|
// File : SMESHGUI_GroupOpDlg.cxx
|
|
|
|
|
// Author : Sergey LITONIN, Open CASCADE S.A.S.
|
|
|
|
|
// SMESH includes
|
2004-12-01 15:48:31 +05:00
|
|
|
|
//
|
|
|
|
|
#include "SMESHGUI_GroupOpDlg.h"
|
|
|
|
|
|
|
|
|
|
#include "SMESHGUI.h"
|
|
|
|
|
#include "SMESHGUI_Utils.h"
|
2005-06-08 16:45:19 +06:00
|
|
|
|
#include "SMESHGUI_VTKUtils.h"
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
#include <SMESH_TypeFilter.hxx>
|
|
|
|
|
|
|
|
|
|
// SALOME GUI includes
|
|
|
|
|
#include <SUIT_ResourceMgr.h>
|
|
|
|
|
#include <SUIT_Desktop.h>
|
|
|
|
|
#include <SUIT_Session.h>
|
|
|
|
|
#include <SUIT_MessageBox.h>
|
|
|
|
|
|
|
|
|
|
#include <LightApp_Application.h>
|
|
|
|
|
#include <LightApp_SelectionMgr.h>
|
|
|
|
|
#include <SVTK_Selection.h>
|
|
|
|
|
#include <SVTK_ViewWindow.h>
|
|
|
|
|
#include <SALOME_ListIO.hxx>
|
|
|
|
|
|
|
|
|
|
// Qt includes
|
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
#include <QGridLayout>
|
|
|
|
|
#include <QPushButton>
|
|
|
|
|
#include <QGroupBox>
|
|
|
|
|
#include <QLabel>
|
|
|
|
|
#include <QLineEdit>
|
|
|
|
|
#include <QKeyEvent>
|
|
|
|
|
#include <QListWidget>
|
|
|
|
|
#include <QButtonGroup>
|
|
|
|
|
#include <SALOME_ListIteratorOfListIO.hxx>
|
|
|
|
|
#include <QComboBox>
|
|
|
|
|
#include <QtxColorButton.h>
|
|
|
|
|
|
|
|
|
|
#define SPACING 6
|
|
|
|
|
#define MARGIN 11
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
|
/*!
|
|
|
|
|
* Class : SMESHGUI_GroupOpDlg
|
|
|
|
|
* Description : Perform boolean operations on groups
|
|
|
|
|
*/
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief Constructor
|
|
|
|
|
\param theModule pointer on module instance
|
|
|
|
|
*/
|
|
|
|
|
SMESHGUI_GroupOpDlg::SMESHGUI_GroupOpDlg( SMESHGUI* theModule )
|
|
|
|
|
: QDialog( SMESH::GetDesktop( theModule ) ),
|
|
|
|
|
mySMESHGUI( theModule ),
|
|
|
|
|
mySelectionMgr( SMESH::GetSelectionMgr( theModule ) )
|
|
|
|
|
{
|
|
|
|
|
setModal(false);
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
2005-07-01 16:42:32 +06:00
|
|
|
|
mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
QVBoxLayout* aDlgLay = new QVBoxLayout (this);
|
|
|
|
|
aDlgLay->setMargin(MARGIN);
|
|
|
|
|
aDlgLay->setSpacing(SPACING);
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
QWidget* aMainFrame = createMainFrame (this);
|
|
|
|
|
QWidget* aBtnFrame = createButtonFrame(this);
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
|
aDlgLay->addWidget(aMainFrame);
|
|
|
|
|
aDlgLay->addWidget(aBtnFrame);
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
2005-06-08 16:45:19 +06:00
|
|
|
|
Init();
|
2004-12-01 15:48:31 +05:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief Creates frame containing dialog's input fields
|
|
|
|
|
\param theParent parent widget
|
|
|
|
|
\return pointer on created widget
|
|
|
|
|
*/
|
|
|
|
|
QWidget* SMESHGUI_GroupOpDlg::createMainFrame( QWidget* theParent )
|
2004-12-01 15:48:31 +05:00
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
|
QWidget* aMainGrp = new QWidget(theParent);
|
|
|
|
|
QVBoxLayout* aLay = new QVBoxLayout(aMainGrp);
|
|
|
|
|
aLay->setMargin(0);
|
|
|
|
|
aLay->setSpacing(SPACING);
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------
|
|
|
|
|
QGroupBox* aNameGrp = new QGroupBox(tr("NAME"), aMainGrp);
|
|
|
|
|
QHBoxLayout* aNameGrpLayout = new QHBoxLayout(aNameGrp);
|
|
|
|
|
aNameGrpLayout->setMargin(MARGIN);
|
|
|
|
|
aNameGrpLayout->setSpacing(SPACING);
|
|
|
|
|
|
|
|
|
|
QLabel* aNameLab = new QLabel(tr("RESULT_NAME"), aNameGrp);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
myNameEdit = new QLineEdit(aNameGrp);
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
aNameGrpLayout->addWidget(aNameLab);
|
|
|
|
|
aNameGrpLayout->addWidget(myNameEdit);
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------
|
|
|
|
|
myArgGrp = new QGroupBox(tr("ARGUMENTS"), aMainGrp);
|
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
// ------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
QGroupBox* aColorBox = new QGroupBox(tr( "SMESH_SET_COLOR" ), this);
|
|
|
|
|
QHBoxLayout* aColorBoxLayout = new QHBoxLayout(aColorBox);
|
|
|
|
|
aColorBoxLayout->setMargin(MARGIN);
|
|
|
|
|
aColorBoxLayout->setSpacing(SPACING);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
QLabel* aColorLab = new QLabel(tr( "SMESH_CHECK_COLOR" ), aColorBox );
|
|
|
|
|
myColorBtn = new QtxColorButton(aColorBox);
|
|
|
|
|
myColorBtn->setSizePolicy( QSizePolicy::MinimumExpanding,
|
|
|
|
|
myColorBtn->sizePolicy().verticalPolicy() );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
aColorBoxLayout->addWidget(aColorLab);
|
|
|
|
|
aColorBoxLayout->addWidget(myColorBtn);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
// ------------------------------------------------------
|
|
|
|
|
aLay->addWidget( aNameGrp );
|
|
|
|
|
aLay->addWidget( myArgGrp );
|
|
|
|
|
aLay->addWidget( aColorBox );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
|
return aMainGrp;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief Gets pointer on arguments group box
|
|
|
|
|
\return pointer on arguments group box
|
|
|
|
|
*/
|
|
|
|
|
QGroupBox* SMESHGUI_GroupOpDlg::getArgGrp() const
|
|
|
|
|
{
|
|
|
|
|
return myArgGrp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Sets help file name
|
|
|
|
|
\param theFName help file name
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_GroupOpDlg::setHelpFileName( const QString& theFName )
|
|
|
|
|
{
|
|
|
|
|
myHelpFileName = theFName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Gets pointer to the module instance
|
|
|
|
|
\return pointer to the module instance
|
|
|
|
|
*/
|
|
|
|
|
SMESHGUI* SMESHGUI_GroupOpDlg::getSMESHGUI() const
|
2004-12-01 15:48:31 +05:00
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
|
return mySMESHGUI;
|
|
|
|
|
}
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief Create frame containing buttons
|
|
|
|
|
\param theParent parent widget
|
|
|
|
|
\return pointer to the created frame
|
|
|
|
|
*/
|
|
|
|
|
QWidget* SMESHGUI_GroupOpDlg::createButtonFrame (QWidget* theParent)
|
|
|
|
|
{
|
|
|
|
|
QGroupBox* aFrame = new QGroupBox(theParent);
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
myOkBtn = new QPushButton(tr("SMESH_BUT_APPLY_AND_CLOSE"), aFrame);
|
|
|
|
|
myApplyBtn = new QPushButton(tr("SMESH_BUT_APPLY"), aFrame);
|
|
|
|
|
myCloseBtn = new QPushButton(tr("SMESH_BUT_CLOSE"), aFrame);
|
|
|
|
|
myHelpBtn = new QPushButton(tr("SMESH_BUT_HELP"), aFrame);
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
QHBoxLayout* aLay = new QHBoxLayout(aFrame);
|
|
|
|
|
aLay->setMargin(MARGIN);
|
|
|
|
|
aLay->setSpacing(SPACING);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
|
|
aLay->addWidget(myOkBtn);
|
2009-02-17 10:27:49 +05:00
|
|
|
|
aLay->addSpacing(10);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
aLay->addWidget(myApplyBtn);
|
2009-02-17 10:27:49 +05:00
|
|
|
|
aLay->addSpacing(10);
|
|
|
|
|
aLay->addStretch();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
aLay->addWidget(myCloseBtn);
|
2006-05-06 14:51:48 +06:00
|
|
|
|
aLay->addWidget(myHelpBtn);
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
|
|
// connect signals and slots
|
2005-06-07 19:22:20 +06:00
|
|
|
|
connect(myOkBtn, SIGNAL(clicked()), SLOT(onOk()));
|
|
|
|
|
connect(myCloseBtn, SIGNAL(clicked()), SLOT(onClose()));
|
|
|
|
|
connect(myApplyBtn, SIGNAL(clicked()), SLOT(onApply()));
|
2009-02-17 10:27:49 +05:00
|
|
|
|
connect(myHelpBtn, SIGNAL(clicked()), SLOT(onHelp()));
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
|
|
return aFrame;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief Destructor
|
|
|
|
|
*/
|
2004-12-01 15:48:31 +05:00
|
|
|
|
SMESHGUI_GroupOpDlg::~SMESHGUI_GroupOpDlg()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief Init dialog fields, connect signals and slots, show dialog
|
|
|
|
|
*/
|
2005-06-08 16:45:19 +06:00
|
|
|
|
void SMESHGUI_GroupOpDlg::Init()
|
2004-12-01 15:48:31 +05:00
|
|
|
|
{
|
2005-06-08 16:45:19 +06:00
|
|
|
|
mySMESHGUI->SetActiveDialogBox((QDialog*)this);
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
|
// selection and SMESHGUI
|
2005-06-07 19:22:20 +06:00
|
|
|
|
connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), SLOT(onSelectionDone()));
|
2005-06-08 16:45:19 +06:00
|
|
|
|
connect(mySMESHGUI, SIGNAL(SignalDeactivateActiveDialog()), SLOT(onDeactivate()));
|
|
|
|
|
connect(mySMESHGUI, SIGNAL(SignalCloseAllDialogs()), SLOT(ClickOnClose()));
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
|
// set selection mode
|
2005-07-01 16:42:32 +06:00
|
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
|
aViewWindow->SetSelectionMode(ActorSelection);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
mySelectionMgr->installFilter(new SMESH_TypeFilter (GROUP));
|
2004-12-01 15:48:31 +05:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief Validate list of groups used for operation. Checks whether they corresponds
|
|
|
|
|
to the same face and have one type
|
|
|
|
|
\param theListGrp input list of groups
|
|
|
|
|
\return TRUE if groups are valid, FALSE otherwise
|
|
|
|
|
*/
|
|
|
|
|
bool SMESHGUI_GroupOpDlg::isValid( const QList<SMESH::SMESH_GroupBase_var>& theListGrp )
|
2004-12-01 15:48:31 +05:00
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
|
if ( theListGrp.isEmpty() )
|
|
|
|
|
{
|
|
|
|
|
SUIT_MessageBox::information( this, tr("SMESH_INSUFFICIENT_DATA"),
|
|
|
|
|
tr("INCORRECT_ARGUMENTS") );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
int aMeshId = -1, aGrpType = -1;
|
|
|
|
|
QList<SMESH::SMESH_GroupBase_var>::const_iterator anIter;
|
|
|
|
|
for ( anIter = theListGrp.begin(); anIter != theListGrp.end(); ++anIter )
|
|
|
|
|
{
|
|
|
|
|
SMESH::SMESH_GroupBase_var aGrp = *anIter;
|
|
|
|
|
if ( CORBA::is_nil( aGrp ) )
|
|
|
|
|
continue; // nonsence
|
|
|
|
|
|
|
|
|
|
SMESH::SMESH_Mesh_var aMesh = aGrp->GetMesh();
|
|
|
|
|
if ( CORBA::is_nil( aMesh ) )
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
// mesh id
|
|
|
|
|
int aCurrId = aMesh->GetId();
|
|
|
|
|
if ( aMeshId == -1 )
|
|
|
|
|
aMeshId = aCurrId;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if ( aMeshId != aCurrId )
|
|
|
|
|
{
|
|
|
|
|
aMeshId = -1; // different meshes
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
// group type
|
|
|
|
|
int aCurrType = aGrp->GetType();
|
|
|
|
|
if ( aGrpType == -1 )
|
|
|
|
|
aGrpType = aCurrType;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if ( aGrpType != aCurrType )
|
|
|
|
|
{
|
|
|
|
|
aGrpType = -1; // different types
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
if ( aMeshId == -1 )
|
|
|
|
|
{
|
|
|
|
|
SUIT_MessageBox::information(this, tr("SMESH_INSUFFICIENT_DATA"),
|
|
|
|
|
tr("DIFF_MESHES"));
|
2004-12-01 15:48:31 +05:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
if ( aGrpType == -1 )
|
|
|
|
|
{
|
|
|
|
|
SUIT_MessageBox::information(this, tr("SMESH_INSUFFICIENT_DATA"),
|
|
|
|
|
tr("DIFF_TYPES"));
|
2004-12-01 15:48:31 +05:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief SLOT called when "Ok" button pressed performs operation and closes dialog box
|
|
|
|
|
*/
|
2004-12-01 15:48:31 +05:00
|
|
|
|
void SMESHGUI_GroupOpDlg::onOk()
|
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
|
if ( onApply() )
|
2004-12-01 15:48:31 +05:00
|
|
|
|
onClose();
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief SLOT called when "Close" button pressed closes dialog
|
|
|
|
|
*/
|
2004-12-01 15:48:31 +05:00
|
|
|
|
void SMESHGUI_GroupOpDlg::onClose()
|
|
|
|
|
{
|
2005-07-01 16:42:32 +06:00
|
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
|
aViewWindow->SetSelectionMode(ActorSelection);
|
2009-02-17 10:27:49 +05:00
|
|
|
|
disconnect( mySelectionMgr, 0, this, 0 );
|
|
|
|
|
disconnect( mySMESHGUI, 0, this, 0 );
|
2005-06-08 16:45:19 +06:00
|
|
|
|
mySMESHGUI->ResetState();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
mySelectionMgr->clearFilters();
|
2009-02-17 10:27:49 +05:00
|
|
|
|
reset();
|
2004-12-01 15:48:31 +05:00
|
|
|
|
reject();
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief SLOT called when "Help" button pressed shows "Help" page
|
|
|
|
|
*/
|
2006-05-06 14:51:48 +06:00
|
|
|
|
void SMESHGUI_GroupOpDlg::onHelp()
|
|
|
|
|
{
|
|
|
|
|
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;
|
2008-03-07 12:47:05 +05:00
|
|
|
|
#ifdef WIN32
|
2009-02-17 10:27:49 +05:00
|
|
|
|
platform = "winapplication";
|
2008-03-07 12:47:05 +05:00
|
|
|
|
#else
|
2009-02-17 10:27:49 +05:00
|
|
|
|
platform = "application";
|
2008-03-07 12:47:05 +05:00
|
|
|
|
#endif
|
2009-02-17 10:27:49 +05:00
|
|
|
|
SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
|
|
|
|
|
tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
|
|
|
|
|
arg(app->resourceMgr()->stringValue("ExternalBrowser",
|
|
|
|
|
platform)).
|
|
|
|
|
arg(myHelpFileName));
|
2006-05-06 14:51:48 +06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief Gets list of currently selected groups from selection manager
|
|
|
|
|
\param theOutList out list of groups
|
|
|
|
|
\param theOutNames out list of group of group names
|
|
|
|
|
\return TRUE if operation theOutList is not empty, FALSE otherwise
|
|
|
|
|
*/
|
|
|
|
|
bool SMESHGUI_GroupOpDlg::getSelectedGroups( QList<SMESH::SMESH_GroupBase_var>& theOutList,
|
|
|
|
|
QStringList& theOutNames )
|
2004-12-01 15:48:31 +05:00
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
|
theOutList.clear();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
theOutList.clear();
|
|
|
|
|
theOutNames.clear();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
SALOME_ListIO aListIO;
|
|
|
|
|
mySelectionMgr->selectedObjects( aListIO );
|
|
|
|
|
SALOME_ListIteratorOfListIO anIter ( aListIO );
|
|
|
|
|
for ( ; anIter.More(); anIter.Next())
|
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
|
SMESH::SMESH_GroupBase_var aGroup =
|
2009-02-17 10:27:49 +05:00
|
|
|
|
SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(anIter.Value());
|
|
|
|
|
if ( !aGroup->_is_nil())
|
2004-12-01 15:48:31 +05:00
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
|
theOutList.append( aGroup );
|
|
|
|
|
theOutNames.append( aGroup->GetName() );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
|
|
return theOutList.count() > 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Converts QT-list of group to the list acceptable by IDL interface
|
|
|
|
|
\param theIn input list
|
|
|
|
|
\return list acceptable by IDL interface
|
|
|
|
|
*/
|
|
|
|
|
SMESH::ListOfGroups* SMESHGUI_GroupOpDlg::convert(
|
|
|
|
|
const QList<SMESH::SMESH_GroupBase_var>& theIn )
|
|
|
|
|
{
|
|
|
|
|
SMESH::ListOfGroups_var aList = new SMESH::ListOfGroups();
|
|
|
|
|
aList->length( theIn.count() );
|
|
|
|
|
|
|
|
|
|
QList<SMESH::SMESH_GroupBase_var>::const_iterator anIter = theIn.begin();
|
|
|
|
|
for ( int i = 0; anIter != theIn.end(); ++anIter, ++i )
|
|
|
|
|
aList[ i ] = *anIter;
|
|
|
|
|
|
|
|
|
|
return aList._retn();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Get color to be assigned to group
|
|
|
|
|
\return color to be assigned to group
|
|
|
|
|
*/
|
|
|
|
|
SALOMEDS::Color SMESHGUI_GroupOpDlg::getColor() const
|
|
|
|
|
{
|
|
|
|
|
QColor aQColor = myColorBtn->color();
|
|
|
|
|
|
|
|
|
|
SALOMEDS::Color aColor;
|
|
|
|
|
aColor.R = (float)aQColor.red() / 255.0;
|
|
|
|
|
aColor.G = (float)aQColor.green() / 255.0;
|
|
|
|
|
aColor.B = (float)aQColor.blue() / 255.0;
|
|
|
|
|
|
|
|
|
|
return aColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief SLOT, called when selection is changed. Current implementation does
|
|
|
|
|
nothing. The method should be redefined in derived classes to update
|
|
|
|
|
corresponding GUI controls
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_GroupOpDlg::onSelectionDone()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Calls onSelectionDone() and setVisible() method of base class
|
|
|
|
|
\param visible the visible state of the dialog
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_GroupOpDlg::setVisible( bool visible )
|
|
|
|
|
{
|
|
|
|
|
if ( visible )
|
|
|
|
|
{
|
|
|
|
|
onSelectionDone();
|
|
|
|
|
resize( minimumSizeHint().width(), sizeHint().height() );
|
|
|
|
|
}
|
|
|
|
|
QDialog::setVisible( visible );
|
2004-12-01 15:48:31 +05:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief SLOT called when dialog must be deativated
|
|
|
|
|
*/
|
2004-12-01 15:48:31 +05:00
|
|
|
|
void SMESHGUI_GroupOpDlg::onDeactivate()
|
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
|
setEnabled(false);
|
|
|
|
|
mySelectionMgr->clearFilters();
|
2004-12-01 15:48:31 +05:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief Event filter updates selection mode and selection filter. This virtual method
|
|
|
|
|
is redefined from the base class it is called when dialog obtains input focus
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_GroupOpDlg::enterEvent(QEvent*)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
{
|
2005-06-08 16:45:19 +06:00
|
|
|
|
mySMESHGUI->EmitSignalDeactivateDialog();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
setEnabled(true);
|
2005-07-01 16:42:32 +06:00
|
|
|
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
|
|
|
|
aViewWindow->SetSelectionMode(ActorSelection);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
mySelectionMgr->installFilter(new SMESH_TypeFilter (GROUP));
|
2004-12-01 15:48:31 +05:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief Provides reaction on close event, closes the dialog box
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_GroupOpDlg::closeEvent(QCloseEvent*)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
|
onClose();
|
2004-12-01 15:48:31 +05:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief Resets state of the dialog, initializes its fields with default value, etc.
|
|
|
|
|
Usually called by onApply() slot to reinitialize dialog fields. This virtual method
|
|
|
|
|
should be redefined in derived class to update its own fileds
|
|
|
|
|
*/
|
2004-12-01 15:48:31 +05:00
|
|
|
|
void SMESHGUI_GroupOpDlg::reset()
|
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
|
myNameEdit->setText("");
|
2004-12-01 15:48:31 +05:00
|
|
|
|
myNameEdit->setFocus();
|
|
|
|
|
}
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
/*!
|
|
|
|
|
\brief Gets name of group to be created
|
|
|
|
|
\return name of group to be created
|
|
|
|
|
\sa setName()
|
|
|
|
|
*/
|
|
|
|
|
QString SMESHGUI_GroupOpDlg::getName() const
|
|
|
|
|
{
|
|
|
|
|
return myNameEdit->text();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Sets name of group to be created
|
|
|
|
|
\param theName name of group to be created
|
|
|
|
|
\sa getName()
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_GroupOpDlg::setName( const QString& theName )
|
|
|
|
|
{
|
|
|
|
|
myNameEdit->setText( theName );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Provides reaction on <EFBFBD>F1<EFBFBD> button pressing
|
|
|
|
|
\param e key press event
|
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
|
void SMESHGUI_GroupOpDlg::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();
|
|
|
|
|
onHelp();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief This virtual slot does nothing and should be redefined in derived classes
|
|
|
|
|
\return return false;
|
|
|
|
|
*/
|
|
|
|
|
bool SMESHGUI_GroupOpDlg::onApply()
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// === === === === === === === === === === === === === === === === === === === === ===
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Constructor
|
|
|
|
|
\param theModule module
|
|
|
|
|
*/
|
|
|
|
|
SMESHGUI_UnionGroupsDlg::SMESHGUI_UnionGroupsDlg( SMESHGUI* theModule )
|
|
|
|
|
: SMESHGUI_GroupOpDlg( theModule )
|
|
|
|
|
{
|
|
|
|
|
setWindowTitle(tr("UNION_OF_GROUPS"));
|
|
|
|
|
setHelpFileName( "using_operations_on_groups_page.html#union_anchor" );
|
|
|
|
|
|
|
|
|
|
QGroupBox* anArgGrp = getArgGrp();
|
|
|
|
|
myListWg = new QListWidget( anArgGrp );
|
|
|
|
|
|
|
|
|
|
QHBoxLayout* aLay = new QHBoxLayout( anArgGrp );
|
|
|
|
|
aLay->addWidget( myListWg );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Destructor
|
|
|
|
|
*/
|
|
|
|
|
SMESHGUI_UnionGroupsDlg::~SMESHGUI_UnionGroupsDlg()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief This virtual method redefined from the base class resets state
|
|
|
|
|
of the dialog, initializes its fields with default value, etc.
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_UnionGroupsDlg::reset()
|
|
|
|
|
{
|
|
|
|
|
SMESHGUI_GroupOpDlg::reset();
|
|
|
|
|
myListWg->clear();
|
|
|
|
|
myGroups.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief SLOT called when apply button is pressed performs operation
|
|
|
|
|
\return TRUE if operation has been completed successfully, FALSE otherwise
|
|
|
|
|
*/
|
|
|
|
|
bool SMESHGUI_UnionGroupsDlg::onApply()
|
|
|
|
|
{
|
|
|
|
|
if ( getSMESHGUI()->isActiveStudyLocked())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// Verify validity of group name
|
|
|
|
|
if ( getName() == "" )
|
|
|
|
|
{
|
|
|
|
|
SUIT_MessageBox::information(this, tr("SMESH_INSUFFICIENT_DATA"),
|
|
|
|
|
SMESHGUI_GroupOpDlg::tr("EMPTY_NAME"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !isValid( myGroups ) )
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
SMESH::SMESH_Mesh_var aMesh = myGroups.first()->GetMesh();
|
|
|
|
|
QString aName = getName();
|
|
|
|
|
|
|
|
|
|
bool aRes = false;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
SMESH::ListOfGroups_var aList = convert( myGroups );
|
|
|
|
|
SMESH::SMESH_Group_var aNewGrp =
|
|
|
|
|
aMesh->UnionListOfGroups( aList, aName.toLatin1().constData() );
|
|
|
|
|
if ( !CORBA::is_nil( aNewGrp ) )
|
|
|
|
|
{
|
|
|
|
|
aNewGrp->SetColor( getColor() );
|
|
|
|
|
aRes = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch( ... )
|
|
|
|
|
{
|
|
|
|
|
aRes = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( aRes )
|
|
|
|
|
{
|
|
|
|
|
getSMESHGUI()->updateObjBrowser(true);
|
|
|
|
|
reset();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
SUIT_MessageBox::critical(this, tr("SMESH_ERROR"),
|
|
|
|
|
tr("SMESH_OPERATION_FAILED"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief SLOT, called when selection is changed, updates corresponding GUI controls
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_UnionGroupsDlg::onSelectionDone()
|
|
|
|
|
{
|
|
|
|
|
QStringList aNames;
|
|
|
|
|
getSelectedGroups( myGroups, aNames );
|
|
|
|
|
myListWg->clear();
|
|
|
|
|
myListWg->addItems( aNames );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// === === === === === === === === === === === === === === === === === === === === ===
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Constructor
|
|
|
|
|
\param theModule module
|
|
|
|
|
*/
|
|
|
|
|
SMESHGUI_IntersectGroupsDlg::SMESHGUI_IntersectGroupsDlg( SMESHGUI* theModule )
|
|
|
|
|
: SMESHGUI_GroupOpDlg( theModule )
|
|
|
|
|
{
|
|
|
|
|
setWindowTitle(tr("INTERSECTION_OF_GROUPS"));
|
|
|
|
|
setHelpFileName( "using_operations_on_groups_page.html#intersection_anchor" );
|
|
|
|
|
|
|
|
|
|
QGroupBox* anArgGrp = getArgGrp();
|
|
|
|
|
myListWg = new QListWidget( anArgGrp );
|
|
|
|
|
|
|
|
|
|
QHBoxLayout* aLay = new QHBoxLayout( anArgGrp );
|
|
|
|
|
aLay->addWidget( myListWg );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Destructor
|
|
|
|
|
*/
|
|
|
|
|
SMESHGUI_IntersectGroupsDlg::~SMESHGUI_IntersectGroupsDlg()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief This virtual method redefined from the base class resets state
|
|
|
|
|
of the dialog, initializes its fields with default value, etc.
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_IntersectGroupsDlg::reset()
|
|
|
|
|
{
|
|
|
|
|
SMESHGUI_GroupOpDlg::reset();
|
|
|
|
|
myListWg->clear();
|
|
|
|
|
myGroups.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief SLOT called when apply button is pressed performs operation
|
|
|
|
|
\return TRUE if operation has been completed successfully, FALSE otherwise
|
|
|
|
|
*/
|
|
|
|
|
bool SMESHGUI_IntersectGroupsDlg::onApply()
|
|
|
|
|
{
|
|
|
|
|
if ( getSMESHGUI()->isActiveStudyLocked())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// Verify validity of group name
|
|
|
|
|
if ( getName() == "" )
|
|
|
|
|
{
|
|
|
|
|
SUIT_MessageBox::information(this, tr("SMESH_INSUFFICIENT_DATA"),
|
|
|
|
|
SMESHGUI_GroupOpDlg::tr("EMPTY_NAME"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !isValid( myGroups ) )
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
SMESH::SMESH_Mesh_var aMesh = myGroups.first()->GetMesh();
|
|
|
|
|
QString aName = getName();
|
|
|
|
|
|
|
|
|
|
bool aRes = false;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
SMESH::ListOfGroups_var aList = convert( myGroups );
|
|
|
|
|
SMESH::SMESH_Group_var aNewGrp =
|
|
|
|
|
aMesh->IntersectListOfGroups( aList, aName.toLatin1().constData() );
|
|
|
|
|
if ( !CORBA::is_nil( aNewGrp ) )
|
|
|
|
|
{
|
|
|
|
|
aNewGrp->SetColor( getColor() );
|
|
|
|
|
aRes = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch( ... )
|
|
|
|
|
{
|
|
|
|
|
aRes = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( aRes )
|
|
|
|
|
{
|
|
|
|
|
getSMESHGUI()->updateObjBrowser(true);
|
|
|
|
|
reset();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
SUIT_MessageBox::critical(this, tr("SMESH_ERROR"),
|
|
|
|
|
tr("SMESH_OPERATION_FAILED"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief SLOT, called when selection is changed, updates corresponding GUI controls
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_IntersectGroupsDlg::onSelectionDone()
|
|
|
|
|
{
|
|
|
|
|
QStringList aNames;
|
|
|
|
|
getSelectedGroups( myGroups, aNames );
|
|
|
|
|
myListWg->clear();
|
|
|
|
|
myListWg->addItems( aNames );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// === === === === === === === === === === === === === === === === === === === === ===
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Constructor
|
|
|
|
|
\param theModule module
|
|
|
|
|
*/
|
|
|
|
|
SMESHGUI_CutGroupsDlg::SMESHGUI_CutGroupsDlg( SMESHGUI* theModule )
|
|
|
|
|
: SMESHGUI_GroupOpDlg( theModule )
|
|
|
|
|
{
|
|
|
|
|
setWindowTitle(tr("CUT_OF_GROUPS"));
|
|
|
|
|
setHelpFileName( "using_operations_on_groups_page.html#cut_anchor" );
|
|
|
|
|
|
|
|
|
|
QGroupBox* anArgGrp = getArgGrp();
|
|
|
|
|
|
|
|
|
|
QPixmap aPix (SMESH::GetResourceMgr( getSMESHGUI() )->loadPixmap("SMESH", tr("ICON_SELECT")));
|
|
|
|
|
|
|
|
|
|
// frame 1
|
|
|
|
|
QFrame* aFrame1 = new QFrame( anArgGrp );
|
|
|
|
|
QLabel* aLbl1 = new QLabel( tr("MAIN_OBJECT"), aFrame1 );
|
|
|
|
|
aLbl1->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
|
|
|
|
myBtn1 = new QPushButton( aFrame1 );
|
|
|
|
|
myBtn1->setIcon(aPix);
|
|
|
|
|
myListWg1 = new QListWidget( aFrame1 );
|
|
|
|
|
|
|
|
|
|
QGridLayout* aLay1 = new QGridLayout( aFrame1 );
|
|
|
|
|
aLay1->setSpacing( SPACING );
|
|
|
|
|
aLay1->addWidget( aLbl1, 0, 0 );
|
|
|
|
|
aLay1->addWidget( myBtn1, 0, 1 );
|
|
|
|
|
aLay1->addWidget( myListWg1, 1, 0, 1, 2 );
|
|
|
|
|
//QSpacerItem* aHSpacer1 = new QSpacerItem( 0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum );
|
|
|
|
|
//aLay1->addItem( aHSpacer1, 0, 2 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// frame 2
|
|
|
|
|
QFrame* aFrame2 = new QFrame( anArgGrp );
|
|
|
|
|
QLabel* aLbl2 = new QLabel( tr("TOOL_OBJECT"), aFrame2 );
|
|
|
|
|
aLbl2->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
|
|
|
|
myBtn2 = new QPushButton( aFrame2 );
|
|
|
|
|
myBtn2->setIcon(aPix);
|
|
|
|
|
myListWg2 = new QListWidget( aFrame2 );
|
|
|
|
|
|
|
|
|
|
QGridLayout* aLay2 = new QGridLayout( aFrame2 );
|
|
|
|
|
aLay2->setSpacing( SPACING );
|
|
|
|
|
aLay2->addWidget( aLbl2, 0, 0 );
|
|
|
|
|
aLay2->addWidget( myBtn2, 0, 1 );
|
|
|
|
|
aLay2->addWidget( myListWg2, 1, 0, 1, 2 );
|
|
|
|
|
//QSpacerItem* aHSpacer2 = new QSpacerItem( 0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum );
|
|
|
|
|
//aLay2->addItem( aHSpacer2, 0, 2 );
|
|
|
|
|
|
|
|
|
|
// create button group
|
|
|
|
|
|
|
|
|
|
QButtonGroup* aGrp = new QButtonGroup( anArgGrp );
|
|
|
|
|
aGrp->addButton( myBtn1, 0 );
|
|
|
|
|
aGrp->addButton( myBtn2, 1 );
|
|
|
|
|
myBtn1->setCheckable( true );
|
|
|
|
|
myBtn2->setCheckable( true );
|
|
|
|
|
aGrp->setExclusive( true );
|
|
|
|
|
myBtn1->setChecked( true );
|
|
|
|
|
|
|
|
|
|
// fill layout
|
|
|
|
|
QHBoxLayout* aLay = new QHBoxLayout( anArgGrp );
|
|
|
|
|
aLay->setSpacing( SPACING );
|
|
|
|
|
aLay->addWidget( aFrame1 );
|
|
|
|
|
aLay->addWidget( aFrame2 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Destructor
|
|
|
|
|
*/
|
|
|
|
|
SMESHGUI_CutGroupsDlg::~SMESHGUI_CutGroupsDlg()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief This virtual method redefined from the base class resets state
|
|
|
|
|
of the dialog, initializes its fields with default value, etc.
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_CutGroupsDlg::reset()
|
|
|
|
|
{
|
|
|
|
|
SMESHGUI_GroupOpDlg::reset();
|
|
|
|
|
|
|
|
|
|
myListWg1->clear();
|
|
|
|
|
myGroups1.clear();
|
|
|
|
|
|
|
|
|
|
myListWg2->clear();
|
|
|
|
|
myGroups2.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief SLOT called when apply button is pressed performs operation
|
|
|
|
|
\return TRUE if operation has been completed successfully, FALSE otherwise
|
|
|
|
|
*/
|
|
|
|
|
bool SMESHGUI_CutGroupsDlg::onApply()
|
|
|
|
|
{
|
|
|
|
|
if ( getSMESHGUI()->isActiveStudyLocked())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// Verify validity of group name
|
|
|
|
|
if ( getName() == "" )
|
|
|
|
|
{
|
|
|
|
|
SUIT_MessageBox::information(this, tr("SMESH_INSUFFICIENT_DATA"),
|
|
|
|
|
SMESHGUI_GroupOpDlg::tr("EMPTY_NAME"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( myGroups1.isEmpty() || myGroups2.isEmpty() )
|
|
|
|
|
{
|
|
|
|
|
SUIT_MessageBox::information( this, tr("SMESH_INSUFFICIENT_DATA"),
|
|
|
|
|
SMESHGUI_GroupOpDlg::tr("INCORRECT_ARGUMENTS") );
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<SMESH::SMESH_GroupBase_var> aGroups = myGroups1;
|
|
|
|
|
QList<SMESH::SMESH_GroupBase_var>::iterator anIter;
|
|
|
|
|
for ( anIter = myGroups2.begin(); anIter != myGroups2.end(); ++anIter )
|
|
|
|
|
aGroups.append( *anIter );
|
|
|
|
|
|
|
|
|
|
if ( !isValid( aGroups ) )
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
SMESH::SMESH_Mesh_var aMesh = myGroups1.first()->GetMesh();
|
|
|
|
|
QString aName = getName();
|
|
|
|
|
|
|
|
|
|
bool aRes = false;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
SMESH::ListOfGroups_var aList1 = convert( myGroups1 );
|
|
|
|
|
SMESH::ListOfGroups_var aList2 = convert( myGroups2 );
|
|
|
|
|
SMESH::SMESH_Group_var aNewGrp =
|
|
|
|
|
aMesh->CutListOfGroups( aList1, aList2, aName.toLatin1().constData() );
|
|
|
|
|
if ( !CORBA::is_nil( aNewGrp ) )
|
2008-03-07 12:47:05 +05:00
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
|
aNewGrp->SetColor( getColor() );
|
|
|
|
|
aRes = true;
|
2008-03-07 12:47:05 +05:00
|
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
|
}
|
|
|
|
|
catch( ... )
|
|
|
|
|
{
|
|
|
|
|
aRes = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( aRes )
|
|
|
|
|
{
|
|
|
|
|
getSMESHGUI()->updateObjBrowser(true);
|
|
|
|
|
reset();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
SUIT_MessageBox::critical(this, tr("SMESH_ERROR"),
|
|
|
|
|
tr("SMESH_OPERATION_FAILED"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief SLOT, called when selection is changed, updates corresponding GUI controls
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_CutGroupsDlg::onSelectionDone()
|
|
|
|
|
{
|
|
|
|
|
QStringList aNames;
|
|
|
|
|
if ( myBtn2->isChecked() )
|
|
|
|
|
{
|
|
|
|
|
getSelectedGroups( myGroups2, aNames );
|
|
|
|
|
myListWg2->clear();
|
|
|
|
|
myListWg2->addItems( aNames );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
getSelectedGroups( myGroups1, aNames );
|
|
|
|
|
myListWg1->clear();
|
|
|
|
|
myListWg1->addItems( aNames );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// === === === === === === === === === === === === === === === === === === === === ===
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Constructor
|
|
|
|
|
\param theModule module
|
|
|
|
|
*/
|
|
|
|
|
SMESHGUI_DimGroupDlg::SMESHGUI_DimGroupDlg( SMESHGUI* theModule )
|
|
|
|
|
: SMESHGUI_GroupOpDlg( theModule )
|
|
|
|
|
{
|
|
|
|
|
setWindowTitle( tr( "CREATE_GROUP_OF_UNDERLYING_ELEMS" ) );
|
|
|
|
|
setHelpFileName( "creating_groups_page.html#gui_create_dim_group" );
|
|
|
|
|
|
|
|
|
|
QGroupBox* anArgGrp = getArgGrp();
|
|
|
|
|
|
|
|
|
|
QLabel* aLbl = new QLabel( tr( "ELEMENTS_TYPE" ), anArgGrp );
|
|
|
|
|
|
|
|
|
|
myCombo = new QComboBox( anArgGrp );
|
|
|
|
|
static QStringList anItems;
|
|
|
|
|
if ( anItems.isEmpty() )
|
|
|
|
|
{
|
|
|
|
|
anItems.append( tr( "NODE" ) );
|
|
|
|
|
anItems.append( tr( "EDGE" ) );
|
|
|
|
|
anItems.append( tr( "FACE" ) );
|
|
|
|
|
anItems.append( tr( "VOLUME" ) );
|
|
|
|
|
}
|
|
|
|
|
myCombo->addItems( anItems );
|
|
|
|
|
myCombo->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
|
|
|
|
|
|
|
|
|
myListWg = new QListWidget( anArgGrp );
|
|
|
|
|
|
|
|
|
|
// layout
|
|
|
|
|
QGridLayout* aLay = new QGridLayout( anArgGrp );
|
|
|
|
|
aLay->setSpacing( SPACING );
|
|
|
|
|
aLay->addWidget( aLbl, 0, 0 );
|
|
|
|
|
aLay->addWidget( myCombo, 0, 1 );
|
|
|
|
|
aLay->addWidget( myListWg, 1, 0, 1, 2 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Destructor
|
|
|
|
|
*/
|
|
|
|
|
SMESHGUI_DimGroupDlg::~SMESHGUI_DimGroupDlg()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief This virtual method redefined from the base class resets state
|
|
|
|
|
of the dialog, initializes its fields with default value, etc.
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_DimGroupDlg::reset()
|
|
|
|
|
{
|
|
|
|
|
SMESHGUI_GroupOpDlg::reset();
|
|
|
|
|
myListWg->clear();
|
|
|
|
|
myGroups.clear();
|
2008-03-07 12:47:05 +05:00
|
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Gets elements type
|
|
|
|
|
\return elements type
|
|
|
|
|
\sa setElementType()
|
|
|
|
|
*/
|
|
|
|
|
SMESH::ElementType SMESHGUI_DimGroupDlg::getElementType() const
|
|
|
|
|
{
|
|
|
|
|
return (SMESH::ElementType)( myCombo->currentIndex() + 1 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Sets elements type
|
|
|
|
|
\param theElemType elements type
|
|
|
|
|
\sa getElementType()
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_DimGroupDlg::setElementType( const SMESH::ElementType& theElemType )
|
|
|
|
|
{
|
|
|
|
|
myCombo->setCurrentIndex( theElemType - 1 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief SLOT called when apply button is pressed performs operation
|
|
|
|
|
\return TRUE if operation has been completed successfully, FALSE otherwise
|
|
|
|
|
*/
|
|
|
|
|
bool SMESHGUI_DimGroupDlg::onApply()
|
|
|
|
|
{
|
|
|
|
|
if ( getSMESHGUI()->isActiveStudyLocked())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// Verify validity of group name
|
|
|
|
|
if ( getName() == "" )
|
|
|
|
|
{
|
|
|
|
|
SUIT_MessageBox::information(this, tr("SMESH_INSUFFICIENT_DATA"),
|
|
|
|
|
SMESHGUI_GroupOpDlg::tr("EMPTY_NAME"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !isValid( myGroups ) )
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
SMESH::SMESH_Mesh_var aMesh = myGroups.first()->GetMesh();
|
|
|
|
|
QString aName = getName();
|
|
|
|
|
|
|
|
|
|
bool aRes = false;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
SMESH::ListOfGroups_var aList = convert( myGroups );
|
|
|
|
|
SMESH::ElementType anElemType = getElementType();
|
|
|
|
|
SMESH::SMESH_Group_var aNewGrp =
|
|
|
|
|
aMesh->CreateDimGroup( aList, anElemType, aName.toLatin1().constData() );
|
|
|
|
|
if ( !CORBA::is_nil( aNewGrp ) )
|
|
|
|
|
{
|
|
|
|
|
aNewGrp->SetColor( getColor() );
|
|
|
|
|
aRes = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch( ... )
|
|
|
|
|
{
|
|
|
|
|
aRes = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( aRes )
|
|
|
|
|
{
|
|
|
|
|
getSMESHGUI()->updateObjBrowser(true);
|
|
|
|
|
reset();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
SUIT_MessageBox::critical(this, tr("SMESH_ERROR"),
|
|
|
|
|
tr("SMESH_OPERATION_FAILED"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief SLOT, called when selection is changed, updates corresponding GUI controls
|
|
|
|
|
*/
|
|
|
|
|
void SMESHGUI_DimGroupDlg::onSelectionDone()
|
|
|
|
|
{
|
|
|
|
|
QStringList aNames;
|
|
|
|
|
getSelectedGroups( myGroups, aNames );
|
|
|
|
|
myListWg->clear();
|
|
|
|
|
myListWg->addItems( aNames );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|