valentina/dialogs/dialogincrements.h

49 lines
1.3 KiB
C
Raw Normal View History

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"
2013-07-17 13:38:11 +02:00
#include <QPushButton>
#include "xml/vdomdocument.h"
#include "container/vcontainer.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:
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();
2013-08-20 12:26:02 +02:00
void AddIncrementToFile(qint64 id, QString name, qint32 base, qreal ksize, qreal kgrowth,
2013-07-17 13:38:11 +02:00
QString description);
2013-08-20 12:26:02 +02:00
DialogIncrements(const DialogIncrements &dialog);
const DialogIncrements &operator=(const DialogIncrements& dialog);
2013-07-17 13:38:11 +02:00
};
#endif // DIALOGINCREMENTS_H