LibrePCB Developers Documentation
cmdcomponentedit.h
Go to the documentation of this file.
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 #ifndef LIBREPCB_EDITOR_CMDCOMPONENTEDIT_H
21 #define LIBREPCB_EDITOR_CMDCOMPONENTEDIT_H
22 
23 /*******************************************************************************
24  * Includes
25  ******************************************************************************/
26 #include "cmdlibraryelementedit.h"
27 
29 
30 #include <QtCore>
31 
32 /*******************************************************************************
33  * Namespace / Forward Declarations
34  ******************************************************************************/
35 namespace librepcb {
36 namespace editor {
37 
38 /*******************************************************************************
39  * Class CmdComponentEdit
40  ******************************************************************************/
41 
46 public:
47  // Constructors / Destructor
48  CmdComponentEdit() = delete;
49  CmdComponentEdit(const CmdComponentEdit& other) = delete;
50  explicit CmdComponentEdit(Component& component) noexcept;
51  virtual ~CmdComponentEdit() noexcept;
52 
53  // Setters
54  void setIsSchematicOnly(bool schematicOnly) noexcept;
55  void setDefaultValue(const QString& value) noexcept;
56  void setPrefix(const QString& norm, const ComponentPrefix& prefix) noexcept;
57  void setPrefixes(const NormDependentPrefixMap& prefixes) noexcept;
58 
59  // Operator Overloadings
60  CmdComponentEdit& operator=(const CmdComponentEdit& rhs) = delete;
61 
62 protected: // Methods
64  virtual bool performExecute() override;
65 
67  virtual void performUndo() override;
68 
70  virtual void performRedo() override;
71 
72 private: // Data
74 
81 };
82 
83 /*******************************************************************************
84  * End of File
85  ******************************************************************************/
86 
87 } // namespace editor
88 } // namespace librepcb
89 
90 #endif
bool mOldSchematicOnly
Definition: cmdcomponentedit.h:75
CmdComponentEdit & operator=(const CmdComponentEdit &rhs)=delete
The CmdLibraryElementEdit class.
Definition: cmdlibraryelementedit.h:45
Definition: occmodel.cpp:77
bool mNewSchematicOnly
Definition: cmdcomponentedit.h:76
NormDependentPrefixMap mNewPrefixes
Definition: cmdcomponentedit.h:80
void setDefaultValue(const QString &value) noexcept
Definition: cmdcomponentedit.cpp:60
type_safe::constrained_type< QString, ComponentPrefixConstraint, ComponentPrefixVerifier > ComponentPrefix
Definition: componentprefix.h:85
virtual bool performExecute() override
Execute the command the first time.
Definition: cmdcomponentedit.cpp:81
The CmdComponentEdit class.
Definition: cmdcomponentedit.h:45
QString mOldDefaultValue
Definition: cmdcomponentedit.h:77
The Component class represents a "generic" device in the library.
Definition: component.h:73
void setPrefixes(const NormDependentPrefixMap &prefixes) noexcept
Definition: cmdcomponentedit.cpp:71
NormDependentPrefixMap mOldPrefixes
Definition: cmdcomponentedit.h:79
void setPrefix(const QString &norm, const ComponentPrefix &prefix) noexcept
Definition: cmdcomponentedit.cpp:65
virtual ~CmdComponentEdit() noexcept
Definition: cmdcomponentedit.cpp:48
virtual void performRedo() override
Redo the command.
Definition: cmdcomponentedit.cpp:96
void setIsSchematicOnly(bool schematicOnly) noexcept
Definition: cmdcomponentedit.cpp:55
virtual void performUndo() override
Undo the command.
Definition: cmdcomponentedit.cpp:89
Component & mComponent
Definition: cmdcomponentedit.h:73
QString mNewDefaultValue
Definition: cmdcomponentedit.h:78