mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 08:07:45 +00:00
Qt: Implement hotkeys (+ configuration)
This commit is contained in:
parent
096399d371
commit
151ae38a56
24 changed files with 958 additions and 3 deletions
37
Source/Core/DolphinQt2/HotkeyScheduler.h
Normal file
37
Source/Core/DolphinQt2/HotkeyScheduler.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
// Copyright 2017 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <thread>
|
||||
|
||||
#include <QObject>
|
||||
|
||||
#include "Common/Flag.h"
|
||||
|
||||
class HotkeyScheduler : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit HotkeyScheduler();
|
||||
~HotkeyScheduler();
|
||||
|
||||
void Start();
|
||||
void Stop();
|
||||
signals:
|
||||
void ExitHotkey();
|
||||
void FullScreenHotkey();
|
||||
void StopHotkey();
|
||||
void PauseHotkey();
|
||||
void ScreenShotHotkey();
|
||||
void SetStateSlotHotkey(int slot);
|
||||
void StateLoadSlotHotkey();
|
||||
void StateSaveSlotHotkey();
|
||||
|
||||
private:
|
||||
void Run();
|
||||
|
||||
Common::Flag m_stop_requested;
|
||||
std::thread m_thread;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue