Multipaste dialog : add 'autonum pasted conductors' check box

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5339 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
blacksun
2018-04-23 13:50:36 +00:00
parent 5fe1389f8b
commit 9d2124f593
8 changed files with 94 additions and 21 deletions

View File

@@ -1,3 +1,20 @@
/*
Copyright 2006-2018 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/>.
*/
#ifndef MULTIPASTEDIALOG_H
#define MULTIPASTEDIALOG_H
@@ -16,14 +33,14 @@ class MultiPasteDialog : public QDialog
Q_OBJECT
public:
explicit MultiPasteDialog(Diagram *diagram, QWidget *parent = 0);
explicit MultiPasteDialog(Diagram *diagram, QWidget *parent = nullptr);
~MultiPasteDialog();
void updatePreview();
private slots:
private slots:
void on_m_button_box_accepted();
private:
private:
Ui::MultiPasteDialog *ui;
Diagram *m_diagram = nullptr;
DiagramContent m_pasted_content;