SVN_SILENT made messages (.desktop file)
[kdeadmin.git] / kuser / ku_pwdlg.h
blobea482d70243d8d7151da2cfbc248421477310791
1 /*
2 * Copyright (c) 1998 Denis Perchine <dyp@perchine.com>
3 * Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu>
4 * Maintained by Adriaan de Groot <groot@kde.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public
8 * License version 2 as published by the Free Software Foundation.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19 **/
21 #ifndef _KU_PWDLG_H_
22 #define _KU_PWDLG_H_
25 #include <klineedit.h>
26 #include <kdialog.h>
28 class KU_PwDlg : public KDialog {
29 Q_OBJECT
31 public:
32 KU_PwDlg( QWidget* parent = 0 );
33 ~KU_PwDlg();
35 QString getPassword() const;
36 protected slots:
37 virtual void accept();
39 private:
40 KLineEdit *lepw1;
41 KLineEdit *lepw2;
44 #endif // _KU_PWDLG_H_