You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.1 KiB
68 lines
2.1 KiB
/***************************************************************************
|
|
kgpgkeyselectiondlg.h
|
|
-------------------
|
|
copyright : (C) 2008 by Thomas Baumgart
|
|
email : ipwizard@users.sourceforge.net
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 KGPGKEYSELECTIONDLG_H
|
|
#define KGPGKEYSELECTIONDLG_H
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
|
|
#include <kdialogbase.h>
|
|
class KEditListBox;
|
|
class KLed;
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
/**
|
|
* @author Thomas Baumgart
|
|
*/
|
|
class KGpgKeySelectionDlg : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
|
|
KGpgKeySelectionDlg(TQWidget *parent=0, const char *name=0);
|
|
virtual ~KGpgKeySelectionDlg() {}
|
|
|
|
/**
|
|
* preset the key list with the given key ids in @a list
|
|
*/
|
|
void setKeys(const TQStringList& list);
|
|
|
|
/**
|
|
* Returns the list of keys currently listed in the KEditListBox
|
|
*/
|
|
const TQStringList keys(void) const { return m_listBox->items(); }
|
|
|
|
protected slots:
|
|
void slotIdChanged(void);
|
|
void slotKeyListChanged(void);
|
|
|
|
private:
|
|
KEditListBox* m_listBox;
|
|
KLed* m_keyLed;
|
|
bool m_needCheckList;
|
|
bool m_listOk;
|
|
int m_checkCount;
|
|
};
|
|
|
|
#endif
|