mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-27 08:05:41 +00:00
34 lines
869 B
C++
34 lines
869 B
C++
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#pragma once
|
|
#include <QtWidgets/QWidget>
|
|
#include "ui_achievementsettingswidget.h"
|
|
|
|
class SettingsDialog;
|
|
|
|
class AchievementSettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AchievementSettingsWidget(SettingsDialog* dialog, QWidget* parent);
|
|
~AchievementSettingsWidget();
|
|
|
|
private Q_SLOTS:
|
|
void updateEnableState();
|
|
void onHardcoreModeStateChanged();
|
|
void onAchievementsNotificationDurationSliderChanged();
|
|
void onLeaderboardsNotificationDurationSliderChanged();
|
|
void onLoginLogoutPressed();
|
|
void onViewProfilePressed();
|
|
void onAchievementsRefreshed(quint32 id, const QString& game_info_string);
|
|
|
|
private:
|
|
void updateLoginState();
|
|
|
|
Ui::AchievementSettingsWidget m_ui;
|
|
|
|
SettingsDialog* m_dialog;
|
|
};
|