valentina_old/src/app/valentina/dialogs/dialogincrements.h

114 lines
3.6 KiB
C
Raw Normal View History

/************************************************************************
**
** @file dialogincrements.h
** @author Roman Telezhynskyi <dismine(at)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-2015 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/>.
**
*************************************************************************/
2013-07-17 13:38:11 +02:00
#ifndef DIALOGINCREMENTS_H
#define DIALOGINCREMENTS_H
#include "../../libs/vtools/dialogs/tools/dialogtool.h"
#include "../xml/vpattern.h"
class VIndividualMeasurements;
2014-06-25 12:30:22 +02:00
class QTableWidget;
class QTableWidgetItem;
2013-07-17 13:38:11 +02:00
namespace Ui
{
class DialogIncrements;
2013-07-17 13:38:11 +02:00
}
/**
* @brief The DialogIncrements class show dialog increments. Tables of all variables in program will be here.
*/
class DialogIncrements : public DialogTool
{
Q_OBJECT
2013-07-17 13:38:11 +02:00
public:
DialogIncrements(VContainer *data, VPattern *doc, QWidget *parent = nullptr);
virtual ~DialogIncrements() Q_DECL_OVERRIDE;
2013-07-17 13:38:11 +02:00
signals:
/**
* @brief FullUpdateTree signal update data for dom document
*/
void FullUpdateTree(const Document &parse);
protected:
virtual void closeEvent ( QCloseEvent * event ) Q_DECL_OVERRIDE;
private slots:
void ShowIncrementDetails();
void AddIncrement();
void RemoveIncrement();
void MoveUp();
void MoveDown();
void SaveIncrName();
void SaveIncrDescription();
void SaveIncrFormula();
void DeployFormula();
void Fx();
void FullUpdateFromFile();
2013-07-17 13:38:11 +02:00
private:
Q_DISABLE_COPY(DialogIncrements)
/** @brief ui keeps information about user interface */
2013-07-17 13:38:11 +02:00
Ui::DialogIncrements *ui;
/** @brief data container with data */
VContainer *data; // need because we must change data
/** @brief doc dom document container */
VPattern *doc;
int formulaBaseHeight;
template <typename T>
void FillTable(const QMap<QString, T> varTable, QTableWidget *table);
void FillIncrements();
void FillLengthsLines();
void FillLengthLinesAngles();
void FillLengthsCurves();
void FillLengthArcs();
void FillRadiusesArcs();
void FillAnglesArcs();
void FillAnglesCurves();
void ShowUnits();
void ShowHeaderUnits(QTableWidget *table, int column, const QString &unit);
void AddCell(QTableWidget *table, const QString &text, int row, int column, int aligment, bool ok = true);
QString ClearIncrementName(const QString &name) const;
bool EvalIncrementFormula(const QString &formula, bool fromUser, VContainer *data, QLabel *label);
void Controls();
void EnableDetails(bool enabled);
2013-07-17 13:38:11 +02:00
};
#endif // DIALOGINCREMENTS_H