2009-04-03 19:30:25 +00:00
|
|
|
/*
|
2015-02-20 14:56:22 +00:00
|
|
|
Copyright 2006-2015 The QElectroTech Team
|
2009-04-03 19:30:25 +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/>.
|
|
|
|
*/
|
|
|
|
#include "rectangleeditor.h"
|
|
|
|
#include "partrectangle.h"
|
2015-01-27 10:37:03 +00:00
|
|
|
#include "styleeditor.h"
|
2009-04-03 19:30:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Constructeur
|
|
|
|
@param editor L'editeur d'element concerne
|
|
|
|
@param rect Le rectangle a editer
|
|
|
|
@param parent le Widget parent
|
|
|
|
*/
|
2010-02-18 00:42:41 +00:00
|
|
|
RectangleEditor::RectangleEditor(QETElementEditor *editor, PartRectangle *rect, QWidget *parent) :
|
|
|
|
ElementItemEditor(editor, parent),
|
|
|
|
part(rect)
|
|
|
|
{
|
|
|
|
style_ = new StyleEditor(editor);
|
2009-04-03 19:30:25 +00:00
|
|
|
|
2014-05-29 13:46:04 +00:00
|
|
|
x = new QDoubleSpinBox();
|
|
|
|
y = new QDoubleSpinBox();
|
|
|
|
w = new QDoubleSpinBox();
|
|
|
|
h = new QDoubleSpinBox();
|
2009-04-03 19:30:25 +00:00
|
|
|
|
2014-05-29 13:46:04 +00:00
|
|
|
x->setRange(-1000, 1000);
|
|
|
|
y->setRange(-1000, 1000);
|
|
|
|
w->setRange(-1000, 1000);
|
|
|
|
h->setRange(-1000, 1000);
|
2009-04-03 19:30:25 +00:00
|
|
|
|
2010-02-18 00:42:41 +00:00
|
|
|
QVBoxLayout *v_layout = new QVBoxLayout(this);
|
|
|
|
|
|
|
|
QGridLayout *grid = new QGridLayout();
|
2015-03-02 20:14:56 +00:00
|
|
|
grid -> addWidget(new QLabel(tr("Coin supérieur gauche : ")), 0, 0, 1, 4);
|
2010-02-28 16:13:45 +00:00
|
|
|
grid -> addWidget(new QLabel("x"), 1, 0, Qt::AlignRight);
|
2009-04-03 19:30:25 +00:00
|
|
|
grid -> addWidget(x, 1, 1);
|
|
|
|
grid -> addWidget(new QLabel("y"), 1, 2);
|
|
|
|
grid -> addWidget(y, 1, 3);
|
2015-03-02 20:14:56 +00:00
|
|
|
grid -> addWidget(new QLabel(tr("Dimensions : ")), 2, 0, 1, 4);
|
|
|
|
grid -> addWidget(new QLabel(tr("Largeur :")), 3, 0);
|
2009-04-03 19:30:25 +00:00
|
|
|
grid -> addWidget(w, 3, 1);
|
2015-03-02 20:14:56 +00:00
|
|
|
grid -> addWidget(new QLabel(tr("Hauteur :")), 4, 0);
|
2009-04-03 19:30:25 +00:00
|
|
|
grid -> addWidget(h, 4, 1);
|
|
|
|
|
2010-02-18 00:42:41 +00:00
|
|
|
v_layout -> addWidget(style_);
|
|
|
|
v_layout -> addLayout(grid);
|
|
|
|
|
2009-04-03 19:30:25 +00:00
|
|
|
activeConnections(true);
|
|
|
|
updateForm();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Destructeur
|
|
|
|
RectangleEditor::~RectangleEditor() {
|
|
|
|
}
|
|
|
|
|
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 rectangle acceptera d'editer la primitive new_part s'il s'agit
|
|
|
|
d'un objet de la classe PartRectangle.
|
|
|
|
@param new_part Nouvelle primitive a editer
|
|
|
|
@return true si l'editeur a accepter d'editer la primitive, false sinon
|
|
|
|
*/
|
|
|
|
bool RectangleEditor::setPart(CustomElementPart *new_part) {
|
|
|
|
if (!new_part) {
|
|
|
|
part = 0;
|
|
|
|
style_ -> setPart(0);
|
|
|
|
return(true);
|
|
|
|
}
|
|
|
|
if (PartRectangle *part_rectangle = dynamic_cast<PartRectangle *>(new_part)) {
|
|
|
|
part = part_rectangle;
|
|
|
|
style_ -> setPart(part);
|
|
|
|
updateForm();
|
|
|
|
return(true);
|
|
|
|
} else {
|
|
|
|
return(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
@return la primitive actuellement editee, ou 0 si ce widget n'en edite pas
|
|
|
|
*/
|
|
|
|
CustomElementPart *RectangleEditor::currentPart() const {
|
|
|
|
return(part);
|
|
|
|
}
|
|
|
|
|
2015-02-09 08:57:40 +00:00
|
|
|
/**
|
|
|
|
* @brief RectangleEditor::topLeft
|
|
|
|
* @return The edited topLeft already mapped to part coordinate
|
|
|
|
*/
|
|
|
|
QPointF RectangleEditor::editedTopLeft() const {
|
|
|
|
return part -> mapFromScene(x->value(), y->value());
|
|
|
|
}
|
|
|
|
|
2009-04-03 19:30:25 +00:00
|
|
|
/**
|
|
|
|
Met a jour le rectangle a partir des donnees du formulaire
|
|
|
|
*/
|
|
|
|
void RectangleEditor::updateRectangle() {
|
2010-02-18 00:42:41 +00:00
|
|
|
if (!part) return;
|
2015-02-09 08:57:40 +00:00
|
|
|
part -> setProperty("rectTopLeft", editedTopLeft());
|
2014-05-29 13:46:04 +00:00
|
|
|
part -> setProperty("width", w -> value());
|
|
|
|
part -> setProperty("height", h -> value());
|
2009-04-03 19:30:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Met a jour l'abscisse du coin superieur gauche du rectangle et cree un objet d'annulation
|
2015-02-09 08:57:40 +00:00
|
|
|
void RectangleEditor::updateRectangleX() { addChangePartCommand(tr("abscisse"), part, "rectTopLeft", editedTopLeft());}
|
2009-04-03 19:30:25 +00:00
|
|
|
/// Met a jour l'ordonnee du coin superieur gauche du rectangle et cree un objet d'annulation
|
2015-03-02 20:14:56 +00:00
|
|
|
void RectangleEditor::updateRectangleY() { addChangePartCommand(tr("ordonnée"), part, "rectTopLeft", editedTopLeft());}
|
2009-04-03 19:30:25 +00:00
|
|
|
/// Met a jour la largeur du rectangle et cree un objet d'annulation
|
2015-02-09 08:57:40 +00:00
|
|
|
void RectangleEditor::updateRectangleW() { addChangePartCommand(tr("largeur"), part, "width", w -> value());}
|
2009-04-03 19:30:25 +00:00
|
|
|
/// Met a jour la hauteur du rectangle et cree un objet d'annulation
|
2015-02-09 08:57:40 +00:00
|
|
|
void RectangleEditor::updateRectangleH() { addChangePartCommand(tr("hauteur"), part, "height", h -> value());}
|
2009-04-03 19:30:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Met a jour le formulaire d'edition
|
|
|
|
*/
|
|
|
|
void RectangleEditor::updateForm() {
|
2010-02-18 00:42:41 +00:00
|
|
|
if (!part) return;
|
2009-04-03 19:30:25 +00:00
|
|
|
activeConnections(false);
|
2015-02-09 08:57:40 +00:00
|
|
|
QPointF p = part->mapToScene(part->property("rectTopLeft").toPointF());
|
|
|
|
x->setValue(p.x());
|
|
|
|
y->setValue(p.y());
|
2014-05-29 13:46:04 +00:00
|
|
|
w->setValue(part->property("width").toReal());
|
|
|
|
h->setValue(part->property("height").toReal());
|
2009-04-03 19:30:25 +00:00
|
|
|
activeConnections(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Active ou desactive les connexionx signaux/slots entre les widgets internes.
|
|
|
|
@param active true pour activer les connexions, false pour les desactiver
|
|
|
|
*/
|
|
|
|
void RectangleEditor::activeConnections(bool active) {
|
|
|
|
if (active) {
|
|
|
|
connect(x, SIGNAL(editingFinished()), this, SLOT(updateRectangleX()));
|
|
|
|
connect(y, SIGNAL(editingFinished()), this, SLOT(updateRectangleY()));
|
|
|
|
connect(w, SIGNAL(editingFinished()), this, SLOT(updateRectangleW()));
|
|
|
|
connect(h, SIGNAL(editingFinished()), this, SLOT(updateRectangleH()));
|
|
|
|
} else {
|
|
|
|
disconnect(x, SIGNAL(editingFinished()), this, SLOT(updateRectangleX()));
|
|
|
|
disconnect(y, SIGNAL(editingFinished()), this, SLOT(updateRectangleY()));
|
|
|
|
disconnect(w, SIGNAL(editingFinished()), this, SLOT(updateRectangleW()));
|
|
|
|
disconnect(h, SIGNAL(editingFinished()), this, SLOT(updateRectangleH()));
|
|
|
|
}
|
|
|
|
}
|