mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#include "mandelbrotwidget.h"
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QScreen>
|
|
|
|
#include <QCommandLineParser>
|
|
#include <QCommandLineOption>
|
|
#include <QDebug>
|
|
#include <QRect>
|
|
|
|
//! [0]
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
QCommandLineParser parser;
|
|
parser.setApplicationDescription("Qt Mandelbrot Example");
|
|
parser.addHelpOption();
|
|
parser.addVersionOption();
|
|
QCommandLineOption passesOption("passes", "Number of passes (1-8)", "passes");
|
|
parser.addOption(passesOption);
|
|
parser.process(app);
|
|
|
|
if (parser.isSet(passesOption)) {
|
|
const auto passesStr = parser.value(passesOption);
|
|
bool ok;
|
|
const int passes = passesStr.toInt(&ok);
|
|
if (!ok || passes < 1 || passes > 8) {
|
|
qWarning() << "Invalid value:" << passesStr;
|
|
return -1;
|
|
}
|
|
RenderThread::setNumPasses(passes);
|
|
}
|
|
|
|
MandelbrotWidget widget;
|
|
widget.grabGesture(Qt::PinchGesture);
|
|
widget.show();
|
|
return app.exec();
|
|
}
|
|
//! [0]
|