mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
DolphinQt: GameList!
This commit is contained in:
@ -9,6 +9,7 @@
|
||||
|
||||
#include "Core/Core.h"
|
||||
|
||||
#include "DolphinQt/GameList/GameTracker.h"
|
||||
#include "DolphinQt/VideoInterface/RenderWidget.h"
|
||||
|
||||
// Predefinitions
|
||||
@ -42,6 +43,9 @@ private slots:
|
||||
void OnPlay();
|
||||
void OnStop();
|
||||
|
||||
// View menu
|
||||
void OnGameListStyleChanged();
|
||||
|
||||
// Help menu
|
||||
void OnOpenWebsite();
|
||||
void OnOpenDocs();
|
||||
@ -54,13 +58,14 @@ private slots:
|
||||
|
||||
private:
|
||||
std::unique_ptr<Ui::DMainWindow> m_ui;
|
||||
DGameTracker* m_game_tracker;
|
||||
|
||||
// Emulation
|
||||
QString RequestBootFilename();
|
||||
QString ShowFileDialog();
|
||||
void DoStartPause();
|
||||
|
||||
std::unique_ptr<DRenderWidget> m_render_widget;
|
||||
std::unique_ptr<DRenderWidget> m_render_widget; // TODO: just create this once and reuse it
|
||||
bool m_isStopping = false;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user