Added AchievementHeaderWidget to AchievementsWindow

This widget displays a header on the AchievementsWindow dialog above the tabs that shows the currently logged in user (if there is one) and the game they are playing (if there is one).
This commit is contained in:
LillyJadeKatrin
2023-06-02 21:20:42 -04:00
parent f700faf6ab
commit ebe77f149f
6 changed files with 193 additions and 0 deletions

View File

@ -6,6 +6,7 @@
#ifdef USE_RETRO_ACHIEVEMENTS
#include <QDialog>
class AchievementHeaderWidget;
class QTabWidget;
class QDialogButtonBox;
@ -21,6 +22,7 @@ private:
void showEvent(QShowEvent* event);
void ConnectWidgets();
AchievementHeaderWidget* m_header_widget;
QTabWidget* m_tab_widget;
QDialogButtonBox* m_button_box;
};