Salome HOME
Fix of issue 0020614: EDF 1133 SMESH : Put new added elements and nodes to group
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_AddMeshElementDlg.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_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 QComboBox;
42 class QGroupBox;
43 class QLabel;
44 class QLineEdit;
45 class QPushButton;
46 class QRadioButton;
47 class QCheckBox;
48 class SMESHGUI;
49 class SMESH_Actor;
50 class SVTK_Selector;
51 class LightApp_SelectionMgr;
52
53 namespace SMESH
54 {
55   struct TElementSimulation;
56 }
57
58 //=================================================================================
59 // class    : SMESHGUI_AddMeshElementDlg
60 // purpose  :
61 //=================================================================================
62 class SMESHGUI_EXPORT SMESHGUI_AddMeshElementDlg : public QDialog
63
64   Q_OBJECT
65
66 public:
67   SMESHGUI_AddMeshElementDlg( SMESHGUI*, SMDSAbs_ElementType = SMDSAbs_Edge, int = 2 );
68   ~SMESHGUI_AddMeshElementDlg();
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   
78   bool                        isValid();
79   
80   SMESHGUI*                   mySMESHGUI;              /* Current SMESHGUI object */
81   LightApp_SelectionMgr*      mySelectionMgr;          /* User shape selection */
82   int                         myNbOkNodes;             /* to check when arguments is defined */
83   bool                        myBusy;
84   SVTK_Selector*              mySelector;
85   
86   QLineEdit*                  myEditCurrentArgument;   /* Current  LineEdit */
87   
88   int                         myElementType;
89   int                         myNbNodes;
90   bool                        myIsPoly;
91   
92   SMESH::SMESH_Mesh_var       myMesh;
93   SMESH_Actor*                myActor;
94   SMESH::TElementSimulation*  mySimulation;
95   QString                     myEntry;
96   
97   QGroupBox*                  GroupConstructors;
98   QRadioButton*               Constructor1;
99   QGroupBox*                  GroupGroups;
100   QLabel*                     TextLabel_GroupName;
101   QComboBox*                  ComboBox_GroupName;
102   QGroupBox*                  GroupButtons;
103   QPushButton*                buttonOk;
104   QPushButton*                buttonCancel;
105   QPushButton*                buttonApply;
106   QPushButton*                buttonHelp;
107   QGroupBox*                  GroupC1;
108   QLabel*                     TextLabelC1A1;
109   QPushButton*                SelectButtonC1A1;
110   QLineEdit*                  LineEditC1A1;
111   QCheckBox*                  Reverse;
112   
113   QString                     myHelpFileName;
114   
115 private slots:
116   void                        ClickOnOk();
117   void                        ClickOnCancel();
118   void                        ClickOnApply();
119   void                        ClickOnHelp();
120   void                        SetEditCurrentArgument();
121   void                        SelectionIntoArgument();
122   void                        DeactivateActiveDialog();
123   void                        ActivateThisDialog();
124   void                        CheckBox( int );
125   void                        onTextChange( const QString& );
126 };
127
128 #endif // SMESHGUI_ADDMESHELEMENTDLG_H