valentina/src/app/container/vincrement.h

179 lines
4.5 KiB
C
Raw Normal View History

/************************************************************************
**
** @file vincrementtablerow.h
** @author Roman Telezhinsky <dismine@gmail.com>
** @date November 15, 2013
**
** @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.
**
** 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/>.
**
*************************************************************************/
2013-07-17 13:38:11 +02:00
#ifndef VINCREMENTTABLEROW_H
#define VINCREMENTTABLEROW_H
#include <QString>
/**
* @brief The VIncrement class keep data row of increment table
*/
class VIncrement
{
2013-07-17 13:38:11 +02:00
public:
/**
* @brief VIncrementTableRow create enpty row
*/
VIncrement();
/**
* @brief VIncrementTableRow create row
* @param id id
* @param base value in base size and growth
* @param ksize increment in sizes
* @param kgrowth increment in growths
* @param description description of increment
*/
VIncrement(quint32 id, qreal base, qreal ksize, qreal kheight, QString description = QString());
/**
* @brief getId return id of row
* @return id
*/
quint32 getId() const;
/**
* @brief setId set id of row
* @param value id
*/
void setId(const quint32 &value);
/**
* @brief getBase return value in base size and growth
* @return value
*/
qreal getBase() const;
/**
* @brief setBase set value in base size and growth
* @param value base value
*/
void setBase(const qreal &value);
/**
* @brief getKsize return increment in sizes
* @return increment
*/
qreal getKsize() const;
/**
* @brief setKsize set increment in sizes
* @param value value of increment
*/
void setKsize(const qreal &value);
/**
* @brief getKheight return increment in growths
* @return increment
*/
qreal getKheight() const;
/**
* @brief setKheight set increment in growths
* @param value value of increment
*/
void setKheight(const qreal &value);
/**
* @brief getDescription return description
* @return description
*/
QString getDescription() const;
/**
* @brief setDescription set description for row
* @param value description
*/
void setDescription(const QString &value);
qreal GetValue() const;
qreal GetValue(const qreal &size, const qreal &height) const;
2013-07-17 13:38:11 +02:00
private:
/**
* @brief id identificator
*/
quint32 id;
/**
* @brief base value in base size and growth
*/
2013-10-27 11:22:44 +01:00
qreal base;
/**
* @brief ksize increment in sizes
*/
2013-10-27 11:22:44 +01:00
qreal ksize;
/**
* @brief kgrowth increment in growths
*/
qreal kheight;
/**
* @brief description description of increment
*/
2013-10-27 11:22:44 +01:00
QString description;
2013-07-17 13:38:11 +02:00
};
inline quint32 VIncrement::getId() const
{
return id;
}
inline void VIncrement::setId(const quint32 &value)
{
id = value;
}
inline qreal VIncrement::getBase() const
{
return base;
}
inline void VIncrement::setBase(const qreal &value)
{
base = value;
}
inline qreal VIncrement::getKsize() const
{
return ksize;
}
inline void VIncrement::setKsize(const qreal &value)
{
ksize = value;
}
inline qreal VIncrement::getKheight() const
{
return kheight;
}
inline void VIncrement::setKheight(const qreal &value)
{
kheight = value;
}
inline QString VIncrement::getDescription() const
{
return description;
}
inline void VIncrement::setDescription(const QString &value)
{
description = value;
}
2013-07-17 13:38:11 +02:00
#endif // VINCREMENTTABLEROW_H