2007-12-01 10:47:15 +00:00
|
|
|
/*
|
2015-02-20 14:56:22 +00:00
|
|
|
Copyright 2006-2015 The QElectroTech Team
|
2007-12-01 10:47:15 +00:00
|
|
|
This file is part of QElectroTech.
|
|
|
|
|
|
|
|
QElectroTech 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 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
QElectroTech 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 QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2007-06-30 17:41:07 +00:00
|
|
|
#include "lineeditor.h"
|
2010-02-18 00:42:41 +00:00
|
|
|
#include "styleeditor.h"
|
2007-06-30 17:41:07 +00:00
|
|
|
#include "partline.h"
|
2009-04-03 19:30:25 +00:00
|
|
|
#include "qet.h"
|
2009-05-01 14:41:33 +00:00
|
|
|
#include "qeticons.h"
|
2007-06-30 17:41:07 +00:00
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
|
|
|
Constructeur
|
|
|
|
@param editor L'editeur d'element concerne
|
|
|
|
@param line La ligne a editer
|
|
|
|
@param parent le Widget parent
|
|
|
|
*/
|
2010-02-18 00:42:41 +00:00
|
|
|
LineEditor::LineEditor(QETElementEditor *editor, PartLine *line, QWidget *parent) :
|
|
|
|
ElementItemEditor(editor, parent),
|
|
|
|
part(line)
|
|
|
|
{
|
|
|
|
style_ = new StyleEditor(editor);
|
2007-06-30 17:41:07 +00:00
|
|
|
|
2014-05-29 13:46:04 +00:00
|
|
|
x1 = new QDoubleSpinBox();
|
|
|
|
y1 = new QDoubleSpinBox();
|
|
|
|
x2 = new QDoubleSpinBox();
|
|
|
|
y2 = new QDoubleSpinBox();
|
2007-06-30 17:41:07 +00:00
|
|
|
|
2014-05-29 13:46:04 +00:00
|
|
|
x1 -> setRange(-1000, 1000);
|
|
|
|
y1 -> setRange(-1000, 1000);
|
|
|
|
x2 -> setRange(-1000, 1000);
|
|
|
|
y2 -> setRange(-1000, 1000);
|
2007-12-17 20:37:10 +00:00
|
|
|
|
2009-04-03 19:30:25 +00:00
|
|
|
end1_type = new QComboBox();
|
2014-05-29 13:46:04 +00:00
|
|
|
end1_type -> addItem(QET::Icons::EndLineNone, tr("Normale", "type of the 1st end of a line"), Qet::None );
|
|
|
|
end1_type -> addItem(QET::Icons::EndLineSimple, tr("Fl\350che simple", "type of the 1st end of a line"), Qet::Simple );
|
|
|
|
end1_type -> addItem(QET::Icons::EndLineTriangle, tr("Fl\350che triangulaire", "type of the 1st end of a line"), Qet::Triangle);
|
|
|
|
end1_type -> addItem(QET::Icons::EndLineCircle, tr("Cercle", "type of the 1st end of a line"), Qet::Circle );
|
|
|
|
end1_type -> addItem(QET::Icons::EndLineDiamond, tr("Carr\351", "type of the 1st end of a line"), Qet::Diamond );
|
2009-04-03 19:30:25 +00:00
|
|
|
end2_type = new QComboBox();
|
2014-05-29 13:46:04 +00:00
|
|
|
end2_type -> addItem(QET::Icons::EndLineNone, tr("Normale", "type of the 2nd end of a line"), Qet::None );
|
|
|
|
end2_type -> addItem(QET::Icons::EndLineSimple, tr("Fl\350che simple", "type of the 2nd end of a line"), Qet::Simple );
|
|
|
|
end2_type -> addItem(QET::Icons::EndLineTriangle, tr("Fl\350che triangulaire", "type of the 2nd end of a line"), Qet::Triangle);
|
|
|
|
end2_type -> addItem(QET::Icons::EndLineCircle, tr("Cercle", "type of the 2nd end of a line"), Qet::Circle );
|
|
|
|
end2_type -> addItem(QET::Icons::EndLineDiamond, tr("Carr\351", "type of the 2nd end of a line"), Qet::Diamond );
|
2007-06-30 17:41:07 +00:00
|
|
|
|
2014-05-29 13:46:04 +00:00
|
|
|
end1_length = new QDoubleSpinBox();
|
|
|
|
end2_length = new QDoubleSpinBox();
|
2009-04-03 19:30:25 +00:00
|
|
|
|
|
|
|
QGridLayout *grid = new QGridLayout();
|
|
|
|
grid -> addWidget(new QLabel("x1"), 0, 0);
|
|
|
|
grid -> addWidget(x1, 0, 1);
|
|
|
|
grid -> addWidget(new QLabel("y1"), 0, 2);
|
|
|
|
grid -> addWidget(y1, 0, 3);
|
|
|
|
grid -> addWidget(new QLabel("x2"), 1, 0);
|
|
|
|
grid -> addWidget(x2, 1, 1);
|
|
|
|
grid -> addWidget(new QLabel("y2"), 1, 2);
|
|
|
|
grid -> addWidget(y2, 1, 3);
|
|
|
|
|
|
|
|
QGridLayout *grid2 = new QGridLayout();
|
|
|
|
grid2 -> addWidget(new QLabel(tr("Fin 1")), 0, 0);
|
|
|
|
grid2 -> addWidget(end1_type, 0, 1);
|
|
|
|
grid2 -> addWidget(end1_length, 0, 2);
|
|
|
|
grid2 -> addWidget(new QLabel(tr("Fin 2")), 1, 0);
|
|
|
|
grid2 -> addWidget(end2_type, 1, 1);
|
|
|
|
grid2 -> addWidget(end2_length, 1, 2);
|
|
|
|
|
|
|
|
QVBoxLayout *v_layout = new QVBoxLayout(this);
|
2010-02-18 00:42:41 +00:00
|
|
|
v_layout -> addWidget(style_);
|
2009-04-03 19:30:25 +00:00
|
|
|
v_layout -> addLayout(grid);
|
|
|
|
v_layout -> addLayout(grid2);
|
2007-06-30 17:41:07 +00:00
|
|
|
updateForm();
|
|
|
|
}
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/// Destructeur
|
2007-06-30 17:41:07 +00:00
|
|
|
LineEditor::~LineEditor() {
|
|
|
|
}
|
|
|
|
|
2010-02-18 00:42:41 +00:00
|
|
|
/**
|
|
|
|
Permet de specifier a cet editeur quelle primitive il doit editer. A noter
|
|
|
|
qu'un editeur peut accepter ou refuser d'editer une primitive.
|
|
|
|
L'editeur de ligne acceptera d'editer la primitive new_part s'il s'agit d'un
|
|
|
|
objet de la classe PartLine.
|
|
|
|
@param new_part Nouvelle primitive a editer
|
|
|
|
@return true si l'editeur a accepter d'editer la primitive, false sinon
|
|
|
|
*/
|
|
|
|
bool LineEditor::setPart(CustomElementPart *new_part) {
|
|
|
|
if (!new_part) {
|
|
|
|
part = 0;
|
|
|
|
style_ -> setPart(0);
|
|
|
|
return(true);
|
|
|
|
}
|
|
|
|
if (PartLine *part_line = dynamic_cast<PartLine *>(new_part)) {
|
|
|
|
part = part_line;
|
|
|
|
style_ -> setPart(part);
|
|
|
|
updateForm();
|
|
|
|
return(true);
|
|
|
|
} else {
|
|
|
|
return(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
@return la primitive actuellement editee, ou 0 si ce widget n'en edite pas
|
|
|
|
*/
|
|
|
|
CustomElementPart *LineEditor::currentPart() const {
|
|
|
|
return(part);
|
|
|
|
}
|
|
|
|
|
2015-02-09 08:57:40 +00:00
|
|
|
/**
|
|
|
|
* @brief LineEditor::editedP1
|
|
|
|
* @return The edited P1 in item coordinate
|
|
|
|
*/
|
|
|
|
QPointF LineEditor::editedP1() const {
|
|
|
|
return part -> mapFromScene(x1->value(), y1->value());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief LineEditor::editedP2
|
|
|
|
* @return The edited P2 in item coordinate
|
|
|
|
*/
|
|
|
|
QPointF LineEditor::editedP2() const {
|
|
|
|
return part -> mapFromScene(x2->value(), y2->value());
|
|
|
|
}
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
|
|
|
Met a jour la ligne a partir des donnees du formulaire
|
|
|
|
*/
|
2007-06-30 17:41:07 +00:00
|
|
|
void LineEditor::updateLine() {
|
2010-02-18 00:42:41 +00:00
|
|
|
if (!part) return;
|
2014-05-29 13:46:04 +00:00
|
|
|
part -> setProperty("end1", end1_type -> itemData(end1_type->currentIndex()));
|
|
|
|
part -> setProperty("length1", end1_length -> value());
|
|
|
|
part -> setProperty("end2", end2_type -> itemData(end2_type->currentIndex()));
|
|
|
|
part -> setProperty("length2", end2_length -> value());
|
2015-02-09 08:57:40 +00:00
|
|
|
part -> setProperty("p1", editedP1());
|
|
|
|
part -> setProperty("p2", editedP2());
|
2007-06-30 17:41:07 +00:00
|
|
|
}
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/// Met a jour l'abscisse du premier point de la ligne et cree un objet d'annulation
|
2015-02-09 08:57:40 +00:00
|
|
|
void LineEditor::updateLineX1() { addChangePartCommand(tr("abscisse point 1"), part, "p1", editedP1()); }
|
2007-12-05 21:16:01 +00:00
|
|
|
/// Met a jour l'ordonnee du premier point de la ligne et cree un objet d'annulation
|
2015-02-09 08:57:40 +00:00
|
|
|
void LineEditor::updateLineY1() { addChangePartCommand(tr("ordonn\351e point 1"), part, "p1", editedP1()); }
|
2007-12-05 21:16:01 +00:00
|
|
|
/// Met a jour l'abscisse du second point de la ligne et cree un objet d'annulation
|
2015-02-09 08:57:40 +00:00
|
|
|
void LineEditor::updateLineX2() { addChangePartCommand(tr("abscisse point 2"), part, "p2", editedP2()); }
|
2007-12-05 21:16:01 +00:00
|
|
|
/// Met a jour l'ordonnee du second point de la ligne et cree un objet d'annulation
|
2015-02-09 08:57:40 +00:00
|
|
|
void LineEditor::updateLineY2() { addChangePartCommand(tr("ordonn\351e point 2"), part, "p2", editedP2()); }
|
2009-04-03 19:30:25 +00:00
|
|
|
/// Met a jour le type de la premiere extremite
|
2014-05-29 13:46:04 +00:00
|
|
|
void LineEditor::updateLineEndType1() { addChangePartCommand(tr("type fin 1"), part, "end1", end1_type -> itemData(end1_type->currentIndex())); }
|
2009-04-03 19:30:25 +00:00
|
|
|
/// Met a jour la longueur de la premiere extremite
|
2014-05-29 13:46:04 +00:00
|
|
|
void LineEditor::updateLineEndLength1() { addChangePartCommand(tr("longueur fin 1"), part, "length1", end1_length -> value()); }
|
2009-04-03 19:30:25 +00:00
|
|
|
/// Met a jour le type de la seconde extremite
|
2014-05-29 13:46:04 +00:00
|
|
|
void LineEditor::updateLineEndType2() { addChangePartCommand(tr("type fin 2"), part, "end2", end2_type -> itemData(end2_type->currentIndex())); }
|
2009-04-03 19:30:25 +00:00
|
|
|
/// Met a jour la longueur de la seconde extremite
|
2014-05-29 13:46:04 +00:00
|
|
|
void LineEditor::updateLineEndLength2() { addChangePartCommand(tr("longueur fin 2"), part, "length2", end2_length -> value()); }
|
2007-08-25 03:43:05 +00:00
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
|
|
|
Met a jour le formulaire d'edition
|
|
|
|
*/
|
2007-06-30 17:41:07 +00:00
|
|
|
void LineEditor::updateForm() {
|
2010-02-18 00:42:41 +00:00
|
|
|
if (!part) return;
|
2007-08-25 03:43:05 +00:00
|
|
|
activeConnections(false);
|
2007-06-30 17:41:07 +00:00
|
|
|
QPointF p1(part -> sceneP1());
|
|
|
|
QPointF p2(part -> sceneP2());
|
2014-05-29 13:46:04 +00:00
|
|
|
x1 -> setValue(p1.x());
|
|
|
|
y1 -> setValue(p1.y());
|
|
|
|
x2 -> setValue(p2.x());
|
|
|
|
y2 -> setValue(p2.y());
|
|
|
|
end1_type -> setCurrentIndex(end1_type->findData(part -> firstEndType()));
|
|
|
|
end1_length -> setValue(part -> firstEndLength());
|
|
|
|
end2_type -> setCurrentIndex(end2_type->findData(part -> secondEndType()));
|
|
|
|
end2_length -> setValue(part -> secondEndLength());
|
2007-08-25 03:43:05 +00:00
|
|
|
activeConnections(true);
|
|
|
|
}
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
|
|
|
Active ou desactive les connexionx signaux/slots entre les widgets internes.
|
|
|
|
@param active true pour activer les connexions, false pour les desactiver
|
|
|
|
*/
|
2007-08-25 03:43:05 +00:00
|
|
|
void LineEditor::activeConnections(bool active) {
|
|
|
|
if (active) {
|
|
|
|
connect(x1, SIGNAL(editingFinished()), this, SLOT(updateLineX1()));
|
|
|
|
connect(y1, SIGNAL(editingFinished()), this, SLOT(updateLineY1()));
|
|
|
|
connect(x2, SIGNAL(editingFinished()), this, SLOT(updateLineX2()));
|
|
|
|
connect(y2, SIGNAL(editingFinished()), this, SLOT(updateLineY2()));
|
2009-04-03 19:30:25 +00:00
|
|
|
connect(end1_type, SIGNAL(currentIndexChanged(int)), this, SLOT(updateLineEndType1()));
|
|
|
|
connect(end1_length, SIGNAL(editingFinished()), this, SLOT(updateLineEndLength1()));
|
|
|
|
connect(end2_type, SIGNAL(currentIndexChanged(int)), this, SLOT(updateLineEndType2()));
|
|
|
|
connect(end2_length, SIGNAL(editingFinished()), this, SLOT(updateLineEndLength2()));
|
2007-08-25 03:43:05 +00:00
|
|
|
} else {
|
2009-04-03 19:30:25 +00:00
|
|
|
disconnect(x1, SIGNAL(editingFinished()), this, SLOT(updateLineX1()));
|
|
|
|
disconnect(y1, SIGNAL(editingFinished()), this, SLOT(updateLineY1()));
|
|
|
|
disconnect(x2, SIGNAL(editingFinished()), this, SLOT(updateLineX2()));
|
|
|
|
disconnect(y2, SIGNAL(editingFinished()), this, SLOT(updateLineY2()));
|
|
|
|
disconnect(end1_type, SIGNAL(currentIndexChanged(int)), this, SLOT(updateLineEndType1()));
|
|
|
|
disconnect(end1_length, SIGNAL(editingFinished()), this, SLOT(updateLineEndLength1()));
|
|
|
|
disconnect(end2_type, SIGNAL(currentIndexChanged(int)), this, SLOT(updateLineEndType2()));
|
|
|
|
disconnect(end2_length, SIGNAL(editingFinished()), this, SLOT(updateLineEndLength2()));
|
2007-08-25 03:43:05 +00:00
|
|
|
}
|
2007-06-30 17:41:07 +00:00
|
|
|
}
|