2014-07-12 13:14:47 +00:00
|
|
|
/*
|
2015-02-20 14:56:22 +00:00
|
|
|
Copyright 2006-2015 The QElectroTech Team
|
2014-07-12 13:14:47 +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 "titleblockpropertieswidget.h"
|
|
|
|
#include "ui_titleblockpropertieswidget.h"
|
|
|
|
#include "templatescollection.h"
|
|
|
|
#include "qeticons.h"
|
|
|
|
#include "titleblocktemplate.h"
|
|
|
|
#include <QMenu>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::TitleBlockPropertiesWidget
|
|
|
|
* default constructor
|
|
|
|
* @param titleblock properties to edit
|
|
|
|
* @param current_date if true, display the radio button "current date"
|
|
|
|
* @param parent parent widget
|
|
|
|
*/
|
2016-05-13 13:48:36 +00:00
|
|
|
TitleBlockPropertiesWidget::TitleBlockPropertiesWidget(const TitleBlockProperties &titleblock, bool current_date, QWidget *parent) :
|
2014-07-12 13:14:47 +00:00
|
|
|
QWidget(parent),
|
2015-04-17 11:36:28 +00:00
|
|
|
ui(new Ui::TitleBlockPropertiesWidget)
|
2014-07-12 13:14:47 +00:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2016-05-13 13:48:36 +00:00
|
|
|
initDialog(current_date);
|
|
|
|
setProperties(titleblock);
|
2014-07-12 13:14:47 +00:00
|
|
|
}
|
|
|
|
|
2014-07-13 13:37:43 +00:00
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::TitleBlockPropertiesWidget
|
|
|
|
* default constructor with tempalte list
|
|
|
|
* @param tbt_collection template list
|
|
|
|
* @param titleblock properties to edit
|
|
|
|
* @param current_date if true, display the radio button "current date"
|
|
|
|
* @param parent parent widget
|
|
|
|
*/
|
2016-05-13 13:48:36 +00:00
|
|
|
TitleBlockPropertiesWidget::TitleBlockPropertiesWidget(TitleBlockTemplatesCollection *tbt_collection, const TitleBlockProperties &titleblock, bool current_date, QWidget *parent) :
|
2014-07-13 13:37:43 +00:00
|
|
|
QWidget(parent),
|
2015-04-17 11:36:28 +00:00
|
|
|
ui(new Ui::TitleBlockPropertiesWidget)
|
2014-07-13 13:37:43 +00:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2016-05-13 13:48:36 +00:00
|
|
|
initDialog(current_date);
|
2015-04-17 11:36:28 +00:00
|
|
|
addCollection(tbt_collection);
|
|
|
|
updateTemplateList();
|
|
|
|
setProperties(titleblock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::TitleBlockPropertiesWidget
|
|
|
|
* Default constructor with several template collection
|
|
|
|
* @param tbt_collection template list
|
|
|
|
* @param titleblock properties to edit
|
|
|
|
* @param current_date if true, display the radio button "current date"
|
|
|
|
* @param parent parent widget
|
|
|
|
*/
|
2016-05-13 13:48:36 +00:00
|
|
|
TitleBlockPropertiesWidget::TitleBlockPropertiesWidget(QList<TitleBlockTemplatesCollection *> tbt_collection, const TitleBlockProperties &titleblock, bool current_date, QWidget *parent) :
|
2015-04-17 11:36:28 +00:00
|
|
|
QWidget(parent),
|
|
|
|
ui(new Ui::TitleBlockPropertiesWidget)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2016-05-13 13:48:36 +00:00
|
|
|
initDialog(current_date);
|
2015-04-17 11:36:28 +00:00
|
|
|
foreach (TitleBlockTemplatesCollection *c, tbt_collection)
|
|
|
|
addCollection(c);
|
|
|
|
updateTemplateList();
|
2014-07-13 13:37:43 +00:00
|
|
|
setProperties(titleblock);
|
|
|
|
}
|
|
|
|
|
2014-07-12 13:14:47 +00:00
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::~TitleBlockPropertiesWidget
|
|
|
|
* destructor
|
|
|
|
*/
|
|
|
|
TitleBlockPropertiesWidget::~TitleBlockPropertiesWidget()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::setProperties
|
|
|
|
* @param properties
|
|
|
|
*/
|
|
|
|
void TitleBlockPropertiesWidget::setProperties(const TitleBlockProperties &properties) {
|
|
|
|
ui -> m_title_le -> setText (properties.title);
|
|
|
|
ui -> m_author_le -> setText (properties.author);
|
|
|
|
ui -> m_file_le -> setText (properties.filename);
|
|
|
|
ui -> m_folio_le -> setText (properties.folio);
|
2015-03-16 13:29:27 +00:00
|
|
|
ui -> m_display_at_cb -> setCurrentIndex(properties.display_at == Qt::BottomEdge ? 0 : 1);
|
2014-07-12 13:14:47 +00:00
|
|
|
|
2014-07-13 13:37:43 +00:00
|
|
|
//About date
|
|
|
|
ui -> m_date_now_pb -> setDisabled(true);
|
|
|
|
ui -> m_date_edit -> setDisabled(true);
|
|
|
|
ui -> m_date_edit -> setDate(QDate::currentDate());
|
2014-07-12 13:14:47 +00:00
|
|
|
|
2014-07-13 13:37:43 +00:00
|
|
|
if (!ui -> m_current_date_rb -> isHidden()) {
|
2014-07-12 13:14:47 +00:00
|
|
|
if(properties.useDate == TitleBlockProperties::CurrentDate)
|
|
|
|
ui -> m_current_date_rb -> setChecked(true);
|
|
|
|
else {
|
|
|
|
if (properties.date.isNull())
|
|
|
|
ui -> m_no_date_rb -> setChecked(true);
|
|
|
|
else {
|
|
|
|
ui -> m_fixed_date_rb -> setChecked(true);
|
|
|
|
ui -> m_date_edit -> setDate(properties.date);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (properties.useDate == TitleBlockProperties::CurrentDate)
|
|
|
|
ui -> m_fixed_date_rb ->setChecked(true);
|
|
|
|
else {
|
|
|
|
if (properties.date.isNull())
|
|
|
|
ui -> m_no_date_rb -> setChecked(true);
|
|
|
|
else {
|
|
|
|
ui -> m_fixed_date_rb -> setChecked(true);
|
|
|
|
ui -> m_date_edit -> setDate(properties.date);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} //About date
|
|
|
|
|
2015-04-17 11:36:28 +00:00
|
|
|
//Set the current titleblock if any
|
|
|
|
int index = 0;
|
|
|
|
if (!properties.template_name.isEmpty())
|
|
|
|
{
|
|
|
|
index = getIndexFor(properties.template_name, properties.collection);
|
|
|
|
if (index == -1) index = 0;
|
2014-07-12 13:14:47 +00:00
|
|
|
}
|
2015-04-17 11:36:28 +00:00
|
|
|
ui -> m_tbt_cb -> setCurrentIndex(index);
|
2014-07-12 13:14:47 +00:00
|
|
|
|
|
|
|
m_dcw -> setContext(properties.context);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::properties
|
|
|
|
* @return the edited properties
|
|
|
|
*/
|
|
|
|
TitleBlockProperties TitleBlockPropertiesWidget::properties() const {
|
|
|
|
TitleBlockProperties prop;
|
|
|
|
prop.title = ui -> m_title_le -> text();
|
|
|
|
prop.author = ui -> m_author_le -> text();
|
|
|
|
prop.filename = ui -> m_file_le -> text();
|
|
|
|
prop.folio = ui -> m_folio_le -> text();
|
2015-03-16 13:29:27 +00:00
|
|
|
prop.display_at = ui -> m_display_at_cb -> currentIndex() == 0 ? Qt::BottomEdge : Qt::RightEdge;
|
2014-07-12 13:14:47 +00:00
|
|
|
|
|
|
|
if (ui->m_no_date_rb->isChecked()) {
|
|
|
|
prop.useDate = TitleBlockProperties::UseDateValue;
|
|
|
|
prop.date = QDate();
|
|
|
|
}
|
|
|
|
else if (ui -> m_fixed_date_rb -> isChecked()) {
|
|
|
|
prop.useDate = TitleBlockProperties::UseDateValue;
|
|
|
|
prop.date = ui->m_date_edit->date();
|
|
|
|
}
|
|
|
|
else if (ui->m_current_date_rb->isVisible() && ui->m_current_date_rb->isChecked()) {
|
|
|
|
prop.useDate = TitleBlockProperties::CurrentDate;
|
|
|
|
prop.date = QDate::currentDate();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!currentTitleBlockTemplateName().isEmpty())
|
2015-04-09 09:39:34 +00:00
|
|
|
{
|
2014-07-12 13:14:47 +00:00
|
|
|
prop.template_name = currentTitleBlockTemplateName();
|
2015-04-17 11:36:28 +00:00
|
|
|
prop.collection = m_map_index_to_collection_type.at(ui->m_tbt_cb->currentIndex());
|
2015-04-09 09:39:34 +00:00
|
|
|
}
|
2014-07-12 13:14:47 +00:00
|
|
|
|
|
|
|
prop.context = m_dcw -> context();
|
|
|
|
|
|
|
|
return prop;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::setTitleBlockTemplatesVisible
|
|
|
|
* if true, title block template combo box and menu button is visible
|
|
|
|
*/
|
|
|
|
void TitleBlockPropertiesWidget::setTitleBlockTemplatesVisible(const bool &visible) {
|
|
|
|
ui -> m_tbt_label -> setVisible(visible);
|
|
|
|
ui -> m_tbt_cb -> setVisible(visible);
|
|
|
|
ui -> m_tbt_pb -> setVisible(visible);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::setReadOnly
|
|
|
|
* if true, this widget is disable
|
|
|
|
*/
|
|
|
|
void TitleBlockPropertiesWidget::setReadOnly(const bool &ro) {
|
|
|
|
ui->m_tbt_gb->setDisabled(ro);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::currentTitleBlockTemplateName
|
|
|
|
* @return the current title block name
|
|
|
|
*/
|
|
|
|
QString TitleBlockPropertiesWidget::currentTitleBlockTemplateName() const {
|
|
|
|
int index = ui -> m_tbt_cb -> currentIndex();
|
|
|
|
if(index != -1)
|
|
|
|
return (ui -> m_tbt_cb -> itemData(index).toString());
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-04-17 11:36:28 +00:00
|
|
|
* @brief TitleBlockPropertiesWidget::addCollection
|
|
|
|
* add a collection of title block available in the combo box
|
2014-07-12 13:14:47 +00:00
|
|
|
* @param tbt_collection
|
|
|
|
*/
|
2015-04-17 11:36:28 +00:00
|
|
|
void TitleBlockPropertiesWidget::addCollection(TitleBlockTemplatesCollection *tbt_collection)
|
|
|
|
{
|
|
|
|
if (!tbt_collection || m_tbt_collection_list.contains(tbt_collection)) return;
|
|
|
|
m_tbt_collection_list << tbt_collection;
|
2014-07-12 13:14:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::initDialog
|
|
|
|
* Init this dialog
|
|
|
|
* @param current_date true for display current date radio button
|
|
|
|
*/
|
2016-05-13 13:48:36 +00:00
|
|
|
void TitleBlockPropertiesWidget::initDialog(const bool ¤t_date) {
|
2014-07-12 13:14:47 +00:00
|
|
|
m_dcw = new DiagramContextWidget();
|
|
|
|
ui -> m_tab2_vlayout -> addWidget(m_dcw);
|
|
|
|
|
|
|
|
setTitleBlockTemplatesVisible(false);
|
|
|
|
ui -> m_current_date_rb -> setVisible(current_date);
|
|
|
|
|
2015-03-02 20:14:56 +00:00
|
|
|
m_tbt_edit = new QAction(tr("Éditer ce modèle", "menu entry"), this);
|
|
|
|
m_tbt_duplicate = new QAction(tr("Dupliquer et editer ce modèle", "menu entry"), this);
|
2014-07-12 13:14:47 +00:00
|
|
|
|
|
|
|
connect(m_tbt_edit, SIGNAL(triggered()), this, SLOT(editCurrentTitleBlockTemplate()));
|
|
|
|
connect(m_tbt_duplicate, SIGNAL(triggered()), this, SLOT(duplicateCurrentTitleBlockTemplate()));
|
|
|
|
|
|
|
|
m_tbt_menu = new QMenu(tr("Title block templates actions"));
|
|
|
|
m_tbt_menu -> addAction(m_tbt_edit);
|
|
|
|
m_tbt_menu -> addAction(m_tbt_duplicate);
|
|
|
|
ui -> m_tbt_pb -> setMenu(m_tbt_menu);
|
|
|
|
|
2015-04-17 11:36:28 +00:00
|
|
|
connect(ui->m_tbt_cb, SIGNAL(currentIndexChanged(int)), this, SLOT(changeCurrentTitleBlockTemplate(int)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::getIndexFor
|
|
|
|
* Find the index of the combo box for the title block @tbt_name available on the collection @collection
|
|
|
|
* @param tbt_name : title block name
|
|
|
|
* @param collection : title block collection
|
|
|
|
* @return the index of the title block or -1 if no match
|
|
|
|
*/
|
|
|
|
int TitleBlockPropertiesWidget::getIndexFor(const QString &tbt_name, const QET::QetCollection collection) const
|
|
|
|
{
|
|
|
|
for (int i = 0; i<ui->m_tbt_cb->count(); i++) {
|
|
|
|
if (ui->m_tbt_cb->itemData(i).toString() == tbt_name)
|
|
|
|
if (m_map_index_to_collection_type.at(i) == collection)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
2014-07-12 13:14:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TitleBlockPropertiesWidget::editCurrentTitleBlockTemplate() {
|
|
|
|
emit(editTitleBlockTemplate(currentTitleBlockTemplateName(), false));
|
|
|
|
}
|
|
|
|
|
|
|
|
void TitleBlockPropertiesWidget::duplicateCurrentTitleBlockTemplate() {
|
|
|
|
emit(editTitleBlockTemplate(currentTitleBlockTemplateName(), true));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::updateTemplateList
|
2015-04-17 11:36:28 +00:00
|
|
|
* Update the title block template list available in the combo box
|
2014-07-12 13:14:47 +00:00
|
|
|
*/
|
2015-04-17 11:36:28 +00:00
|
|
|
void TitleBlockPropertiesWidget::updateTemplateList()
|
|
|
|
{
|
|
|
|
ui -> m_tbt_cb ->clear();
|
2014-07-12 13:14:47 +00:00
|
|
|
|
2015-04-17 11:36:28 +00:00
|
|
|
if (m_tbt_collection_list.isEmpty())
|
|
|
|
{
|
|
|
|
setTitleBlockTemplatesVisible(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
setTitleBlockTemplatesVisible(true);
|
|
|
|
|
|
|
|
//Add the default title block
|
|
|
|
m_map_index_to_collection_type.clear();
|
|
|
|
m_map_index_to_collection_type.append(QET::QetCollection::Common);
|
|
|
|
ui -> m_tbt_cb -> addItem(QET::Icons::QETLogo, tr("Modèle par défaut"));
|
|
|
|
|
|
|
|
//Add every title block stored in m_tbt_collection_list
|
|
|
|
foreach (TitleBlockTemplatesCollection *tbt_c, m_tbt_collection_list)
|
|
|
|
{
|
|
|
|
QIcon icon;
|
|
|
|
QET::QetCollection qc = tbt_c -> collection();
|
|
|
|
if (qc == QET::QetCollection::Common)
|
|
|
|
icon = QET::Icons::QETLogo;
|
|
|
|
else if (qc == QET::QetCollection::Custom)
|
|
|
|
icon = QET::Icons::Home;
|
2015-04-25 08:54:54 +00:00
|
|
|
else if (qc == QET::QetCollection::Embedded)
|
2015-04-17 11:36:28 +00:00
|
|
|
icon = QET::Icons::TitleBlock;
|
|
|
|
|
|
|
|
foreach(QString tbt_name, tbt_c -> templates())
|
|
|
|
{
|
|
|
|
m_map_index_to_collection_type.append(qc);
|
|
|
|
ui -> m_tbt_cb -> addItem(icon, tbt_name, tbt_name);
|
|
|
|
}
|
|
|
|
}
|
2014-07-12 13:14:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::changeCurrentTitleBlockTemplate
|
|
|
|
* Load the additionnal field of title block "text"
|
|
|
|
*/
|
2015-04-17 11:36:28 +00:00
|
|
|
void TitleBlockPropertiesWidget::changeCurrentTitleBlockTemplate(int index)
|
|
|
|
{
|
2014-07-12 13:14:47 +00:00
|
|
|
m_dcw -> clear();
|
2015-04-17 11:36:28 +00:00
|
|
|
|
|
|
|
QET::QetCollection qc = m_map_index_to_collection_type.at(index);
|
|
|
|
TitleBlockTemplatesCollection *collection = nullptr;
|
|
|
|
foreach (TitleBlockTemplatesCollection *c, m_tbt_collection_list)
|
|
|
|
if (c -> collection() == qc)
|
|
|
|
collection = c;
|
|
|
|
|
|
|
|
if (!collection) return;
|
|
|
|
|
|
|
|
// get template
|
|
|
|
TitleBlockTemplate *tpl = collection -> getTemplate(ui -> m_tbt_cb -> currentText());
|
2014-07-12 13:14:47 +00:00
|
|
|
if(tpl != 0) {
|
2015-04-17 11:36:28 +00:00
|
|
|
// get all template fields
|
2014-07-12 13:14:47 +00:00
|
|
|
QStringList fields = tpl -> listOfVariables();
|
2015-04-17 11:36:28 +00:00
|
|
|
// set fields to additional_fields_ widget
|
2014-07-12 13:14:47 +00:00
|
|
|
DiagramContext templateContext;
|
|
|
|
for(int i =0; i<fields.count(); i++)
|
|
|
|
templateContext.addValue(fields.at(i), "");
|
2015-04-17 11:36:28 +00:00
|
|
|
m_dcw -> setContext(templateContext);
|
2014-07-12 13:14:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TitleBlockPropertiesWidget::on_m_date_now_pb_clicked
|
|
|
|
* Set the date to current date
|
|
|
|
*/
|
|
|
|
void TitleBlockPropertiesWidget::on_m_date_now_pb_clicked() {
|
|
|
|
ui -> m_date_edit -> setDate(QDate::currentDate());
|
|
|
|
}
|