Salome HOME
correct previous integration (Porting to Python 2.6)
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_AddQuadraticElementDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, 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.
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 // SMESH SMESHGUI : GUI for SMESH component
23 // File   : SMESHGUI_AddMeshElementDlg.h
24 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
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   void                        updateButtons();
80
81   SMESHGUI*                   mySMESHGUI;       /* Current SMESHGUI object */
82   LightApp_SelectionMgr*      mySelectionMgr;   /* User shape selection */
83   int                         myNbCorners;      /* The required number of corners */
84   bool                        myBusy;
85   SVTK_Selector*              mySelector;
86   
87   SMESH::SMESH_Mesh_var       myMesh;
88   SMESH_Actor*                myActor;
89   SMESH::TElementSimulation*  mySimulation;
90   
91   int                         myType;
92   bool                        myIsEditCorners;
93   
94   QGroupBox*                  GroupConstructors;
95   QRadioButton*               myRadioButton1;
96   
97   QGroupBox*                  GroupArguments;
98   QLineEdit*                  myCornerNodes;
99   QPushButton*                mySelectButton;
100   QTableWidget*               myTable;
101   QCheckBox*                  myReverseCB;
102   
103   QGroupBox*                  GroupButtons;
104   QPushButton*                buttonOk;
105   QPushButton*                buttonCancel;
106   QPushButton*                buttonApply;
107   QPushButton*                buttonHelp;
108   
109   QString                     myHelpFileName;
110   
111 private slots:
112   void                        onTextChange( const QString& );
113   void                        onCellTextChange( int, int );
114   void                        onReverse( int );
115   void                        onCellDoubleClicked( int, int );
116   
117   void                        ClickOnOk();
118   void                        ClickOnCancel();
119   void                        ClickOnApply();
120   void                        ClickOnHelp();
121   void                        SetEditCorners();
122   void                        SelectionIntoArgument();
123   void                        DeactivateActiveDialog();
124   void                        ActivateThisDialog();
125 };
126
127 #endif // SMESHGUI_ADDQUADRATICELEMENTDLG_H