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
|
|
|
|
2009-08-19 18:15:16 -04:00
|
|
|
#include "configpage.h"
|
|
|
|
#include "ui_ServerPage.h"
|
|
|
|
|
|
|
|
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:
|
|
|
|
ServerPage(QWidget * parent = 0, Qt::WFlags flags = 0);
|
|
|
|
~ServerPage() {}
|
2009-08-19 18:15:16 -04:00
|
|
|
|
2009-07-23 13:11:51 -04:00
|
|
|
/** Saves the changes on this page */
|
|
|
|
bool save(QString &errmsg);
|
|
|
|
/** Loads the settings for this page */
|
|
|
|
void load();
|
|
|
|
|
|
|
|
public slots:
|
2011-06-14 20:40:07 -04:00
|
|
|
void updateStatus();
|
2009-07-23 13:11:51 -04:00
|
|
|
|
|
|
|
private slots:
|
2011-06-14 20:40:07 -04:00
|
|
|
void saveAddresses();
|
|
|
|
void toggleUPnP();
|
|
|
|
void toggleIpDetermination(bool) ;
|
|
|
|
void toggleTunnelConnection(bool) ;
|
2009-08-19 18:15:16 -04:00
|
|
|
|
2011-06-14 20:40:07 -04:00
|
|
|
private:
|
|
|
|
Ui::ServerPage ui;
|
2009-07-23 13:11:51 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !SERVERPAGE_H
|
|
|
|
|