diff options
author | VolcaEM <63682805+VolcaEM@users.noreply.github.com> | 2020-06-25 23:02:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 23:02:33 +0200 |
commit | 57b93395a87fae470ef489aa89f1f38633028c4b (patch) | |
tree | a8c9c49fad1a56e73a07a47966e3039c3b666372 /src/yuzu/main.h | |
parent | 058ec22787a6d3e41c3dfabd2060a1b723594374 (diff) |
Add "Open Quickstart Guide" and "FAQ" buttons to the Help menu
While we're at it, also refactor the function used by OnOpenModsPage to be compatible with other URLs
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r-- | src/yuzu/main.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 4f4c8ddbe..9500bdbba 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -181,6 +181,9 @@ private slots: void OnPauseGame(); void OnStopGame(); void OnMenuReportCompatibility(); + void OnOpenModsPage(); + void OnQuickstartGuide(); + void OnFAQ(); /// Called whenever a user selects a game in the game list widget. void OnGameListLoadFile(QString game_path); void OnGameListOpenFolder(GameListOpenTarget target, const std::string& game_path); @@ -219,6 +222,7 @@ private: void UpdateStatusBar(); void HideMouseCursor(); void ShowMouseCursor(); + void OpenURL(const QString& url_str); Ui::MainWindow ui; |