2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2024-02-02 13:36:10 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#include "mousestatwidget.h"
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
|
|
int main(int argc, char **argv){
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
|
|
|
QWidget main;
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout(&main);
|
|
|
|
layout->addWidget(new MouseStatWidget(true));
|
|
|
|
layout->addWidget(new MouseStatWidget(false));
|
|
|
|
main.resize(800, 600);
|
|
|
|
main.show();
|
|
|
|
return app.exec();
|
|
|
|
}
|