mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
106 lines
3.2 KiB
C++
106 lines
3.2 KiB
C++
/*
|
|
Copyright 2006-2020 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 "templatelocationsaver.h"
|
|
#include "qetapp.h"
|
|
#include "qetproject.h"
|
|
#include "templatescollection.h"
|
|
|
|
/**
|
|
@brief TitleBlockTemplateLocationSaver::TitleBlockTemplateLocationSaver
|
|
Constructor
|
|
@param location
|
|
@param parent : QWidget
|
|
*/
|
|
TitleBlockTemplateLocationSaver::TitleBlockTemplateLocationSaver(
|
|
const TitleBlockTemplateLocation &location,
|
|
QWidget *parent
|
|
) :
|
|
TitleBlockTemplateLocationChooser(location, parent)
|
|
{
|
|
init();
|
|
setLocation(location);
|
|
}
|
|
|
|
/**
|
|
Destructor
|
|
*/
|
|
TitleBlockTemplateLocationSaver::~TitleBlockTemplateLocationSaver() {
|
|
}
|
|
|
|
/**
|
|
@return the currently selected/entered name
|
|
*/
|
|
QString TitleBlockTemplateLocationSaver::name() const {
|
|
int template_index = templates_ -> currentIndex();
|
|
return(template_index ? templates_ -> currentText() : new_name_ -> text());
|
|
}
|
|
|
|
/**
|
|
Set the location displayed by this widget
|
|
@param location to be displayed by this widget
|
|
*/
|
|
void TitleBlockTemplateLocationSaver::setLocation(const TitleBlockTemplateLocation &location) {
|
|
// hack: if no suitable index was found, set it to 1, which is supposed to be the user collection
|
|
int index = indexForCollection(location.parentCollection());
|
|
if (index == -1 && collections_ -> count() > 1) index = 1;
|
|
collections_ -> setCurrentIndex(index);
|
|
|
|
if (!location.name().isEmpty()) {
|
|
int template_index = templates_ -> findText(location.name());
|
|
if (template_index != -1) {
|
|
templates_ -> setCurrentIndex(template_index);
|
|
return;
|
|
}
|
|
}
|
|
templates_ -> setCurrentIndex(0);
|
|
}
|
|
|
|
/**
|
|
Initialize this widget.
|
|
@param location Initial location displayed by the widget
|
|
*/
|
|
void TitleBlockTemplateLocationSaver::init() {
|
|
new_name_ = new QLineEdit();
|
|
connect(templates_, SIGNAL(currentIndexChanged(int)), this, SLOT(updateNewName()));
|
|
form_layout_ -> addRow(tr("ou nouveau nom", "used in save as form"), new_name_);
|
|
updateTemplates();
|
|
}
|
|
|
|
/**
|
|
Update the templates list according to the selected collection.
|
|
*/
|
|
void TitleBlockTemplateLocationSaver::updateTemplates() {
|
|
TitleBlockTemplatesCollection *current_collection = collection();
|
|
if (!current_collection) return;
|
|
|
|
TitleBlockTemplateLocationChooser::updateTemplates();
|
|
templates_ -> insertItem(0, tr("Nouveau modèle (entrez son nom)", "combox box entry"), QVariant(false));
|
|
templates_ -> insertSeparator(1);
|
|
|
|
updateNewName();
|
|
}
|
|
|
|
/**
|
|
Enable or diable the "new name" text field depending of the selected
|
|
template.
|
|
*/
|
|
void TitleBlockTemplateLocationSaver::updateNewName() {
|
|
int template_index = templates_ -> currentIndex();
|
|
new_name_ -> setEnabled(!template_index);
|
|
}
|