summaryrefslogtreecommitdiffstats
path: root/kdesktop/lock/infodlg.h
blob: 3daf4d2cec44d805c7034294d70e4452b5d5c531 (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
//===========================================================================
//
// This file is part of the TDE project
//
// Copyright (c) 2010 - 2015 Timothy Pearson <kb9vqf@pearsoncomputing.net>
//

#ifndef __INFODLG_H__
#define __INFODLG_H__

#include <tqdialog.h>
#include <tqstringlist.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 InfoDlg : public TQDialog
{
	Q_OBJECT

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

		void updateLabel( TQString &txt );
		void setUnlockIcon();
		void setKDEIcon();
		void setInfoIcon();
		void setWarningIcon();
		void setErrorIcon();

	private:
		TQFrame      *frame;
		TQGridLayout *frameLayout;
		TQLabel      *mStatusLabel;
		TQLabel      *mpixLabel;
		int         mCapsLocked;
		bool        mUnlockingFailed;
		TQStringList layoutsList;
		TQStringList::iterator currLayout;
		int         sPid, sFd;
};

#endif