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:
Tomaz Canabrava 2015-10-01 19:48:57 -03:00 committed by Dirk Hohndel
parent cfecd1a9ab
commit d9595ad266
8 changed files with 496 additions and 518 deletions

View 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