2007-12-01 10:47:15 +00:00
|
|
|
/*
|
2010-01-03 16:25:37 +00:00
|
|
|
Copyright 2006-2010 Xavier Guerrin
|
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-07-10 22:54:22 +00:00
|
|
|
#include "arceditor.h"
|
|
|
|
#include "partarc.h"
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
|
|
|
Constructeur
|
|
|
|
@param editor L'editeur d'element concerne
|
|
|
|
@param arc L'arc a editer
|
|
|
|
@param parent le Widget parent
|
|
|
|
*/
|
2007-08-25 03:43:05 +00:00
|
|
|
ArcEditor::ArcEditor(QETElementEditor *editor, PartArc *arc, QWidget *parent) : ElementItemEditor(editor, parent) {
|
2007-07-10 22:54:22 +00:00
|
|
|
|
|
|
|
part = arc;
|
|
|
|
|
|
|
|
x = new QLineEdit();
|
|
|
|
y = new QLineEdit();
|
|
|
|
h = new QLineEdit();
|
|
|
|
v = new QLineEdit();
|
|
|
|
start_angle = new QSpinBox();
|
|
|
|
angle = new QSpinBox();
|
|
|
|
start_angle -> setRange(-360, 360);
|
|
|
|
angle -> setRange(-360, 360);
|
|
|
|
|
2007-12-17 20:37:10 +00:00
|
|
|
x -> setValidator(new QDoubleValidator(x));
|
|
|
|
y -> setValidator(new QDoubleValidator(y));
|
|
|
|
h -> setValidator(new QDoubleValidator(h));
|
|
|
|
v -> setValidator(new QDoubleValidator(v));
|
|
|
|
|
2007-07-10 22:54:22 +00:00
|
|
|
QGridLayout *grid = new QGridLayout(this);
|
|
|
|
grid -> addWidget(new QLabel(tr("Centre : ")), 0, 0);
|
|
|
|
grid -> addWidget(new QLabel("x"), 1, 0);
|
|
|
|
grid -> addWidget(x, 1, 1);
|
|
|
|
grid -> addWidget(new QLabel("y"), 1, 2);
|
|
|
|
grid -> addWidget(y, 1, 3);
|
|
|
|
grid -> addWidget(new QLabel(tr("Diam\350tres : ")), 2, 0);
|
|
|
|
grid -> addWidget(new QLabel(tr("horizontal :")), 3, 0);
|
|
|
|
grid -> addWidget(h, 3, 1);
|
|
|
|
grid -> addWidget(new QLabel(tr("vertical :")), 4, 0);
|
|
|
|
grid -> addWidget(v, 4, 1);
|
|
|
|
grid -> addWidget(new QLabel(tr("Angle de d\351part :")), 5, 0);
|
|
|
|
grid -> addWidget(start_angle, 5, 1);
|
|
|
|
grid -> addWidget(new QLabel(tr("Angle :")), 6, 0);
|
|
|
|
grid -> addWidget(angle, 6, 1);
|
|
|
|
updateForm();
|
|
|
|
|
2007-08-25 03:43:05 +00:00
|
|
|
activeConnections(true);
|
2007-07-10 22:54:22 +00:00
|
|
|
}
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/// Destructeur
|
2007-07-10 22:54:22 +00:00
|
|
|
ArcEditor::~ArcEditor() {
|
|
|
|
}
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
|
|
|
Met a jour l'arc a partir a partir des donnees du formulaire
|
|
|
|
*/
|
2007-07-10 22:54:22 +00:00
|
|
|
void ArcEditor::updateArc() {
|
2007-08-25 03:43:05 +00:00
|
|
|
part -> setProperty("x", x -> text().toDouble());
|
|
|
|
part -> setProperty("y", y -> text().toDouble());
|
|
|
|
part -> setProperty("diameter_h", h -> text().toDouble());
|
|
|
|
part -> setProperty("diameter_v", v -> text().toDouble());
|
2007-07-10 22:54:22 +00:00
|
|
|
part -> setStartAngle(-start_angle -> value() + 90);
|
|
|
|
part -> setAngle(-angle -> value());
|
|
|
|
}
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/// Met a jour l'abscisse du centre de l'arc et cree un objet d'annulation
|
2007-08-25 03:43:05 +00:00
|
|
|
void ArcEditor::updateArcX() { addChangePartCommand(tr("abscisse"), part, "x", x -> text().toDouble()); }
|
2007-12-05 21:16:01 +00:00
|
|
|
/// Met a jour l'ordonnee du centre de l'arc et cree un objet d'annulation
|
2007-08-25 03:43:05 +00:00
|
|
|
void ArcEditor::updateArcY() { addChangePartCommand(tr("ordonn\351e"), part, "y", y -> text().toDouble()); }
|
2007-12-05 21:16:01 +00:00
|
|
|
/// Met a jour le diametre horizontal de l'arc et cree un objet d'annulation
|
2007-08-25 03:43:05 +00:00
|
|
|
void ArcEditor::updateArcH() { addChangePartCommand(tr("diam\350tre horizontal"), part, "diameter_h", h -> text().toDouble()); }
|
2007-12-05 21:16:01 +00:00
|
|
|
/// Met a jour le diametre vertical de l'arc et cree un objet d'annulation
|
2007-08-25 03:43:05 +00:00
|
|
|
void ArcEditor::updateArcV() { addChangePartCommand(tr("diam\350tre vertical"), part, "diameter_v", v -> text().toDouble()); }
|
2007-12-05 21:16:01 +00:00
|
|
|
/// Met a jour l'angle de depart de l'arc et cree un objet d'annulation
|
2007-08-25 03:43:05 +00:00
|
|
|
void ArcEditor::updateArcS() { addChangePartCommand(tr("angle de d\351part"), part, "start_angle", -start_angle -> value() + 90); }
|
2007-12-05 21:16:01 +00:00
|
|
|
/// Met a jour l'etendue de l'arc et cree un objet d'annulation
|
2007-08-25 03:43:05 +00:00
|
|
|
void ArcEditor::updateArcA() { addChangePartCommand(tr("angle"), part, "angle", -angle -> value()); }
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
|
|
|
Met a jour le formulaire d'edition
|
|
|
|
*/
|
2007-07-10 22:54:22 +00:00
|
|
|
void ArcEditor::updateForm() {
|
2007-08-25 03:43:05 +00:00
|
|
|
activeConnections(false);
|
|
|
|
x -> setText(part -> property("x").toString());
|
|
|
|
y -> setText(part -> property("y").toString());
|
|
|
|
h -> setText(part -> property("diameter_h").toString());
|
|
|
|
v -> setText(part -> property("diameter_v").toString());
|
2007-07-10 22:54:22 +00:00
|
|
|
start_angle -> setValue(-part -> startAngle() + 90);
|
|
|
|
angle -> setValue(-part -> angle());
|
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 ArcEditor::activeConnections(bool active) {
|
|
|
|
if (active) {
|
|
|
|
connect(x, SIGNAL(editingFinished()), this, SLOT(updateArcX()));
|
|
|
|
connect(y, SIGNAL(editingFinished()), this, SLOT(updateArcY()));
|
|
|
|
connect(h, SIGNAL(editingFinished()), this, SLOT(updateArcH()));
|
|
|
|
connect(v, SIGNAL(editingFinished()), this, SLOT(updateArcV()));
|
|
|
|
connect(start_angle, SIGNAL(editingFinished()), this, SLOT(updateArcS()));
|
|
|
|
connect(angle, SIGNAL(editingFinished()), this, SLOT(updateArcA()));
|
|
|
|
} else {
|
|
|
|
disconnect(x, SIGNAL(editingFinished()), this, SLOT(updateArcX()));
|
|
|
|
disconnect(y, SIGNAL(editingFinished()), this, SLOT(updateArcY()));
|
|
|
|
disconnect(h, SIGNAL(editingFinished()), this, SLOT(updateArcH()));
|
|
|
|
disconnect(v, SIGNAL(editingFinished()), this, SLOT(updateArcV()));
|
|
|
|
disconnect(start_angle, SIGNAL(editingFinished()), this, SLOT(updateArcS()));
|
|
|
|
disconnect(angle, SIGNAL(editingFinished()), this, SLOT(updateArcA()));
|
|
|
|
}
|
2007-07-10 22:54:22 +00:00
|
|
|
}
|