Salome HOME
The selections of elements corrected.
[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_ViewWindow*            myViewWindow;
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     QGroupBox   * GroupC1;
111     QLabel      * TextLabelC1A1;
112     QPushButton * SelectButtonC1A1;
113     QLineEdit   * LineEditC1A1;
114
115     QCheckBox   * Reverse;
116
117 private slots:
118
119     void ClickOnOk();
120     void ClickOnCancel();
121     void ClickOnApply();
122     void SetEditCurrentArgument() ;
123     void SelectionIntoArgument() ;
124     void DeactivateActiveDialog() ;
125     void ActivateThisDialog() ;
126     void CheckBox( int );
127     void onTextChange(const QString&);
128
129 protected:
130     QGridLayout* SMESHGUI_AddMeshElementDlgLayout;
131     QGridLayout* GroupConstructorsLayout;
132     QGridLayout* GroupButtonsLayout;
133     QGridLayout* GroupC1Layout;
134 };
135
136 #endif // DIALOGBOX_ADD_FACE_H