diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-04-08 19:49:36 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-04-08 19:49:36 +0000 |
commit | ec0fd51b646f8489b6e83f155c16432d361ce439 (patch) | |
tree | f5ef3afbe5beaf4ac78166917a8088d3999ddd74 /kdesktop/lock/querydlg.h | |
parent | 40ae80c2a07a020c5cffe9b2487a8778c6158296 (diff) | |
download | tdebase-ec0fd51b646f8489b6e83f155c16432d361ce439.tar.gz tdebase-ec0fd51b646f8489b6e83f155c16432d361ce439.zip |
Added missing file
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1112682 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdesktop/lock/querydlg.h')
-rw-r--r-- | kdesktop/lock/querydlg.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/kdesktop/lock/querydlg.h b/kdesktop/lock/querydlg.h new file mode 100644 index 000000000..caf73c180 --- /dev/null +++ b/kdesktop/lock/querydlg.h @@ -0,0 +1,59 @@ +//=========================================================================== +// +// This file is part of the KDE project +// +// Copyright (c) 2010 Timothy Pearson <[email protected]> +// + +#ifndef __QUERYDLG_H__ +#define __QUERYDLG_H__ + +#include <qdialog.h> +#include <qstringlist.h> + +#include <kpassdlg.h> + +class QFrame; +class QGridLayout; +class QLabel; +class KPushButton; +class QListView; + +//=========================================================================== +// +// Simple dialog for displaying an query dialog. +// It does not handle password validation. +// +class QueryDlg : public QDialog +{ + Q_OBJECT + +public: + QueryDlg(LockProcess *parent); + ~QueryDlg(); + virtual void show(); + + void updateLabel( QString &txt ); + void setUnlockIcon(); + void setWarningIcon(); + const char * getEntry(); + +private slots: + void slotOK(); + +private: + QFrame *frame; + QGridLayout *frameLayout; + QLabel *mStatusLabel; + QLabel *mpixLabel; + int mCapsLocked; + bool mUnlockingFailed; + QStringList layoutsList; + QStringList::iterator currLayout; + int sPid, sFd; + KPushButton *ok; + KPasswordEdit *pin_box; +}; + +#endif + |