1 | // Copyright (C) 2020 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | #include "qxcbscrollingdevice_p.h" |
4 | |
5 | QT_BEGIN_NAMESPACE |
6 | |
7 | QXcbScrollingDevicePrivate::QXcbScrollingDevicePrivate(const QString &name, qint64 id, QInputDevice::Capabilities caps, |
8 | int buttonCount, const QString &seatName) |
9 | : QPointingDevicePrivate(name, id, QInputDevice::DeviceType::Mouse, QPointingDevice::PointerType::Generic, |
10 | caps, 1, buttonCount, seatName) |
11 | { |
12 | } |
13 | |
14 | QT_END_NAMESPACE |
15 | |
16 | #include "moc_qxcbscrollingdevice_p.cpp" |
17 | |