valentina/src/libs/vmisc/vvalentinasettings.h

253 lines
9.4 KiB
C
Raw Normal View History

/************************************************************************
**
** @file vvalentinasettings.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 22 11, 2014
**
** @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) 2013-2015 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 VVALENTINASETTINGS_H
#define VVALENTINASETTINGS_H
#include <QMetaObject>
#include <QObject>
#include <QSettings>
#include <QString>
#include <QtGlobal>
#include "vcommonsettings.h"
class VValentinaSettings : public VCommonSettings
{
2022-08-12 17:50:13 +02:00
Q_OBJECT // NOLINT
2023-06-21 09:24:51 +02:00
public:
VValentinaSettings(Format format, Scope scope, const QString &organization, const QString &application = QString(),
2023-06-21 09:24:51 +02:00
QObject *parent = nullptr);
VValentinaSettings(const QString &fileName, Format format, QObject *parent = nullptr);
2023-06-22 17:30:43 +02:00
static auto PrepareLabelTemplates(const QString &currentPath) -> QString;
2023-05-03 13:07:02 +02:00
auto GetLabelLanguage() const -> QString;
void SetLabelLanguage(const QString &value);
2023-05-03 13:07:02 +02:00
static auto GetDefPathLayout() -> QString;
auto GetPathLayout() const -> QString;
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);
// Layout settings
2023-05-03 13:07:02 +02:00
auto GetLayoutPaperHeight() const -> qreal;
void SetLayoutPaperHeight(qreal value);
2023-05-03 13:07:02 +02:00
auto GetLayoutPaperWidth() const -> qreal;
void SetLayoutPaperWidth(qreal value);
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);
2023-05-03 13:07:02 +02:00
auto GetNestingTime() const -> int;
static auto GetDefNestingTime() -> int { return 1; }
void SetNestingTime(int value);
2023-05-03 13:07:02 +02:00
auto GetEfficiencyCoefficient() const -> qreal;
static auto GetDefEfficiencyCoefficient() -> qreal { return 0.0; }
void SetEfficiencyCoefficient(qreal value);
2023-05-03 13:07:02 +02:00
auto GetFields(const QMarginsF &def = QMarginsF()) const -> QMarginsF;
void SetFields(const QMarginsF &value);
2023-05-03 13:07:02 +02:00
auto GetLayoutGroup() const -> Cases;
static auto GetDefLayoutGroup() -> Cases;
void SetLayoutGroup(const Cases &value);
2023-05-03 13:07:02 +02:00
auto GetLayoutFollowGrainline() const -> bool;
static auto GetDefLayoutFollowGrainline() -> bool;
void SetLayoutFollowGrainline(bool value);
2023-05-03 13:07:02 +02:00
auto GetLayoutManualPriority() const -> bool;
static auto GetDefLayoutManualPriority() -> bool;
void SetLayoutManualPriority(bool value);
2023-05-03 13:07:02 +02:00
auto GetLayoutNestQuantity() const -> bool;
static auto GetDefLayoutNestQuantity() -> bool;
void SetLayoutNestQuantity(bool value);
2023-05-03 13:07:02 +02:00
auto GetLayoutAutoCropLength() const -> bool;
static auto GetDefLayoutAutoCropLength() -> bool;
void SetLayoutAutoCropLength(bool value);
2023-05-03 13:07:02 +02:00
auto GetLayoutAutoCropWidth() const -> bool;
static auto GetDefLayoutAutoCropWidth() -> bool;
void SetLayoutAutoCropWidth(bool value);
2023-05-03 13:07:02 +02:00
auto GetLayoutSaveLength() const -> bool;
static auto GetDefLayoutSaveLength() -> bool;
void SetLayoutSaveLength(bool value);
2023-05-03 13:07:02 +02:00
auto GetLayoutPreferOneSheetSolution() const -> bool;
static auto GetDefLayoutPreferOneSheetSolution() -> bool;
void SetLayoutPreferOneSheetSolution(bool value);
2023-05-03 13:07:02 +02:00
auto GetLayoutUnitePages() const -> bool;
static auto GetDefLayoutUnitePages() -> bool;
void SetLayoutUnitePages(bool value);
2023-05-03 13:07:02 +02:00
auto GetIgnoreAllFields() const -> bool;
static auto GetDefIgnoreAllFields() -> bool;
void SetIgnoreAllFields(bool value);
2023-05-03 13:07:02 +02:00
auto GetStripOptimization() const -> bool;
static auto GetDefStripOptimization() -> bool;
void SetStripOptimization(bool value);
2023-05-03 13:07:02 +02:00
auto GetMultiplier() const -> quint8;
static auto GetDefMultiplier() -> quint8;
void SetMultiplier(quint8 value);
2023-05-03 13:07:02 +02:00
auto GetTextAsPaths() const -> bool;
static auto GetDefTextAsPaths() -> bool;
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);
2023-05-03 13:07:02 +02:00
auto IsRememberPatternMaterials() const -> bool;
void SetRememberPatternMaterials(bool value);
// 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);
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);
2023-05-03 13:07:02 +02:00
auto IsDockWidgetGroupsActive() const -> bool;
static auto GetDefDockWidgetGroupsActive() -> bool;
void SetDockWidgetGroupsActive(bool value);
2023-05-03 13:07:02 +02:00
auto IsDockWidgetToolOptionsActive() const -> bool;
static auto GetDefDockWidgetToolOptionsActive() -> bool;
void SetDockWidgetToolOptionsActive(bool value);
2023-05-03 13:07:02 +02:00
auto IsDockWidgetPatternMessagesActive() const -> bool;
static auto GetDefDockWidgetPatternMessagesActive() -> bool;
void SetDockWidgetPatternMessagesActive(bool value);
2023-05-03 13:07:02 +02:00
auto IsDockWidgetBackgroundImagesActive() const -> bool;
static auto GetDefDockWidgetBackgroundImagesActive() -> bool;
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;
void SetPatternMessageFontSize(int size);
2023-05-03 13:07:02 +02:00
auto GetAutoRefreshPatternMessage() const -> bool;
void SetAutoRefreshPatternMessage(bool value);
2021-04-23 17:03:16 +02:00
auto GetLayoutExportFormat() const -> qint8;
void SetLayoutExportFormat(qint8 format);
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;
void SetShowGrainline(bool value);
private:
2022-08-12 17:50:13 +02:00
Q_DISABLE_COPY_MOVE(VValentinaSettings) // NOLINT
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;
};
#endif // VVALENTINASETTINGS_H