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 "cmdboardstroketextadd.h"
24 
25 #include "../board.h"
26 #include "../items/bi_stroketext.h"
27 
28 #include <QtCore>
29 
30 /*******************************************************************************
31  *  Namespace
32  ******************************************************************************/
33 namespace librepcb {
34 namespace project {
35 
36 /*******************************************************************************
37  *  Constructors / Destructor
38  ******************************************************************************/
39 
CmdBoardStrokeTextAdd(BI_StrokeText & text)40 CmdBoardStrokeTextAdd::CmdBoardStrokeTextAdd(BI_StrokeText& text) noexcept
41   : UndoCommand(tr("Add text to board")),
42     mBoard(text.getBoard()),
43     mStrokeText(&text) {
44 }
45 
~CmdBoardStrokeTextAdd()46 CmdBoardStrokeTextAdd::~CmdBoardStrokeTextAdd() noexcept {
47 }
48 
49 /*******************************************************************************
50  *  Inherited from UndoCommand
51  ******************************************************************************/
52 
performExecute()53 bool CmdBoardStrokeTextAdd::performExecute() {
54   performRedo();  // can throw
55 
56   return true;
57 }
58 
performUndo()59 void CmdBoardStrokeTextAdd::performUndo() {
60   mBoard.removeStrokeText(*mStrokeText);
61 }
62 
performRedo()63 void CmdBoardStrokeTextAdd::performRedo() {
64   mBoard.addStrokeText(*mStrokeText);
65 }
66 
67 /*******************************************************************************
68  *  End of File
69  ******************************************************************************/
70 
71 }  // namespace project
72 }  // namespace librepcb
73