1 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File : SMESHGUI_BuildCompoundDlg.h
25 // Author : Alexander KOVALEV, Open CASCADE S.A.S.
27 #ifndef SMESHGUI_BUILDCOMPOUNDDLG_H
28 #define SMESHGUI_BUILDCOMPOUNDDLG_H
31 #include "SMESH_SMESHGUI.hxx"
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SMESH_Gen)
39 #include CORBA_SERVER_HEADER(SMESH_Mesh)
49 class SMESHGUI_SpinBox;
50 class LightApp_SelectionMgr;
51 class SUIT_SelectionFilter;
53 //=================================================================================
54 // class : SMESHGUI_BuildCompoundDlg
56 //=================================================================================
57 class SMESHGUI_EXPORT SMESHGUI_BuildCompoundDlg : public QDialog
63 SMESHGUI_BuildCompoundDlg( SMESHGUI* );
64 ~SMESHGUI_BuildCompoundDlg();
67 static QString GetDefaultName( const QString& );
71 void closeEvent( QCloseEvent* );
72 void enterEvent( QEvent* ); /* mouse enter the QWidget */
73 void hideEvent( QHideEvent* ); /* ESC key */
74 void keyPressEvent( QKeyEvent* );
78 void setIsApplyAndClose( const bool theFlag );
79 bool isApplyAndClose() const;
82 SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
83 LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
85 SMESH::SMESH_Mesh_var myMesh;
86 SUIT_SelectionFilter* myMeshFilter;
87 SMESH::mesh_array_var myMeshArray;
90 QGroupBox* GroupConstructors;
91 QRadioButton* Constructor1;
93 QGroupBox* GroupButtons;
94 QPushButton* buttonOk;
95 QPushButton* buttonCancel;
96 QPushButton* buttonApply;
97 QPushButton* buttonHelp;
100 QLabel* TextLabelName;
101 QLineEdit* LineEditName;
103 QGroupBox* GroupArgs;
104 QLabel* TextLabelMeshes;
105 QPushButton* SelectButton;
106 QLineEdit* LineEditMeshes;
107 QLabel* TextLabelUnion;
108 QComboBox* ComboBoxUnion;
109 QCheckBox* CheckBoxCommon;
110 QCheckBox* CheckBoxMerge;
111 QLabel* TextLabelTol;
112 SMESHGUI_SpinBox* SpinBoxTol;
114 QString myHelpFileName;
116 bool myIsApplyAndClose;
120 void ClickOnCancel();
123 void SelectionIntoArgument();
124 void DeactivateActiveDialog();
125 void ActivateThisDialog();
126 void onSelectMerge( bool );
129 #endif // SMESHGUI_BUILDCOMPOUNDDLG_H