You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libcutefish/bluez/declarativeinput.h

32 lines
769 B
C++

/*
* BluezQt - Asynchronous BlueZ wrapper library
*
* SPDX-FileCopyrightText: 2015 David Rosca <nowrep@gmail.com>
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#ifndef DECLARATIVEINPUT_H
#define DECLARATIVEINPUT_H
#include <BluezQt/Input>
class DeclarativeInput : public QObject
{
Q_OBJECT
Q_PROPERTY(BluezQt::Input::ReconnectMode reconnectMode READ reconnectMode NOTIFY reconnectModeChanged)
public:
explicit DeclarativeInput(const BluezQt::InputPtr &input, QObject *parent = nullptr);
BluezQt::Input::ReconnectMode reconnectMode() const;
Q_SIGNALS:
void reconnectModeChanged(BluezQt::Input::ReconnectMode mode);
private:
BluezQt::InputPtr m_input;
};
#endif // DECLARATIVEINPUT_H