2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vtoolrecord.h
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @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) 2013 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-08-15 22:39:00 +02:00
|
|
|
#ifndef VTOOLRECORD_H
|
|
|
|
#define VTOOLRECORD_H
|
|
|
|
|
2013-11-21 13:05:26 +01:00
|
|
|
#include "../options.h"
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 15:05:58 +01:00
|
|
|
* @brief The VToolRecord class record about tool in history.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VToolRecord
|
|
|
|
{
|
2013-08-15 22:39:00 +02:00
|
|
|
public:
|
2014-02-26 09:18:59 +01:00
|
|
|
VToolRecord();
|
2014-06-12 09:22:29 +02:00
|
|
|
VToolRecord(const quint32 &id, const Tool &typeTool, const QString &nameDraw);
|
2014-06-13 19:02:41 +02:00
|
|
|
quint32 getId() const;
|
|
|
|
void setId(const quint32 &value);
|
|
|
|
Tool getTypeTool() const;
|
|
|
|
void setTypeTool(const Tool &value);
|
|
|
|
QString getNameDraw() const;
|
|
|
|
void setNameDraw(const QString &value);
|
2013-08-15 22:39:00 +02:00
|
|
|
private:
|
2014-06-13 19:02:41 +02:00
|
|
|
/** @brief id tool id. */
|
|
|
|
quint32 id;
|
|
|
|
|
|
|
|
/** @brief typeTool tool type. */
|
|
|
|
Tool typeTool;
|
|
|
|
|
|
|
|
/** @brief nameDraw pattern peace name. */
|
|
|
|
QString nameDraw;
|
2013-08-15 22:39:00 +02:00
|
|
|
};
|
|
|
|
|
2014-06-13 19:02:41 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief getId return tool id.
|
|
|
|
* @return id.
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline quint32 VToolRecord::getId() const
|
|
|
|
{
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2014-06-13 19:02:41 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief setId set tool id.
|
|
|
|
* @param value id.
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline void VToolRecord::setId(const quint32 &value)
|
|
|
|
{
|
|
|
|
id = value;
|
|
|
|
}
|
|
|
|
|
2014-06-13 19:02:41 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief getTypeTool return tool type.
|
|
|
|
* @return tool type.
|
|
|
|
*/
|
2014-06-12 09:22:29 +02:00
|
|
|
inline Tool VToolRecord::getTypeTool() const
|
2014-02-26 09:18:59 +01:00
|
|
|
{
|
|
|
|
return typeTool;
|
|
|
|
}
|
|
|
|
|
2014-06-13 19:02:41 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief setTypeTool set tool type.
|
|
|
|
* @param value tool type.
|
|
|
|
*/
|
2014-06-12 09:22:29 +02:00
|
|
|
inline void VToolRecord::setTypeTool(const Tool &value)
|
2014-02-26 09:18:59 +01:00
|
|
|
{
|
|
|
|
typeTool = value;
|
|
|
|
}
|
|
|
|
|
2014-06-13 19:02:41 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief getNameDraw return pattern peace name.
|
|
|
|
* @return pattern peace name.
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline QString VToolRecord::getNameDraw() const
|
|
|
|
{
|
|
|
|
return nameDraw;
|
|
|
|
}
|
|
|
|
|
2014-06-13 19:02:41 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief setNameDraw set pattern peace name.
|
|
|
|
* @param value pattern peace name.
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline void VToolRecord::setNameDraw(const QString &value)
|
|
|
|
{
|
|
|
|
nameDraw = value;
|
|
|
|
}
|
|
|
|
|
2013-08-15 22:39:00 +02:00
|
|
|
#endif // VTOOLRECORD_H
|