mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
29 lines
500 B
C
29 lines
500 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#ifndef PREFERENCES_CLOUD_H
|
||
|
#define PREFERENCES_CLOUD_H
|
||
|
|
||
|
#include "abstractpreferenceswidget.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class PreferencesCloud;
|
||
|
}
|
||
|
|
||
|
class PreferencesCloud : public AbstractPreferencesWidget {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
PreferencesCloud();
|
||
|
~PreferencesCloud();
|
||
|
void refreshSettings() override;
|
||
|
void syncSettings() override;
|
||
|
|
||
|
public slots:
|
||
|
void updateCloudAuthenticationState();
|
||
|
void passwordUpdateSuccessful();
|
||
|
|
||
|
private:
|
||
|
Ui::PreferencesCloud *ui;
|
||
|
};
|
||
|
|
||
|
#endif
|