2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-09-14 02:03:34 +00:00
|
|
|
|
2011-08-22 08:49:28 +00:00
|
|
|
#include <QGuiApplication>
|
|
|
|
#include <QRect>
|
|
|
|
|
|
|
|
#include "paintedwindow.h"
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
QGuiApplication app(argc, argv);
|
|
|
|
|
|
|
|
PaintedWindow window;
|
|
|
|
window.show();
|
|
|
|
|
2012-10-11 14:58:38 +00:00
|
|
|
return app.exec();
|
2011-08-22 08:49:28 +00:00
|
|
|
}
|
2011-11-23 08:36:51 +00:00
|
|
|
|