/************************************************************************ ** ** @file dialogline.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-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 . ** *************************************************************************/ #include "dialogline.h" #include "ui_dialogline.h" #include "../../libs/vgeometry/vpointf.h" #include "../../libs/vpatterndb/vcontainer.h" #include "../../visualization/vistoolline.h" #include "../../core/vapplication.h" #include "../../widgets/vmaingraphicsscene.h" #include "../../tools/vabstracttool.h" //--------------------------------------------------------------------------------------------------------------------- /** * @brief DialogLine create dialog * @param data container with data * @param parent parent widget */ DialogLine::DialogLine(const VContainer *data, const quint32 &toolId, QWidget *parent) :DialogTool(data, toolId, parent), ui(new Ui::DialogLine) { ui->setupUi(this); InitOkCancelApply(ui); FillComboBoxPoints(ui->comboBoxFirstPoint); FillComboBoxPoints(ui->comboBoxSecondPoint); FillComboBoxLineColors(ui->comboBoxLineColor); QMap stylesPics = VAbstractTool::LineStylesPics(); stylesPics.remove(VAbstractTool::TypeLineNone);// Prevent hiding line FillComboBoxTypeLine(ui->comboBoxLineType, stylesPics); number = 0; connect(ui->comboBoxFirstPoint, static_cast(&QComboBox::currentIndexChanged), this, &DialogLine::PointNameChanged); connect(ui->comboBoxSecondPoint, static_cast(&QComboBox::currentIndexChanged), this, &DialogLine::PointNameChanged); vis = new VisToolLine(data); } //--------------------------------------------------------------------------------------------------------------------- DialogLine::~DialogLine() { DeleteVisualization(); delete ui; } //--------------------------------------------------------------------------------------------------------------------- /** * @brief SetSecondPoint set id second point * @param value id */ void DialogLine::SetSecondPoint(const quint32 &value) { setCurrentPointId(ui->comboBoxSecondPoint, value); VisToolLine *line = qobject_cast(vis); SCASSERT(line != nullptr); line->setPoint2Id(value); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief SetTypeLine set type of line * @param value type */ void DialogLine::SetTypeLine(const QString &value) { ChangeCurrentData(ui->comboBoxLineType, value); vis->setLineStyle(VAbstractTool::LineStyleToPenStyle(value)); } //--------------------------------------------------------------------------------------------------------------------- QString DialogLine::GetLineColor() const { return GetComboBoxCurrentData(ui->comboBoxLineColor); } //--------------------------------------------------------------------------------------------------------------------- void DialogLine::SetLineColor(const QString &value) { ChangeCurrentData(ui->comboBoxLineColor, value); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief SetFirstPoint set id first point * @param value id */ void DialogLine::SetFirstPoint(const quint32 &value) { setCurrentPointId(ui->comboBoxFirstPoint, value); VisToolLine *line = qobject_cast(vis); SCASSERT(line != nullptr); line->setPoint1Id(value); } //--------------------------------------------------------------------------------------------------------------------- void DialogLine::PointNameChanged() { QColor color = okColor; if (getCurrentObjectId(ui->comboBoxFirstPoint) == getCurrentObjectId(ui->comboBoxSecondPoint)) { flagError = false; color = errorColor; } else { flagError = true; color = okColor; } ChangeColor(ui->labelFirstPoint, color); ChangeColor(ui->labelSecondPoint, color); CheckState(); } //--------------------------------------------------------------------------------------------------------------------- void DialogLine::ShowVisualization() { AddVisualization(); } //--------------------------------------------------------------------------------------------------------------------- void DialogLine::SaveData() { VisToolLine *line = qobject_cast(vis); SCASSERT(line != nullptr); line->setPoint1Id(GetFirstPoint()); line->setPoint2Id(GetSecondPoint()); line->setLineStyle(VAbstractTool::LineStyleToPenStyle(GetTypeLine())); line->RefreshGeometry(); } //--------------------------------------------------------------------------------------------------------------------- /** * @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 DialogLine::ChosenObject(quint32 id, const SceneObject &type) { if (prepare == false)// After first choose we ignore all objects { if (type == SceneObject::Point) { switch (number) { case 0: if (SetObject(id, ui->comboBoxFirstPoint, tr("Select second point"))) { number++; vis->VisualMode(id); } break; case 1: if (SetObject(id, ui->comboBoxSecondPoint, "")) { if (flagError) { number = 0; prepare = true; DialogAccepted(); } } break; default: break; } } } } //--------------------------------------------------------------------------------------------------------------------- /** * @brief GetFirstPoint return id first point * @return id */ quint32 DialogLine::GetFirstPoint() const { #if QT_VERSION < QT_VERSION_CHECK(5, 2, 0) return qvariant_cast(ui->comboBoxFirstPoint->itemData(ui->comboBoxFirstPoint->currentIndex())); #else return qvariant_cast(ui->comboBoxFirstPoint->currentData()); #endif } //--------------------------------------------------------------------------------------------------------------------- /** * @brief GetSecondPoint return id second point * @return id */ quint32 DialogLine::GetSecondPoint() const { #if QT_VERSION < QT_VERSION_CHECK(5, 2, 0) return qvariant_cast(ui->comboBoxSecondPoint->itemData(ui->comboBoxSecondPoint->currentIndex())); #else return qvariant_cast(ui->comboBoxSecondPoint->currentData()); #endif } //--------------------------------------------------------------------------------------------------------------------- /** * @brief GetTypeLine return type of line * @return type */ QString DialogLine::GetTypeLine() const { return GetComboBoxCurrentData(ui->comboBoxLineType); }