Merge pull request #6823 from spycrab/qt_reset_hotkey
Qt: Implement "Reset" hotkey
This commit is contained in:
commit
e78235943e
|
@ -165,6 +165,10 @@ void HotkeyScheduler::Run()
|
|||
if (IsHotkey(HK_STOP))
|
||||
emit StopHotkey();
|
||||
|
||||
// Reset
|
||||
if (IsHotkey(HK_RESET))
|
||||
emit ResetHotkey();
|
||||
|
||||
// Frameskipping
|
||||
HandleFrameskipHotkeys();
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@ signals:
|
|||
void ExitHotkey();
|
||||
void FullScreenHotkey();
|
||||
void StopHotkey();
|
||||
void ResetHotkey();
|
||||
void TogglePauseHotkey();
|
||||
void ScreenShotHotkey();
|
||||
void SetStateSlotHotkey(int slot);
|
||||
|
|
|
@ -345,6 +345,7 @@ void MainWindow::ConnectHotkeys()
|
|||
connect(m_hotkey_scheduler, &HotkeyScheduler::ExitHotkey, this, &MainWindow::close);
|
||||
connect(m_hotkey_scheduler, &HotkeyScheduler::TogglePauseHotkey, this, &MainWindow::TogglePause);
|
||||
connect(m_hotkey_scheduler, &HotkeyScheduler::StopHotkey, this, &MainWindow::RequestStop);
|
||||
connect(m_hotkey_scheduler, &HotkeyScheduler::ResetHotkey, this, &MainWindow::Reset);
|
||||
connect(m_hotkey_scheduler, &HotkeyScheduler::ScreenShotHotkey, this, &MainWindow::ScreenShot);
|
||||
connect(m_hotkey_scheduler, &HotkeyScheduler::FullScreenHotkey, this, &MainWindow::FullScreen);
|
||||
|
||||
|
@ -354,7 +355,6 @@ void MainWindow::ConnectHotkeys()
|
|||
&MainWindow::StateSaveSlot);
|
||||
connect(m_hotkey_scheduler, &HotkeyScheduler::SetStateSlotHotkey, this,
|
||||
&MainWindow::SetStateSlot);
|
||||
|
||||
connect(m_hotkey_scheduler, &HotkeyScheduler::StartRecording, this,
|
||||
&MainWindow::OnStartRecording);
|
||||
connect(m_hotkey_scheduler, &HotkeyScheduler::ExportRecording, this,
|
||||
|
|
Loading…
Reference in New Issue