2021-03-23 19:44:27 +05:00
|
|
|
// Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE
|
2005-12-05 21:31:55 +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
|
2005-12-05 21:31:55 +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.
|
2005-12-05 21:31:55 +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
|
2012-08-09 16:03:55 +06:00
|
|
|
// File : SMESHGUI_MergeDlg.h
|
2009-02-17 10:27:49 +05:00
|
|
|
// Author : Open CASCADE S.A.S.
|
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
#ifndef SMESHGUI_MergeDlg_H
|
|
|
|
#define SMESHGUI_MergeDlg_H
|
2005-08-09 17:31:29 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// SMESH includes
|
2008-03-07 12:47:05 +05:00
|
|
|
#include "SMESH_SMESHGUI.hxx"
|
2005-08-09 17:31:29 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// Qt includes
|
|
|
|
#include <QDialog>
|
2005-08-09 17:31:29 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// OCCT includes
|
2008-03-07 12:47:05 +05:00
|
|
|
#include <gp_XYZ.hxx>
|
2016-02-24 18:46:43 +05:00
|
|
|
#include <TColStd_MapOfInteger.hxx>
|
2005-08-09 17:31:29 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// STL includes
|
|
|
|
#include <list>
|
2015-09-18 19:10:34 +05:00
|
|
|
#include <vector>
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
// IDL includes
|
|
|
|
#include <SALOMEconfig.h>
|
|
|
|
#include CORBA_SERVER_HEADER(SMESH_Mesh)
|
|
|
|
|
2015-09-18 19:10:34 +05:00
|
|
|
class LightApp_SelectionMgr;
|
|
|
|
class QButtonGroup;
|
|
|
|
class QCheckBox;
|
2005-08-09 17:31:29 +06:00
|
|
|
class QGroupBox;
|
|
|
|
class QLabel;
|
|
|
|
class QLineEdit;
|
2015-09-18 19:10:34 +05:00
|
|
|
class QListWidget;
|
2005-08-09 17:31:29 +06:00
|
|
|
class QPushButton;
|
|
|
|
class QRadioButton;
|
|
|
|
class SMESHGUI;
|
2015-09-18 19:10:34 +05:00
|
|
|
class SMESHGUI_IdPreview;
|
2008-03-07 12:47:05 +05:00
|
|
|
class SMESHGUI_SpinBox;
|
|
|
|
class SMESH_Actor;
|
2009-02-17 10:27:49 +05:00
|
|
|
class SUIT_SelectionFilter;
|
2015-09-18 19:10:34 +05:00
|
|
|
class SVTK_Selector;
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
namespace SMESH
|
|
|
|
{
|
2008-03-07 12:47:05 +05:00
|
|
|
struct TIdPreview;
|
|
|
|
}
|
2005-08-09 17:31:29 +06:00
|
|
|
|
|
|
|
//=================================================================================
|
2012-08-09 16:03:55 +06:00
|
|
|
// class : SMESHGUI_MergeDlg
|
2005-08-09 17:31:29 +06:00
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
2012-08-09 16:03:55 +06:00
|
|
|
class SMESHGUI_EXPORT SMESHGUI_MergeDlg : public QDialog
|
2005-08-09 17:31:29 +06:00
|
|
|
{
|
2020-08-21 10:05:05 +05:00
|
|
|
Q_OBJECT
|
2005-08-09 17:31:29 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
public:
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESHGUI_MergeDlg( SMESHGUI*, int );
|
|
|
|
~SMESHGUI_MergeDlg();
|
2005-08-09 17:31:29 +06:00
|
|
|
|
2015-09-18 19:10:34 +05:00
|
|
|
static QPixmap IconFirst();
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
private:
|
|
|
|
void Init();
|
|
|
|
void enterEvent( QEvent* ); /* mouse enter the QWidget */
|
|
|
|
void keyPressEvent( QKeyEvent* );
|
|
|
|
void onEditGroup();
|
2019-01-18 23:31:22 +05:00
|
|
|
bool isKeepIDsSelection();
|
|
|
|
bool isNewKeepGroup( const char* entry );
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2015-09-18 19:10:34 +05:00
|
|
|
void FindGravityCenter( TColStd_MapOfInteger&,
|
|
|
|
std::vector<int>& ,
|
2012-08-09 16:03:55 +06:00
|
|
|
std::list<gp_XYZ>& );
|
2008-03-07 12:47:05 +05:00
|
|
|
// add the centers of gravity of ElemsIdMap elements to the GrCentersXYZ list
|
2005-08-09 17:31:29 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
private:
|
2012-08-09 16:03:55 +06:00
|
|
|
typedef QList<SMESH::SMESH_GroupBase_var> GrpList;
|
|
|
|
|
2019-01-18 23:31:22 +05:00
|
|
|
SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
|
|
|
|
LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
|
|
|
|
SVTK_Selector* mySelector;
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2019-01-18 23:31:22 +05:00
|
|
|
QWidget* myEditCurrentArgument;
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2019-01-18 23:31:22 +05:00
|
|
|
SMESH::SMESH_Mesh_var myMesh;
|
|
|
|
SMESH::ListOfIDSources_var mySubMeshOrGroups;
|
|
|
|
GrpList myGroups;
|
|
|
|
QString myEntry;
|
2005-08-09 17:31:29 +06:00
|
|
|
|
2019-01-18 23:31:22 +05:00
|
|
|
SMESH_Actor* myActor;
|
|
|
|
SUIT_SelectionFilter* myMeshOrSubMeshOrGroupFilter;
|
|
|
|
SUIT_SelectionFilter* mySubMeshOrGroupFilter;
|
|
|
|
|
|
|
|
SMESHGUI_IdPreview* myIdPreview;
|
|
|
|
QString myHelpFileName;
|
|
|
|
|
|
|
|
int myAction;
|
|
|
|
bool myIsBusy;
|
|
|
|
int myTypeId; // manual(1) or automatic(0)
|
|
|
|
|
2005-08-09 17:31:29 +06:00
|
|
|
|
|
|
|
|
|
|
|
// Widgets
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
QGroupBox* GroupButtons;
|
|
|
|
QPushButton* buttonOk;
|
|
|
|
QPushButton* buttonCancel;
|
|
|
|
QPushButton* buttonApply;
|
|
|
|
QPushButton* buttonHelp;
|
|
|
|
|
|
|
|
QGroupBox* GroupMesh;
|
|
|
|
QLabel* TextLabelName;
|
|
|
|
QPushButton* SelectMeshButton;
|
|
|
|
QLineEdit* LineEditMesh;
|
|
|
|
|
2015-09-24 21:17:33 +05:00
|
|
|
QWidget* NodeSpecWidget;
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESHGUI_SpinBox* SpinBoxTolerance;
|
2015-07-01 16:59:24 +05:00
|
|
|
QCheckBox* SeparateCornersAndMedium;
|
2017-03-14 17:43:27 +05:00
|
|
|
QCheckBox* AvoidMakingHoles;
|
2015-09-24 21:17:33 +05:00
|
|
|
|
|
|
|
QGroupBox* GroupCoincident;
|
|
|
|
//QWidget* GroupCoincidentWidget;
|
2009-02-17 10:27:49 +05:00
|
|
|
QPushButton* DetectButton;
|
|
|
|
QListWidget* ListCoincident;
|
|
|
|
QPushButton* AddGroupButton;
|
|
|
|
QPushButton* RemoveGroupButton;
|
|
|
|
QCheckBox* SelectAllCB;
|
2013-05-22 19:35:08 +06:00
|
|
|
QCheckBox* ShowIDs;
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
QGroupBox* GroupEdit;
|
|
|
|
QListWidget* ListEdit;
|
|
|
|
QPushButton* AddElemButton;
|
|
|
|
QPushButton* RemoveElemButton;
|
|
|
|
QPushButton* SetFirstButton;
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
QGroupBox* GroupExclude;
|
|
|
|
QListWidget* ListExclude;
|
|
|
|
|
2015-09-24 21:17:33 +05:00
|
|
|
QGroupBox* GroupKeep;
|
2015-07-10 21:39:03 +05:00
|
|
|
QButtonGroup* KeepFromButGroup;
|
2019-01-18 23:31:22 +05:00
|
|
|
QPushButton* SelectKeepButton;
|
|
|
|
QPushButton* AddKeepButton;
|
|
|
|
QPushButton* RemoveKeepButton;
|
2015-07-10 21:39:03 +05:00
|
|
|
QListWidget* KeepList;
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
QGroupBox* TypeBox;
|
|
|
|
QButtonGroup* GroupType;
|
|
|
|
|
2013-02-28 21:07:35 +06:00
|
|
|
protected slots:
|
|
|
|
virtual void reject();
|
|
|
|
|
2005-08-09 17:31:29 +06:00
|
|
|
private slots:
|
2009-02-17 10:27:49 +05:00
|
|
|
void ClickOnOk();
|
|
|
|
bool ClickOnApply();
|
|
|
|
void ClickOnHelp();
|
|
|
|
void updateControls();
|
|
|
|
void onDetect();
|
2019-01-18 23:31:22 +05:00
|
|
|
void onAddKeep();
|
|
|
|
void onRemoveKeep();
|
|
|
|
void onSelectKeep();
|
|
|
|
void onKeepSourceChanged(int);
|
2009-02-17 10:27:49 +05:00
|
|
|
void onAddGroup();
|
|
|
|
void onRemoveGroup();
|
|
|
|
void onSelectGroup();
|
|
|
|
void onSelectAll( bool );
|
|
|
|
void onSelectElementFromGroup();
|
|
|
|
void onAddElement();
|
|
|
|
void onRemoveElement();
|
|
|
|
void onSetFirst();
|
|
|
|
void SetEditCurrentArgument();
|
|
|
|
void SelectionIntoArgument();
|
|
|
|
void DeactivateActiveDialog();
|
|
|
|
void ActivateThisDialog();
|
2012-08-09 16:03:55 +06:00
|
|
|
void onTypeChanged(int);
|
2015-06-09 14:28:15 +05:00
|
|
|
void onOpenView();
|
|
|
|
void onCloseView();
|
2005-08-09 17:31:29 +06:00
|
|
|
};
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
#endif // SMESHGUI_MergeDlg_H
|