mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-27 08:15:33 +01:00
27 lines
482 B
C
27 lines
482 B
C
|
// Copyright 2023 Dolphin Emulator Project
|
||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#ifdef USE_RETRO_ACHIEVEMENTS
|
||
|
#include <QDialog>
|
||
|
|
||
|
class QDialogButtonBox;
|
||
|
|
||
|
class AchievementsWindow : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit AchievementsWindow(QWidget* parent);
|
||
|
void UpdateData();
|
||
|
|
||
|
private:
|
||
|
void CreateMainLayout();
|
||
|
void showEvent(QShowEvent* event);
|
||
|
void ConnectWidgets();
|
||
|
|
||
|
QDialogButtonBox* m_button_box;
|
||
|
};
|
||
|
|
||
|
#endif // USE_RETRO_ACHIEVEMENTS
|