summaryrefslogtreecommitdiffstats
path: root/tests/manual/inputdevices/main.cpp
blob: 2857fd0fb6ccfd76bca475538b2207986952daa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#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();
}