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_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;
56 struct TElementSimulation;
59 //=================================================================================
60 // class : SMESHGUI_AddMeshElementDlg
62 //=================================================================================
63 class SMESHGUI_EXPORT SMESHGUI_AddMeshElementDlg : public QDialog
68 SMESHGUI_AddMeshElementDlg( SMESHGUI*, SMDSAbs_ElementType = SMDSAbs_Edge, int = 2 );
69 ~SMESHGUI_AddMeshElementDlg();
73 void closeEvent( QCloseEvent* );
74 void hideEvent( QHideEvent* ); /* ESC key */
75 void enterEvent( QEvent* ); /* mouse enter the QWidget */
76 void keyPressEvent( QKeyEvent* );
77 void displaySimulation();
81 typedef QList<SMESH::SMESH_GroupBase_var> GrpList;
83 SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
84 LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
85 int myNbOkNodes; /* to check when arguments is defined */
87 SVTK_Selector* mySelector;
89 QLineEdit* myEditCurrentArgument; /* Current LineEdit */
95 SMESH::SMESH_Mesh_var myMesh;
97 SMESH::TElementSimulation* mySimulation;
101 QGroupBox* GroupConstructors;
102 QRadioButton* Constructor1;
103 QGroupBox* GroupGroups;
104 QLabel* TextLabel_GroupName;
105 QComboBox* ComboBox_GroupName;
106 QGroupBox* GroupButtons;
107 QPushButton* buttonOk;
108 QPushButton* buttonCancel;
109 QPushButton* buttonApply;
110 QPushButton* buttonHelp;
112 QLabel* TextLabelC1A1;
113 QPushButton* SelectButtonC1A1;
114 QLineEdit* LineEditC1A1;
117 QString myHelpFileName;
121 void ClickOnCancel();
124 void SetEditCurrentArgument();
125 void SelectionIntoArgument();
126 void DeactivateActiveDialog();
127 void ActivateThisDialog();
128 void CheckBox( int );
129 void onTextChange( const QString& );
132 #endif // SMESHGUI_ADDMESHELEMENTDLG_H