summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/audio-visualizer-qml/touchsettings.h
blob: 9320e90c44ebbfe672bd360bb4806c87d06be4be (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 BSD-3-Clause

#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