summaryrefslogtreecommitdiffstats
path: root/kdesktop/lock/securedlg.h
blob: 9ad0ac1dab778f5036d9ca26c8e1f16aed333433 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//===========================================================================
//
// This file is part of the TDE project
//
// Copyright (c) 2010 - 2015 Timothy Pearson <kb9vqf@pearsoncomputing.net>
//

#ifndef __SECUREDLG_H__
#define __SECUREDLG_H__

#include <tqdialog.h>
#include <tqstringlist.h>
#include <tqbutton.h>

#include "lockprocess.h"

class TQFrame;
class TQGridLayout;
class TQLabel;
class KPushButton;
class TQListView;

//===========================================================================
//
// Simple dialog for displaying an info message.
// It does not handle password validation.
//
class SecureDlg : public TQDialog
{
	Q_OBJECT

	public:
		SecureDlg(LockProcess *parent);
		~SecureDlg();
		virtual void show();

		void closeDialogForced();
		void setRetInt(int *);

	private slots:
		void slotBtnCancel();
		void slotBtnLock();
		void slotBtnTask();
		void slotBtnShutdown();
		void slotBtnSwitchUser();

	protected slots:
		virtual void reject();

	private:
		TQFrame      *frame;
		TQGridLayout *frameLayout;
		TQLabel      *mLogonStatus;
		TQButton     *mCancelButton;
		TQButton     *mLockButton;
		TQButton     *mTaskButton;
		TQButton     *mShutdownButton;
		TQButton     *mSwitchButton;
		int         mCapsLocked;
		bool        mUnlockingFailed;
		TQStringList layoutsList;
		TQStringList::iterator currLayout;
		int         sPid, sFd;
		int*        retInt;
};

#endif