smesh/src/SMESHGUI/SMESHGUI_MergeDlg.h

176 lines
5.4 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
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
2009-02-17 10:27:49 +05:00
// SMESH includes
#include "SMESH_SMESHGUI.hxx"
2009-02-17 10:27:49 +05:00
// Qt includes
#include <QDialog>
2009-02-17 10:27:49 +05:00
// OCCT includes
#include <gp_XYZ.hxx>
2009-02-17 10:27:49 +05:00
// STL includes
#include <list>
// IDL includes
#include <SALOMEconfig.h>
#include CORBA_SERVER_HEADER(SMESH_Mesh)
class QGroupBox;
class QLabel;
class QLineEdit;
class QPushButton;
class QRadioButton;
class QCheckBox;
2009-02-17 10:27:49 +05:00
class QListWidget;
2012-08-09 16:03:55 +06:00
class QButtonGroup;
class SMESHGUI;
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;
2009-02-17 10:27:49 +05:00
namespace SMESH
{
struct TIdPreview;
}
//=================================================================================
2012-08-09 16:03:55 +06:00
// class : SMESHGUI_MergeDlg
// purpose :
//=================================================================================
2012-08-09 16:03:55 +06:00
class SMESHGUI_EXPORT SMESHGUI_MergeDlg : public QDialog
{
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();
2009-02-17 10:27:49 +05:00
private:
void Init();
void enterEvent( QEvent* ); /* mouse enter the QWidget */
void keyPressEvent( QKeyEvent* );
void onEditGroup();
2009-02-17 10:27:49 +05:00
void FindGravityCenter( TColStd_MapOfInteger&,
2012-08-09 16:03:55 +06:00
std::list<gp_XYZ>& );
// add the centers of gravity of ElemsIdMap elements to the GrCentersXYZ list
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;
2009-02-17 10:27:49 +05:00
QWidget* myEditCurrentArgument;
SMESH::SMESH_Mesh_var myMesh;
SMESH::SMESH_IDSource_var mySubMeshOrGroup;
SMESH_Actor* myActor;
SUIT_SelectionFilter* myMeshOrSubMeshOrGroupFilter;
SMESH::TIdPreview* myIdPreview;
2009-02-17 10:27:49 +05:00
int myAction;
bool myIsBusy;
2012-08-09 16:03:55 +06:00
int myTypeId;
// 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;
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;
2009-02-17 10:27:49 +05:00
QString myHelpFileName;
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();
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);
};
2012-08-09 16:03:55 +06:00
#endif // SMESHGUI_MergeDlg_H