Files
qelectrotech-source-mirror/sources/ui/folioreportproperties.cpp
blacksun bf707cca2e master propertie widget:
can link/unlink slave to master
can show element by double clic item on the list
reset modification 


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2878 bfdf4180-ca20-0410-9c96-a3a8aa849046
2014-02-26 23:57:22 +00:00

176 lines
5.6 KiB
C++

/*
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/>.
*/
#include "folioreportproperties.h"
#include "ui_folioreportproperties.h"
#include <diagramposition.h>
#include <elementprovider.h>
#include <qetgraphicsitem/elementtextitem.h>
#include <diagramcommands.h>
#include "qeticons.h"
/**
* @brief FolioReportProperties::FolioReportProperties : Construcor
* @param elmt : The edited element
* @param parent : Parent widget
*/
FolioReportProperties::FolioReportProperties(Element *elmt, QWidget *parent) :
QWidget(parent),
element_(elmt),
element_to_link(0),
ui(new Ui::FolioReportProperties)
{
ui->setupUi(this);
unlink = false;
if(element_->isFree()) {
buildRadioList();
ui->button_linked->setDisabled(true);
}
else buildUnlinkButton();
}
/**
* @brief FolioReportProperties::~FolioReportProperties : Destructor
*/
FolioReportProperties::~FolioReportProperties()
{
delete ui;
}
/**
* @brief FolioReportProperties::BuildRadioList : build the radio list for each available folio report
*/
void FolioReportProperties::buildRadioList() {
sm_ = new QSignalMapper(this);
connect(sm_, SIGNAL(mapped(int)), this, SLOT(linkToElement(int)));
sm_show_ = new QSignalMapper(this);
connect(sm_show_, SIGNAL(mapped(int)), this, SLOT(showElementFromList(int)));
//Research the invert report of @element_
int rep = element_->linkType() == Element::NextReport? Element::PreviousReport : Element::NextReport;
ElementProvider ep(element_->diagram()->project());
QList <Element *> elmt_list = ep.freeElement(rep);
foreach (Element *elmt, elmt_list) {
if (elmt != element_) {
//label for the button
QString button_text;
QString title = elmt->diagram()->title();
if (title.isEmpty()) title = tr("Sans titre");
button_text += QString(tr("Folio\240 %1 (%2), position %3.")).arg(elmt->diagram()->folioIndex() + 1)
.arg(title)
.arg(elmt->diagram() -> convertPosition(elmt -> scenePos()).toString());
//button himself
QHBoxLayout *hl = new QHBoxLayout();
QRadioButton *rb = new QRadioButton(button_text , this);
QPushButton *pb = new QPushButton(QET::Icons::ZoomDraw,"",this);
hl->addWidget(rb);
hl->addStretch();
hl->addWidget(pb);
ui->available_report_layout->addLayout(hl);
element_list << elmt;
//map the radio button signal
connect(rb, SIGNAL(clicked()), sm_, SLOT(map()));
sm_ -> setMapping(rb, element_list.size()-1);
//map the push button show diagram
connect(pb, SIGNAL(clicked()), sm_show_, SLOT(map()));
sm_show_->setMapping(pb, element_list.size()-1);
}
}
ui->available_report_layout->addStretch();
}
/**
* @brief FolioReportProperties::buildUnlinkButton
*build button for ask user if want to unlink this element
*/
void FolioReportProperties::buildUnlinkButton() {
unlink_widget = new QWidget(this);
QHBoxLayout *unlink_layout = new QHBoxLayout(unlink_widget);
QLabel *lb = new QLabel(tr("Ce report est d\351j\340 li\351."), unlink_widget);
QPushButton *pb = new QPushButton(tr("D\351lier"), unlink_widget);
connect(pb, SIGNAL(clicked()), this, SLOT(unlinkClicked()));
unlink_layout->addWidget(lb);
unlink_layout->addStretch();
unlink_layout->addWidget(pb);
ui->v_main_layout->insertWidget(0, unlink_widget);
}
/**
* @brief FolioReportProperties::Apply
* Apply the new properties for this folio report
*/
void FolioReportProperties::Apply() {
if (unlink && !element_to_link)
element_->diagram()->undoStack().push(new unlinkElementsCommand(element_));
else if (element_to_link)
element_->diagram()->undoStack().push(new LinkElementsCommand(element_, element_to_link));
}
/**
* @brief FolioReportProperties::unlinkClicked
*this slot remove unlink_layout and call buildRadioList
*/
void FolioReportProperties::unlinkClicked() {
ui->v_main_layout->removeWidget(unlink_widget);
delete unlink_widget;
unlink = true;
buildRadioList();
}
/**
* @brief FolioReportProperties::showElement
* Show the required element
* @param elmt: element to be displayed
*/
void FolioReportProperties::showElement(Element *elmt) {
QList <Element *> elmt_list = element_list;
elmt_list << element_->linkedElements() << element_;
foreach (Element *elmt, elmt_list) elmt->setSelected(false);
elmt->diagram()->showMe();
elmt->setSelected(true);
}
/**
* @brief FolioReportProperties::showElementFromList
* Show element at the position @i from @element_list
* @param i position of element to be displayed
*/
void FolioReportProperties::showElementFromList(const int i) {
if (element_list.size() > i)
showElement(element_list.at(i));
}
/**
* @brief FolioReportProperties::on_button_this_clicked
* Action when push button "this report" is clicked
*/
void FolioReportProperties::on_button_this_clicked() {
showElement(element_);
}
/**
* @brief FolioReportProperties::on_button_linked_clicked
* Action when push button "linked report" is clicked
*/
void FolioReportProperties::on_button_linked_clicked() {
if (element_->isFree()) return;
showElement(element_->linkedElements().first());
}