Salome HOME
PAL19566
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_AddQuadraticElementDlg.h
1 // SMESH SMESHGUI : GUI for SMESH component
2 //
3 // Copyright (C) 2005  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. 
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 // File   : SMESHGUI_AddMeshElementDlg.h
23 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
24 //
25
26 #ifndef SMESHGUI_ADDQUADRATICELEMENTDLG_H
27 #define SMESHGUI_ADDQUADRATICELEMENTDLG_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // Qt includes
33 #include <QDialog>
34
35 // IDL includes
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38
39 class QGroupBox;
40 class QLineEdit;
41 class QPushButton;
42 class QRadioButton;
43 class QCheckBox;
44 class QTableWidget;
45 class SMESHGUI;
46 class SMESH_Actor;
47 class SVTK_Selector;
48 class LightApp_SelectionMgr;
49
50 namespace SMESH
51 {
52   struct TElementSimulation;
53 }
54
55 enum { QUAD_EDGE, QUAD_TRIANGLE, QUAD_QUADRANGLE, QUAD_TETRAHEDRON, 
56        QUAD_PYRAMID, QUAD_PENTAHEDRON, QUAD_HEXAHEDRON };
57
58 //=================================================================================
59 // class    : SMESHGUI_AddQuadraticElementDlg
60 // purpose  :
61 //=================================================================================
62 class SMESHGUI_EXPORT SMESHGUI_AddQuadraticElementDlg : public QDialog
63
64   Q_OBJECT
65
66 public:
67   SMESHGUI_AddQuadraticElementDlg( SMESHGUI*, const int );
68   ~SMESHGUI_AddQuadraticElementDlg();
69   
70 private:
71   void                        Init();
72   void                        closeEvent( QCloseEvent* );
73   void                        hideEvent( QHideEvent* );    /* ESC key */
74   void                        enterEvent( QEvent* );       /* mouse enter the QWidget */
75   void                        keyPressEvent( QKeyEvent* );
76   void                        displaySimulation();
77   void                        UpdateTable( bool = true );
78   bool                        IsValid();
79
80   SMESHGUI*                   mySMESHGUI;       /* Current SMESHGUI object */
81   LightApp_SelectionMgr*      mySelectionMgr;   /* User shape selection */
82   int                         myNbCorners;      /* The required number of corners */
83   bool                        myBusy;
84   SVTK_Selector*              mySelector;
85   
86   SMESH::SMESH_Mesh_var       myMesh;
87   SMESH_Actor*                myActor;
88   SMESH::TElementSimulation*  mySimulation;
89   
90   int                         myType;
91   bool                        myIsEditCorners;
92   
93   QGroupBox*                  GroupConstructors;
94   QRadioButton*               myRadioButton1;
95   
96   QGroupBox*                  GroupArguments;
97   QLineEdit*                  myCornerNodes;
98   QPushButton*                mySelectButton;
99   QTableWidget*               myTable;
100   QCheckBox*                  myReverseCB;
101   
102   QGroupBox*                  GroupButtons;
103   QPushButton*                buttonOk;
104   QPushButton*                buttonCancel;
105   QPushButton*                buttonApply;
106   QPushButton*                buttonHelp;
107   
108   QString                     myHelpFileName;
109   
110 private slots:
111   void                        onTextChange( const QString& );
112   void                        onCellTextChange( int, int );
113   void                        onReverse( int );
114   void                        onCellDoubleClicked( int, int );
115   
116   void                        ClickOnOk();
117   void                        ClickOnCancel();
118   void                        ClickOnApply();
119   void                        ClickOnHelp();
120   void                        SetEditCorners();
121   void                        SelectionIntoArgument();
122   void                        DeactivateActiveDialog();
123   void                        ActivateThisDialog();
124 };
125
126 #endif // SMESHGUI_ADDQUADRATICELEMENTDLG_H