Salome HOME
Portation on new based dialog
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_GroupOpDlg.h
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
19 //
20 //
21 //
22 //  File   : SMESHGUI_GroupOpDlg.h
23 //  Author : Sergey LITONIN
24 //  Module : SMESH
25
26
27 #ifndef SMESHGUI_GroupOpDlg_H
28 #define SMESHGUI_GroupOpDlg_H
29
30 #include <SMESHGUI_Dialog.h>
31
32 /*
33   Class       : SMESHGUI_GroupOpDlg
34   Description : Perform boolean operations on groups
35 */
36
37 class SMESHGUI;
38 class QLineEdit;
39
40 class SMESHGUI_GroupOpDlg : public SMESHGUI_Dialog
41
42   Q_OBJECT
43
44 public:
45   SMESHGUI_GroupOpDlg( const int );
46   virtual ~SMESHGUI_GroupOpDlg();
47
48   void    setName( const QString& );
49   QString name() const;
50
51 signals:
52   void nameChanged( const QString& );
53
54 private:
55   QLineEdit*                myNameEdit;
56 };
57
58 #endif