2015-07-13 12:48:29 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file dialognewmeasurements.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 12 7, 2015
|
|
|
|
**
|
|
|
|
** @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) 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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#include "dialognewmeasurements.h"
|
|
|
|
#include "ui_dialognewmeasurements.h"
|
|
|
|
|
|
|
|
#include "../vpatterndb/variables/vmeasurement.h"
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
DialogNewMeasurements::DialogNewMeasurements(QWidget *parent)
|
|
|
|
:QDialog(parent),
|
|
|
|
ui(new Ui::DialogNewMeasurements)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
|
|
InitMTypes();
|
|
|
|
InitUnits(MeasurementsType::Individual);
|
|
|
|
InitStandards();
|
|
|
|
InitHeightsList();
|
|
|
|
InitSizesList();
|
|
|
|
|
|
|
|
connect(ui->comboBoxMType, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
|
|
|
|
&DialogNewMeasurements::CurrentTypeChanged);
|
|
|
|
|
|
|
|
connect(ui->comboBoxUnit, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
|
|
|
|
&DialogNewMeasurements::CurrentUnitChanged);
|
|
|
|
|
|
|
|
adjustSize();
|
|
|
|
setMaximumSize(size());
|
|
|
|
setMinimumSize(size());
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
DialogNewMeasurements::~DialogNewMeasurements()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
MeasurementsType DialogNewMeasurements::Type() const
|
|
|
|
{
|
|
|
|
return static_cast<MeasurementsType>(ui->comboBoxMType->currentData().toInt());
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
Unit DialogNewMeasurements::MUnit() const
|
|
|
|
{
|
|
|
|
return static_cast<Unit>(ui->comboBoxUnit->currentData().toInt());
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int DialogNewMeasurements::BaseSize() const
|
|
|
|
{
|
2015-07-18 13:08:44 +02:00
|
|
|
return ui->comboBoxBaseSize->currentText().toInt();
|
2015-07-13 12:48:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int DialogNewMeasurements::BaseHeight() const
|
|
|
|
{
|
2015-07-18 13:08:44 +02:00
|
|
|
return ui->comboBoxBaseHeight->currentText().toInt();
|
2015-07-13 12:48:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogNewMeasurements::CurrentTypeChanged(int index)
|
|
|
|
{
|
|
|
|
const MeasurementsType type = static_cast<MeasurementsType>(ui->comboBoxMType->itemData(index).toInt());
|
|
|
|
if (type == MeasurementsType::Standard)
|
|
|
|
{
|
|
|
|
ui->comboBoxBaseSize->setEnabled(true);
|
|
|
|
ui->comboBoxBaseHeight->setEnabled(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->comboBoxBaseSize->setEnabled(false);
|
|
|
|
ui->comboBoxBaseHeight->setEnabled(false);
|
|
|
|
}
|
|
|
|
InitUnits(type);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogNewMeasurements::CurrentUnitChanged(int index)
|
|
|
|
{
|
|
|
|
Q_UNUSED(index);
|
|
|
|
InitHeightsList();
|
|
|
|
InitSizesList();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogNewMeasurements::InitMTypes()
|
|
|
|
{
|
|
|
|
ui->comboBoxMType->blockSignals(true);
|
|
|
|
ui->comboBoxMType->clear();
|
|
|
|
ui->comboBoxMType->addItem(tr("Individual"), static_cast<int>(MeasurementsType::Individual));
|
|
|
|
ui->comboBoxMType->addItem(tr("Standard"), static_cast<int>(MeasurementsType::Standard));
|
|
|
|
ui->comboBoxMType->blockSignals(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogNewMeasurements::InitStandards()
|
|
|
|
{
|
|
|
|
ui->comboBoxStandard->blockSignals(true);
|
|
|
|
ui->comboBoxStandard->clear();
|
|
|
|
ui->comboBoxStandard->addItem(tr("Regular"));
|
|
|
|
ui->comboBoxStandard->blockSignals(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogNewMeasurements::InitHeightsList()
|
|
|
|
{
|
|
|
|
const QStringList list = VMeasurement::WholeListHeights(MUnit());
|
|
|
|
ui->comboBoxBaseHeight->clear();
|
|
|
|
ui->comboBoxBaseHeight->addItems(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogNewMeasurements::InitSizesList()
|
|
|
|
{
|
|
|
|
const QStringList list = VMeasurement::WholeListSizes(MUnit());
|
|
|
|
ui->comboBoxBaseSize->clear();
|
|
|
|
ui->comboBoxBaseSize->addItems(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogNewMeasurements::InitUnits(const MeasurementsType &type)
|
|
|
|
{
|
|
|
|
int val;
|
|
|
|
if (ui->comboBoxMType->currentIndex() != -1)
|
|
|
|
{
|
|
|
|
val = ui->comboBoxMType->currentData().toInt();
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->comboBoxMType->blockSignals(true);
|
|
|
|
ui->comboBoxUnit->clear();
|
|
|
|
ui->comboBoxUnit->addItem(tr("Centimeters"), static_cast<int>(Unit::Cm));
|
|
|
|
ui->comboBoxUnit->addItem(tr("Millimiters"), static_cast<int>(Unit::Mm));
|
|
|
|
if (type == MeasurementsType::Individual)
|
|
|
|
{
|
|
|
|
ui->comboBoxUnit->addItem(tr("Inches"), static_cast<int>(Unit::Inch));
|
|
|
|
}
|
|
|
|
ui->comboBoxMType->blockSignals(false);
|
|
|
|
|
|
|
|
int index = ui->comboBoxUnit->findData(val);
|
|
|
|
if (index != -1)
|
|
|
|
{
|
|
|
|
ui->comboBoxUnit->setCurrentIndex(index);
|
|
|
|
}
|
|
|
|
}
|