/************************************************************************ ** ** @file dialogbisector.cpp ** @author Roman Telezhynskyi ** @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 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 . ** *************************************************************************/ #include "dialogbisector.h" #include "ui_dialogbisector.h" #include "../../geometry/vpointf.h" #include "../../container/vcontainer.h" //--------------------------------------------------------------------------------------------------------------------- /** * @brief DialogBisector create dialog * @param data container with data * @param parent parent widget */ DialogBisector::DialogBisector(const VContainer *data, QWidget *parent) :DialogTool(data, parent), ui(new Ui::DialogBisector), number(0), pointName(QString()), typeLine(QString()), formula(QString()), firstPointId(0), secondPointId(0), thirdPointId(0), formulaBaseHeight(0) { ui->setupUi(this); InitVariables(ui); InitFormulaUI(ui); labelEditNamePoint = ui->labelEditNamePoint; this->formulaBaseHeight = ui->plainTextEditFormula->height(); InitOkCancelApply(ui); flagFormula = false; flagName = false; CheckState(); FillComboBoxPoints(ui->comboBoxFirstPoint); FillComboBoxPoints(ui->comboBoxSecondPoint); FillComboBoxTypeLine(ui->comboBoxLineType); FillComboBoxPoints(ui->comboBoxThirdPoint); connect(ui->toolButtonPutHere, &QPushButton::clicked, this, &DialogBisector::PutHere); connect(listWidget, &QListWidget::itemDoubleClicked, this, &DialogBisector::PutVal); connect(ui->toolButtonEqual, &QPushButton::clicked, this, &DialogBisector::EvalFormula); connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogBisector::NamePointChanged); connect(ui->plainTextEditFormula, &QPlainTextEdit::textChanged, this, &DialogBisector::FormulaTextChanged); connect(ui->pushButtonGrowLength, &QPushButton::clicked, this, &DialogBisector::DeployFormulaTextEdit); connect(ui->comboBoxFirstPoint, static_cast(&QComboBox::currentIndexChanged), this, &DialogBisector::PointNameChanged); connect(ui->comboBoxSecondPoint, static_cast(&QComboBox::currentIndexChanged), this, &DialogBisector::PointNameChanged); connect(ui->comboBoxThirdPoint, static_cast(&QComboBox::currentIndexChanged), this, &DialogBisector::PointNameChanged); } //--------------------------------------------------------------------------------------------------------------------- void DialogBisector::FormulaTextChanged() { this->FormulaChangedPlainText(); } //--------------------------------------------------------------------------------------------------------------------- void DialogBisector::PointNameChanged() { QSet set; set.insert(getCurrentObjectId(ui->comboBoxFirstPoint)); set.insert(getCurrentObjectId(ui->comboBoxSecondPoint)); set.insert(getCurrentObjectId(ui->comboBoxThirdPoint)); if (set.size() != 3) { flagError = false; ChangeColor(ui->labelFirstPoint, Qt::red); ChangeColor(ui->labelSecondPoint, Qt::red); ChangeColor(ui->labelThirdPoint, Qt::red); } else { flagError = true; ChangeColor(ui->labelFirstPoint, QColor(76, 76, 76)); ChangeColor(ui->labelSecondPoint, QColor(76, 76, 76)); ChangeColor(ui->labelThirdPoint, QColor(76, 76, 76)); } CheckState(); } //--------------------------------------------------------------------------------------------------------------------- void DialogBisector::DeployFormulaTextEdit() { DeployFormula(ui->plainTextEditFormula, ui->pushButtonGrowLength, formulaBaseHeight); } //--------------------------------------------------------------------------------------------------------------------- DialogBisector::~DialogBisector() { delete ui; } //--------------------------------------------------------------------------------------------------------------------- /** * @brief ChoosedObject gets id and type of selected object. Save right data and ignore wrong. * @param id id of point or detail * @param type type of object */ void DialogBisector::ChoosedObject(quint32 id, const SceneObject &type) { if (type == SceneObject::Point) { const VPointF *point = data->GeometricObject(id); if (number == 0) { qint32 index = ui->comboBoxFirstPoint->findText(point->name()); if ( index != -1 ) { // -1 for not found ui->comboBoxFirstPoint->setCurrentIndex(index); number++; emit ToolTip(tr("Select second point of angle")); return; } } if (number == 1) { qint32 index = ui->comboBoxSecondPoint->findText(point->name()); if ( index != -1 ) { // -1 for not found ui->comboBoxSecondPoint->setCurrentIndex(index); number++; emit ToolTip(tr("Select third point of angle")); return; } } if (number == 2) { qint32 index = ui->comboBoxThirdPoint->findText(point->name()); if ( index != -1 ) { // -1 for not found ui->comboBoxThirdPoint->setCurrentIndex(index); number = 0; emit ToolTip(""); } if (isInitialized == false) { this->setModal(true); this->show(); } } } } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setPointName set name of point * @param value name */ void DialogBisector::setPointName(const QString &value) { pointName = value; ui->lineEditNamePoint->setText(pointName); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setTypeLine set type of line * @param value type */ void DialogBisector::setTypeLine(const QString &value) { typeLine = value; SetupTypeLine(ui->comboBoxLineType, value); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setFormula set string of formula * @param value formula */ void DialogBisector::setFormula(const QString &value) { formula = qApp->FormulaToUser(value); // increase height if needed. if (formula.length() > 80) { this->DeployFormulaTextEdit(); } ui->plainTextEditFormula->setPlainText(formula); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setFirstPointId set id of first point * @param value id * @param id don't show this id in list */ void DialogBisector::setFirstPointId(const quint32 &value, const quint32 &id) { setPointId(ui->comboBoxFirstPoint, firstPointId, value, id); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setSecondPointId set id of second point * @param value id * @param id don't show this id in list */ void DialogBisector::setSecondPointId(const quint32 &value, const quint32 &id) { setPointId(ui->comboBoxSecondPoint, secondPointId, value, id); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setThirdPointId set id of third point * @param value id * @param id don't show this id in list */ void DialogBisector::setThirdPointId(const quint32 &value, const quint32 &id) { setPointId(ui->comboBoxThirdPoint, thirdPointId, value, id); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief DialogAccepted save data and emit signal about closed dialog. */ void DialogBisector::DialogAccepted() { this->SaveData(); emit DialogClosed(QDialog::Accepted); } //--------------------------------------------------------------------------------------------------------------------- void DialogBisector::DialogApply() { this->SaveData(); emit DialogApplied(); } //--------------------------------------------------------------------------------------------------------------------- void DialogBisector::SaveData() { pointName = ui->lineEditNamePoint->text(); typeLine = GetTypeLine(ui->comboBoxLineType); formula = ui->plainTextEditFormula->toPlainText(); formula.replace("\n", " "); firstPointId = getCurrentObjectId(ui->comboBoxFirstPoint); secondPointId = getCurrentObjectId(ui->comboBoxSecondPoint); thirdPointId = getCurrentObjectId(ui->comboBoxThirdPoint); }