From 7e4c7905c9e74d76de2e03413af0dc9e4cb84683 Mon Sep 17 00:00:00 2001 From: ConfuSomu Date: Sat, 10 Jun 2023 18:53:35 -0400 Subject: Implement command line options Implementing a command line argument specifying the data export to open allows iterating faster as the file to open can be specified without navigating through a GUI. In the future, more command line options could be specified to specify the view filters for instance. --- src/command_line.cpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/command_line.cpp (limited to 'src/command_line.cpp') diff --git a/src/command_line.cpp b/src/command_line.cpp new file mode 100644 index 0000000..d16742a --- /dev/null +++ b/src/command_line.cpp @@ -0,0 +1,28 @@ +#include "src/command_line.h" + +#include +#include + +CommandLineParsedOptions parse_command_line(QCommandLineParser &parser, QApplication &app) { + QCommandLineOption fileOption({"f", "file"}, + QCoreApplication::translate("cmdline", "Data export to open."), + "file"); + parser.addOption(fileOption); + + const QCommandLineOption help_option = parser.addHelpOption(); + const QCommandLineOption version_option = parser.addVersionOption(); + + QString outbox_filename; + + if (!parser.parse(app.arguments())) + return {CommandLineError, parser.errorText(), outbox_filename}; + + if (parser.isSet(help_option) or parser.isSet("help-all")) + return {CommandLineHelpRequested, nullptr, outbox_filename}; + if (parser.isSet(version_option)) + return {CommandLineVersionRequested, nullptr, outbox_filename}; + + outbox_filename = parser.value(fileOption); + + return {CommandLineOk, nullptr, outbox_filename}; +} -- cgit v1.2.3-54-g00ecf