2013-04-01 19:05:47 +06:00
|
|
|
// Copyright (C) 2007-2013 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
|
|
|
|
// version 2.1 of the License.
|
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>
|
2005-08-09 17:31:29 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// STL includes
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
// IDL includes
|
|
|
|
#include <SALOMEconfig.h>
|
|
|
|
#include CORBA_SERVER_HEADER(SMESH_Mesh)
|
|
|
|
|
2005-08-09 17:31:29 +06:00
|
|
|
class QGroupBox;
|
|
|
|
class QLabel;
|
|
|
|
class QLineEdit;
|
|
|
|
class QPushButton;
|
|
|
|
class QRadioButton;
|
2008-03-07 12:47:05 +05:00
|
|
|
class QCheckBox;
|
2009-02-17 10:27:49 +05:00
|
|
|
class QListWidget;
|
2012-08-09 16:03:55 +06:00
|
|
|
class QButtonGroup;
|
2005-08-09 17:31:29 +06:00
|
|
|
class SMESHGUI;
|
2008-03-07 12:47:05 +05:00
|
|
|
class SMESHGUI_SpinBox;
|
|
|
|
class SMESH_Actor;
|
|
|
|
class SVTK_Selector;
|
2009-02-17 10:27:49 +05:00
|
|
|
class LightApp_SelectionMgr;
|
|
|
|
class SUIT_SelectionFilter;
|
|
|
|
class TColStd_MapOfInteger;
|
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
|
|
|
{
|
|
|
|
Q_OBJECT;
|
|
|
|
|
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
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
private:
|
|
|
|
void Init();
|
|
|
|
void enterEvent( QEvent* ); /* mouse enter the QWidget */
|
|
|
|
void keyPressEvent( QKeyEvent* );
|
|
|
|
void onEditGroup();
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void FindGravityCenter( TColStd_MapOfInteger&,
|
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;
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
|
|
|
|
LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
|
|
|
|
SVTK_Selector* mySelector;
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
QWidget* myEditCurrentArgument;
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
SMESH::SMESH_Mesh_var myMesh;
|
|
|
|
SMESH::SMESH_IDSource_var mySubMeshOrGroup;
|
|
|
|
SMESH_Actor* myActor;
|
|
|
|
SUIT_SelectionFilter* myMeshOrSubMeshOrGroupFilter;
|
2005-08-09 17:31:29 +06:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
SMESH::TIdPreview* myIdPreview;
|
2005-08-09 17:31:29 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
int myAction;
|
|
|
|
bool myIsBusy;
|
2012-08-09 16:03:55 +06:00
|
|
|
int myTypeId;
|
2005-08-09 17:31:29 +06:00
|
|
|
|
|
|
|
// Widgets
|
2009-02-17 10:27:49 +05:00
|
|
|
QGroupBox* GroupConstructors;
|
|
|
|
QRadioButton* RadioButton;
|
|
|
|
|
|
|
|
QGroupBox* GroupButtons;
|
|
|
|
QPushButton* buttonOk;
|
|
|
|
QPushButton* buttonCancel;
|
|
|
|
QPushButton* buttonApply;
|
|
|
|
QPushButton* buttonHelp;
|
|
|
|
|
|
|
|
QGroupBox* GroupMesh;
|
|
|
|
QLabel* TextLabelName;
|
|
|
|
QPushButton* SelectMeshButton;
|
|
|
|
QLineEdit* LineEditMesh;
|
|
|
|
|
|
|
|
QGroupBox* GroupCoincident;
|
2012-08-09 16:03:55 +06:00
|
|
|
QWidget* GroupCoincidentWidget;
|
2009-02-17 10:27:49 +05:00
|
|
|
QLabel* TextLabelTolerance;
|
|
|
|
SMESHGUI_SpinBox* SpinBoxTolerance;
|
|
|
|
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;
|
|
|
|
|
|
|
|
QGroupBox* TypeBox;
|
|
|
|
QButtonGroup* GroupType;
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
QString myHelpFileName;
|
2006-05-06 14:51:48 +06:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
QString myEntry;
|
|
|
|
GrpList myGroups;
|
|
|
|
|
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();
|
|
|
|
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);
|
2005-08-09 17:31:29 +06:00
|
|
|
};
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
#endif // SMESHGUI_MergeDlg_H
|