8d1146c1af
--HG-- branch : feature
163 lines
5.2 KiB
C++
163 lines
5.2 KiB
C++
/************************************************************************
|
|
**
|
|
** @file dialogincrements.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/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#ifndef DIALOGINCREMENTS_H
|
|
#define DIALOGINCREMENTS_H
|
|
|
|
#include "dialogtool.h"
|
|
#include "../xml/vdomdocument.h"
|
|
|
|
namespace Ui
|
|
{
|
|
class DialogIncrements;
|
|
}
|
|
|
|
/**
|
|
* @brief The DialogIncrements class show dialog increments. Tables of all variables in program will be here.
|
|
*/
|
|
class DialogIncrements : public DialogTool
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
/**
|
|
* @brief DialogIncrements create dialog
|
|
* @param data container with data
|
|
* @param doc dom document container
|
|
* @param parent parent widget
|
|
*/
|
|
DialogIncrements(VContainer *data, VDomDocument *doc, QWidget *parent = 0);
|
|
~DialogIncrements();
|
|
public slots:
|
|
/**
|
|
* @brief clickedToolButtonAdd create new row in table
|
|
*/
|
|
void clickedToolButtonAdd();
|
|
/**
|
|
* @brief clickedToolButtonRemove remove one row from table
|
|
*/
|
|
void clickedToolButtonRemove();
|
|
/**
|
|
* @brief cellChanged cell in table was changed
|
|
* @param row number of row
|
|
* @param column number of column
|
|
*/
|
|
void cellChanged ( qint32 row, qint32 column );
|
|
/**
|
|
* @brief FullUpdateFromFile update information in tables form file
|
|
*/
|
|
void FullUpdateFromFile();
|
|
/**
|
|
* @brief DialogAccepted save data and emit signal about closed dialog.
|
|
*/
|
|
virtual void DialogAccepted();
|
|
signals:
|
|
/**
|
|
* @brief FullUpdateTree signal update data for dom document
|
|
*/
|
|
void FullUpdateTree();
|
|
/**
|
|
* @brief haveLiteChange signal show sign of change
|
|
*/
|
|
void haveLiteChange();
|
|
private:
|
|
Q_DISABLE_COPY(DialogIncrements)
|
|
/**
|
|
* @brief ui keeps information about user interface
|
|
*/
|
|
Ui::DialogIncrements *ui;
|
|
/**
|
|
* @brief data container with data
|
|
*/
|
|
VContainer *data; // need because we must change data
|
|
/**
|
|
* @brief doc dom document container
|
|
*/
|
|
VDomDocument *doc;
|
|
/**
|
|
* @brief row save number of row current selected cell
|
|
*/
|
|
qint32 row;
|
|
/**
|
|
* @brief column save number of column current selected cell
|
|
*/
|
|
qint32 column;
|
|
/**
|
|
* @brief InitialStandartTable initial option standart table
|
|
*/
|
|
void InitialStandartTable();
|
|
/**
|
|
* @brief InitialIncrementTable initial option increment table
|
|
*/
|
|
void InitialIncrementTable();
|
|
/**
|
|
* @brief InitialLinesTable initial option lines table
|
|
*/
|
|
void InitialLinesTable();
|
|
/**
|
|
* @brief InitialSplinesTable initial option splines table
|
|
*/
|
|
void InitialSplinesTable();
|
|
/**
|
|
* @brief InitialArcsTable initial option arcs table
|
|
*/
|
|
void InitialArcsTable();
|
|
/**
|
|
* @brief FillStandartTable fill data for standart table
|
|
*/
|
|
void FillStandartTable();
|
|
/**
|
|
* @brief FillIncrementTable fill data for increment table
|
|
*/
|
|
void FillIncrementTable();
|
|
/**
|
|
* @brief FillLengthLines fill data for table of lines lengths
|
|
*/
|
|
void FillLengthLines();
|
|
/**
|
|
* @brief FillLengthSplines fill data for table of splines lengths
|
|
*/
|
|
void FillLengthSplines();
|
|
/**
|
|
* @brief FillLengthArcs fill data for table of arcs lengths
|
|
*/
|
|
void FillLengthArcs();
|
|
/**
|
|
* @brief AddIncrementToFile save created increment to file
|
|
* @param id id of increment
|
|
* @param name name
|
|
* @param base base value
|
|
* @param ksize increment in sizes
|
|
* @param kgrowth increment in growths
|
|
* @param description description of increment
|
|
*/
|
|
void AddIncrementToFile(qint64 id, QString name, qreal base, qreal ksize, qreal kgrowth,
|
|
QString description);
|
|
};
|
|
|
|
#endif // DIALOGINCREMENTS_H
|