mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
finished yet ! git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5166 bfdf4180-ca20-0410-9c96-a3a8aa849046
528 lines
19 KiB
C++
528 lines
19 KiB
C++
/*
|
|
Copyright 2006-2017 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 "configpages.h"
|
|
#include "borderpropertieswidget.h"
|
|
#include "conductorpropertieswidget.h"
|
|
#include "titleblockpropertieswidget.h"
|
|
#include "bordertitleblock.h"
|
|
#include "qeticons.h"
|
|
#include "exportpropertieswidget.h"
|
|
#include "ui/reportpropertiewidget.h"
|
|
#include "ui/xrefpropertieswidget.h"
|
|
#include "qetproject.h"
|
|
#include "reportproperties.h"
|
|
#include "qetapp.h"
|
|
#include <QFontDialog>
|
|
#include <QFont>
|
|
|
|
/**
|
|
* @brief NewDiagramPage::NewDiagramPage
|
|
* Default constructor
|
|
* @param project, If project, edit the propertie of Project
|
|
* else edit the properties by default of QElectroTech
|
|
* @param parent, parent widget
|
|
*/
|
|
NewDiagramPage::NewDiagramPage(QETProject *project, QWidget *parent, ProjectPropertiesDialog *ppd) :
|
|
ConfigPage (parent),
|
|
ppd_ (ppd),
|
|
m_project (project)
|
|
{
|
|
//By default we set the global default properties
|
|
|
|
// dimensions by default for diagram
|
|
bpw = new BorderPropertiesWidget(BorderProperties::defaultProperties());
|
|
// default titleblock properties
|
|
QList <TitleBlockTemplatesCollection *> c;
|
|
c << QETApp::commonTitleBlockTemplatesCollection() << QETApp::customTitleBlockTemplatesCollection();
|
|
if (m_project) c << m_project->embeddedTitleBlockTemplatesCollection();
|
|
ipw = new TitleBlockPropertiesWidget(c, TitleBlockProperties::defaultProperties(), true, project, parent);
|
|
// default conductor properties
|
|
m_cpw = new ConductorPropertiesWidget(ConductorProperties::defaultProperties());
|
|
m_cpw->setHiddenAvailableAutonum(true);
|
|
// default propertie of report label
|
|
rpw = new ReportPropertieWidget(ReportProperties::defaultProperties());
|
|
// default properties of xref
|
|
xrefpw = new XRefPropertiesWidget(XRefProperties::defaultProperties(), this);
|
|
|
|
//If there is a project, we edit his properties
|
|
if (m_project) {
|
|
bpw -> setProperties (m_project -> defaultBorderProperties());
|
|
m_cpw -> setProperties (m_project -> defaultConductorProperties());
|
|
ipw -> setProperties (m_project -> defaultTitleBlockProperties());
|
|
rpw -> setReportProperties (m_project -> defaultReportProperties());
|
|
xrefpw -> setProperties (m_project -> defaultXRefProperties());
|
|
}
|
|
|
|
connect(ipw,SIGNAL(openAutoNumFolioEditor(QString)),this,SLOT(changeToAutoFolioTab()));
|
|
|
|
// main tab widget
|
|
QTabWidget *tab_widget = new QTabWidget(this);
|
|
QWidget *diagram_widget = new QWidget();
|
|
QVBoxLayout *diagram_layout = new QVBoxLayout(diagram_widget);
|
|
|
|
diagram_layout -> addWidget(bpw);
|
|
diagram_layout -> addWidget(ipw);
|
|
|
|
tab_widget -> addTab (diagram_widget, tr("Folio"));
|
|
tab_widget -> addTab (m_cpw, tr("Conducteur"));
|
|
tab_widget -> addTab (rpw, tr("Reports de folio"));
|
|
tab_widget -> addTab (xrefpw, tr("Références croisées"));
|
|
|
|
QVBoxLayout *vlayout1 = new QVBoxLayout();
|
|
vlayout1->addWidget(tab_widget);
|
|
|
|
setLayout(vlayout1);
|
|
}
|
|
|
|
/**
|
|
* @brief NewDiagramPage::~NewDiagramPage
|
|
*/
|
|
NewDiagramPage::~NewDiagramPage() {
|
|
disconnect(ipw,SIGNAL(openAutoNumFolioEditor(QString)),this,SLOT(changeToAutoFolioTab()));
|
|
}
|
|
|
|
/**
|
|
* @brief NewDiagramPage::applyConf
|
|
* Apply conf for this page.
|
|
* If there is a project, save in the project,
|
|
* else save to the default conf of QElectroTech
|
|
*/
|
|
void NewDiagramPage::applyConf() {
|
|
if (m_project) { //If project we save to the project
|
|
if (m_project -> isReadOnly()) return;
|
|
bool modified_project = false;
|
|
|
|
BorderProperties new_border_prop = bpw -> properties();
|
|
if (m_project -> defaultBorderProperties() != new_border_prop) {
|
|
m_project -> setDefaultBorderProperties(bpw -> properties());
|
|
modified_project = true;
|
|
}
|
|
|
|
TitleBlockProperties new_tbt_prop = ipw -> properties();
|
|
if (m_project -> defaultTitleBlockProperties() != new_tbt_prop) {
|
|
m_project -> setDefaultTitleBlockProperties(ipw -> properties());
|
|
modified_project = true;
|
|
}
|
|
|
|
ConductorProperties new_conductor_prop = m_cpw -> properties();
|
|
if (m_project -> defaultConductorProperties() != new_conductor_prop) {
|
|
m_project -> setDefaultConductorProperties(m_cpw -> properties());
|
|
modified_project = true;
|
|
}
|
|
|
|
QString new_report_prop = rpw -> ReportProperties();
|
|
if (m_project -> defaultReportProperties() != new_report_prop) {
|
|
m_project -> setDefaultReportProperties(new_report_prop);
|
|
modified_project = true;
|
|
}
|
|
|
|
QHash<QString, XRefProperties> new_xref_properties = xrefpw -> properties();
|
|
if (m_project -> defaultXRefProperties() != new_xref_properties) {
|
|
m_project -> setDefaultXRefProperties(new_xref_properties);
|
|
modified_project = true;
|
|
}
|
|
|
|
if (modified_project) {
|
|
m_project -> setModified(modified_project);
|
|
}
|
|
|
|
} else { //Else we save to the default value
|
|
QSettings settings;
|
|
|
|
// dimensions des nouveaux schemas
|
|
bpw -> properties().toSettings(settings, "diagrameditor/default");
|
|
|
|
// proprietes du cartouche
|
|
ipw-> properties().toSettings(settings, "diagrameditor/default");
|
|
|
|
// proprietes par defaut des conducteurs
|
|
m_cpw -> properties().toSettings(settings, "diagrameditor/defaultconductor");
|
|
|
|
// default report propertie
|
|
rpw->toSettings(settings, "diagrameditor/defaultreport");
|
|
|
|
// default xref properties
|
|
QHash <QString, XRefProperties> hash_xrp = xrefpw -> properties();
|
|
foreach (QString key, hash_xrp.keys()) {
|
|
XRefProperties xrp = hash_xrp[key];
|
|
QString str("diagrameditor/defaultxref");
|
|
xrp.toSettings(settings, str += key);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief NewDiagramPage::icon
|
|
* @return icon of this page
|
|
*/
|
|
QIcon NewDiagramPage::icon() const {
|
|
if (m_project) return(QET::Icons::NewDiagram);
|
|
return(QET::Icons::Projects);
|
|
}
|
|
|
|
/**
|
|
* @brief NewDiagramPage::title
|
|
* @return title of this page
|
|
*/
|
|
QString NewDiagramPage::title() const {
|
|
if (m_project) return(tr("Nouveau folio", "configuration page title"));
|
|
return(tr("Nouveau projet", "configuration page title"));
|
|
}
|
|
|
|
/**
|
|
* @brief NewDiagramPage::changeToAutoFolioTab
|
|
* Set the current tab to Autonum
|
|
*/
|
|
void NewDiagramPage::changeToAutoFolioTab(){
|
|
if (m_project){
|
|
ppd_->setCurrentPage(ProjectPropertiesDialog::Autonum);
|
|
ppd_->changeToFolio();
|
|
ppd_->exec();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @brief NewDiagramPage::setFolioAutonum
|
|
* Set temporary TBP to use in auto folio num
|
|
*/
|
|
void NewDiagramPage::setFolioAutonum(QString autoNum){
|
|
TitleBlockProperties tbptemp = ipw->propertiesAutoNum(autoNum);
|
|
ipw->setProperties(tbptemp);
|
|
applyConf();
|
|
}
|
|
|
|
/**
|
|
* @brief NewDiagramPage::saveCurrentTbp
|
|
* Save current TBP to retrieve after auto folio num
|
|
*/
|
|
void NewDiagramPage::saveCurrentTbp(){
|
|
savedTbp = ipw->properties();
|
|
}
|
|
|
|
/**
|
|
* @brief NewDiagramPage::loadSavedTbp
|
|
* Retrieve saved auto folio num
|
|
*/
|
|
void NewDiagramPage::loadSavedTbp(){
|
|
ipw->setProperties(savedTbp);
|
|
applyConf();
|
|
}
|
|
|
|
/**
|
|
Constructeur
|
|
@param parent QWidget parent
|
|
*/
|
|
GeneralConfigurationPage::GeneralConfigurationPage(QWidget *parent) : ConfigPage(parent)
|
|
{
|
|
//Conf of QElectroTech
|
|
QSettings settings;
|
|
bool use_system_colors = settings.value("usesystemcolors", "true").toBool();
|
|
bool tabbed = settings.value("diagrameditor/viewmode", "tabbed") == "tabbed";
|
|
bool zoom_out_folio = settings.value("diagrameditor/zoom-out-beyond-of-folio", false).toBool();
|
|
bool use_trackpad = settings.value("diagramview/gestures", false).toBool();
|
|
bool save_label_paste = settings.value("diagramcommands/save-label", true).toBool();
|
|
bool panel_folio = settings.value("genericpanel/folio", true).toBool();
|
|
bool highlight_integrated_elements = settings.value("diagrameditor/highlight-integrated-elements", true).toBool();
|
|
bool terminal_exportlist = settings.value("nomenclature-exportlist", true).toBool();
|
|
QString default_element_informations = settings.value("elementeditor/default-informations", "").toString();
|
|
|
|
appearance_ = new QGroupBox(tr("Apparence"), this);
|
|
use_system_colors_ = new QCheckBox(tr("Utiliser les couleurs du système"), appearance_);
|
|
projects_view_mode_ = new QGroupBox(tr("Projets"), this);
|
|
windowed_mode_ = new QRadioButton(tr("Utiliser des fenêtres (appliqué au prochain lancement de QElectroTech)"), projects_view_mode_);
|
|
tabbed_mode_ = new QRadioButton(tr("Utiliser des onglets (appliqué au prochain lancement de QElectroTech)"), projects_view_mode_);
|
|
use_trackpad_ = new QCheckBox(tr("Utiliser les gestes du pavé tactile"), projects_view_mode_);
|
|
save_label_paste_ = new QCheckBox(tr("Ne pas conserver les labels des éléments lors des copier coller"), projects_view_mode_);
|
|
folio_panel_ = new QCheckBox(tr("Utiliser les labels de folio à la place de leurs ID"), projects_view_mode_);
|
|
terminal_exportlist_ = new QCheckBox(tr("Exporter les bornes dans la nomenclature"), projects_view_mode_);
|
|
m_zoom_out_beyond_folio = new QCheckBox(tr("Autoriser le dézoom au delà du folio"), this);
|
|
|
|
bool ok;
|
|
QFont font = QFontDialog::getFont(&ok, QFont(), this);
|
|
if (ok) {
|
|
settings.setValue("diagramitemfont", font.family());
|
|
settings.setValue("diagramitemsize", font.pointSize());
|
|
settings.setValue("diagramitemweight", font.weight());
|
|
settings.setValue("diagramitemstyle", font.styleName());
|
|
}
|
|
|
|
elements_management_ = new QGroupBox(tr("Gestion des éléments"), this);
|
|
highlight_integrated_elements_ = new QCheckBox(tr("Mettre en valeur dans le panel les éléments fraîchement intégrés", "configuration option"));
|
|
default_element_infos_label_ = new QLabel(
|
|
tr(
|
|
"Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre. "
|
|
"Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :"
|
|
)
|
|
);
|
|
default_element_infos_label_ -> setWordWrap(true);
|
|
default_element_infos_textfield_ = new QTextEdit();
|
|
default_element_infos_textfield_ -> setAcceptRichText(false);
|
|
|
|
use_system_colors_ -> setChecked(use_system_colors);
|
|
|
|
use_trackpad_ -> setChecked(use_trackpad);
|
|
save_label_paste_ -> setChecked(save_label_paste);
|
|
folio_panel_ ->setChecked(panel_folio);
|
|
terminal_exportlist_ ->setChecked(terminal_exportlist);
|
|
|
|
if (tabbed) {
|
|
tabbed_mode_ -> setChecked(true);
|
|
} else {
|
|
windowed_mode_ -> setChecked(true);
|
|
}
|
|
|
|
m_zoom_out_beyond_folio -> setChecked(zoom_out_folio);
|
|
|
|
highlight_integrated_elements_ -> setChecked(highlight_integrated_elements);
|
|
default_element_infos_textfield_ -> setPlainText(default_element_informations);
|
|
|
|
QVBoxLayout *appearance_layout = new QVBoxLayout();
|
|
appearance_layout -> addWidget(use_system_colors_);
|
|
appearance_ -> setLayout(appearance_layout);
|
|
|
|
QVBoxLayout *projects_view_mode_layout = new QVBoxLayout;
|
|
projects_view_mode_layout -> addWidget(windowed_mode_);
|
|
projects_view_mode_layout -> addWidget(tabbed_mode_);
|
|
projects_view_mode_layout -> addWidget(m_zoom_out_beyond_folio);
|
|
projects_view_mode_layout -> addWidget(use_trackpad_);
|
|
projects_view_mode_layout -> addWidget(save_label_paste_);
|
|
projects_view_mode_layout -> addWidget(folio_panel_);
|
|
projects_view_mode_layout -> addWidget(terminal_exportlist_);
|
|
|
|
projects_view_mode_ -> setLayout(projects_view_mode_layout);
|
|
|
|
QVBoxLayout *elements_management_layout = new QVBoxLayout();
|
|
elements_management_layout -> addWidget(highlight_integrated_elements_);
|
|
elements_management_layout -> addWidget(default_element_infos_label_);
|
|
elements_management_layout -> addWidget(default_element_infos_textfield_);
|
|
elements_management_ -> setLayout(elements_management_layout);
|
|
|
|
//setup lang combo box selection widget
|
|
lang_group_box = new QGroupBox(tr("Langue"), this);
|
|
QHBoxLayout *lang_layout = new QHBoxLayout(lang_group_box);
|
|
lang_combo_box = new QComboBox();
|
|
lang_label = new QLabel(tr("La nouvelle langue sera prise en compte au prochain lancement de QElectroTech."));
|
|
lang_layout->addWidget(lang_combo_box);
|
|
lang_layout->addWidget(lang_label);
|
|
fillLang(settings);
|
|
|
|
QVBoxLayout *vlayout1 = new QVBoxLayout();
|
|
|
|
QLabel *title_label_ = new QLabel(title());
|
|
vlayout1 -> addWidget(title_label_);
|
|
|
|
QFrame *horiz_line_ = new QFrame();
|
|
horiz_line_ -> setFrameShape(QFrame::HLine);
|
|
vlayout1 -> addWidget(horiz_line_);
|
|
|
|
vlayout1 -> addWidget(appearance_);
|
|
vlayout1 -> addWidget(projects_view_mode_);
|
|
vlayout1 -> addWidget(elements_management_);
|
|
vlayout1 -> addWidget(lang_group_box);
|
|
vlayout1 -> addStretch();
|
|
|
|
setLayout(vlayout1);
|
|
}
|
|
|
|
/// Destructeur
|
|
GeneralConfigurationPage::~GeneralConfigurationPage() {
|
|
}
|
|
|
|
/**
|
|
* @brief GeneralConfigurationPage::applyConf
|
|
* Write all configuration in settings file
|
|
*/
|
|
void GeneralConfigurationPage::applyConf()
|
|
{
|
|
QSettings settings;
|
|
|
|
bool was_using_system_colors = settings.value("usesystemcolors", "true").toBool();
|
|
bool must_use_system_colors = use_system_colors_ -> isChecked();
|
|
settings.setValue("usesystemcolors", must_use_system_colors);
|
|
if (was_using_system_colors != must_use_system_colors) {
|
|
QETApp::instance() -> useSystemPalette(must_use_system_colors);
|
|
}
|
|
|
|
settings.setValue("lang", lang_combo_box->itemData(lang_combo_box->currentIndex()).toString());
|
|
|
|
QString view_mode = tabbed_mode_ -> isChecked() ? "tabbed" : "windowed";
|
|
settings.setValue("diagrameditor/viewmode", view_mode) ;
|
|
|
|
settings.setValue("diagrameditor/highlight-integrated-elements", highlight_integrated_elements_ -> isChecked());
|
|
settings.setValue("elementeditor/default-informations", default_element_infos_textfield_ -> toPlainText());
|
|
settings.setValue("diagramview/gestures", use_trackpad_ -> isChecked());
|
|
settings.setValue("diagramcommands/save-label", save_label_paste_ -> isChecked());
|
|
settings.setValue("diagrameditor/zoom-out-beyond-of-folio", m_zoom_out_beyond_folio->isChecked());
|
|
settings.setValue("genericpanel/folio",folio_panel_->isChecked());
|
|
settings.setValue("nomenclature/terminal-exportlist",terminal_exportlist_->isChecked());
|
|
}
|
|
|
|
/// @return l'icone de cette page
|
|
QIcon GeneralConfigurationPage::icon() const {
|
|
return(QET::Icons::Settings);
|
|
}
|
|
|
|
/// @return le titre de cette page
|
|
QString GeneralConfigurationPage::title() const {
|
|
return(tr("Général", "configuration page title"));
|
|
}
|
|
|
|
/**
|
|
* @brief GeneralConfigurationPage::fillLang
|
|
* fill all available lang in @lang_combo_box
|
|
*/
|
|
void GeneralConfigurationPage::fillLang(QSettings &settings) {
|
|
lang_combo_box->addItem(QET::Icons::translation, tr("Système"), "system");
|
|
lang_combo_box->insertSeparator(1);
|
|
|
|
// all lang available on lang directory
|
|
lang_combo_box->addItem(QET::Icons::ar, tr("Arabe"), "ar");
|
|
lang_combo_box->addItem(QET::Icons::br, tr("Brézilien"), "pt_br");
|
|
lang_combo_box->addItem(QET::Icons::catalonia, tr("Catalan"), "ca");
|
|
lang_combo_box->addItem(QET::Icons::cs, tr("Tchèque"), "cs");
|
|
lang_combo_box->addItem(QET::Icons::de, tr("Allemand"), "de");
|
|
lang_combo_box->addItem(QET::Icons::da, tr("Danois"), "da");
|
|
lang_combo_box->addItem(QET::Icons::gr, tr("Grec"), "el");
|
|
lang_combo_box->addItem(QET::Icons::en, tr("Anglais"), "en");
|
|
lang_combo_box->addItem(QET::Icons::es, tr("Espagnol"), "es");
|
|
lang_combo_box->addItem(QET::Icons::fr, tr("Français"), "fr");
|
|
lang_combo_box->addItem(QET::Icons::hr, tr("Croate"), "hr");
|
|
lang_combo_box->addItem(QET::Icons::it, tr("Italien"), "it");
|
|
lang_combo_box->addItem(QET::Icons::pl, tr("Polonais"), "pl");
|
|
lang_combo_box->addItem(QET::Icons::pt, tr("Portugais"), "pt");
|
|
lang_combo_box->addItem(QET::Icons::ro, tr("Roumains"), "ro");
|
|
lang_combo_box->addItem(QET::Icons::ru, tr("Russe"), "ru");
|
|
lang_combo_box->addItem(QET::Icons::sl, tr("Slovène"), "sl");
|
|
lang_combo_box->addItem(QET::Icons::nl, tr("Pays-Bas"), "nl");
|
|
lang_combo_box->addItem(QET::Icons::be, tr("Belgique-Flemish"), "be");
|
|
|
|
//set curent index to the lang found in setting file
|
|
//if lang doesn't exist set to system
|
|
for (int i=0; i<lang_combo_box->count(); i++) {
|
|
if (lang_combo_box->itemData(i).toString() == settings.value("lang").toString()) {
|
|
lang_combo_box->setCurrentIndex(i);
|
|
return;
|
|
}
|
|
}
|
|
lang_combo_box->setCurrentIndex(0);
|
|
}
|
|
|
|
/**
|
|
Constructeur
|
|
@param parent QWidget parent
|
|
*/
|
|
ExportConfigPage::ExportConfigPage(QWidget *parent) : ConfigPage(parent) {
|
|
// epw contient les options d'export
|
|
epw = new ExportPropertiesWidget(ExportProperties::defaultExportProperties());
|
|
|
|
// layout vertical contenant le titre, une ligne horizontale et epw
|
|
QVBoxLayout *vlayout1 = new QVBoxLayout();
|
|
|
|
QLabel *title = new QLabel(this -> title());
|
|
vlayout1 -> addWidget(title);
|
|
|
|
QFrame *horiz_line = new QFrame();
|
|
horiz_line -> setFrameShape(QFrame::HLine);
|
|
vlayout1 -> addWidget(horiz_line);
|
|
vlayout1 -> addWidget(epw);
|
|
vlayout1 -> addStretch();
|
|
|
|
// activation du layout
|
|
setLayout(vlayout1);
|
|
}
|
|
|
|
/// Destructeur
|
|
ExportConfigPage::~ExportConfigPage() {
|
|
}
|
|
|
|
/**
|
|
Applique la configuration de cette page
|
|
*/
|
|
void ExportConfigPage::applyConf()
|
|
{
|
|
QSettings settings;
|
|
epw -> exportProperties().toSettings(settings, "export/default");
|
|
}
|
|
|
|
/// @return l'icone de cette page
|
|
QIcon ExportConfigPage::icon() const {
|
|
return(QET::Icons::DocumentExport);
|
|
}
|
|
|
|
/// @return le titre de cette page
|
|
QString ExportConfigPage::title() const {
|
|
return(tr("Export", "configuration page title"));
|
|
}
|
|
|
|
/**
|
|
Constructeur
|
|
@param parent QWidget parent
|
|
*/
|
|
PrintConfigPage::PrintConfigPage(QWidget *parent) : ConfigPage(parent) {
|
|
// epw contient les options d'export
|
|
epw = new ExportPropertiesWidget(ExportProperties::defaultPrintProperties());
|
|
epw -> setPrintingMode(true);
|
|
|
|
// layout vertical contenant le titre, une ligne horizontale et epw
|
|
QVBoxLayout *vlayout1 = new QVBoxLayout();
|
|
|
|
QLabel *title = new QLabel(this -> title());
|
|
vlayout1 -> addWidget(title);
|
|
|
|
QFrame *horiz_line = new QFrame();
|
|
horiz_line -> setFrameShape(QFrame::HLine);
|
|
vlayout1 -> addWidget(horiz_line);
|
|
vlayout1 -> addWidget(epw);
|
|
vlayout1 -> addStretch();
|
|
|
|
// activation du layout
|
|
setLayout(vlayout1);
|
|
}
|
|
|
|
/// Destructeur
|
|
PrintConfigPage::~PrintConfigPage() {
|
|
}
|
|
|
|
/**
|
|
* @brief PrintConfigPage::applyConf
|
|
* Apply the config of this page
|
|
*/
|
|
void PrintConfigPage::applyConf()
|
|
{
|
|
QString prefix = "print/default";
|
|
|
|
QSettings settings;
|
|
epw -> exportProperties().toSettings(settings, prefix);
|
|
|
|
// annule l'enregistrement de certaines proprietes non pertinentes
|
|
settings.remove(prefix + "path");
|
|
settings.remove(prefix + "format");
|
|
settings.remove(prefix + "area");
|
|
}
|
|
|
|
/// @return l'icone de cette page
|
|
QIcon PrintConfigPage::icon() const {
|
|
return(QET::Icons::Printer);
|
|
}
|
|
|
|
/// @return le titre de cette page
|
|
QString PrintConfigPage::title() const {
|
|
return(tr("Impression", "configuration page title"));
|
|
}
|