2015-01-27 12:24:47 +11:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Core/CoreParameter.h"
|
|
|
|
#include "InputCommon/InputConfig.h"
|
|
|
|
|
|
|
|
struct HotkeyStatus
|
|
|
|
{
|
|
|
|
u32 button[6];
|
|
|
|
s8 err;
|
|
|
|
};
|
|
|
|
|
|
|
|
class HotkeyManager : public ControllerEmu
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
HotkeyManager();
|
|
|
|
~HotkeyManager();
|
|
|
|
|
|
|
|
std::string GetName() const;
|
|
|
|
void GetInput(HotkeyStatus* const hk);
|
|
|
|
void LoadDefaults(const ControllerInterface& ciface);
|
|
|
|
|
|
|
|
private:
|
2015-03-01 07:43:34 +11:00
|
|
|
Buttons* m_keys[3];
|
2015-01-27 12:24:47 +11:00
|
|
|
ControlGroup* m_options;
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace HotkeyManagerEmu
|
|
|
|
{
|
|
|
|
void Initialize(void* const hwnd);
|
|
|
|
void Shutdown();
|
2015-03-05 19:49:10 +11:00
|
|
|
void LoadConfig();
|
2015-01-27 12:24:47 +11:00
|
|
|
|
|
|
|
InputConfig* GetConfig();
|
2015-03-01 07:43:34 +11:00
|
|
|
void GetStatus();
|
2015-03-05 19:49:10 +11:00
|
|
|
bool IsEnabled();
|
|
|
|
void Enable(bool enable_toggle);
|
2015-01-27 12:24:47 +11:00
|
|
|
bool IsPressed(int Id, bool held);
|
|
|
|
}
|