2023-10-30 06:33:08 +08:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
|
|
|
|
#include "mandelbrotwidget.h"
|
2023-11-02 01:02:52 +08:00
|
|
|
#include "renderthread.h"
|
2023-10-30 06:33:08 +08:00
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QCommandLineParser>
|
|
|
|
#include <QCommandLineOption>
|
|
|
|
#include <QDebug>
|
2023-11-02 01:02:52 +08:00
|
|
|
|
|
|
|
using namespace Qt::StringLiterals;
|
2023-10-30 06:33:08 +08:00
|
|
|
|
|
|
|
//! [0]
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
|
|
|
QCommandLineParser parser;
|
2023-11-02 01:02:52 +08:00
|
|
|
parser.setApplicationDescription(u"Qt Mandelbrot Example"_s);
|
2023-10-30 06:33:08 +08:00
|
|
|
parser.addHelpOption();
|
|
|
|
parser.addVersionOption();
|
2023-11-02 01:02:52 +08:00
|
|
|
QCommandLineOption passesOption(u"passes"_s, u"Number of passes (1-8)"_s, u"passes"_s);
|
2023-10-30 06:33:08 +08:00
|
|
|
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]
|