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_ADDQUADRATICELEMENTDLG_H
28 #define SMESHGUI_ADDQUADRATICELEMENTDLG_H
31 #include "SMESH_SMESHGUI.hxx"
32 #include "SMDSAbs_ElementType.hxx"
38 #include <SALOMEconfig.h>
39 #include CORBA_SERVER_HEADER(SMESH_Mesh)
53 class LightApp_SelectionMgr;
57 struct TElementSimulationQuad;
60 //=================================================================================
61 // class : SMESHGUI_AddQuadraticElementDlg
63 //=================================================================================
64 class SMESHGUI_EXPORT SMESHGUI_AddQuadraticElementDlg : public QDialog
69 SMESHGUI_AddQuadraticElementDlg( SMESHGUI*, const SMDSAbs_EntityType );
70 ~SMESHGUI_AddQuadraticElementDlg();
73 typedef QList<SMESH::SMESH_GroupBase_var> GrpList;
76 void enterEvent( QEvent* ); /* mouse enter the QWidget */
77 void keyPressEvent( QKeyEvent* );
78 void displaySimulation();
79 void UpdateTable( bool = true );
85 SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
86 LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
87 int myNbCorners; /* The required number of corners */
91 SVTK_Selector* mySelector;
93 SMESH::SMESH_Mesh_var myMesh;
95 SMESH::TElementSimulationQuad* mySimulation;
99 SMDSAbs_EntityType myGeomType;
100 QLineEdit* myCurrentLineEdit;
102 QGroupBox* GroupConstructors;
103 QRadioButton* myRadioButton1;
105 QGroupBox* GroupArguments;
106 QPushButton* myCornerSelectButton;
107 QLineEdit* myCornerNodes;
108 QLabel* myMidFaceLabel;
109 QPushButton* myMidFaceSelectButton;
110 QLineEdit* myMidFaceNodes;
111 QLabel* myCenterLabel;
112 QPushButton* myCenterSelectButton;
113 QLineEdit* myCenterNode;
114 QTableWidget* myTable;
115 QCheckBox* myReverseCB;
117 QGroupBox* GroupGroups;
118 QLabel* TextLabel_GroupName;
119 QComboBox* ComboBox_GroupName;
121 QGroupBox* GroupButtons;
122 QPushButton* buttonOk;
123 QPushButton* buttonCancel;
124 QPushButton* buttonApply;
125 QPushButton* buttonHelp;
127 QString myHelpFileName;
130 virtual void reject();
133 void onTextChange( const QString& );
134 void onCellTextChange( int, int );
135 void onReverse( int );
136 void onCellDoubleClicked( int, int );
141 void SetCurrentSelection();
142 void SelectionIntoArgument();
143 void DeactivateActiveDialog();
144 void ActivateThisDialog();
149 #endif // SMESHGUI_ADDQUADRATICELEMENTDLG_H