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_HOLEPROPERTIESDIALOG_H
21 #define LIBREPCB_HOLEPROPERTIESDIALOG_H
22 
23 /*******************************************************************************
24  *  Includes
25  ******************************************************************************/
26 #include <QtCore>
27 #include <QtWidgets>
28 
29 /*******************************************************************************
30  *  Namespace / Forward Declarations
31  ******************************************************************************/
32 namespace librepcb {
33 
34 class UndoStack;
35 class Hole;
36 class LengthUnit;
37 
38 namespace Ui {
39 class HolePropertiesDialog;
40 }
41 
42 /*******************************************************************************
43  *  Class HolePropertiesDialog
44  ******************************************************************************/
45 
46 /**
47  * @brief The HolePropertiesDialog class
48  */
49 class HolePropertiesDialog final : public QDialog {
50   Q_OBJECT
51 
52 public:
53   // Constructors / Destructor
54   HolePropertiesDialog() = delete;
55   HolePropertiesDialog(const HolePropertiesDialog& other) = delete;
56   HolePropertiesDialog(Hole& hole, UndoStack& undoStack,
57                        const LengthUnit& lengthUnit,
58                        const QString& settingsPrefix,
59                        QWidget* parent = nullptr) noexcept;
60   ~HolePropertiesDialog() noexcept;
61 
62   // Setters
63   void setReadOnly(bool readOnly) noexcept;
64 
65   // Operator Overloadings
66   HolePropertiesDialog& operator=(const HolePropertiesDialog& rhs) = delete;
67 
68 private:  // Methods
69   void on_buttonBox_clicked(QAbstractButton* button);
70   bool applyChanges() noexcept;
71 
72 private:  // Data
73   Hole& mHole;
74   UndoStack& mUndoStack;
75   QScopedPointer<Ui::HolePropertiesDialog> mUi;
76 };
77 
78 /*******************************************************************************
79  *  End of File
80  ******************************************************************************/
81 
82 }  // namespace librepcb
83 
84 #endif  // LIBREPCB_HOLEPROPERTIESDIALOG_H
85