1 /*
2  * LibrePCB - Professional EDA for everyone!
3  * Copyright (C) 2013 LibrePCB Developers, see AUTHORS.md for contributors.
4  * https://librepcb.org/
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 /*******************************************************************************
21  *  Includes
22  ******************************************************************************/
23 #include "cmdschematicremove.h"
24 
25 #include "../../project.h"
26 #include "../schematic.h"
27 
28 #include <QtCore>
29 
30 /*******************************************************************************
31  *  Namespace
32  ******************************************************************************/
33 namespace librepcb {
34 namespace project {
35 
36 /*******************************************************************************
37  *  Constructors / Destructor
38  ******************************************************************************/
39 
CmdSchematicRemove(Project & project,Schematic & schematic)40 CmdSchematicRemove::CmdSchematicRemove(Project& project,
41                                        Schematic& schematic) noexcept
42   : UndoCommand(tr("Remove schematic")),
43     mProject(project),
44     mSchematic(schematic),
45     mPageIndex(-1) {
46 }
47 
~CmdSchematicRemove()48 CmdSchematicRemove::~CmdSchematicRemove() noexcept {
49 }
50 
51 /*******************************************************************************
52  *  Inherited from UndoCommand
53  ******************************************************************************/
54 
performExecute()55 bool CmdSchematicRemove::performExecute() {
56   mPageIndex = mProject.getSchematicIndex(mSchematic);
57 
58   performRedo();  // can throw
59 
60   return true;
61 }
62 
performUndo()63 void CmdSchematicRemove::performUndo() {
64   mProject.addSchematic(mSchematic, mPageIndex);  // can throw
65 }
66 
performRedo()67 void CmdSchematicRemove::performRedo() {
68   mProject.removeSchematic(mSchematic);  // can throw
69 }
70 
71 /*******************************************************************************
72  *  End of File
73  ******************************************************************************/
74 
75 }  // namespace project
76 }  // namespace librepcb
77