mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Preferences: move network preferences to the new dialog
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
cfecd1a9ab
commit
d9595ad266
8 changed files with 496 additions and 518 deletions
26
desktop-widgets/preferences/preferences_network.h
Normal file
26
desktop-widgets/preferences/preferences_network.h
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#ifndef PREFERENCES_NETWORK_H
|
||||
#define PREFERENCES_NETWORK_H
|
||||
|
||||
#include "abstractpreferenceswidget.h"
|
||||
|
||||
namespace Ui {
|
||||
class PreferencesNetwork;
|
||||
}
|
||||
|
||||
class PreferencesNetwork : public AbstractPreferencesWidget {
|
||||
Q_OBJECT
|
||||
public:
|
||||
PreferencesNetwork();
|
||||
virtual ~PreferencesNetwork();
|
||||
virtual void refreshSettings();
|
||||
virtual void syncSettings();
|
||||
|
||||
private:
|
||||
Ui::PreferencesNetwork *ui;
|
||||
|
||||
void cloudPinNeeded();
|
||||
void proxyType_changed(int i);
|
||||
void passwordUpdateSuccessfull();
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue