2023-03-21 07:15:47 +00:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
2024-02-02 13:36:10 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2023-03-21 07:15:47 +00:00
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QLoggingCategory>
|
|
|
|
#include <QTreeView>
|
|
|
|
|
|
|
|
#include "inputdevicemodel.h"
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
QLoggingCategory::setFilterRules(QStringLiteral("qt.qpa.input.devices=true"));
|
|
|
|
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
|
|
|
QTreeView view;
|
|
|
|
view.setModel(new InputDeviceModel(&view));
|
|
|
|
view.resize(1280, 600);
|
|
|
|
view.show();
|
|
|
|
view.resizeColumnToContents(0);
|
|
|
|
|
|
|
|
app.exec();
|
|
|
|
}
|
|
|
|
|