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-04-27 10:05:43 +00:00
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
#include "stylewidget.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
|
|
|
app.setApplicationName("style");
|
2013-07-11 13:42:34 +00:00
|
|
|
app.setOrganizationName("QtProject");
|
|
|
|
app.setOrganizationDomain("www.qt-project.org");
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
StyleWidget widget;
|
|
|
|
widget.showFullScreen();
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|
|
|
|
|