Salome HOME
Fix bug 12796: Warning missed for the bad file 'test18.med'
[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 //
23 //
24 //  File   : SMESHGUI_AddMeshElementDlg.h
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef DIALOGBOX_ADD_FACE_H
30 #define DIALOGBOX_ADD_FACE_H
31
32 #include "LightApp_SelectionMgr.h"
33
34 #include "SMDSAbs_ElementType.hxx"
35
36
37 // QT Includes
38 #include <qvariant.h>
39 #include <qdialog.h>
40
41 class QVBoxLayout; 
42 class QHBoxLayout; 
43 class QGridLayout; 
44 class QButtonGroup;
45 class QGroupBox;
46 class QLabel;
47 class QLineEdit;
48 class QPushButton;
49 class QRadioButton;
50 class QCheckBox;
51 class SMESHGUI;
52 class SMESH_Actor;
53 class SMDS_Mesh;
54 class SVTK_ViewWindow;
55 class SVTK_Selector;
56
57 namespace SMESH{
58   struct TElementSimulation;
59 }
60
61 // IDL Headers
62 #include <SALOMEconfig.h>
63 #include CORBA_SERVER_HEADER(SMESH_Mesh)
64
65 //=================================================================================
66 // class    : SMESHGUI_AddMeshElementDlg
67 // purpose  :
68 //=================================================================================
69 class SMESHGUI_AddMeshElementDlg : public QDialog
70
71     Q_OBJECT
72
73 public:
74     SMESHGUI_AddMeshElementDlg( SMESHGUI*,
75                                 const char* = 0, 
76                                 SMDSAbs_ElementType ElementType = SMDSAbs_Edge,
77                                 int nbNodes = 2, bool modal = FALSE, WFlags fl = 0 );
78     ~SMESHGUI_AddMeshElementDlg();
79
80 private:
81     void Init ();
82     void closeEvent (QCloseEvent*);
83     void hideEvent (QHideEvent*);                 /* ESC key */
84     void enterEvent (QEvent*);                    /* mouse enter the QWidget */
85     void keyPressEvent(QKeyEvent*);
86     void displaySimulation();
87
88     SMESHGUI*                   mySMESHGUI;              /* Current SMESHGUI object */
89     LightApp_SelectionMgr*      mySelectionMgr;          /* User shape selection */
90     int                         myNbOkNodes;               /* to check when arguments is defined */
91     bool                        myBusy;
92     SVTK_Selector*              mySelector;
93
94     QLineEdit*                  myEditCurrentArgument;   /* Current  LineEdit */
95
96     int                         myElementType;
97     int                         myNbNodes;
98     bool                        myIsPoly;
99
100     SMESH::SMESH_Mesh_var       myMesh;
101     SMESH_Actor*                myActor;
102     SMESH::TElementSimulation*  mySimulation;
103     
104     QButtonGroup* GroupConstructors;
105     QRadioButton* Constructor1;
106     QGroupBox   * GroupButtons;
107     QPushButton * buttonOk;
108     QPushButton * buttonCancel;
109     QPushButton * buttonApply;
110     QPushButton * buttonHelp;
111     QGroupBox   * GroupC1;
112     QLabel      * TextLabelC1A1;
113     QPushButton * SelectButtonC1A1;
114     QLineEdit   * LineEditC1A1;
115
116     QCheckBox   * Reverse;
117
118     QString       myHelpFileName;
119
120 private slots:
121
122     void ClickOnOk();
123     void ClickOnCancel();
124     void ClickOnApply();
125     void ClickOnHelp();
126     void SetEditCurrentArgument() ;
127     void SelectionIntoArgument() ;
128     void DeactivateActiveDialog() ;
129     void ActivateThisDialog() ;
130     void CheckBox( int );
131     void onTextChange(const QString&);
132
133 protected:
134     QGridLayout* SMESHGUI_AddMeshElementDlgLayout;
135     QGridLayout* GroupConstructorsLayout;
136     QGridLayout* GroupButtonsLayout;
137     QGridLayout* GroupC1Layout;
138 };
139
140 #endif // DIALOGBOX_ADD_FACE_H