LibrePCB Developers Documentation
holepropertiesdialog.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_HOLEPROPERTIESDIALOG_H
21#define LIBREPCB_EDITOR_HOLEPROPERTIESDIALOG_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include <QtCore>
27#include <QtWidgets>
28
29/*******************************************************************************
30 * Namespace / Forward Declarations
31 ******************************************************************************/
32namespace librepcb {
33
34class BI_Hole;
35class Hole;
36class LengthUnit;
37
38namespace editor {
39
40class UndoStack;
41
42namespace Ui {
43class HolePropertiesDialog;
44}
45
46/*******************************************************************************
47 * Class HolePropertiesDialog
48 ******************************************************************************/
49
53class HolePropertiesDialog final : public QDialog {
54 Q_OBJECT
55
56public:
57 // Constructors / Destructor
60 HolePropertiesDialog(Hole& hole, UndoStack& undoStack,
61 const LengthUnit& lengthUnit,
62 const QString& settingsPrefix,
63 QWidget* parent = nullptr) noexcept;
64 HolePropertiesDialog(BI_Hole& hole, UndoStack& undoStack,
65 const LengthUnit& lengthUnit,
66 const QString& settingsPrefix,
67 QWidget* parent = nullptr) noexcept;
68 ~HolePropertiesDialog() noexcept;
69
70 // Setters
71 void setReadOnly(bool readOnly) noexcept;
72
73 // Operator Overloadings
74 HolePropertiesDialog& operator=(const HolePropertiesDialog& rhs) = delete;
75
76private: // Methods
77 HolePropertiesDialog(Hole* libObj, BI_Hole* boardObj, UndoStack& undoStack,
78 const LengthUnit& lengthUnit,
79 const QString& settingsPrefix,
80 QWidget* parent = nullptr) noexcept;
81 template <typename T>
82 void load(const T& obj) noexcept;
83 void on_buttonBox_clicked(QAbstractButton* button);
84 bool applyChanges() noexcept;
85 template <typename T>
86 void applyChanges(T& cmd);
87
88private: // Data
92 QScopedPointer<Ui::HolePropertiesDialog> mUi;
93};
94
95/*******************************************************************************
96 * End of File
97 ******************************************************************************/
98
99} // namespace editor
100} // namespace librepcb
101
102#endif
The BI_Hole class.
Definition: bi_hole.h:46
The Hole class.
Definition: hole.h:45
The LengthUnit class represents a length unit (millimeters, inches,...) and provides some useful meth...
Definition: lengthunit.h:60
The HolePropertiesDialog class.
Definition: holepropertiesdialog.h:53
void on_buttonBox_clicked(QAbstractButton *button)
Definition: holepropertiesdialog.cpp:125
void setReadOnly(bool readOnly) noexcept
Definition: holepropertiesdialog.cpp:86
HolePropertiesDialog(const HolePropertiesDialog &other)=delete
void load(const T &obj) noexcept
Definition: holepropertiesdialog.cpp:107
UndoStack & mUndoStack
Definition: holepropertiesdialog.h:91
Hole * mLibraryObj
Definition: holepropertiesdialog.h:89
QScopedPointer< Ui::HolePropertiesDialog > mUi
Definition: holepropertiesdialog.h:92
bool applyChanges() noexcept
Definition: holepropertiesdialog.cpp:144
BI_Hole * mBoardObj
Definition: holepropertiesdialog.h:90
The UndoStack class holds UndoCommand objects and provides undo/redo commands.
Definition: undostack.h:106
Definition: occmodel.cpp:77