~kubuntu-members/kgpg/4.11

1903.1.21 by Luis Ángel Fernández Fernández
ask the user before overwriting files when exporting keys
1
/*
2
 * Copyright (C) 2002 Jean-Baptiste Mardelle <bj@altern.org>
3
 * Copyright (C) 2007,2008,2009,2010,2011 Rolf Eike Beer <kde@opensource.sf-tec.de>
4
 * Copyright (C) 2011 Luis Ángel Fernández Fernández <laffdez@gmail.com>
5
 */
789 by Laurent Montel
Port to uic4
6
7
/***************************************************************************
8
 *                                                                         *
9
 *   This program is free software; you can redistribute it and/or modify  *
10
 *   it under the terms of the GNU General Public License as published by  *
11
 *   the Free Software Foundation; either version 2 of the License, or     *
12
 *   (at your option) any later version.                                   *
13
 *                                                                         *
14
 ***************************************************************************/
15
16
17
#ifndef KEYEXPORT_H
18
#define KEYEXPORT_H
19
20
#include "ui_keyexport.h"
21
1903.1.21 by Luis Ángel Fernández Fernández
ask the user before overwriting files when exporting keys
22
#include <QStringList>
23
#include <KDialog>
789 by Laurent Montel
Port to uic4
24
1903.1.21 by Luis Ángel Fernández Fernández
ask the user before overwriting files when exporting keys
25
class KeyExport : public KDialog, public Ui_KeyExport
789 by Laurent Montel
Port to uic4
26
{
1903.1.21 by Luis Ángel Fernández Fernández
ask the user before overwriting files when exporting keys
27
	Q_OBJECT
789 by Laurent Montel
Port to uic4
28
29
public:
1903.1.21 by Luis Ángel Fernández Fernández
ask the user before overwriting files when exporting keys
30
	explicit KeyExport(QWidget *parent = 0, const QStringList &keyservers = QStringList());
31
32
protected:
33
	virtual void accept();
789 by Laurent Montel
Port to uic4
34
};
35
36
#endif