- Use auto * when initializing with new - Initialize variables - Fix static invocations - Use per-class includes - Minor cleanups Pick-to: 6.8 Change-Id: I137bc7dfad63bc55a1b1bbc3f42d758bbfdb86ba Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io> (cherry picked from commit f388ca8841ad25cf79e5fdf8fa3e9d2f4de48ebc) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#include <QApplication>
|
|
#include <QScreen>
|
|
#include <QStyleHints>
|
|
#include <QTranslator>
|
|
#include <QLocale>
|
|
#include <QLibraryInfo>
|
|
|
|
#include "dialog.h"
|
|
|
|
using namespace Qt::StringLiterals;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
#if QT_CONFIG(translation)
|
|
QTranslator translator;
|
|
if (translator.load(QLocale::system(), u"qtbase"_s, u"_"_s,
|
|
QLibraryInfo::path(QLibraryInfo::TranslationsPath))) {
|
|
QCoreApplication::installTranslator(&translator);
|
|
}
|
|
#endif
|
|
|
|
QGuiApplication::setApplicationDisplayName(Dialog::tr("Standard Dialogs"));
|
|
|
|
Dialog dialog;
|
|
if (!QGuiApplication::styleHints()->showIsFullScreen() && !QGuiApplication::styleHints()->showIsMaximized()) {
|
|
const QRect availableGeometry = dialog.screen()->availableGeometry();
|
|
dialog.resize(availableGeometry.width() / 3, availableGeometry.height() * 2 / 3);
|
|
dialog.move((availableGeometry.width() - dialog.width()) / 2,
|
|
(availableGeometry.height() - dialog.height()) / 2);
|
|
}
|
|
dialog.show();
|
|
|
|
return QCoreApplication::exec();
|
|
}
|