2014-11-22 17:15:47 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
2021-02-24 15:26:11 +01:00
|
|
|
** @file vvalentinasettings.h
|
2014-11-22 17:15:47 +01:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 22 11, 2014
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2014-11-22 17:15:47 +01:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
2014-11-22 17:15:47 +01:00
|
|
|
**
|
|
|
|
** 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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
2020-05-10 17:32:14 +02:00
|
|
|
#ifndef VVALENTINASETTINGS_H
|
|
|
|
#define VVALENTINASETTINGS_H
|
2014-11-22 17:15:47 +01:00
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QString>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
|
|
#include "vcommonsettings.h"
|
2014-11-22 17:15:47 +01:00
|
|
|
|
2020-05-10 17:32:14 +02:00
|
|
|
class VValentinaSettings : public VCommonSettings
|
2014-11-22 17:15:47 +01:00
|
|
|
{
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_OBJECT // NOLINT
|
2023-06-21 09:24:51 +02:00
|
|
|
|
2014-11-22 17:15:47 +01:00
|
|
|
public:
|
2020-05-10 17:32:14 +02:00
|
|
|
VValentinaSettings(Format format, Scope scope, const QString &organization, const QString &application = QString(),
|
2023-06-21 09:24:51 +02:00
|
|
|
QObject *parent = nullptr);
|
2020-05-10 17:32:14 +02:00
|
|
|
VValentinaSettings(const QString &fileName, Format format, QObject *parent = nullptr);
|
2014-11-22 17:15:47 +01:00
|
|
|
|
2023-06-22 17:30:43 +02:00
|
|
|
static auto PrepareLabelTemplates(const QString ¤tPath) -> QString;
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetLabelLanguage() const -> QString;
|
2014-11-22 17:15:47 +01:00
|
|
|
void SetLabelLanguage(const QString &value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
static auto GetDefPathLayout() -> QString;
|
|
|
|
auto GetPathLayout() const -> QString;
|
2015-01-26 15:08:09 +01:00
|
|
|
void SetPathLayout(const QString &value);
|
|
|
|
|
2023-06-22 17:30:43 +02:00
|
|
|
static auto GetDefPathLabelTemplate() -> QString;
|
|
|
|
auto GetPathLabelTemplate() const -> QString;
|
|
|
|
void SetPathLabelTemplate(const QString &value);
|
|
|
|
|
2015-11-09 12:33:36 +01:00
|
|
|
// Layout settings
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetLayoutPaperHeight() const -> qreal;
|
2015-11-05 12:07:51 +01:00
|
|
|
void SetLayoutPaperHeight(qreal value);
|
2015-05-08 16:24:20 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetLayoutPaperWidth() const -> qreal;
|
2015-11-05 12:07:51 +01:00
|
|
|
void SetLayoutPaperWidth(qreal value);
|
2015-05-08 16:24:20 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetLayoutWidth() const -> qreal;
|
|
|
|
static auto GetDefLayoutWidth() -> qreal;
|
2015-11-05 13:32:47 +01:00
|
|
|
void SetLayoutWidth(qreal value);
|
2015-05-08 16:24:20 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetNestingTime() const -> int;
|
|
|
|
static auto GetDefNestingTime() -> int { return 1; }
|
2019-03-29 10:31:17 +01:00
|
|
|
void SetNestingTime(int value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetEfficiencyCoefficient() const -> qreal;
|
|
|
|
static auto GetDefEfficiencyCoefficient() -> qreal { return 0.0; }
|
2019-03-29 10:31:17 +01:00
|
|
|
void SetEfficiencyCoefficient(qreal value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetFields(const QMarginsF &def = QMarginsF()) const -> QMarginsF;
|
2015-11-09 12:33:36 +01:00
|
|
|
void SetFields(const QMarginsF &value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetLayoutGroup() const -> Cases;
|
|
|
|
static auto GetDefLayoutGroup() -> Cases;
|
2015-05-08 16:24:20 +02:00
|
|
|
void SetLayoutGroup(const Cases &value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetLayoutFollowGrainline() const -> bool;
|
|
|
|
static auto GetDefLayoutFollowGrainline() -> bool;
|
2018-12-27 14:54:29 +01:00
|
|
|
void SetLayoutFollowGrainline(bool value);
|
2019-07-21 15:26:21 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetLayoutManualPriority() const -> bool;
|
|
|
|
static auto GetDefLayoutManualPriority() -> bool;
|
2019-07-21 15:26:21 +02:00
|
|
|
void SetLayoutManualPriority(bool value);
|
2018-12-27 14:54:29 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetLayoutNestQuantity() const -> bool;
|
|
|
|
static auto GetDefLayoutNestQuantity() -> bool;
|
2019-07-04 13:33:45 +02:00
|
|
|
void SetLayoutNestQuantity(bool value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetLayoutAutoCropLength() const -> bool;
|
|
|
|
static auto GetDefLayoutAutoCropLength() -> bool;
|
2019-10-16 10:16:16 +02:00
|
|
|
void SetLayoutAutoCropLength(bool value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetLayoutAutoCropWidth() const -> bool;
|
|
|
|
static auto GetDefLayoutAutoCropWidth() -> bool;
|
2019-10-16 10:16:16 +02:00
|
|
|
void SetLayoutAutoCropWidth(bool value);
|
2015-05-08 16:24:20 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetLayoutSaveLength() const -> bool;
|
|
|
|
static auto GetDefLayoutSaveLength() -> bool;
|
2015-05-08 16:24:20 +02:00
|
|
|
void SetLayoutSaveLength(bool value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetLayoutPreferOneSheetSolution() const -> bool;
|
|
|
|
static auto GetDefLayoutPreferOneSheetSolution() -> bool;
|
2020-03-25 14:28:23 +01:00
|
|
|
void SetLayoutPreferOneSheetSolution(bool value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetLayoutUnitePages() const -> bool;
|
|
|
|
static auto GetDefLayoutUnitePages() -> bool;
|
2015-05-18 13:26:37 +02:00
|
|
|
void SetLayoutUnitePages(bool value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetIgnoreAllFields() const -> bool;
|
|
|
|
static auto GetDefIgnoreAllFields() -> bool;
|
2015-11-09 12:33:36 +01:00
|
|
|
void SetIgnoreAllFields(bool value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetStripOptimization() const -> bool;
|
|
|
|
static auto GetDefStripOptimization() -> bool;
|
2016-02-23 13:13:10 +01:00
|
|
|
void SetStripOptimization(bool value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetMultiplier() const -> quint8;
|
|
|
|
static auto GetDefMultiplier() -> quint8;
|
2016-02-23 13:13:10 +01:00
|
|
|
void SetMultiplier(quint8 value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetTextAsPaths() const -> bool;
|
|
|
|
static auto GetDefTextAsPaths() -> bool;
|
2017-07-01 19:32:54 +02:00
|
|
|
void SetTextAsPaths(bool value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetKnownMaterials() const -> QStringList;
|
2023-06-21 09:24:51 +02:00
|
|
|
void SetKnownMaterials(const QStringList &list);
|
2017-08-28 15:03:19 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto IsRememberPatternMaterials() const -> bool;
|
2017-08-30 06:26:18 +02:00
|
|
|
void SetRememberPatternMaterials(bool value);
|
|
|
|
|
2017-10-10 11:22:59 +02:00
|
|
|
// settings for the tiled PDFs
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetTiledPDFPaperHeight(const Unit &unit) const -> qreal;
|
2023-06-21 09:24:51 +02:00
|
|
|
void SetTiledPDFPaperHeight(qreal value, const Unit &unit);
|
2017-10-10 11:22:59 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetTiledPDFPaperWidth(const Unit &unit) const -> qreal;
|
2023-06-21 09:24:51 +02:00
|
|
|
void SetTiledPDFPaperWidth(qreal value, const Unit &unit);
|
2017-10-10 11:22:59 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto IsDockWidgetGroupsActive() const -> bool;
|
|
|
|
static auto GetDefDockWidgetGroupsActive() -> bool;
|
2019-10-28 16:44:31 +01:00
|
|
|
void SetDockWidgetGroupsActive(bool value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto IsDockWidgetToolOptionsActive() const -> bool;
|
|
|
|
static auto GetDefDockWidgetToolOptionsActive() -> bool;
|
2019-10-28 16:44:31 +01:00
|
|
|
void SetDockWidgetToolOptionsActive(bool value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto IsDockWidgetPatternMessagesActive() const -> bool;
|
|
|
|
static auto GetDefDockWidgetPatternMessagesActive() -> bool;
|
2019-10-28 16:44:31 +01:00
|
|
|
void SetDockWidgetPatternMessagesActive(bool value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto IsDockWidgetBackgroundImagesActive() const -> bool;
|
|
|
|
static auto GetDefDockWidgetBackgroundImagesActive() -> bool;
|
2022-01-28 15:54:20 +01:00
|
|
|
void SetDockWidgetBackgroundImagesActive(bool value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetPatternMessageFontSize(int fontSizeDef) const -> int;
|
|
|
|
static auto GetDefMinPatternMessageFontSize() -> int;
|
|
|
|
static auto GetDefMaxPatternMessageFontSize() -> int;
|
2019-10-28 16:44:31 +01:00
|
|
|
void SetPatternMessageFontSize(int size);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetAutoRefreshPatternMessage() const -> bool;
|
2019-11-28 14:17:27 +01:00
|
|
|
void SetAutoRefreshPatternMessage(bool value);
|
|
|
|
|
2021-04-23 17:03:16 +02:00
|
|
|
auto GetLayoutExportFormat() const -> qint8;
|
|
|
|
void SetLayoutExportFormat(qint8 format);
|
|
|
|
|
2021-06-28 09:25:52 +02:00
|
|
|
auto GetDetailExportFormat() const -> qint8;
|
|
|
|
void SetDetailExportFormat(qint8 format);
|
|
|
|
|
2021-11-22 14:24:48 +01:00
|
|
|
auto GetHistorySearchHistory() const -> QStringList;
|
|
|
|
void SetHistorySearchHistory(const QStringList &history);
|
|
|
|
|
|
|
|
auto GetIncrementsSearchHistory() const -> QStringList;
|
|
|
|
void SetIncrementsSearchHistory(const QStringList &history);
|
|
|
|
|
|
|
|
auto GetPreviewCalculationsSearchHistory() const -> QStringList;
|
|
|
|
void SetPreviewCalculationsSearchHistory(const QStringList &history);
|
|
|
|
|
|
|
|
auto GetFinalMeasurementsSearchHistory() const -> QStringList;
|
|
|
|
void SetFinalMeasurementsSearchHistory(const QStringList &history);
|
|
|
|
|
|
|
|
auto GetHistorySearchOptionUseUnicodeProperties() const -> bool;
|
|
|
|
void SetHistorySearchOptionUseUnicodeProperties(bool value);
|
|
|
|
|
|
|
|
auto GetHistorySearchOptionWholeWord() const -> bool;
|
|
|
|
void SetHistorySearchOptionWholeWord(bool value);
|
|
|
|
|
|
|
|
auto GetHistorySearchOptionRegexp() const -> bool;
|
|
|
|
void SetHistorySearchOptionRegexp(bool value);
|
|
|
|
|
2023-06-21 09:24:51 +02:00
|
|
|
auto GetHistorySearchOptionMatchCase() const -> bool;
|
2021-11-22 14:24:48 +01:00
|
|
|
void SetHistorySearchOptionMatchCase(bool value);
|
|
|
|
|
|
|
|
auto GetIncrementsSearchOptionUseUnicodeProperties() const -> bool;
|
|
|
|
void SetIncrementsSearchOptionUseUnicodeProperties(bool value);
|
|
|
|
|
|
|
|
auto GetIncrementsSearchOptionWholeWord() const -> bool;
|
|
|
|
void SetIncrementsSearchOptionWholeWord(bool value);
|
|
|
|
|
|
|
|
auto GetIncrementsSearchOptionRegexp() const -> bool;
|
|
|
|
void SetIncrementsSearchOptionRegexp(bool value);
|
|
|
|
|
2023-06-21 09:24:51 +02:00
|
|
|
auto GetIncrementsSearchOptionMatchCase() const -> bool;
|
2021-11-22 14:24:48 +01:00
|
|
|
void SetIncrementsSearchOptionMatchCase(bool value);
|
|
|
|
|
|
|
|
auto GetPreviewCalculationsSearchOptionUseUnicodeProperties() const -> bool;
|
|
|
|
void SetPreviewCalculationsSearchOptionUseUnicodeProperties(bool value);
|
|
|
|
|
|
|
|
auto GetPreviewCalculationsSearchOptionWholeWord() const -> bool;
|
|
|
|
void SetPreviewCalculationsSearchOptionWholeWord(bool value);
|
|
|
|
|
|
|
|
auto GetPreviewCalculationsSearchOptionRegexp() const -> bool;
|
|
|
|
void SetPreviewCalculationsSearchOptionRegexp(bool value);
|
|
|
|
|
2023-06-21 09:24:51 +02:00
|
|
|
auto GetPreviewCalculationsSearchOptionMatchCase() const -> bool;
|
2021-11-22 14:24:48 +01:00
|
|
|
void SetPreviewCalculationsSearchOptionMatchCase(bool value);
|
|
|
|
|
|
|
|
auto GetFinalMeasurementsSearchOptionUseUnicodeProperties() const -> bool;
|
|
|
|
void SetFinalMeasurementsSearchOptionUseUnicodeProperties(bool value);
|
|
|
|
|
|
|
|
auto GetFinalMeasurementsSearchOptionWholeWord() const -> bool;
|
|
|
|
void SetFinalMeasurementsSearchOptionWholeWord(bool value);
|
|
|
|
|
|
|
|
auto GetFinalMeasurementsSearchOptionRegexp() const -> bool;
|
|
|
|
void SetFinalMeasurementsSearchOptionRegexp(bool value);
|
|
|
|
|
2023-06-21 09:24:51 +02:00
|
|
|
auto GetFinalMeasurementsSearchOptionMatchCase() const -> bool;
|
2021-11-22 14:24:48 +01:00
|
|
|
void SetFinalMeasurementsSearchOptionMatchCase(bool value);
|
|
|
|
|
2022-02-04 10:01:52 +01:00
|
|
|
auto GetBackgroundImageDefOpacity() const -> int;
|
|
|
|
void SetBackgroundImageDefOpacity(int value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetShowGrainline() const -> bool;
|
2023-04-10 11:20:18 +02:00
|
|
|
void SetShowGrainline(bool value);
|
|
|
|
|
2014-11-22 17:15:47 +01:00
|
|
|
private:
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_DISABLE_COPY_MOVE(VValentinaSettings) // NOLINT
|
2018-05-11 11:42:20 +02:00
|
|
|
|
|
|
|
template <typename T>
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetCachedValue(T &cache, const QString &setting, T defValue, T valueMin, T valueMax) const -> T;
|
2014-11-22 17:15:47 +01:00
|
|
|
};
|
|
|
|
|
2020-05-10 17:32:14 +02:00
|
|
|
#endif // VVALENTINASETTINGS_H
|