92 lines
4.1 KiB
C++
92 lines
4.1 KiB
C++
|
/************************************************************************
|
||
|
**
|
||
|
** @file vpatternpiecestyle.cpp
|
||
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
||
|
** @date 28 7, 2023
|
||
|
**
|
||
|
** @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) 2023 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 "vpatternpiecestyle.h"
|
||
|
|
||
|
#include <QJsonObject>
|
||
|
|
||
|
namespace
|
||
|
{
|
||
|
QT_WARNING_PUSH
|
||
|
QT_WARNING_DISABLE_CLANG("-Wunused-member-function")
|
||
|
|
||
|
Q_GLOBAL_STATIC_WITH_ARGS(const QString, PatternPieceStyleNodeVar, (QLatin1String("PatternPieceStyle"))) // NOLINT
|
||
|
Q_GLOBAL_STATIC_WITH_ARGS(const QString, PieceColorVar, (QLatin1String("PieceColor"))) // NOLINT
|
||
|
Q_GLOBAL_STATIC_WITH_ARGS(const QString, PointColorVar, (QLatin1String("PointColor"))) // NOLINT
|
||
|
Q_GLOBAL_STATIC_WITH_ARGS(const QString, NodeLabelColorVar, (QLatin1String("NodeLabelColor"))) // NOLINT
|
||
|
Q_GLOBAL_STATIC_WITH_ARGS(const QString, NodeLabelHoverColorVar, (QLatin1String("NodeLabelHoverColor"))) // NOLINT
|
||
|
Q_GLOBAL_STATIC_WITH_ARGS(const QString, NodeLabelLineColorVar, (QLatin1String("NodeLabelLineColor"))) // NOLINT
|
||
|
Q_GLOBAL_STATIC_WITH_ARGS(const QString, LabelBackgroundColorVar, (QLatin1String("LabelBackgroundColor"))) // NOLINT
|
||
|
Q_GLOBAL_STATIC_WITH_ARGS(const QString, LabelTextColorVar, (QLatin1String("LabelTextColor"))) // NOLINT
|
||
|
Q_GLOBAL_STATIC_WITH_ARGS(const QString, LabelModeColorVar, (QLatin1String("LabelModeColor"))) // NOLINT
|
||
|
|
||
|
QT_WARNING_POP
|
||
|
} // namespace
|
||
|
|
||
|
//---------------------------------------------------------------------------------------------------------------------
|
||
|
VPatternPieceStyle::VPatternPieceStyle()
|
||
|
{
|
||
|
LoadJsonFile(VStylesheetStyle::GetResourceName());
|
||
|
}
|
||
|
|
||
|
//---------------------------------------------------------------------------------------------------------------------
|
||
|
void VPatternPieceStyle::LoadJson(const QJsonObject &json)
|
||
|
{
|
||
|
QJsonValue toolStyleValues = json[*PatternPieceStyleNodeVar];
|
||
|
|
||
|
QJsonObject obj = toolStyleValues.toObject();
|
||
|
|
||
|
ReadColor(obj, *PieceColorVar, m_pieceColor);
|
||
|
ReadColor(obj, *PointColorVar, m_pointColor);
|
||
|
ReadColor(obj, *NodeLabelColorVar, m_nodeLabelColor);
|
||
|
ReadColor(obj, *NodeLabelHoverColorVar, m_nodeLabelHoverColor);
|
||
|
ReadColor(obj, *NodeLabelLineColorVar, m_nodeLabelLineColor);
|
||
|
ReadColor(obj, *LabelBackgroundColorVar, m_labelBackgroundColor);
|
||
|
ReadColor(obj, *LabelTextColorVar, m_labelTextColor);
|
||
|
ReadColor(obj, *LabelModeColorVar, m_labelModeColor);
|
||
|
}
|
||
|
|
||
|
//---------------------------------------------------------------------------------------------------------------------
|
||
|
auto VPatternPieceStyle::ToJson() const -> QJsonObject
|
||
|
{
|
||
|
QJsonObject obj;
|
||
|
|
||
|
WriteColor(obj, *PieceColorVar, m_pieceColor);
|
||
|
WriteColor(obj, *PointColorVar, m_pointColor);
|
||
|
WriteColor(obj, *NodeLabelColorVar, m_nodeLabelColor);
|
||
|
WriteColor(obj, *NodeLabelHoverColorVar, m_nodeLabelHoverColor);
|
||
|
WriteColor(obj, *NodeLabelLineColorVar, m_nodeLabelLineColor);
|
||
|
WriteColor(obj, *LabelBackgroundColorVar, m_labelBackgroundColor);
|
||
|
WriteColor(obj, *LabelTextColorVar, m_labelTextColor);
|
||
|
WriteColor(obj, *LabelModeColorVar, m_labelModeColor);
|
||
|
|
||
|
QJsonObject root;
|
||
|
root[*PatternPieceStyleNodeVar] = obj;
|
||
|
|
||
|
return root;
|
||
|
}
|