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