2009-07-23 13:11:51 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare 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
|
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 SERVERPAGE_H
|
2011-06-14 20:40:07 -04:00
|
|
|
#define SERVERPAGE_H
|
2009-07-23 13:11:51 -04:00
|
|
|
|
2012-02-18 09:55:50 -05:00
|
|
|
#include <retroshare-gui/configpage.h>
|
2009-08-19 18:15:16 -04:00
|
|
|
#include "ui_ServerPage.h"
|
2014-09-11 07:40:16 -04:00
|
|
|
#include "RsAutoUpdatePage.h"
|
2009-08-19 18:15:16 -04:00
|
|
|
|
2015-05-21 17:12:48 -04:00
|
|
|
class QNetworkReply;
|
2015-05-21 17:44:29 -04:00
|
|
|
class QNetworkAccessManager;
|
2013-02-22 16:42:27 -05:00
|
|
|
|
2009-08-19 18:15:16 -04:00
|
|
|
class ServerPage: public ConfigPage
|
2009-07-23 13:11:51 -04:00
|
|
|
{
|
2011-06-14 20:40:07 -04:00
|
|
|
Q_OBJECT
|
2009-07-23 13:11:51 -04:00
|
|
|
|
2011-06-14 20:40:07 -04:00
|
|
|
public:
|
2013-10-18 17:10:33 -04:00
|
|
|
ServerPage(QWidget * parent = 0, Qt::WindowFlags flags = 0);
|
2011-06-14 20:40:07 -04:00
|
|
|
~ServerPage() {}
|
2009-08-19 18:15:16 -04:00
|
|
|
|
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 */
|
2012-02-18 09:55:50 -05:00
|
|
|
virtual void load();
|
|
|
|
|
2015-05-17 06:00:00 -04:00
|
|
|
virtual QPixmap iconPixmap() const { return QPixmap(":/images/server_24x24.png") ; }
|
|
|
|
virtual QString pageName() const { return tr("Network") ; }
|
|
|
|
virtual QString helpText() const { return ""; }
|
2009-07-23 13:11:51 -04:00
|
|
|
|
|
|
|
public slots:
|
2011-06-14 20:40:07 -04:00
|
|
|
void updateStatus();
|
2009-07-23 13:11:51 -04:00
|
|
|
|
|
|
|
private slots:
|
2015-05-28 17:44:43 -04:00
|
|
|
void setGroupIpLimit(int n);
|
|
|
|
void toggleGroupIps(bool b);
|
|
|
|
void toggleAutoIncludeDHT(bool b);
|
|
|
|
void toggleAutoIncludeFriends(bool b);
|
2015-05-27 17:30:40 -04:00
|
|
|
void toggleIpFiltering(bool b);
|
|
|
|
void ipFilterContextMenu(const QPoint &);
|
|
|
|
void removeBannedIp();
|
|
|
|
void enableBannedIp();
|
2011-06-14 20:40:07 -04:00
|
|
|
void saveAddresses();
|
|
|
|
void toggleUPnP();
|
|
|
|
void toggleIpDetermination(bool) ;
|
|
|
|
void toggleTunnelConnection(bool) ;
|
2015-05-17 06:00:00 -04:00
|
|
|
void clearKnownAddressList() ;
|
2015-05-21 17:12:48 -04:00
|
|
|
void handleNetworkReply(QNetworkReply *reply);
|
|
|
|
void updateTorInProxyIndicator();
|
2009-08-19 18:15:16 -04:00
|
|
|
|
2011-06-14 20:40:07 -04:00
|
|
|
private:
|
2014-01-17 21:35:06 -05:00
|
|
|
|
2015-05-17 06:00:00 -04:00
|
|
|
// Alternative Versions for HiddenNode Mode.
|
|
|
|
void loadHiddenNode();
|
|
|
|
void updateStatusHiddenNode();
|
|
|
|
void saveAddressesHiddenNode();
|
|
|
|
void updateTorOutProxyIndicator();
|
|
|
|
void updateLocInProxyIndicator();
|
2015-05-27 17:30:40 -04:00
|
|
|
void loadFilteredIps() ;
|
2014-01-17 21:35:06 -05:00
|
|
|
|
2011-06-14 20:40:07 -04:00
|
|
|
Ui::ServerPage ui;
|
2013-02-22 16:42:27 -05:00
|
|
|
|
2015-05-21 17:44:29 -04:00
|
|
|
QNetworkAccessManager *manager ;
|
2014-01-17 21:35:06 -05:00
|
|
|
|
2015-05-17 06:00:00 -04:00
|
|
|
bool mIsHiddenNode;
|
2009-07-23 13:11:51 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !SERVERPAGE_H
|
|
|
|
|