diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-22 01:02:36 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-22 01:02:36 -0600 |
commit | b81e43465b14836b17e4fe2dea91c78a2bdd29b3 (patch) | |
tree | 7815d61ce59a6ccb6e655ed44f5fea786f520985 /kdm/kfrontend/sakdlg.h | |
parent | 7021f40c13f949b7cb5ded32d0241d648a43bf6c (diff) | |
download | tdebase-b81e43465b14836b17e4fe2dea91c78a2bdd29b3.tar.gz tdebase-b81e43465b14836b17e4fe2dea91c78a2bdd29b3.zip |
Part 2 of prior commit
Diffstat (limited to 'kdm/kfrontend/sakdlg.h')
-rw-r--r-- | kdm/kfrontend/sakdlg.h | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/kdm/kfrontend/sakdlg.h b/kdm/kfrontend/sakdlg.h deleted file mode 100644 index a930707b1..000000000 --- a/kdm/kfrontend/sakdlg.h +++ /dev/null @@ -1,64 +0,0 @@ -//=========================================================================== -// -// This file is part of the KDE project -// -// Copyright (c) 2010 Timothy Pearson <kb9vqf@pearsoncomputing.net> -// - -#ifndef __SAKDLG_H__ -#define __SAKDLG_H__ - -#include <tqdialog.h> -#include <tqstringlist.h> - -#include <kprocess.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 SAKDlg : public TQDialog -{ - Q_OBJECT - -public: - SAKDlg(TQWidget *parent); - ~SAKDlg(); - virtual void show(); - - void updateLabel( TQString &txt ); - void closeDialogForced(); - -private slots: - void slotSAKProcessExited(); - void handleInputPipe(); - -protected slots: - virtual void reject(); - -private: - TQFrame *frame; - TQGridLayout *frameLayout; - TQLabel *mStatusLabel; - int mCapsLocked; - bool mUnlockingFailed; - TQStringList layoutsList; - TQStringList::iterator currLayout; - int sPid, sFd; - KProcess* mSAKProcess; - int mPipe_fd; - TQString mPipeFilename; - -protected: - bool closingDown; -}; - -#endif - |