2007-11-14 22:18:48 -05:00
|
|
|
/****************************************************************
|
|
|
|
* RShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006, crypton
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef _GENCERTDIALOG_H
|
|
|
|
#define _GENCERTDIALOG_H
|
|
|
|
|
|
|
|
#include "ui_GenCertDialog.h"
|
|
|
|
|
2013-09-23 16:55:34 -04:00
|
|
|
class QMouseEvent ;
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
class GenCertDialog : public QDialog
|
|
|
|
{
|
2012-10-31 21:07:36 -04:00
|
|
|
Q_OBJECT
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
public:
|
2012-10-31 21:07:36 -04:00
|
|
|
/** Default constructor */
|
2012-11-06 18:26:47 -05:00
|
|
|
GenCertDialog(bool onlyGenerateIdentity, QWidget *parent = 0);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2013-09-23 16:55:34 -04:00
|
|
|
virtual ~GenCertDialog() ;
|
|
|
|
virtual void mouseMoveEvent(QMouseEvent *e) ;
|
2016-08-06 11:15:56 -04:00
|
|
|
QString getGXSNickname() {return mGXSNickname;}
|
2007-11-14 22:18:48 -05:00
|
|
|
private slots:
|
|
|
|
void genPerson();
|
2012-07-10 17:40:53 -04:00
|
|
|
void importIdentity();
|
|
|
|
void exportIdentity();
|
2012-10-31 21:07:36 -04:00
|
|
|
void newGPGKeyGenUiSetup();
|
2013-09-23 16:55:34 -04:00
|
|
|
void grabMouse();
|
2015-04-13 18:07:55 -04:00
|
|
|
void updateUiSetup();
|
2010-01-19 16:44:13 -05:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
private:
|
2012-10-31 21:07:36 -04:00
|
|
|
void init();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2012-10-31 21:07:36 -04:00
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::GenCertDialog ui;
|
2012-08-07 15:16:17 -04:00
|
|
|
|
2012-10-31 21:07:36 -04:00
|
|
|
bool genNewGPGKey;
|
2015-05-21 05:03:58 -04:00
|
|
|
bool haveGPGKeys;
|
2012-10-31 21:07:36 -04:00
|
|
|
bool mOnlyGenerateIdentity;
|
2016-08-06 11:15:56 -04:00
|
|
|
QString mGXSNickname;
|
2013-09-23 16:55:34 -04:00
|
|
|
|
|
|
|
QTimer *entropy_timer ;
|
2007-11-14 22:18:48 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|