Salome HOME
a214237e9fdaa0c3a5c164fa0ff6da200bdcfc17
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_AddMeshElementDlg.h
1 // SMESH SMESHGUI : GUI for SMESH component
2 //
3 // Copyright (C) 2003  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_ADDMESHELEMENTDLG_H
27 #define SMESHGUI_ADDMESHELEMENTDLG_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
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 QGroupBox;
42 class QLabel;
43 class QLineEdit;
44 class QPushButton;
45 class QRadioButton;
46 class QCheckBox;
47 class SMESHGUI;
48 class SMESH_Actor;
49 class SVTK_Selector;
50 class LightApp_SelectionMgr;
51
52 namespace SMESH
53 {
54   struct TElementSimulation;
55 }
56
57 //=================================================================================
58 // class    : SMESHGUI_AddMeshElementDlg
59 // purpose  :
60 //=================================================================================
61 class SMESHGUI_EXPORT SMESHGUI_AddMeshElementDlg : public QDialog
62
63   Q_OBJECT
64
65 public:
66   SMESHGUI_AddMeshElementDlg( SMESHGUI*, SMDSAbs_ElementType = SMDSAbs_Edge, int = 2 );
67   ~SMESHGUI_AddMeshElementDlg();
68   
69 private:
70   void                        Init();
71   void                        closeEvent( QCloseEvent* );
72   void                        hideEvent( QHideEvent* );     /* ESC key */
73   void                        enterEvent( QEvent* );        /* mouse enter the QWidget */
74   void                        keyPressEvent( QKeyEvent* );
75   void                        displaySimulation();
76   
77   SMESHGUI*                   mySMESHGUI;              /* Current SMESHGUI object */
78   LightApp_SelectionMgr*      mySelectionMgr;          /* User shape selection */
79   int                         myNbOkNodes;             /* to check when arguments is defined */
80   bool                        myBusy;
81   SVTK_Selector*              mySelector;
82   
83   QLineEdit*                  myEditCurrentArgument;   /* Current  LineEdit */
84   
85   int                         myElementType;
86   int                         myNbNodes;
87   bool                        myIsPoly;
88   
89   SMESH::SMESH_Mesh_var       myMesh;
90   SMESH_Actor*                myActor;
91   SMESH::TElementSimulation*  mySimulation;
92   
93   QGroupBox*                  GroupConstructors;
94   QRadioButton*               Constructor1;
95   QGroupBox*                  GroupButtons;
96   QPushButton*                buttonOk;
97   QPushButton*                buttonCancel;
98   QPushButton*                buttonApply;
99   QPushButton*                buttonHelp;
100   QGroupBox*                  GroupC1;
101   QLabel*                     TextLabelC1A1;
102   QPushButton*                SelectButtonC1A1;
103   QLineEdit*                  LineEditC1A1;
104   QCheckBox*                  Reverse;
105   
106   QString                     myHelpFileName;
107   
108 private slots:
109   void                        ClickOnOk();
110   void                        ClickOnCancel();
111   void                        ClickOnApply();
112   void                        ClickOnHelp();
113   void                        SetEditCurrentArgument();
114   void                        SelectionIntoArgument();
115   void                        DeactivateActiveDialog();
116   void                        ActivateThisDialog();
117   void                        CheckBox( int );
118   void                        onTextChange( const QString& );
119 };
120
121 #endif // SMESHGUI_ADDMESHELEMENTDLG_H