dolphin/Source/Core/InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.h
Pierre Bourdon e149ad4f0a
treewide: convert GPLv2+ license info to SPDX tags
SPDX standardizes how source code conveys its copyright and licensing
information. See https://spdx.github.io/spdx-spec/1-rationale/ . SPDX
tags are adopted in many large projects, including things like the Linux
kernel.
2021-07-05 04:35:56 +02:00

71 lines
1.5 KiB
C++

// Copyright 2016 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <QuartzCore/QuartzCore.h>
#include "Common/Matrix.h"
#include "InputCommon/ControllerInterface/CoreDevice.h"
namespace ciface::Quartz
{
std::string KeycodeToName(const CGKeyCode keycode);
class KeyboardAndMouse : public Core::Device
{
private:
class Key : public Input
{
public:
explicit Key(CGKeyCode keycode);
std::string GetName() const override;
ControlState GetState() const override;
private:
CGKeyCode m_keycode;
std::string m_name;
};
class Cursor : public Input
{
public:
Cursor(u8 index, const float& axis, const bool positive)
: m_axis(axis), m_index(index), m_positive(positive)
{
}
std::string GetName() const override;
bool IsDetectable() const override { return false; }
ControlState GetState() const override;
private:
const float& m_axis;
const u8 m_index;
const bool m_positive;
};
class Button : public Input
{
public:
explicit Button(CGMouseButton button) : m_button(button) {}
std::string GetName() const override;
ControlState GetState() const override;
private:
CGMouseButton m_button;
};
public:
void UpdateInput() override;
explicit KeyboardAndMouse(void* window);
std::string GetName() const override;
std::string GetSource() const override;
private:
Common::Vec2 m_cursor;
uint32_t m_windowid;
};
} // namespace ciface::Quartz