mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-26 22:27:06 +08:00
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#include "textedit.h"
|
|
|
|
#include <QApplication>
|
|
#include <QCommandLineParser>
|
|
#include <QCommandLineOption>
|
|
#include <QScreen>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
QCoreApplication::setOrganizationName("QtProject");
|
|
QCoreApplication::setApplicationName("Rich Text");
|
|
QCoreApplication::setApplicationVersion(QT_VERSION_STR);
|
|
QCommandLineParser parser;
|
|
parser.setApplicationDescription(QCoreApplication::applicationName());
|
|
parser.addHelpOption();
|
|
parser.addVersionOption();
|
|
parser.addPositionalArgument("file", "The file to open.");
|
|
parser.process(a);
|
|
|
|
TextEdit mw;
|
|
|
|
const QRect availableGeometry = mw.screen()->availableGeometry();
|
|
mw.resize(availableGeometry.width() / 2, (availableGeometry.height() * 2) / 3);
|
|
mw.move((availableGeometry.width() - mw.width()) / 2,
|
|
(availableGeometry.height() - mw.height()) / 2);
|
|
|
|
if (!mw.load(parser.positionalArguments().value(0, QLatin1String(":/example.html"))))
|
|
mw.fileNew();
|
|
|
|
mw.show();
|
|
return a.exec();
|
|
}
|