valentina/dialogs/dialogincrements.h

67 lines
2.1 KiB
C
Raw Normal View History

/****************************************************************************
**
** Copyright (C) 2013 Valentina project All Rights Reserved.
**
** This file is part of Valentina.
**
** Tox 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.
**
** Tox 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 DIALOGINCREMENTS_H
#define DIALOGINCREMENTS_H
2013-07-28 00:18:06 +02:00
#include "dialogtool.h"
#include "xml/vdomdocument.h"
2013-07-17 13:38:11 +02:00
namespace Ui {
class DialogIncrements;
}
2013-07-28 00:18:06 +02:00
class DialogIncrements : public DialogTool
2013-07-17 13:38:11 +02:00
{
2013-07-28 00:18:06 +02:00
Q_OBJECT
2013-07-17 13:38:11 +02:00
public:
explicit DialogIncrements(VContainer *data, VDomDocument *doc, QWidget *parent = 0);
~DialogIncrements();
public slots:
void clickedToolButtonAdd();
void clickedToolButtonRemove();
void cellChanged ( qint32 row, qint32 column );
void FullUpdateFromFile();
2013-07-28 00:18:06 +02:00
virtual void DialogAccepted();
2013-07-17 13:38:11 +02:00
signals:
void FullUpdateTree();
void haveLiteChange();
private:
Q_DISABLE_COPY(DialogIncrements)
2013-07-17 13:38:11 +02:00
Ui::DialogIncrements *ui;
2013-07-29 14:55:40 +02:00
VContainer *data; // need because we must change data
2013-07-17 13:38:11 +02:00
VDomDocument *doc;
2013-07-25 14:00:51 +02:00
void InitialStandartTable();
void InitialIncrementTable();
void InitialLinesTable();
2013-08-05 10:37:56 +02:00
void InitialSplinesTable();
void InitialArcsTable();
2013-07-17 13:38:11 +02:00
void FillStandartTable();
void FillIncrementTable();
2013-07-25 14:00:51 +02:00
void FillLengthLines();
2013-08-05 10:37:56 +02:00
void FillLengthSplines();
void FillLengthArcs();
void AddIncrementToFile(qint64 id, QString name, qreal base, qreal ksize, qreal kgrowth,
2013-07-17 13:38:11 +02:00
QString description);
};
#endif // DIALOGINCREMENTS_H