diff options
Diffstat (limited to 'proto-iokit-foohid/iokitprotocol.h')
| -rw-r--r-- | proto-iokit-foohid/iokitprotocol.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/proto-iokit-foohid/iokitprotocol.h b/proto-iokit-foohid/iokitprotocol.h new file mode 100644 index 00000000..8148e7ab --- /dev/null +++ b/proto-iokit-foohid/iokitprotocol.h @@ -0,0 +1,35 @@ +/* Copyright (c) 2017, Eike Ziller * + * * + * Permission to use, copy, modify, and/or distribute this software for any * + * purpose with or without fee is hereby granted, provided that the above * + * copyright notice and this permission notice appear in all copies. * + */ + +#pragma once + +#include "api/plugin-api.hpp" + +#include <QCoreApplication> + +class FooHIDJoystick; + +class IOKitProtocol : public IProtocol +{ +public: + IOKitProtocol(); + + module_status initialize() override; + void pose(const double *headpose, const double*) final; + QString game_name() final; + +private: + std::unique_ptr<FooHIDJoystick> joystick; +}; + +class IOKitProtocolMetadata : public Metadata +{ + Q_OBJECT + + QString name() { return tr("Virtual joystick"); } + QIcon icon() { return QIcon(":/images/opentrack.png"); } +}; |
