2013-07-24 21:53:05 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Daniel Molkentin <danimo@owncloud.com>
|
|
|
|
*
|
|
|
|
* 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MIRALL_NETWORKSETTINGS_H
|
|
|
|
#define MIRALL_NETWORKSETTINGS_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
namespace OCC {
|
2013-07-24 21:53:05 +04:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class NetworkSettings;
|
|
|
|
}
|
|
|
|
|
2015-06-29 19:56:09 +03:00
|
|
|
/**
|
|
|
|
* @brief The NetworkSettings class
|
|
|
|
* @ingroup gui
|
2015-06-26 18:07:47 +03:00
|
|
|
*/
|
2013-07-24 21:53:05 +04:00
|
|
|
class NetworkSettings : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit NetworkSettings(QWidget *parent = 0);
|
|
|
|
~NetworkSettings();
|
2015-07-20 19:15:45 +03:00
|
|
|
QSize sizeHint() const;
|
2013-07-24 21:53:05 +04:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void saveProxySettings();
|
|
|
|
void saveBWLimitSettings();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void loadProxySettings();
|
|
|
|
void loadBWLimitSettings();
|
|
|
|
|
|
|
|
Ui::NetworkSettings *_ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
} // namespace OCC
|
2013-07-24 21:53:05 +04:00
|
|
|
#endif // MIRALL_NETWORKSETTINGS_H
|