diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 2bda8f7717adf28da4af0d34fb82f63d2868c31d (patch) | |
tree | 8d927b7b47a90c4adb646482a52613f58acd6f8c /kgpg/keyservers.h | |
download | tdeutils-2bda8f7717adf28da4af0d34fb82f63d2868c31d.tar.gz tdeutils-2bda8f7717adf28da4af0d34fb82f63d2868c31d.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kgpg/keyservers.h')
-rw-r--r-- | kgpg/keyservers.h | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/kgpg/keyservers.h b/kgpg/keyservers.h new file mode 100644 index 0000000..e17af85 --- /dev/null +++ b/kgpg/keyservers.h @@ -0,0 +1,81 @@ +/*************************************************************************** + keyservers.h - description + ------------------- + begin : Tue Nov 26 2002 + copyright : (C) 2002 by Jean-Baptiste Mardelle + email : bj@altern.org + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef KEYSERVERS_H +#define KEYSERVERS_H + +#include <kdialogbase.h> +#include "keyserver.h" + +class KListViewItem; +class KSimpleConfig; +class KProcIO; +class KProcess; + +class searchRes; + +class keyServer : public KDialogBase +{ + Q_OBJECT +public: + keyServer(QWidget *parent=0, const char *name=0,bool modal=false,bool autoClose=false); + ~keyServer(); + keyServerWidget *page; + +public slots: + void abortImport(); + void abortExport(); + void abortSearch(); + void transferKeyID(); + void slotsearchread(KProcIO *p); + void slotOk(); + void syncCombobox(); + void slotImport(); + void slotSearch(); + void slotimportresult(KProcess*); + void slotexportresult(KProcess*); + void slotimportread(KProcIO *p); + void slotprocread(KProcIO *p); + void slotPreExport(); + void slotExport(QStringList keyIds); + void preimport(); + void slotsearchresult(KProcess *); + void slotEnableProxyI(bool on); + void slotEnableProxyE(bool on); + void handleQuit(); + void slotTextChanged( const QString &text); + +private: + + QDialog *importpop; + KSimpleConfig *config; + uint keyNumbers; + QString readmessage; + KProcIO *importproc,*exportproc; + KProcIO *searchproc; + searchRes *listpop; + int count; + bool cycle,autoCloseWindow; + KListViewItem *kitem; + KDialogBase *dialogServer; + +signals: + void importFinished(QString); +}; + +#endif // KEYSERVERS_H + |