Program Listing for File input_device.h¶
↰ Return to documentation for file (include/miroil/miroil/input_device.h
)
/*
* Copyright (C) Canonical, Ltd.
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License version 3, as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
* SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MIROIL_INPUT_DEVICE_H
#define MIROIL_INPUT_DEVICE_H
#include <mir_toolkit/mir_input_device_types.h>
#include <memory>
#include <string>
namespace mir { namespace input { class Device; } }
namespace miroil
{
class InputDevice
{
public:
InputDevice(std::shared_ptr<mir::input::Device> const& device);
InputDevice(InputDevice const& src);
InputDevice(InputDevice&& src);
InputDevice();
~InputDevice();
auto operator=(InputDevice const& src) -> InputDevice&;
auto operator=(InputDevice&& src) -> InputDevice&;
bool operator==(InputDevice const& other);
void apply_keymap(std::string const& layout, std::string const& variant);
auto get_device_id() -> MirInputDeviceId;
auto get_device_name() -> std::string;
auto is_keyboard() -> bool;
auto is_alpha_numeric() -> bool;
private:
std::shared_ptr<mir::input::Device> device;
};
}
#endif //MIROIL_INPUT_DEVICE_H