/************************************************************************ ** ** @file dialogsetupmultisize.h ** @author Roman Telezhynskyi ** @date 26 9, 2020 ** ** @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) 2020 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 DIALOGSETUPMULTISIZE_H #define DIALOGSETUPMULTISIZE_H #include #include "../vformat/vdimensions.h" #include "../vmisc/def.h" #if QT_VERSION < QT_VERSION_CHECK(5, 13, 0) #include "../vmisc/defglobal.h" #endif // QT_VERSION < QT_VERSION_CHECK(5, 13, 0) class QDoubleSpinBox; class QGroupBox; class QLineEdit; namespace Ui { class DialogSetupMultisize; } class DialogSetupMultisize : public QDialog { Q_OBJECT // NOLINT public: explicit DialogSetupMultisize(Unit unit, QWidget *parent = nullptr); ~DialogSetupMultisize() override; auto Dimensions() const -> QVector; auto FullCircumference() const -> bool; protected: void showEvent(QShowEvent *event) override; private slots: void ShowFullCircumference(); void XDimensionBodyMeasurementChanged(); void YDimensionBodyMeasurementChanged(); void WDimensionBodyMeasurementChanged(); void ZDimensionBodyMeasurementChanged(); private: // cppcheck-suppress unknownMacro Q_DISABLE_COPY_MOVE(DialogSetupMultisize) // NOLINT Ui::DialogSetupMultisize *ui; bool m_isInitialized{false}; QSharedPointer m_xDimension; QSharedPointer m_yDimension; QSharedPointer m_wDimension; QSharedPointer m_zDimension; void CheckDimension(QGroupBox *group, QGroupBox *nameGroup, QLineEdit *lineEdit, bool &dimensionValid, int &dimensions, const MeasurementDimension_p &dimension); void CheckState(); void InitDimensionMinMax(QDoubleSpinBox *doubleSpinBoxMinValue, QDoubleSpinBox *doubleSpinBoxMaxValue, const MeasurementDimension_p &dimension); void InitDimensionStep(QComboBox *comboBoxStep, const MeasurementDimension_p &dimension); void InitDimension(QDoubleSpinBox *doubleSpinBoxMinValue, QDoubleSpinBox *doubleSpinBoxMaxValue, QComboBox *comboBoxStep, const MeasurementDimension_p &dimension); void InitXDimension(); void InitYDimension(); void InitWDimension(); void InitZDimension(); void DimensionMinValueChanged(qreal value, QDoubleSpinBox *doubleSpinBoxMaxValue, QComboBox *comboBoxStep, QComboBox *comboBoxBase, const MeasurementDimension_p &dimension); void DimensionMaxValueChanged(qreal value, QDoubleSpinBox *doubleSpinBoxMinValue, QComboBox *comboBoxStep, QComboBox *comboBoxBase, const MeasurementDimension_p &dimension); void DimensionStepChanged(int index, QComboBox *comboBoxStep, QComboBox *comboBoxBase, const MeasurementDimension_p &dimension); void DimensionBaseChanged(int index, QComboBox *comboBoxBase, const MeasurementDimension_p &dimension); void UpdateSteps(QComboBox *comboBoxStep, const MeasurementDimension_p &dimension); void UpdateBase(QComboBox *comboBoxBase, const MeasurementDimension_p &dimension); }; #endif // DIALOGSETUPMULTISIZE_H