mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
c121afc96c
Split the Network Preferences page into two screens: 1) Network preferences 2) Cloud storage preferences Enable storing these preferences locally. Signed-off-by: willemferguson <willemferguson@zoology.up.ac.za> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
27 lines
472 B
C++
27 lines
472 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef PREFERENCES_NETWORK_H
|
|
#define PREFERENCES_NETWORK_H
|
|
|
|
#include "abstractpreferenceswidget.h"
|
|
|
|
namespace Ui {
|
|
class PreferencesNetwork;
|
|
}
|
|
|
|
class PreferencesNetwork : public AbstractPreferencesWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PreferencesNetwork();
|
|
~PreferencesNetwork();
|
|
void refreshSettings() override;
|
|
void syncSettings() override;
|
|
|
|
public slots:
|
|
void proxyType_changed(int i);
|
|
|
|
private:
|
|
Ui::PreferencesNetwork *ui;
|
|
};
|
|
|
|
#endif
|