1 // Copyright (C) 2007-2021 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, or (at your option) any later version.
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_CopyMeshDlg.h
26 #ifndef SMESHGUI_CopyMeshDLG_H
27 #define SMESHGUI_CopyMeshDLG_H
30 #include "SMESH_SMESHGUI.hxx"
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38 #include CORBA_SERVER_HEADER(SMESH_Gen)
48 class SMESHGUI_IdValidator;
49 class SMESHGUI_FilterDlg;
52 class LightApp_SelectionMgr;
53 class SUIT_SelectionFilter;
55 //=================================================================================
56 // class : SMESHGUI_CopyMeshDlg
57 // purpose : copy some elements or a mesh object into a new mesh
58 //=================================================================================
60 class SMESHGUI_EXPORT SMESHGUI_CopyMeshDlg : public QDialog
65 SMESHGUI_CopyMeshDlg( SMESHGUI* );
66 ~SMESHGUI_CopyMeshDlg();
69 void Init( bool = true );
70 void enterEvent( QEvent* ); /* mouse enter the QWidget */
71 void keyPressEvent( QKeyEvent* );
72 void setNewMeshName();
73 QString getErrorMsg( SMESH::string_array_var invalidEntries,
74 QStringList & entriesToBrowse );
77 bool isWithGeomMode();
79 void setIsApplyAndClose( const bool theFlag );
80 bool isApplyAndClose() const;
82 SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
83 SMESHGUI_IdValidator* myIdValidator;
84 LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
85 int myNbOkElements; /* to check when elements are defined */
87 SVTK_Selector* mySelector;
90 SMESH::SMESH_Mesh_var myMesh;
91 GEOM::GEOM_Object_var myNewGeometry;
93 SUIT_SelectionFilter* myIdSourceFilter;
95 SMESH::SMESH_IDSource_var mySelectedObject;
97 QButtonGroup* GroupConstructors;
99 QGroupBox* ConstructorsBox;
100 QGroupBox* GroupArguments;
101 QGroupBox* GroupButtons;
103 QPushButton* buttonOk;
104 QPushButton* buttonCancel;
105 QPushButton* buttonApply;
106 QPushButton* buttonHelp;
108 QLabel* myTextLabelElements;
110 QLineEdit* myLineEditElements;
111 QLineEdit* myMeshNameEdit;
112 QLineEdit* myGeomNameEdit;
113 QCheckBox* myIdSourceCheck;
114 QCheckBox* myCopyGroupsCheck;
115 QCheckBox* myReuseHypCheck;
116 QCheckBox* myCopyElementsCheck;
117 QCheckBox* myKeepIdsCheck;
119 QPushButton* myFilterBtn;
120 SMESHGUI_FilterDlg* myFilterDlg;
122 QString myHelpFileName;
124 bool myIsApplyAndClose;
127 virtual void reject();
133 void SelectionIntoArgument();
134 void DeactivateActiveDialog();
135 void ActivateThisDialog();
136 void onConstructor( int );
137 void onTextChange( const QString& );
138 void onSelectIdSource( bool );
144 #endif // SMESHGUI_CopyMeshDLG_H