blob: 9b9b6d4674657278e83f25fff1a536125fbefb8f (
plain) (
tree)
|
|
// 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();
virtual ~PreferencesNetwork();
virtual void refreshSettings();
virtual void syncSettings();
public slots:
void proxyType_changed(int i);
void updateCloudAuthenticationState();
private:
Ui::PreferencesNetwork *ui;
void passwordUpdateSuccessful();
};
#endif
|