mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
3eb5ea9adf
This must be the number one support request we get. I can't believe we never thought of adding a button to do this. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
29 lines
534 B
C++
29 lines
534 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();
|
|
void on_resetPassword_clicked();
|
|
|
|
private:
|
|
Ui::PreferencesCloud *ui;
|
|
};
|
|
|
|
#endif
|