Salome HOME
IMP 10199 (add Volume Control)
[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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
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 "SalomeApp_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 displaySimulation();
86
87     SMESHGUI*                   mySMESHGUI;              /* Current SMESHGUI object */
88     SalomeApp_SelectionMgr*     mySelectionMgr;          /* User shape selection */
89     int                         myNbOkNodes;               /* to check when arguments is defined */
90     bool                        myBusy;
91     SVTK_Selector*              mySelector;
92
93     QLineEdit*                  myEditCurrentArgument;   /* Current  LineEdit */
94
95     int                         myElementType;
96     int                         myNbNodes;
97     bool                        myIsPoly;
98
99     SMESH::SMESH_Mesh_var       myMesh;
100     SMESH_Actor*                myActor;
101     SMESH::TElementSimulation*  mySimulation;
102     
103     QButtonGroup* GroupConstructors;
104     QRadioButton* Constructor1;
105     QGroupBox   * GroupButtons;
106     QPushButton * buttonOk;
107     QPushButton * buttonCancel;
108     QPushButton * buttonApply;
109     QGroupBox   * GroupC1;
110     QLabel      * TextLabelC1A1;
111     QPushButton * SelectButtonC1A1;
112     QLineEdit   * LineEditC1A1;
113
114     QCheckBox   * Reverse;
115
116 private slots:
117
118     void ClickOnOk();
119     void ClickOnCancel();
120     void ClickOnApply();
121     void SetEditCurrentArgument() ;
122     void SelectionIntoArgument() ;
123     void DeactivateActiveDialog() ;
124     void ActivateThisDialog() ;
125     void CheckBox( int );
126     void onTextChange(const QString&);
127
128 protected:
129     QGridLayout* SMESHGUI_AddMeshElementDlgLayout;
130     QGridLayout* GroupConstructorsLayout;
131     QGridLayout* GroupButtonsLayout;
132     QGridLayout* GroupC1Layout;
133 };
134
135 #endif // DIALOGBOX_ADD_FACE_H