Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / LightApp / LightApp_NameDlg.h
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
2 // 
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either 
6 // version 2.1 of the License.
7 // 
8 // This library is distributed in the hope that it will be useful 
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public  
14 // License along with this library; if not, write to the Free Software 
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 //  SALOME SalomeApp : implementation of desktop and GUI kernel
20 //
21 //  File   : LightApp_NameDlg.h
22 //  Author : Vadim SANDLER
23 //  Module : SALOME
24 //  $Header$
25
26 #ifndef LIGHTAPP_NAMEDLG_H
27 #define LIGHTAPP_NAMEDLG_H
28
29 #include "LightApp.h"
30 #include <qdialog.h>
31
32 class QLineEdit;
33 class QPushButton;
34
35 /*!
36   \class LightApp_NameDlg
37   Common <Rename> dialog box class
38 */
39 class LIGHTAPP_EXPORT LightApp_NameDlg : public QDialog
40
41   Q_OBJECT
42
43 public:
44   LightApp_NameDlg( QWidget* parent = 0 );
45   ~LightApp_NameDlg();
46     
47   void            setName( const QString& name );
48   QString         name();
49     
50   static QString  getName( QWidget* parent = 0, const QString& oldName = QString::null );
51     
52 protected slots:
53   void accept();
54   
55 private:
56   QPushButton*    myButtonOk;
57   QPushButton*    myButtonCancel;
58   QLineEdit*      myLineEdit;
59 };
60
61 #endif // LightApp_NAMEDLG_H