Salome HOME
PR: synchro V7_main tag mergefrom_V6_main_28Feb13
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_AddMeshElementDlg.h
1 // Copyright (C) 2007-2012  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
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_AddMeshElementDlg.h
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_ADDMESHELEMENTDLG_H
28 #define SMESHGUI_ADDMESHELEMENTDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32
33 #include <SMDSAbs_ElementType.hxx>
34
35 // Qt includes
36 #include <QDialog>
37
38 // IDL includes
39 #include <SALOMEconfig.h>
40 #include CORBA_SERVER_HEADER(SMESH_Mesh)
41
42 class QComboBox;
43 class QGroupBox;
44 class QLabel;
45 class QLineEdit;
46 class QPushButton;
47 class QRadioButton;
48 class QCheckBox;
49 class SMESHGUI;
50 class SMESH_Actor;
51 class SVTK_Selector;
52 class LightApp_SelectionMgr;
53 class SMESHGUI_SpinBox;
54
55 namespace SMESH
56 {
57   struct TElementSimulation;
58 }
59
60 //=================================================================================
61 // class    : SMESHGUI_AddMeshElementDlg
62 // purpose  :
63 //=================================================================================
64 class SMESHGUI_EXPORT SMESHGUI_AddMeshElementDlg : public QDialog
65
66   Q_OBJECT
67
68 public:
69   SMESHGUI_AddMeshElementDlg( SMESHGUI*, SMDSAbs_EntityType = SMDSEntity_Edge );
70   ~SMESHGUI_AddMeshElementDlg();
71   
72 private:
73   void                        Init();
74   void                        enterEvent( QEvent* );        /* mouse enter the QWidget */
75   void                        keyPressEvent( QKeyEvent* );
76   void                        displaySimulation();
77   
78   bool                        isValid();
79   
80   typedef QList<SMESH::SMESH_GroupBase_var> GrpList;
81   
82   SMESHGUI*                   mySMESHGUI;              /* Current SMESHGUI object */
83   LightApp_SelectionMgr*      mySelectionMgr;          /* User shape selection */
84   int                         myNbOkNodes;             /* to check when arguments is defined */
85   bool                        myBusy;
86   SVTK_Selector*              mySelector;
87   
88   QLineEdit*                  myEditCurrentArgument;   /* Current  LineEdit */
89   
90   SMDSAbs_EntityType          myGeomType;
91   int                         myElementType;
92   int                         myNbNodes;
93   bool                        myIsPoly;
94   
95   SMESH::SMESH_Mesh_var       myMesh;
96   SMESH_Actor*                myActor;
97   SMESH::TElementSimulation*  mySimulation;
98   QString                     myEntry;
99   GrpList                     myGroups;
100   
101   QGroupBox*                  GroupConstructors;
102   QRadioButton*               Constructor1;
103   QGroupBox*                  GroupGroups;
104   QLabel*                     TextLabel_GroupName;
105   QComboBox*                  ComboBox_GroupName;
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   QCheckBox*                  Reverse;
116   SMESHGUI_SpinBox*           DiameterSpinBox;
117   
118   QString                     myHelpFileName;
119   
120 protected slots:
121   virtual void                reject();
122
123 private slots:
124   void                        ClickOnOk();
125   void                        ClickOnApply();
126   void                        ClickOnHelp();
127   void                        SetEditCurrentArgument();
128   void                        SelectionIntoArgument();
129   void                        DeactivateActiveDialog();
130   void                        ActivateThisDialog();
131   void                        CheckBox( int );
132   void                        onTextChange( const QString& );
133 };
134
135 #endif // SMESHGUI_ADDMESHELEMENTDLG_H