Salome HOME
Update of CheckDone
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_AddQuadraticElementDlg.h
1 // Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_AddMeshElementDlg.h
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_ADDQUADRATICELEMENTDLG_H
28 #define SMESHGUI_ADDQUADRATICELEMENTDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32 #include "SMDSAbs_ElementType.hxx"
33
34 // Qt includes
35 #include <QDialog>
36
37 // IDL includes
38 #include <SALOMEconfig.h>
39 #include CORBA_SERVER_HEADER(SMESH_Mesh)
40
41 class QComboBox;
42 class QFrame;
43 class QGroupBox;
44 class QLabel;
45 class QLineEdit;
46 class QPushButton;
47 class QRadioButton;
48 class QCheckBox;
49 class QTableWidget;
50 class SMESHGUI;
51 class SMESH_Actor;
52 class SVTK_Selector;
53 class LightApp_SelectionMgr;
54
55 namespace SMESH
56 {
57   struct TElementSimulationQuad;
58 }
59
60 //=================================================================================
61 // class    : SMESHGUI_AddQuadraticElementDlg
62 // purpose  :
63 //=================================================================================
64 class SMESHGUI_EXPORT SMESHGUI_AddQuadraticElementDlg : public QDialog
65
66   Q_OBJECT
67
68 public:
69   SMESHGUI_AddQuadraticElementDlg( SMESHGUI*, const SMDSAbs_EntityType );
70   ~SMESHGUI_AddQuadraticElementDlg();
71   
72 private:
73   typedef QList<SMESH::SMESH_GroupBase_var> GrpList;
74
75   void                        Init();
76   void                        enterEvent( QEvent* );       /* mouse enter the QWidget */
77   void                        keyPressEvent( QKeyEvent* );
78   void                        displaySimulation();
79   void                        UpdateTable( bool = true );
80   bool                        IsValid();
81   void                        updateButtons();
82
83   bool                        isValid();
84   
85   SMESHGUI*                   mySMESHGUI;       /* Current SMESHGUI object */
86   LightApp_SelectionMgr*      mySelectionMgr;   /* User shape selection */
87   int                         myNbCorners;      /* The required number of corners */
88   int                         myNbMidFaceNodes;
89   int                         myNbCenterNodes;
90   bool                        myBusy;
91   SVTK_Selector*              mySelector;
92   
93   SMESH::SMESH_Mesh_var       myMesh;
94   SMESH_Actor*                myActor;
95   SMESH::TElementSimulationQuad* mySimulation;
96   QString                     myEntry;
97   GrpList                     myGroups;
98   
99   SMDSAbs_EntityType          myGeomType;
100   QLineEdit*                  myCurrentLineEdit;
101   
102   QGroupBox*                  GroupConstructors;
103   QRadioButton*               myRadioButton1;
104   
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;
116   
117   QGroupBox*                  GroupGroups;
118   QLabel*                     TextLabel_GroupName;
119   QComboBox*                  ComboBox_GroupName;
120
121   QGroupBox*                  GroupButtons;
122   QPushButton*                buttonOk;
123   QPushButton*                buttonCancel;
124   QPushButton*                buttonApply;
125   QPushButton*                buttonHelp;
126   
127   QString                     myHelpFileName;
128   
129 protected slots:
130   virtual void                reject();
131
132 private slots:
133   void                        onTextChange( const QString& );
134   void                        onCellTextChange( int, int );
135   void                        onReverse( int );
136   void                        onCellDoubleClicked( int, int );
137   
138   void                        ClickOnOk();
139   bool                        ClickOnApply();
140   void                        ClickOnHelp();
141   void                        SetCurrentSelection();
142   void                        SelectionIntoArgument();
143   void                        DeactivateActiveDialog();
144   void                        ActivateThisDialog();
145   void                        onOpenView();
146   void                        onCloseView();
147 };
148
149 #endif // SMESHGUI_ADDQUADRATICELEMENTDLG_H