2009-07-23 13:11:51 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 - 2009 RetroShare Team
|
|
|
|
*
|
|
|
|
* 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
|
2009-08-19 18:15:16 -04:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
2009-07-23 13:11:51 -04:00
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef _CRYPTOPAGE_H
|
|
|
|
#define _CRYPTOPAGE_H
|
|
|
|
|
2012-02-18 09:55:50 -05:00
|
|
|
#include <retroshare-gui/configpage.h>
|
2009-07-23 13:11:51 -04:00
|
|
|
#include "ui_CryptoPage.h"
|
|
|
|
|
2009-08-19 18:15:16 -04:00
|
|
|
class CryptoPage : public ConfigPage
|
2009-07-23 13:11:51 -04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Default Constructor */
|
2013-10-18 17:10:33 -04:00
|
|
|
CryptoPage(QWidget * parent = 0, Qt::WindowFlags flags = 0);
|
2009-07-23 13:11:51 -04:00
|
|
|
/** Default Destructor */
|
2010-05-07 19:58:17 -04:00
|
|
|
~CryptoPage();
|
2009-07-23 13:11:51 -04:00
|
|
|
|
|
|
|
/** Saves the changes on this page */
|
2012-02-18 09:55:50 -05:00
|
|
|
virtual bool save(QString &errmsg);
|
2009-07-23 13:11:51 -04:00
|
|
|
/** Loads the settings for this page */
|
|
|
|
|
2014-12-23 20:40:08 -05:00
|
|
|
virtual QPixmap iconPixmap() const { return QPixmap(":/images/contact22.png") ; }
|
2014-09-25 16:14:21 -04:00
|
|
|
virtual QString pageName() const { return tr("Node") ; }
|
2013-10-09 05:31:40 -04:00
|
|
|
virtual QString helpText() const { return ""; }
|
2012-02-18 09:55:50 -05:00
|
|
|
|
2009-07-23 13:11:51 -04:00
|
|
|
private slots:
|
2012-02-18 09:55:50 -05:00
|
|
|
virtual void load();
|
2009-07-23 13:11:51 -04:00
|
|
|
void copyPublicKey();
|
2012-01-24 17:31:53 -05:00
|
|
|
void copyRSLink() ;
|
2013-02-22 16:42:27 -05:00
|
|
|
virtual void showEvent ( QShowEvent * event );
|
|
|
|
void profilemanager();
|
2010-01-29 18:34:16 -05:00
|
|
|
bool fileSave();
|
|
|
|
bool fileSaveAs();
|
2009-07-23 13:11:51 -04:00
|
|
|
|
|
|
|
private:
|
2010-01-29 18:34:16 -05:00
|
|
|
QString fileName;
|
2009-07-23 13:11:51 -04:00
|
|
|
|
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::CryptoPage ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|