mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
53 lines
1.4 KiB
C++
53 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2009,2013 Rolf Eike Beer <kde@opensource.sf-tec.de>
|
|
*/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 KGPGPRIMARYUID_H
|
|
#define KGPGPRIMARYUID_H
|
|
|
|
#include <QList>
|
|
#include <QObject>
|
|
|
|
#include "kgpguidtransaction.h"
|
|
|
|
class KGpgUidNode;
|
|
|
|
/**
|
|
* @brief transaction class to change the primary user id of a key
|
|
*/
|
|
class KGpgPrimaryUid: public KGpgUidTransaction {
|
|
Q_OBJECT
|
|
|
|
Q_DISABLE_COPY(KGpgPrimaryUid)
|
|
KGpgPrimaryUid(); // = delete C++0x
|
|
|
|
public:
|
|
/**
|
|
* @brief constructor
|
|
* @param parent parent object
|
|
* @param uid user id to become new primary one
|
|
*/
|
|
KGpgPrimaryUid(QObject *parent, KGpgUidNode *uid);
|
|
/**
|
|
* @brief destructor
|
|
*/
|
|
virtual ~KGpgPrimaryUid();
|
|
|
|
protected:
|
|
virtual bool nextLine(const QString &line);
|
|
virtual bool passphraseReceived();
|
|
|
|
private:
|
|
int m_fixargs;
|
|
};
|
|
|
|
#endif // KGPGPRIMARYUID_H
|