QElectroTech  0.70
templatedeleter.cpp
Go to the documentation of this file.
1 /*
2  Copyright 2006-2019 The QElectroTech Team
3  This file is part of QElectroTech.
4 
5  QElectroTech is free software: you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation, either version 2 of the License, or
8  (at your option) any later version.
9 
10  QElectroTech is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License
16  along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
17 */
18 #include "templatedeleter.h"
19 #include "qetmessagebox.h"
20 #include "qetproject.h"
27  QWidget(parent),
28  template_location_(tbt_location)
29 {
30 }
31 
36 }
37 
45  if (!template_location_.isValid()) return(false);
46 
47  QString name = template_location_.name();
49  if (!collection) return(false);
50 
51  if (!collection -> templates().contains(name)) {
52  return(false);
53  }
54 
55  // require confirmation from the user
56  QMessageBox::StandardButton answer = QET::QetMessageBox::question(
57  this,
58  tr("Supprimer le modèle de cartouche ?", "message box title"),
59  QString(
60  tr(
61  "Êtes-vous sûr de vouloir supprimer ce modèle de cartouche (%1) ?\n",
62  "message box content"
63  )
64  ).arg(name),
65  QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel
66  );
67  if (answer != QMessageBox::Yes) return(false);
68 
69  // delete the title block template
70  collection -> removeTemplate(name);
71  return(true);
72 }
QIcon tr
Definition: qeticons.cpp:204
QIcon Cancel
Definition: qeticons.cpp:34
QMessageBox::StandardButton question(QWidget *, const QString &, const QString &, QMessageBox::StandardButtons=QMessageBox::Ok, QMessageBox::StandardButton=QMessageBox::NoButton)
TitleBlockTemplatesCollection * parentCollection() const
TitleBlockTemplateDeleter(const TitleBlockTemplateLocation &, QWidget *=nullptr)
TitleBlockTemplateLocation template_location_