Fix crash. Added more keys we will need in future.
This commit is contained in:
parent
eba2ed695c
commit
5e5199f9f6
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
$$PWD/main.cpp \
|
$$PWD/main.cpp \
|
||||||
|
$$PWD/puzzlecommands.cpp \
|
||||||
$$PWD/puzzlemainwindow.cpp \
|
$$PWD/puzzlemainwindow.cpp \
|
||||||
$$PWD/puzzleapplication.cpp \
|
$$PWD/puzzleapplication.cpp \
|
||||||
$$PWD/vpuzzlecommandline.cpp
|
$$PWD/vpuzzlecommandline.cpp
|
||||||
|
@ -10,6 +11,7 @@ SOURCES += \
|
||||||
*msvc*:SOURCES += $$PWD/stable.cpp
|
*msvc*:SOURCES += $$PWD/stable.cpp
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
|
$$PWD/puzzlecommands.h \
|
||||||
$$PWD/puzzlemainwindow.h \
|
$$PWD/puzzlemainwindow.h \
|
||||||
$$PWD/stable.h \
|
$$PWD/stable.h \
|
||||||
$$PWD/puzzleapplication.h \
|
$$PWD/puzzleapplication.h \
|
||||||
|
|
88
src/app/puzzle/puzzlecommands.cpp
Normal file
88
src/app/puzzle/puzzlecommands.cpp
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
/************************************************************************
|
||||||
|
**
|
||||||
|
** @file commands.cpp
|
||||||
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
||||||
|
** @date 13 4, 2020
|
||||||
|
**
|
||||||
|
** @brief
|
||||||
|
** @copyright
|
||||||
|
** This source code is part of the Valentina project, a pattern making
|
||||||
|
** program, whose allow create and modeling patterns of clothing.
|
||||||
|
** Copyright (C) 2020 Valentina project
|
||||||
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
||||||
|
**
|
||||||
|
** Valentina is free software: you can redistribute it and/or modify
|
||||||
|
** it under the terms of the GNU General Public License as published by
|
||||||
|
** the Free Software Foundation, either version 3 of the License, or
|
||||||
|
** (at your option) any later version.
|
||||||
|
**
|
||||||
|
** Valentina is distributed in the hope that it will be useful,
|
||||||
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
** GNU General Public License for more details.
|
||||||
|
**
|
||||||
|
** You should have received a copy of the GNU General Public License
|
||||||
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
**
|
||||||
|
*************************************************************************/
|
||||||
|
#include "puzzlecommands.h"
|
||||||
|
|
||||||
|
#include <QStringList>
|
||||||
|
|
||||||
|
const QString LONG_OPTION_EXPORT_FILE = QStringLiteral("exportFile");
|
||||||
|
const QString SINGLE_OPTION_EXPORT_FILE = QStringLiteral("e");
|
||||||
|
|
||||||
|
const QString LONG_OPTION_TEST = QStringLiteral("test");
|
||||||
|
const QString SINGLE_OPTION_TEST = QStringLiteral("t");
|
||||||
|
|
||||||
|
const QString LONG_OPTION_RAW_LAYOUT = QStringLiteral("rawLayout");
|
||||||
|
const QString SINGLE_OPTION_RAW_LAYOUT = QStringLiteral("r");
|
||||||
|
|
||||||
|
const QString LONG_OPTION_EXP2FORMAT = QStringLiteral("format");
|
||||||
|
const QString SINGLE_OPTION_EXP2FORMAT = QStringLiteral("f");
|
||||||
|
|
||||||
|
const QString LONG_OPTION_BINARYDXF = QStringLiteral("bdxf");
|
||||||
|
const QString LONG_OPTION_TEXT2PATHS = QStringLiteral("text2paths");
|
||||||
|
|
||||||
|
const QString LONG_OPTION_CROP_LENGTH = QStringLiteral("crop");
|
||||||
|
const QString SINGLE_OPTION_CROP_LENGTH = QStringLiteral("c");
|
||||||
|
|
||||||
|
const QString LONG_OPTION_CROP_WIDTH = QStringLiteral("cropWidth");
|
||||||
|
|
||||||
|
const QString LONG_OPTION_TILED_PDF_PAGE_TEMPLATE = QStringLiteral("tiledPageformat");
|
||||||
|
const QString LONG_OPTION_TILED_PDF_LEFT_MARGIN = QStringLiteral("tiledlmargin");
|
||||||
|
const QString LONG_OPTION_TILED_PDF_RIGHT_MARGIN = QStringLiteral("tiledrmargin");
|
||||||
|
const QString LONG_OPTION_TILED_PDF_TOP_MARGIN = QStringLiteral("tiledtmargin");
|
||||||
|
const QString LONG_OPTION_TILED_PDF_BOTTOM_MARGIN = QStringLiteral("tiledbmargin");
|
||||||
|
const QString LONG_OPTION_TILED_PDF_LANDSCAPE = QStringLiteral("tiledLandscape");
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
/**
|
||||||
|
* @brief AllKeys return list with all command line keys (short and long forms). Used for testing on conflicts.
|
||||||
|
* @return list with all command line keys
|
||||||
|
*/
|
||||||
|
QStringList AllKeys()
|
||||||
|
{
|
||||||
|
return QStringList
|
||||||
|
{
|
||||||
|
LONG_OPTION_EXPORT_FILE,
|
||||||
|
SINGLE_OPTION_EXPORT_FILE,
|
||||||
|
LONG_OPTION_TEST,
|
||||||
|
SINGLE_OPTION_TEST,
|
||||||
|
LONG_OPTION_RAW_LAYOUT,
|
||||||
|
SINGLE_OPTION_RAW_LAYOUT,
|
||||||
|
LONG_OPTION_EXP2FORMAT,
|
||||||
|
SINGLE_OPTION_EXP2FORMAT,
|
||||||
|
LONG_OPTION_BINARYDXF,
|
||||||
|
LONG_OPTION_TEXT2PATHS,
|
||||||
|
LONG_OPTION_CROP_LENGTH,
|
||||||
|
SINGLE_OPTION_CROP_LENGTH,
|
||||||
|
LONG_OPTION_CROP_WIDTH,
|
||||||
|
LONG_OPTION_TILED_PDF_PAGE_TEMPLATE,
|
||||||
|
LONG_OPTION_TILED_PDF_LEFT_MARGIN,
|
||||||
|
LONG_OPTION_TILED_PDF_RIGHT_MARGIN,
|
||||||
|
LONG_OPTION_TILED_PDF_TOP_MARGIN,
|
||||||
|
LONG_OPTION_TILED_PDF_BOTTOM_MARGIN,
|
||||||
|
LONG_OPTION_TILED_PDF_LANDSCAPE
|
||||||
|
};
|
||||||
|
}
|
63
src/app/puzzle/puzzlecommands.h
Normal file
63
src/app/puzzle/puzzlecommands.h
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
/************************************************************************
|
||||||
|
**
|
||||||
|
** @file commands.h
|
||||||
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
||||||
|
** @date 13 4, 2020
|
||||||
|
**
|
||||||
|
** @brief
|
||||||
|
** @copyright
|
||||||
|
** This source code is part of the Valentina project, a pattern making
|
||||||
|
** program, whose allow create and modeling patterns of clothing.
|
||||||
|
** Copyright (C) 2020 Valentina project
|
||||||
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
||||||
|
**
|
||||||
|
** Valentina is free software: you can redistribute it and/or modify
|
||||||
|
** it under the terms of the GNU General Public License as published by
|
||||||
|
** the Free Software Foundation, either version 3 of the License, or
|
||||||
|
** (at your option) any later version.
|
||||||
|
**
|
||||||
|
** Valentina is distributed in the hope that it will be useful,
|
||||||
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
** GNU General Public License for more details.
|
||||||
|
**
|
||||||
|
** You should have received a copy of the GNU General Public License
|
||||||
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
**
|
||||||
|
*************************************************************************/
|
||||||
|
#ifndef COMMANDS_H
|
||||||
|
#define COMMANDS_H
|
||||||
|
|
||||||
|
|
||||||
|
#include <QString>
|
||||||
|
|
||||||
|
extern const QString LONG_OPTION_EXPORT_FILE;
|
||||||
|
extern const QString SINGLE_OPTION_EXPORT_FILE;
|
||||||
|
|
||||||
|
extern const QString LONG_OPTION_TEST;
|
||||||
|
extern const QString SINGLE_OPTION_TEST;
|
||||||
|
|
||||||
|
extern const QString LONG_OPTION_RAW_LAYOUT;
|
||||||
|
extern const QString SINGLE_OPTION_RAW_LAYOUT;
|
||||||
|
|
||||||
|
extern const QString LONG_OPTION_EXP2FORMAT;
|
||||||
|
extern const QString SINGLE_OPTION_EXP2FORMAT;
|
||||||
|
|
||||||
|
extern const QString LONG_OPTION_BINARYDXF;
|
||||||
|
extern const QString LONG_OPTION_TEXT2PATHS;
|
||||||
|
|
||||||
|
extern const QString LONG_OPTION_CROP_LENGTH;
|
||||||
|
extern const QString SINGLE_OPTION_CROP_LENGTH;
|
||||||
|
|
||||||
|
extern const QString LONG_OPTION_CROP_WIDTH;
|
||||||
|
|
||||||
|
extern const QString LONG_OPTION_TILED_PDF_PAGE_TEMPLATE;
|
||||||
|
extern const QString LONG_OPTION_TILED_PDF_LEFT_MARGIN;
|
||||||
|
extern const QString LONG_OPTION_TILED_PDF_RIGHT_MARGIN;
|
||||||
|
extern const QString LONG_OPTION_TILED_PDF_TOP_MARGIN;
|
||||||
|
extern const QString LONG_OPTION_TILED_PDF_BOTTOM_MARGIN;
|
||||||
|
extern const QString LONG_OPTION_TILED_PDF_LANDSCAPE;
|
||||||
|
|
||||||
|
QStringList AllKeys();
|
||||||
|
|
||||||
|
#endif // COMMANDS_H
|
|
@ -1,5 +1,5 @@
|
||||||
#include "vpuzzlecommandline.h"
|
#include "vpuzzlecommandline.h"
|
||||||
#include "../vmisc/commandoptions.h"
|
#include "puzzlecommands.h"
|
||||||
#include "../vmisc/vsysexits.h"
|
#include "../vmisc/vsysexits.h"
|
||||||
#include "../vmisc/literals.h"
|
#include "../vmisc/literals.h"
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
@ -11,7 +11,7 @@ std::shared_ptr<VPuzzleCommandLine> VPuzzleCommandLine::instance = nullptr;
|
||||||
//------------------------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------------------------
|
||||||
bool VPuzzleCommandLine::IsExportEnabled() const
|
bool VPuzzleCommandLine::IsExportEnabled() const
|
||||||
{
|
{
|
||||||
const bool result = IsOptionSet(QStringLiteral("destination"));
|
const bool result = IsOptionSet(LONG_OPTION_EXPORT_FILE);
|
||||||
int argSize = parser.positionalArguments().size();
|
int argSize = parser.positionalArguments().size();
|
||||||
if (result && argSize != 1)
|
if (result && argSize != 1)
|
||||||
{
|
{
|
||||||
|
@ -22,21 +22,27 @@ bool VPuzzleCommandLine::IsExportEnabled() const
|
||||||
}
|
}
|
||||||
|
|
||||||
//----------------------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------------------
|
||||||
QString VPuzzleCommandLine::OptionBaseName() const
|
QString VPuzzleCommandLine::OptionExportFile() const
|
||||||
{
|
{
|
||||||
QString path;
|
QString path;
|
||||||
if (IsExportEnabled())
|
if (IsExportEnabled())
|
||||||
{
|
{
|
||||||
path = OptionValue(QStringLiteral("destination"));
|
path = OptionValue(LONG_OPTION_EXPORT_FILE);
|
||||||
}
|
}
|
||||||
|
|
||||||
return path;
|
return path;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
QStringList VPuzzleCommandLine::OptionRawLayouts() const
|
||||||
|
{
|
||||||
|
return OptionValues(LONG_OPTION_RAW_LAYOUT);
|
||||||
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------
|
||||||
bool VPuzzleCommandLine::IsTestModeEnabled() const
|
bool VPuzzleCommandLine::IsTestModeEnabled() const
|
||||||
{
|
{
|
||||||
const bool r = IsOptionSet(QStringLiteral("test"));
|
const bool r = IsOptionSet(LONG_OPTION_TEST);
|
||||||
if (r && parser.positionalArguments().size() != 1)
|
if (r && parser.positionalArguments().size() != 1)
|
||||||
{
|
{
|
||||||
qCritical() << translate("VCommandLine", "Test option can be used with single input file only.") << "/n";
|
qCritical() << translate("VCommandLine", "Test option can be used with single input file only.") << "/n";
|
||||||
|
@ -71,6 +77,7 @@ VPuzzleCommandLine::VPuzzleCommandLine():
|
||||||
parser.setApplicationDescription(translate("Puzzle", "Valentina's manual layout editor."));
|
parser.setApplicationDescription(translate("Puzzle", "Valentina's manual layout editor."));
|
||||||
parser.addHelpOption();
|
parser.addHelpOption();
|
||||||
parser.addVersionOption();
|
parser.addVersionOption();
|
||||||
|
parser.addPositionalArgument(QStringLiteral("filename"), translate("Puzzle", "The manual layout file."));
|
||||||
|
|
||||||
InitCommandLineOptions();
|
InitCommandLineOptions();
|
||||||
}
|
}
|
||||||
|
@ -91,30 +98,59 @@ VPuzzleCommandLinePtr VPuzzleCommandLine::Instance(const QCoreApplication &app)
|
||||||
//-------------------------------------------------------------------------------------------
|
//-------------------------------------------------------------------------------------------
|
||||||
void VPuzzleCommandLine::InitCommandLineOptions()
|
void VPuzzleCommandLine::InitCommandLineOptions()
|
||||||
{
|
{
|
||||||
QStringList args = parser.positionalArguments();
|
//keep in mind order here - that is how user will see it, so group-up for usability
|
||||||
parser.setSingleDashWordOptionMode(
|
//=================================================================================================================
|
||||||
QCommandLineParser::SingleDashWordOptionMode(args.takeFirst().toInt()));
|
parser.addOptions({
|
||||||
QString source = args.isEmpty() ? QString() : args.at(0);
|
{{SINGLE_OPTION_EXPORT_FILE, LONG_OPTION_EXPORT_FILE},
|
||||||
QString destination = args.isEmpty() ? QString() : args.at(1);
|
translate("VCommandLine", "The filename of exported layout file. Use it to enable console export mode."),
|
||||||
parser.clearPositionalArguments();
|
translate("VCommandLine", "The filename of layout file")},
|
||||||
parser.addPositionalArgument(source,
|
{{SINGLE_OPTION_RAW_LAYOUT, LONG_OPTION_RAW_LAYOUT},
|
||||||
translate("Puzzle", "The raw layout input file."));
|
translate("VCommandLine", "Load pattern pieces form the raw layout data file."),
|
||||||
parser.addPositionalArgument(destination,
|
translate("VCommandLine", "The raw layout data file")},
|
||||||
translate("Puzzle", "The destination folder"));
|
{{SINGLE_OPTION_EXP2FORMAT, LONG_OPTION_EXP2FORMAT},
|
||||||
|
translate("VCommandLine", "Number corresponding to output format (default = 0, export mode): <not defined>"),
|
||||||
QCommandLineOption forceOption(QStringList() << "f" << "force",
|
translate("VCommandLine", "Format number"), QChar('0')},
|
||||||
translate("Puzzle", "Overwrite existing files."));
|
{LONG_OPTION_BINARYDXF, translate("VCommandLine", "Export dxf in binary form.")},
|
||||||
parser.addOption(forceOption);
|
{LONG_OPTION_TEXT2PATHS, translate("VCommandLine", "Export text as paths.")},
|
||||||
|
//=================================================================================================================
|
||||||
QCommandLineOption testOption(QStringList() << "test",
|
{{SINGLE_OPTION_CROP_LENGTH, LONG_OPTION_CROP_LENGTH},
|
||||||
tr("Use for unit testing. Run the program and open a file without showing the main window."));
|
translate("VCommandLine", "Auto crop unused length (export mode).")},
|
||||||
parser.addOption(testOption);
|
{{LONG_OPTION_CROP_WIDTH},
|
||||||
|
translate("VCommandLine", "Auto crop unused width (export mode).")},
|
||||||
QCommandLineOption scalingOption(QStringList() << LONG_OPTION_NO_HDPI_SCALING,
|
//=================================================================================================================
|
||||||
tr("Disable high dpi scaling. Call this option if has problem with scaling (by default scaling enabled). "
|
{LONG_OPTION_TILED_PDF_PAGE_TEMPLATE,
|
||||||
"Alternatively you can use the %1 environment variable.").arg("QT_AUTO_SCREEN_SCALE_FACTOR=0"));
|
translate("VCommandLine", "Number corresponding to tiled pdf page template (default = 0, export mode with "
|
||||||
parser.addOption(scalingOption);
|
"tiled pdf format): <not defined>"),
|
||||||
|
translate("VCommandLine", "Template number"), QChar('0')},
|
||||||
|
{LONG_OPTION_TILED_PDF_LEFT_MARGIN,
|
||||||
|
translate("VCommandLine","Tiled page left margin in current units like 3.0 (export mode). If not set will be "
|
||||||
|
"used default value 1 cm."),
|
||||||
|
translate("VCommandLine", "The left margin")},
|
||||||
|
{LONG_OPTION_TILED_PDF_RIGHT_MARGIN,
|
||||||
|
translate("VCommandLine", "Tiled page right margin in current units like 3.0 (export mode). If not set will "
|
||||||
|
"be used default value 1 cm."),
|
||||||
|
translate("VCommandLine", "The right margin")},
|
||||||
|
{LONG_OPTION_TILED_PDF_TOP_MARGIN,
|
||||||
|
translate("VCommandLine", "Tiled page top margin in current units like 3.0 (export mode). If not set will be "
|
||||||
|
"used value default value 1 cm."),
|
||||||
|
translate("VCommandLine", "The top margin")},
|
||||||
|
{LONG_OPTION_TILED_PDF_BOTTOM_MARGIN,
|
||||||
|
translate("VCommandLine", "Tiled page bottom margin in current units like 3.0 (export mode). If not set will "
|
||||||
|
"be used value default value 1 cm."),
|
||||||
|
translate("VCommandLine", "The bottom margin")},
|
||||||
|
{LONG_OPTION_TILED_PDF_LANDSCAPE,
|
||||||
|
translate("VCommandLine", "Set tiled page orienatation to landscape (export mode). Default value if not set "
|
||||||
|
"portrait.")},
|
||||||
|
//=================================================================================================================
|
||||||
|
{{SINGLE_OPTION_TEST, LONG_OPTION_TEST},
|
||||||
|
translate("VCommandLine", "Run the program in a test mode. The program in this mode loads a single layout "
|
||||||
|
"file and silently quit without showing the main window. The key have priority "
|
||||||
|
"before key '%1'.").arg(LONG_OPTION_EXPORT_FILE)},
|
||||||
|
{LONG_OPTION_NO_HDPI_SCALING,
|
||||||
|
translate("VCommandLine", "Disable high dpi scaling. Call this option if has problem with scaling (by default "
|
||||||
|
"scaling enabled). Alternatively you can use the %1 environment variable.")
|
||||||
|
.arg(QStringLiteral("QT_AUTO_SCREEN_SCALE_FACTOR=0"))},
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -10,7 +10,6 @@ using VPuzzleCommandLinePtr = std::shared_ptr<VPuzzleCommandLine>;
|
||||||
|
|
||||||
class VPuzzleCommandLine: public QObject
|
class VPuzzleCommandLine: public QObject
|
||||||
{
|
{
|
||||||
friend class PuzzleApplication;
|
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
virtual ~VPuzzleCommandLine() = default;
|
virtual ~VPuzzleCommandLine() = default;
|
||||||
|
@ -18,8 +17,11 @@ public:
|
||||||
/** @brief if user enabled export from cmd */
|
/** @brief if user enabled export from cmd */
|
||||||
bool IsExportEnabled() const;
|
bool IsExportEnabled() const;
|
||||||
|
|
||||||
/** @brief the base name of layout file or empty string if not */
|
/** @brief path to export file or empty string if not */
|
||||||
QString OptionBaseName() const;
|
QString OptionExportFile() const;
|
||||||
|
|
||||||
|
/** @brief list with paths to the raw layout data files */
|
||||||
|
QStringList OptionRawLayouts() const;
|
||||||
|
|
||||||
/** @brief if user enabled test mode from cmd */
|
/** @brief if user enabled test mode from cmd */
|
||||||
bool IsTestModeEnabled() const;
|
bool IsTestModeEnabled() const;
|
||||||
|
@ -42,6 +44,7 @@ private:
|
||||||
static VPuzzleCommandLinePtr instance;
|
static VPuzzleCommandLinePtr instance;
|
||||||
QCommandLineParser parser;
|
QCommandLineParser parser;
|
||||||
bool isGuiEnabled;
|
bool isGuiEnabled;
|
||||||
|
friend class PuzzleApplication;
|
||||||
|
|
||||||
/** @brief add options to the QCommandLineParser that there are in the cmd can be */
|
/** @brief add options to the QCommandLineParser that there are in the cmd can be */
|
||||||
void InitCommandLineOptions();
|
void InitCommandLineOptions();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user