25a58421cc
--HG-- branch : feature
348 lines
12 KiB
C++
348 lines
12 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vabstractpattern.h
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date 15 6, 2015
|
|
**
|
|
** @brief
|
|
** @copyright
|
|
** This source code is part of the Valentine project, a pattern making
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
** Copyright (C) 2015 Valentina project
|
|
** <https://bitbucket.org/dismine/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 VABSTRACTPATTERN_H
|
|
#define VABSTRACTPATTERN_H
|
|
|
|
#include "vdomdocument.h"
|
|
#include "vtoolrecord.h"
|
|
|
|
#include <QObject>
|
|
#include <QDate>
|
|
|
|
enum class Document : char { LiteParse, LitePPParse, FullParse };
|
|
enum class LabelType : char {NewPatternPiece, NewLabel};
|
|
|
|
// Don't touch values!!!. Same values stored in xml.
|
|
enum class CrossCirclesPoint : char {FirstPoint = 1, SecondPoint = 2};
|
|
enum class VCrossCurvesPoint : char {HighestPoint = 1, LowestPoint = 2};
|
|
enum class HCrossCurvesPoint : char {LeftmostPoint = 1, RightmostPoint = 2};
|
|
|
|
class VDataTool;
|
|
class VContainer;
|
|
|
|
class VAbstractPattern : public QObject, public VDomDocument
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit VAbstractPattern(QObject *parent = nullptr);
|
|
virtual ~VAbstractPattern() Q_DECL_OVERRIDE;
|
|
|
|
QStringList ListMeasurements() const;
|
|
|
|
virtual void CreateEmptyFile()=0;
|
|
|
|
void ChangeActivPP(const QString& name, const Document &parse = Document::FullParse);
|
|
QString GetNameActivPP() const;
|
|
bool CheckExistNamePP(const QString& name) const;
|
|
int CountPP() const;
|
|
QDomElement GetPPElement(const QString &name);
|
|
bool ChangeNamePP(const QString& oldName, const QString &newName);
|
|
bool appendPP(const QString& name);
|
|
|
|
bool GetActivDrawElement(QDomElement &element) const;
|
|
bool GetActivNodeElement(const QString& name, QDomElement& element) const;
|
|
|
|
quint32 getCursor() const;
|
|
void setCursor(const quint32 &value);
|
|
|
|
virtual void IncrementReferens(quint32 id) const=0;
|
|
virtual void DecrementReferens(quint32 id) const=0;
|
|
|
|
virtual QString GenerateLabel(const LabelType &type, const QString &reservedName = QString())const=0;
|
|
virtual QString GenerateSuffix() const=0;
|
|
|
|
virtual void UpdateToolData(const quint32 &id, VContainer *data)=0;
|
|
|
|
QHash<quint32, VDataTool *> *getTools();
|
|
VDataTool *getTool(const quint32 &id);
|
|
void AddTool(const quint32 &id, VDataTool *tool);
|
|
|
|
void AddToolOnRemove(VDataTool *tool);
|
|
|
|
QVector<VToolRecord> *getHistory();
|
|
QVector<VToolRecord> getLocalHistory() const;
|
|
|
|
QString MPath() const;
|
|
void SetPath(const QString &path);
|
|
Unit MUnit() const;
|
|
|
|
quint32 SiblingNodeId(const quint32 &nodeId) const;
|
|
|
|
QStringList getPatternPieces() const;
|
|
|
|
QMap<GHeights, bool> GetGradationHeights() const;
|
|
void SetGradationHeights(const QMap<GHeights, bool> &options);
|
|
|
|
QMap<GSizes, bool> GetGradationSizes() const;
|
|
void SetGradationSizes(const QMap<GSizes, bool> &options);
|
|
|
|
QString GetDescription() const;
|
|
void SetDescription(const QString &text);
|
|
|
|
QString GetNotes() const;
|
|
void SetNotes(const QString &text);
|
|
|
|
QString GetPatternName() const;
|
|
void SetPatternName(QString qsName);
|
|
QString GetCompanyName() const;
|
|
void SetCompanyName(QString qsName);
|
|
QString GetPatternNumber() const;
|
|
void SetPatternNumber(QString qsNum);
|
|
QString GetCustomerName() const;
|
|
void SetCustomerName(QString qsName);
|
|
QDate GetCreationDate() const;
|
|
QString GetPatternSize() const;
|
|
void SetPatternSize(QString qsSize);
|
|
bool IsDateVisible() const;
|
|
void SetDateVisible(bool bVisible);
|
|
|
|
QString GetImage() const;
|
|
QString GetImageExtension() const;
|
|
void SetImage(const QString &text, const QString &extension);
|
|
void DeleteImage();
|
|
|
|
QString GetVersion() const;
|
|
void SetVersion();
|
|
|
|
bool IsModified() const;
|
|
void SetModified(bool modified);
|
|
|
|
QDomElement GetDraw(const QString &name) const;
|
|
|
|
void ParseGroups(const QDomElement &domElement);
|
|
QDomElement CreateGroups();
|
|
QDomElement CreateGroup(quint32 id, const QString &name, const QMap<quint32, quint32> &groupData);
|
|
QString GetGroupName(quint32 id);
|
|
void SetGroupName(quint32 id, const QString &name);
|
|
QMap<quint32, QPair<QString, bool> > GetGroups();
|
|
bool GetGroupVisivility(quint32 id);
|
|
void SetGroupVisivility(quint32 id, bool visible);
|
|
|
|
static const QString TagPattern;
|
|
static const QString TagCalculation;
|
|
static const QString TagModeling;
|
|
static const QString TagDetails;
|
|
static const QString TagDetail;
|
|
static const QString TagAuthor;
|
|
static const QString TagDescription;
|
|
static const QString TagImage;
|
|
static const QString TagNotes;
|
|
static const QString TagMeasurements;
|
|
static const QString TagIncrements;
|
|
static const QString TagIncrement;
|
|
static const QString TagDraw;
|
|
static const QString TagGroups;
|
|
static const QString TagGroup;
|
|
static const QString TagGroupItem;
|
|
static const QString TagPoint;
|
|
static const QString TagLine;
|
|
static const QString TagSpline;
|
|
static const QString TagArc;
|
|
static const QString TagTools;
|
|
static const QString TagOperation;
|
|
static const QString TagGradation;
|
|
static const QString TagHeights;
|
|
static const QString TagSizes;
|
|
static const QString TagUnit;
|
|
static const QString TagData;
|
|
static const QString TagPatternInfo;
|
|
static const QString TagMCP;
|
|
static const QString TagPatternName;
|
|
static const QString TagPatternNum;
|
|
static const QString TagCompanyName;
|
|
static const QString TagCustomerName;
|
|
static const QString TagCreationDate;
|
|
static const QString TagSize;
|
|
static const QString TagShowDate;
|
|
|
|
static const QString AttrName;
|
|
static const QString AttrVisible;
|
|
static const QString AttrObject;
|
|
static const QString AttrTool;
|
|
static const QString AttrType;
|
|
static const QString AttrLetter;
|
|
static const QString AttrMaterial;
|
|
static const QString AttrUserDefined;
|
|
static const QString AttrCutNumber;
|
|
static const QString AttrPlacement;
|
|
|
|
static const QString AttrAll;
|
|
|
|
static const QString AttrH92;
|
|
static const QString AttrH98;
|
|
static const QString AttrH104;
|
|
static const QString AttrH110;
|
|
static const QString AttrH116;
|
|
static const QString AttrH122;
|
|
static const QString AttrH128;
|
|
static const QString AttrH134;
|
|
static const QString AttrH140;
|
|
static const QString AttrH146;
|
|
static const QString AttrH152;
|
|
static const QString AttrH158;
|
|
static const QString AttrH164;
|
|
static const QString AttrH170;
|
|
static const QString AttrH176;
|
|
static const QString AttrH182;
|
|
static const QString AttrH188;
|
|
static const QString AttrH194;
|
|
|
|
static const QString AttrS22;
|
|
static const QString AttrS24;
|
|
static const QString AttrS26;
|
|
static const QString AttrS28;
|
|
static const QString AttrS30;
|
|
static const QString AttrS32;
|
|
static const QString AttrS34;
|
|
static const QString AttrS36;
|
|
static const QString AttrS38;
|
|
static const QString AttrS40;
|
|
static const QString AttrS42;
|
|
static const QString AttrS44;
|
|
static const QString AttrS46;
|
|
static const QString AttrS48;
|
|
static const QString AttrS50;
|
|
static const QString AttrS52;
|
|
static const QString AttrS54;
|
|
static const QString AttrS56;
|
|
|
|
static const QString AttrCustom;
|
|
static const QString AttrDefHeight;
|
|
static const QString AttrDefSize;
|
|
static const QString AttrExtension;
|
|
|
|
static const QString IncrementName;
|
|
static const QString IncrementFormula;
|
|
static const QString IncrementDescription;
|
|
|
|
signals:
|
|
/**
|
|
* @brief ChangedActivPP change active pattern peace.
|
|
* @param newName new pattern peace name.
|
|
*/
|
|
void ChangedActivPP(const QString &newName);
|
|
|
|
/**
|
|
* @brief ChangedCursor change cursor position.
|
|
* @param id tool id.
|
|
*/
|
|
void ChangedCursor(quint32 id);
|
|
|
|
/**
|
|
* @brief ChangedNameDraw save new name pattern peace.
|
|
* @param oldName old name.
|
|
* @param newName new name.
|
|
*/
|
|
void ChangedNameDraw(const QString &oldName, const QString &newName);
|
|
/**
|
|
* @brief FullUpdateFromFile update tool data form file.
|
|
*/
|
|
void FullUpdateFromFile();
|
|
/**
|
|
* @brief patternChanged emit if we have unsaved change.
|
|
*/
|
|
void patternChanged(bool saved);
|
|
/**
|
|
* @brief ShowTool highlight tool.
|
|
* @param id tool id.
|
|
* @param enable enable or disable highlight.
|
|
*/
|
|
void ShowTool(quint32 id, bool enable);
|
|
void ClearMainWindow();
|
|
void UndoCommand();
|
|
void SetEnabledGUI(bool enabled);
|
|
void CheckLayout();
|
|
void SetCurrentPP(const QString &patterPiece);
|
|
|
|
public slots:
|
|
virtual void LiteParseTree(const Document &parse)=0;
|
|
void haveLiteChange();
|
|
|
|
protected:
|
|
/** @brief nameActivDraw name current pattern peace. */
|
|
QString nameActivPP;
|
|
|
|
/** @brief cursor cursor keep id tool after which we will add new tool in file. */
|
|
quint32 cursor;
|
|
|
|
/** @brief tools list with pointer on tools. */
|
|
QHash<quint32, VDataTool*> tools;
|
|
|
|
QVector<VDataTool*> toolsOnRemove;
|
|
|
|
/** @brief history history records. */
|
|
QVector<VToolRecord> history;
|
|
|
|
/** @brief patternPieces list of patern pieces names for combobox*/
|
|
QStringList patternPieces;
|
|
|
|
/** @brief modified keep state of the document for cases that do not cover QUndoStack*/
|
|
mutable bool modified;
|
|
|
|
void ToolExists(const quint32 &id) const;
|
|
|
|
void SetActivPP(const QString& name);
|
|
|
|
QDomElement CheckTagExists(const QString &tag);
|
|
void InsertTag(const QStringList &tags, const QDomElement &element);
|
|
|
|
void SetChildTag(const QString& qsParent, const QString& qsChild, const QString& qsValue);
|
|
|
|
int GetIndexActivPP() const;
|
|
private:
|
|
Q_DISABLE_COPY(VAbstractPattern)
|
|
|
|
QStringList ListIncrements() const;
|
|
QStringList ListExpressions() const;
|
|
QStringList ListPointExpressions() const;
|
|
QStringList ListArcExpressions() const;
|
|
QStringList ListSplineExpressions() const;
|
|
QStringList ListPathPointExpressions() const;
|
|
QStringList ListIncrementExpressions() const;
|
|
QStringList ListOperationExpressions() const;
|
|
|
|
bool IsVariable(const QString& token) const;
|
|
bool IsPostfixOperator(const QString& token) const;
|
|
bool IsFunction(const QString& token) const;
|
|
|
|
QPair<bool, QMap<quint32, quint32> > ParseItemElement(const QDomElement &domElement);
|
|
};
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief getTools return list of tools pointers.
|
|
* @return list.
|
|
*/
|
|
inline QHash<quint32, VDataTool *> *VAbstractPattern::getTools()
|
|
{
|
|
return &tools;
|
|
}
|
|
|
|
#endif // VABSTRACTPATTERN_H
|