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_AddMeshElementDlg.h
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
27 #ifndef SMESHGUI_ADDMESHELEMENTDLG_H
28 #define SMESHGUI_ADDMESHELEMENTDLG_H
31 #include "SMESH_SMESHGUI.hxx"
33 #include <SMDSAbs_ElementType.hxx>
39 #include <SALOMEconfig.h>
40 #include CORBA_SERVER_HEADER(SMESH_Mesh)
52 class LightApp_SelectionMgr;
53 class SMESHGUI_SpinBox;
57 struct TElementSimulation;
60 //=================================================================================
61 // class : SMESHGUI_AddMeshElementDlg
63 //=================================================================================
64 class SMESHGUI_EXPORT SMESHGUI_AddMeshElementDlg : public QDialog
68 SMESHGUI_AddMeshElementDlg( SMESHGUI*, SMDSAbs_EntityType = SMDSEntity_Edge );
69 ~SMESHGUI_AddMeshElementDlg();
73 void enterEvent( QEvent* ); /* mouse enter the QWidget */
74 void keyPressEvent( QKeyEvent* );
75 void displaySimulation();
79 typedef QList<SMESH::SMESH_GroupBase_var> GrpList;
81 SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
82 LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
83 int myNbOkNodes; /* to check when arguments is defined */
85 SVTK_Selector* mySelector;
87 QLineEdit* myEditCurrentArgument; /* Current LineEdit */
89 SMDSAbs_EntityType myGeomType;
94 SMESH::SMESH_Mesh_var myMesh;
96 SMESH::TElementSimulation* mySimulation;
100 QGroupBox* GroupConstructors;
101 QRadioButton* Constructor1;
102 QGroupBox* GroupGroups;
103 QLabel* TextLabel_GroupName;
104 QComboBox* ComboBox_GroupName;
105 QGroupBox* GroupButtons;
106 QPushButton* buttonOk;
107 QPushButton* buttonCancel;
108 QPushButton* buttonApply;
109 QPushButton* buttonHelp;
111 QLabel* TextLabelC1A1;
112 QPushButton* SelectButtonC1A1;
113 QLineEdit* LineEditC1A1;
114 QCheckBox* ReverseOrDulicate;
115 SMESHGUI_SpinBox* DiameterSpinBox;
117 QString myHelpFileName;
120 virtual void reject();
121 void onDiameterChanged();
127 void SetEditCurrentArgument();
128 void SelectionIntoArgument();
129 void DeactivateActiveDialog();
130 void ActivateThisDialog();
131 void CheckBox( int );
132 void onTextChange( const QString& );
137 #endif // SMESHGUI_ADDMESHELEMENTDLG_H