/************************************************************************ ** ** @file dialogarcwithlength.h ** @author Roman Telezhynskyi ** @date 9 6, 2015 ** ** @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) 2015 Valentina project ** 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 . ** *************************************************************************/ #ifndef DIALOGARCWITHLENGTH_H #define DIALOGARCWITHLENGTH_H #include #include #include #include #include #include "../vmisc/def.h" #include "defglobal.h" #include "dialogtool.h" namespace Ui { class DialogArcWithLength; } class DialogArcWithLength final : public DialogTool { Q_OBJECT // NOLINT public: DialogArcWithLength(const VContainer *data, quint32 toolId, QWidget *parent = nullptr); ~DialogArcWithLength() override; auto GetCenter() const -> quint32; void SetCenter(const quint32 &value); auto GetRadius() const -> QString; void SetRadius(const QString &value); auto GetF1() const -> QString; void SetF1(const QString &value); auto GetLength() const -> QString; void SetLength(const QString &value); auto GetPenStyle() const -> QString; void SetPenStyle(const QString &value); auto GetColor() const -> QString; void SetColor(const QString &value); auto GetApproximationScale() const -> qreal; void SetApproximationScale(qreal value); void SetNotes(const QString ¬es); auto GetNotes() const -> QString; void SetAliasSuffix(const QString &alias); auto GetAliasSuffix() const -> QString; void ShowDialog(bool click) override; public slots: void ChosenObject(quint32 id, const SceneObject &type) override; /** * @brief DeployFormulaTextEdit grow or shrink formula input */ void DeployRadiusTextEdit(); void DeployF1TextEdit(); void DeployLengthTextEdit(); void FXRadius(); void FXF1(); void FXLength(); protected: void ShowVisualization() override; /** * @brief SaveData Put dialog data in local variables */ void SaveData() override; void closeEvent(QCloseEvent *event) override; auto IsValid() const -> bool final; private slots: void ValidateAlias(); private: Q_DISABLE_COPY_MOVE(DialogArcWithLength) // NOLINT Ui::DialogArcWithLength *ui; /** @brief flagRadius true if value of radius is correct */ bool m_flagRadius{false}; /** @brief flagF1 true if value of first angle is correct */ bool m_flagF1{false}; bool m_flagLength{false}; bool m_flagAlias{true}; /** @brief timerRadius timer of check formula of radius */ QTimer *m_timerRadius; /** @brief timerF1 timer of check formula of first angle */ QTimer *m_timerF1; QTimer *m_timerLength; /** @brief radius formula of radius */ QString m_radius{}; /** @brief f1 formula of first angle */ QString m_f1{}; QString m_length{}; /** @brief formulaBaseHeight base height defined by dialogui */ int m_formulaBaseHeightRadius{0}; int m_formulaBaseHeightF1{0}; int m_formulaBaseHeightLength{0}; QString m_originAliasSuffix{}; bool m_stageRadius{true}; bool m_stageF1{false}; bool m_firstRelease{false}; void Radius(); void Length(); void EvalF(); void FinishCreating(); }; //--------------------------------------------------------------------------------------------------------------------- inline auto DialogArcWithLength::IsValid() const -> bool { return m_flagRadius && m_flagF1 && m_flagLength && m_flagAlias; } #endif // DIALOGARCWITHLENGTH_H