summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/game_list.h
diff options
context:
space:
mode:
authorMerryMage <MerryMage@users.noreply.github.com>2016-12-15 10:55:03 +0100
committerMerryMage <MerryMage@users.noreply.github.com>2016-12-15 19:43:10 +0100
commitf50dcc88bf160100336c94673aa7679403405cdd (patch)
tree14e2f9682f5f58568eff94b42711b7b80e986e91 /src/citra_qt/game_list.h
parentloader: Implement ReadProgramId (diff)
downloadyuzu-f50dcc88bf160100336c94673aa7679403405cdd.tar
yuzu-f50dcc88bf160100336c94673aa7679403405cdd.tar.gz
yuzu-f50dcc88bf160100336c94673aa7679403405cdd.tar.bz2
yuzu-f50dcc88bf160100336c94673aa7679403405cdd.tar.lz
yuzu-f50dcc88bf160100336c94673aa7679403405cdd.tar.xz
yuzu-f50dcc88bf160100336c94673aa7679403405cdd.tar.zst
yuzu-f50dcc88bf160100336c94673aa7679403405cdd.zip
Diffstat (limited to '')
-rw-r--r--src/citra_qt/game_list.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/citra_qt/game_list.h b/src/citra_qt/game_list.h
index 30b2c79a8..1abf10051 100644
--- a/src/citra_qt/game_list.h
+++ b/src/citra_qt/game_list.h
@@ -36,12 +36,15 @@ public:
signals:
void GameChosen(QString game_path);
void ShouldCancelWorker();
+ void OpenSaveFolderRequested(u64 program_id);
private:
void AddEntry(const QList<QStandardItem*>& entry_items);
void ValidateEntry(const QModelIndex& item);
void DonePopulating();
+ void PopupContextMenu(const QPoint& menu_location);
+
QTreeView* tree_view = nullptr;
QStandardItemModel* item_model = nullptr;
GameListWorker* current_worker = nullptr;