/************************************************************************ ** ** @file vincrementtablerow.h ** @author Roman Telezhinsky ** @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 ** 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 . ** *************************************************************************/ #ifndef VINCREMENTTABLEROW_H #define VINCREMENTTABLEROW_H /** * @brief The VIncrementTableRow class keep data row of increment table */ class VIncrementTableRow { public: /** * @brief VIncrementTableRow create enpty row */ VIncrementTableRow(); /** * @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 */ VIncrementTableRow(qint64 id, qreal base, qreal ksize, qreal kgrowth, QString description = QString()); /** * @brief getId return id of row * @return id */ inline qint64 getId() const {return id;} /** * @brief setId set id of row * @param value id */ inline void setId(const qint64 &value) {id = value;} /** * @brief getBase return value in base size and growth * @return value */ inline qreal getBase() const {return base;} /** * @brief setBase set value in base size and growth * @param value base value */ inline void setBase(const qreal &value) {base = value;} /** * @brief getKsize return increment in sizes * @return increment */ inline qreal getKsize() const {return ksize;} /** * @brief setKsize set increment in sizes * @param value value of increment */ inline void setKsize(const qreal &value) {ksize = value;} /** * @brief getKgrowth return increment in growths * @return increment */ inline qreal getKgrowth() const {return kgrowth;} /** * @brief setKgrowth set increment in growths * @param value value of increment */ inline void setKgrowth(const qreal &value) {kgrowth = value;} /** * @brief getDescription return description * @return description */ inline QString getDescription() const {return description;} /** * @brief setDescription set description for row * @param value description */ inline void setDescription(const QString &value) {description = value;} private: /** * @brief id identificator */ qint64 id; /** * @brief base value in base size and growth */ qreal base; /** * @brief ksize increment in sizes */ qreal ksize; /** * @brief kgrowth increment in growths */ qreal kgrowth; /** * @brief description description of increment */ QString description; }; #endif // VINCREMENTTABLEROW_H