summaryrefslogtreecommitdiffstats
path: root/tdesu/tdesu/sudlg.h
blob: 669eea8e747c287a85fed9cb546443c24e42a23a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 *
 * This file is part of the KDE project, module tdesu.
 * Copyright (C) 2000 Geert Jansen <jansen@kde.org>
 */

#ifndef __SuDlg_h_Included__
#define __SuDlg_h_Included__

#include <kpassdlg.h>

class TDEsuDialog
    : public KPasswordDialog
{
    TQ_OBJECT

public:
    TDEsuDialog(TQCString user, TQCString auth_user, bool enableKeep, const TQString& icon , bool withIgnoreButton=false, int timeout=-1);
    ~TDEsuDialog();

    enum ResultCodes { AsUser = 10 };
    
protected:
    bool checkPassword(const TQString &password);
    void slotUser1();
    
private:
    TQCString m_User;
};
    

#endif // __SuDlg_h_Included__