2014-01-29 19:14:04 +00:00
|
|
|
/*
|
|
|
|
Copyright 2006-2014 The QElectroTech Team
|
|
|
|
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/>.
|
|
|
|
*/
|
2013-11-29 14:42:03 +00:00
|
|
|
#include "elementpropertieswidget.h"
|
2014-12-11 20:10:28 +00:00
|
|
|
#include "ghostelement.h"
|
2014-03-12 09:32:56 +00:00
|
|
|
#include "qeticons.h"
|
|
|
|
#include "diagramposition.h"
|
2014-12-11 20:10:28 +00:00
|
|
|
#include "diagram.h"
|
|
|
|
#include "elementinfowidget.h"
|
|
|
|
#include "masterpropertieswidget.h"
|
|
|
|
#include "linksingleelementwidget.h"
|
2013-11-29 14:42:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief elementpropertieswidget::elementpropertieswidget
|
|
|
|
* default constructor
|
|
|
|
* @param elmt
|
|
|
|
* @param parent
|
|
|
|
*/
|
|
|
|
elementpropertieswidget::elementpropertieswidget(Element *elmt, QWidget *parent) :
|
|
|
|
QDialog(parent),
|
|
|
|
element_ (elmt),
|
|
|
|
diagram_ (elmt->diagram())
|
|
|
|
{
|
2014-02-12 17:36:35 +00:00
|
|
|
eiw_ = 0;
|
2014-02-18 20:44:54 +00:00
|
|
|
mpw_ = 0;
|
2014-03-12 09:32:56 +00:00
|
|
|
lsew_ = 0;
|
2013-12-20 20:30:55 +00:00
|
|
|
buildInterface();
|
2013-11-29 14:42:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief elementpropertieswidget::generalWidget
|
|
|
|
* build the widget for the tab général
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
QWidget* elementpropertieswidget::generalWidget() {
|
|
|
|
CustomElement *custom_element = qobject_cast<CustomElement *>(element_);
|
|
|
|
GhostElement *ghost_element = qobject_cast<GhostElement *>(element_);
|
|
|
|
|
|
|
|
// type de l'element
|
|
|
|
QString description_string;
|
|
|
|
if (ghost_element) {
|
|
|
|
description_string += tr("\311l\351ment manquant");
|
|
|
|
} else {
|
|
|
|
description_string += tr("\311l\351ment");
|
|
|
|
}
|
|
|
|
description_string += "\n";
|
|
|
|
|
|
|
|
// some element characteristic
|
|
|
|
description_string += QString(tr("Nom\240: %1\n")).arg(element_ -> name());
|
|
|
|
int folio_index = diagram_ -> folioIndex();
|
|
|
|
if (folio_index != -1) {
|
|
|
|
description_string += QString(tr("Folio\240: %1\n")).arg(folio_index + 1);
|
|
|
|
}
|
|
|
|
description_string += QString(tr("Position\240: %1\n")).arg(diagram_ -> convertPosition(element_ -> scenePos()).toString());
|
|
|
|
description_string += QString(tr("Dimensions\240: %1\327%2\n")).arg(element_ -> size().width()).arg(element_ -> size().height());
|
|
|
|
description_string += QString(tr("Bornes\240: %1\n")).arg(element_ -> terminals().count());
|
|
|
|
description_string += QString(tr("Champs de texte\240: %1\n")).arg(element_ -> texts().count());
|
|
|
|
|
|
|
|
if (custom_element) {
|
|
|
|
description_string += QString(tr("Emplacement\240: %1\n")).arg(custom_element -> location().toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
// widget himself
|
|
|
|
QWidget *general_widget = new QWidget (tab_);
|
|
|
|
QVBoxLayout *vlayout_ = new QVBoxLayout (general_widget);
|
|
|
|
general_widget -> setLayout(vlayout_);
|
|
|
|
|
|
|
|
//widget for the text
|
|
|
|
vlayout_->addWidget(new QLabel (description_string, general_widget));
|
|
|
|
|
|
|
|
//widget for the pixmap
|
|
|
|
QLabel *pix = new QLabel(general_widget);
|
|
|
|
pix->setPixmap(element_->pixmap());
|
|
|
|
vlayout_->addWidget(pix, 0, Qt::AlignHCenter);
|
|
|
|
vlayout_ -> addStretch();
|
|
|
|
|
|
|
|
//button widget
|
|
|
|
find_in_panel = new QPushButton(QET::Icons::ZoomDraw, tr("Retrouver dans le panel"), general_widget);
|
|
|
|
connect(find_in_panel, SIGNAL(clicked()), this, SLOT(findInPanel()));
|
|
|
|
edit_element = new QPushButton(QET::Icons::ElementEdit, tr("\311diter l'\351l\351ment"), general_widget);
|
|
|
|
connect(edit_element, SIGNAL(clicked()), this, SLOT(editElement()));
|
|
|
|
QHBoxLayout *hlayout_ = new QHBoxLayout;
|
|
|
|
hlayout_->addWidget(find_in_panel);
|
|
|
|
hlayout_->addWidget(edit_element);
|
|
|
|
|
|
|
|
vlayout_->addLayout(hlayout_);
|
|
|
|
return general_widget;
|
|
|
|
}
|
|
|
|
|
2013-12-20 20:30:55 +00:00
|
|
|
/**
|
|
|
|
* @brief elementpropertieswidget::buildInterface
|
|
|
|
*build the interface of this dialog, the main tab can have
|
|
|
|
*different tab according to the edited element
|
|
|
|
*/
|
|
|
|
void elementpropertieswidget::buildInterface() {
|
|
|
|
|
|
|
|
setWindowTitle(tr("Propri\351t\351s de l'\351l\351ment"));
|
|
|
|
tab_ = new QTabWidget(this);
|
|
|
|
|
|
|
|
//Add tab according to the element
|
|
|
|
switch (element_ -> linkType()) {
|
2013-12-31 12:53:22 +00:00
|
|
|
case Element::Simple:
|
2014-02-12 17:36:35 +00:00
|
|
|
eiw_ = new ElementInfoWidget(element_, this);
|
|
|
|
tab_ -> addTab(eiw_, tr("Information"));
|
2013-12-20 20:30:55 +00:00
|
|
|
break;
|
2014-01-01 19:21:10 +00:00
|
|
|
case Element::NextReport:
|
2014-03-12 09:32:56 +00:00
|
|
|
lsew_ = new LinkSingleElementWidget(element_, this);
|
|
|
|
tab_ -> addTab(lsew_, tr("Report de folio"));
|
2014-01-01 19:21:10 +00:00
|
|
|
break;
|
|
|
|
case Element::PreviousReport:
|
2014-03-12 09:32:56 +00:00
|
|
|
lsew_ = new LinkSingleElementWidget(element_, this);
|
|
|
|
tab_ -> addTab(lsew_, tr("Report de folio"));
|
2013-12-20 20:30:55 +00:00
|
|
|
break;
|
2013-12-31 12:53:22 +00:00
|
|
|
case Element::Master:
|
2014-02-22 17:24:20 +00:00
|
|
|
mpw_ = new MasterPropertiesWidget(element_, this);
|
|
|
|
tab_ -> addTab(mpw_, tr("R\351f\351rence crois\351e (maitre)"));
|
2014-02-12 17:36:35 +00:00
|
|
|
eiw_ = new ElementInfoWidget(element_, this);
|
|
|
|
tab_ -> addTab(eiw_, tr("Information"));
|
2013-12-20 20:30:55 +00:00
|
|
|
break;
|
2014-02-22 17:24:20 +00:00
|
|
|
case Element::Slave:
|
2014-03-12 09:32:56 +00:00
|
|
|
lsew_ = new LinkSingleElementWidget(element_, this);
|
|
|
|
tab_ -> addTab(lsew_, tr("R\351f\351rence crois\351e (esclave)"));
|
2013-12-31 12:53:22 +00:00
|
|
|
break;
|
2014-07-23 19:54:25 +00:00
|
|
|
case Element::Terminale:
|
2013-12-20 20:30:55 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-02-18 20:44:54 +00:00
|
|
|
tab_ -> addTab(generalWidget(), tr("G\351n\351ral"));
|
|
|
|
|
2013-12-20 20:30:55 +00:00
|
|
|
dbb = new QDialogButtonBox(QDialogButtonBox::Apply | QDialogButtonBox::Cancel | QDialogButtonBox::Reset,
|
|
|
|
Qt::Horizontal, this);
|
|
|
|
connect(dbb, SIGNAL(clicked(QAbstractButton*)), this, SLOT(standardButtonClicked(QAbstractButton*)));
|
|
|
|
|
|
|
|
QVBoxLayout *main_layout = new QVBoxLayout(this);
|
|
|
|
main_layout -> addWidget(tab_);
|
|
|
|
main_layout -> addWidget(dbb);
|
|
|
|
setLayout(main_layout);
|
|
|
|
}
|
|
|
|
|
2013-11-29 14:42:03 +00:00
|
|
|
/**
|
|
|
|
* @brief elementpropertieswidget::standardButtonClicked
|
|
|
|
* apply action when click in the dialog standard button box
|
|
|
|
* @param button
|
|
|
|
* the cliked button
|
|
|
|
*/
|
|
|
|
void elementpropertieswidget::standardButtonClicked(QAbstractButton *button) {
|
2014-12-11 20:10:28 +00:00
|
|
|
int answer = dbb -> buttonRole(button);
|
|
|
|
bool accept = false;
|
2013-11-29 14:42:03 +00:00
|
|
|
|
|
|
|
switch (answer) {
|
|
|
|
case QDialogButtonBox::ResetRole:
|
2014-02-26 23:57:22 +00:00
|
|
|
if (mpw_) mpw_->reset();
|
2013-11-29 14:42:03 +00:00
|
|
|
break;
|
|
|
|
case QDialogButtonBox::ApplyRole:
|
2014-12-11 20:10:28 +00:00
|
|
|
accept = true;
|
|
|
|
break;
|
2013-11-29 14:42:03 +00:00
|
|
|
case QDialogButtonBox::RejectRole:
|
2014-12-11 20:10:28 +00:00
|
|
|
this -> reject();
|
|
|
|
break;
|
2013-11-29 14:42:03 +00:00
|
|
|
default:
|
2014-12-11 20:10:28 +00:00
|
|
|
this -> reject();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (accept) {
|
|
|
|
QUndoCommand *a = nullptr;
|
|
|
|
QUndoCommand *b = nullptr;
|
|
|
|
|
|
|
|
if (eiw_) a = eiw_ -> associatedUndo();
|
|
|
|
if (mpw_) b = mpw_ -> associatedUndo();
|
|
|
|
if (lsew_) lsew_ -> apply();
|
|
|
|
|
|
|
|
//If two undo, we push it in a macro
|
|
|
|
if (a && b) {
|
|
|
|
QUndoStack &stack = element_ -> diagram() -> undoStack();
|
|
|
|
stack.beginMacro(a -> text() + " + " + b -> text());
|
|
|
|
stack.push(a);
|
|
|
|
stack.push(b);
|
|
|
|
stack.endMacro();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (a) element_ -> diagram() -> undoStack().push(a);
|
|
|
|
if (b) element_ -> diagram() -> undoStack().push(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
this -> accept();
|
2013-11-29 14:42:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief elementpropertieswidget::findInPanel
|
|
|
|
* Slot
|
|
|
|
*/
|
|
|
|
void elementpropertieswidget::findInPanel() {
|
|
|
|
if (CustomElement *custom_element = qobject_cast<CustomElement *>(element_)) {
|
|
|
|
emit findElementRequired(custom_element->location());
|
|
|
|
}
|
|
|
|
reject();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief elementpropertieswidget::editElement
|
|
|
|
* Slot
|
|
|
|
*/
|
|
|
|
void elementpropertieswidget::editElement() {
|
|
|
|
if (CustomElement *custom_element = qobject_cast<CustomElement *>(element_)) {
|
|
|
|
emit findElementRequired(custom_element->location());
|
|
|
|
emit editElementRequired(custom_element->location());
|
|
|
|
}
|
|
|
|
reject();
|
|
|
|
}
|