PDF4QT/PdfTool/main.cpp

61 lines
2.3 KiB
C++
Raw Normal View History

2021-04-25 18:33:41 +02:00
// Copyright (C) 2020-2021 Jakub Melka
2020-09-25 18:08:39 +02:00
//
2020-12-20 19:03:58 +01:00
// This file is part of Pdf4Qt.
2020-09-25 18:08:39 +02:00
//
2020-12-20 19:03:58 +01:00
// Pdf4Qt is free software: you can redistribute it and/or modify
2020-09-25 18:08:39 +02:00
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
2021-04-30 20:12:10 +02:00
// with the written consent of the copyright owner, any later version.
2020-09-25 18:08:39 +02:00
//
2020-12-20 19:03:58 +01:00
// Pdf4Qt is distributed in the hope that it will be useful,
2020-09-25 18:08:39 +02:00
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
2020-12-20 19:03:58 +01:00
// along with Pdf4Qt. If not, see <https://www.gnu.org/licenses/>.
2020-09-25 18:08:39 +02:00
#include "pdftoolabstractapplication.h"
2021-04-25 18:33:41 +02:00
#include "pdfconstants.h"
2020-09-25 18:08:39 +02:00
2020-10-28 16:35:16 +01:00
#include <QGuiApplication>
2020-09-25 18:08:39 +02:00
#include <QCommandLineParser>
int main(int argc, char *argv[])
{
2020-10-28 16:35:16 +01:00
QGuiApplication a(argc, argv);
QGuiApplication::setAttribute(Qt::AA_DontCheckOpenGLContextThreadAffinity, true);
2020-09-25 18:08:39 +02:00
QCoreApplication::setOrganizationName("MelkaJ");
QCoreApplication::setApplicationName("PdfTool");
2021-04-25 18:33:41 +02:00
QCoreApplication::setApplicationVersion(pdf::PDF_LIBRARY_VERSION);
2020-09-25 18:08:39 +02:00
QStringList arguments = QCoreApplication::arguments();
QCommandLineParser parser;
parser.setApplicationDescription("PdfTool - work with pdf documents via command line");
parser.addPositionalArgument("command", "Command to execute.");
parser.parse(arguments);
QStringList positionalArguments = parser.positionalArguments();
QString command = !positionalArguments.isEmpty() ? positionalArguments.front() : QString();
arguments.removeOne(command);
pdftool::PDFToolAbstractApplication* application = pdftool::PDFToolApplicationStorage::getApplicationByCommand(command);
if (!application)
{
application = pdftool::PDFToolApplicationStorage::getDefaultApplication();
}
else
{
parser.clearPositionalArguments();
}
application->initializeCommandLineParser(&parser);
parser.addHelpOption();
parser.addVersionOption();
parser.process(arguments);
return application->execute(application->getOptions(&parser));
}