blob: 23de112d17baece8094c62aa9922179e16899ec9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef TOUCHSETTINGS_H
#define TOUCHSETTINGS_H
#include <QtCore/QObject>
class TouchSettings : public QObject
{
Q_OBJECT
public:
explicit TouchSettings(QObject *parent = 0);
Q_INVOKABLE bool isHoverEnabled() const;
};
#endif // TOUCHSETTINGS_H
|