Salome HOME
Update copyright notes (for 2010)
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_AddMeshElementDlg.h
1 //  Copyright (C) 2007-2010  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
54 namespace SMESH
55 {
56   struct TElementSimulation;
57 }
58
59 //=================================================================================
60 // class    : SMESHGUI_AddMeshElementDlg
61 // purpose  :
62 //=================================================================================
63 class SMESHGUI_EXPORT SMESHGUI_AddMeshElementDlg : public QDialog
64
65   Q_OBJECT
66
67 public:
68   SMESHGUI_AddMeshElementDlg( SMESHGUI*, SMDSAbs_ElementType = SMDSAbs_Edge, int = 2 );
69   ~SMESHGUI_AddMeshElementDlg();
70   
71 private:
72   void                        Init();
73   void                        closeEvent( QCloseEvent* );
74   void                        hideEvent( QHideEvent* );     /* ESC key */
75   void                        enterEvent( QEvent* );        /* mouse enter the QWidget */
76   void                        keyPressEvent( QKeyEvent* );
77   void                        displaySimulation();
78   
79   bool                        isValid();
80   
81   SMESHGUI*                   mySMESHGUI;              /* Current SMESHGUI object */
82   LightApp_SelectionMgr*      mySelectionMgr;          /* User shape selection */
83   int                         myNbOkNodes;             /* to check when arguments is defined */
84   bool                        myBusy;
85   SVTK_Selector*              mySelector;
86   
87   QLineEdit*                  myEditCurrentArgument;   /* Current  LineEdit */
88   
89   int                         myElementType;
90   int                         myNbNodes;
91   bool                        myIsPoly;
92   
93   SMESH::SMESH_Mesh_var       myMesh;
94   SMESH_Actor*                myActor;
95   SMESH::TElementSimulation*  mySimulation;
96   QString                     myEntry;
97   
98   QGroupBox*                  GroupConstructors;
99   QRadioButton*               Constructor1;
100   QGroupBox*                  GroupGroups;
101   QLabel*                     TextLabel_GroupName;
102   QComboBox*                  ComboBox_GroupName;
103   QGroupBox*                  GroupButtons;
104   QPushButton*                buttonOk;
105   QPushButton*                buttonCancel;
106   QPushButton*                buttonApply;
107   QPushButton*                buttonHelp;
108   QGroupBox*                  GroupC1;
109   QLabel*                     TextLabelC1A1;
110   QPushButton*                SelectButtonC1A1;
111   QLineEdit*                  LineEditC1A1;
112   QCheckBox*                  Reverse;
113   
114   QString                     myHelpFileName;
115   
116 private slots:
117   void                        ClickOnOk();
118   void                        ClickOnCancel();
119   void                        ClickOnApply();
120   void                        ClickOnHelp();
121   void                        SetEditCurrentArgument();
122   void                        SelectionIntoArgument();
123   void                        DeactivateActiveDialog();
124   void                        ActivateThisDialog();
125   void                        CheckBox( int );
126   void                        onTextChange( const QString& );
127 };
128
129 #endif // SMESHGUI_ADDMESHELEMENTDLG_H