valentina_old/src/app/valentina/dialogs/dialogincrements.h
Roman Telezhynskyi 4e07172a6f Cppcheck warnings.
2022-08-08 15:25:14 +03:00

167 lines
5.3 KiB
C++

/************************************************************************
**
** @file dialogincrements.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date November 15, 2013
**
** @brief
** @copyright
** This source code is part of the Valentina project, a pattern making
** program, whose allow create and modeling patterns of clothing.
** Copyright (C) 2013-2015 Valentina project
** <https://gitlab.com/smart-pattern/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 "../vtools/dialogs/tools/dialogtool.h"
#include "../xml/vpattern.h"
#include "../vmisc/vtablesearch.h"
#include <QPair>
class VIndividualMeasurements;
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 // NOLINT
public:
DialogIncrements(VContainer *data, VPattern *doc, QWidget *parent = nullptr);
~DialogIncrements() override;
void RestoreAfterClose();
signals:
void UpdateProperties();
public slots:
void FullUpdateFromFile();
protected:
void closeEvent ( QCloseEvent * event ) override;
void changeEvent ( QEvent * event) override;
auto eventFilter(QObject *object, QEvent *event) -> bool override;
void showEvent( QShowEvent *event ) override;
void resizeEvent(QResizeEvent *event) override;
auto IsValid() const -> bool final {return true;}
private slots:
void ShowIncrementDetails();
void AddIncrement();
void AddSeparator();
void RemoveIncrement();
void MoveUp();
void MoveDown();
void SaveIncrName(const QString &text);
void SaveIncrUnits();
void SaveIncrDescription();
void SaveIncrFormula();
void DeployFormula();
void Fx();
void RefreshPattern();
private:
// cppcheck-suppress unknownMacro
Q_DISABLE_COPY_MOVE(DialogIncrements) // NOLINT
/** @brief ui keeps information about user interface */
Ui::DialogIncrements *ui;
/** @brief data container with data */
VContainer *data; // need because we must change data //-V703
/** @brief doc dom document container */
VPattern *doc;
/** @brief m_completeData need to show all internal variables */
VContainer m_completeData;
int m_formulaBaseHeight{0};
int m_formulaBaseHeightPC{0};
QSharedPointer<VTableSearch> m_search{};
QSharedPointer<VTableSearch> m_searchPC{};
bool m_hasChanges{false};
QVector<QPair<QString, QString>> m_renameList{};
QMenu *m_searchHistory;
QMenu *m_searchHistoryPC;
template <typename T>
void FillTable(const QMap<QString, T> &varTable, QTableWidget *table);
static void FillIncrementsTable(QTableWidget *table, const QMap<QString, QSharedPointer<VIncrement> > &increments,
bool takePreviewCalculations);
void FillIncrements();
void FillPreviewCalculations();
void FillLengthsLines();
void FillLengthLinesAngles();
void FillLengthsCurves();
void FillCurvesCLengths();
void FillRadiusesArcs();
void FillAnglesCurves();
void ShowUnits();
static void ShowHeaderUnits(QTableWidget *table, int column, const QString &unit);
static auto AddCell(QTableWidget *table, const QString &text, int row, int column, int aligment,
bool ok = true) -> QTableWidgetItem*;
static auto AddSeparatorCell(QTableWidget *table, const QString &text, int row, int column, int aligment,
bool ok = true) -> QTableWidgetItem*;
auto GetCustomName() const -> QString;
static auto ClearIncrementName(const QString &name) -> QString;
static auto EvalIncrementFormula(const QString &formula, bool fromUser, VContainer *data, QLabel *label,
bool special) -> bool;
void Controls(QTableWidget *table);
void EnableDetails(QTableWidget *table, bool enabled);
void LocalUpdateTree();
auto IncrementUsed(const QString &name) const -> bool;
void CacheRename(const QString &name, const QString &newName);
void ShowTableIncrementDetails(QTableWidget *table);
auto InitVarTypeMenu(QMenu *menu, bool incrementTab) -> QMenu *;
void AddNewIncrement(IncrementType type);
void InitSearch();
void InitIncrementsSearchHistory();
void InitPreviewCalculationsSearchHistory();
void SaveIncrementsSearchRequest();
void SavePreviewCalculationsSearchRequest();
void UpdateSearchControlsTooltips();
static void InitIncrementUnits(QComboBox *combo);
};
#endif // DIALOGINCREMENTS_H