LibrePCB Developers Documentation
boardplanepropertiesdialog.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_BOARDPLANEPROPERTIESDIALOG_H
21 #define LIBREPCB_EDITOR_BOARDPLANEPROPERTIESDIALOG_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 BI_Plane;
35 class LengthUnit;
36 class Project;
37 
38 namespace editor {
39 
40 class UndoCommand;
41 class UndoStack;
42 
43 namespace Ui {
44 class BoardPlanePropertiesDialog;
45 }
46 
47 /*******************************************************************************
48  * Class BoardPlanePropertiesDialog
49  ******************************************************************************/
50 
54 class BoardPlanePropertiesDialog final : public QDialog {
55  Q_OBJECT
56 
57 public:
58  // Constructors / Destructor
59  BoardPlanePropertiesDialog() = delete;
62  UndoStack& undoStack, const LengthUnit& lengthUnit,
63  const QString& settingsPrefix,
64  QWidget* parent) noexcept;
65  ~BoardPlanePropertiesDialog() noexcept;
66 
67 private: // GUI Events
68  void buttonBoxClicked(QAbstractButton* button) noexcept;
69 
70 private: // Methods
71  bool applyChanges() noexcept;
72 
73  // General
76  QScopedPointer<Ui::BoardPlanePropertiesDialog> mUi;
78 };
79 
80 /*******************************************************************************
81  * End of File
82  ******************************************************************************/
83 
84 } // namespace editor
85 } // namespace librepcb
86 
87 #endif
Definition: occmodel.cpp:77
Project & mProject
Definition: boardplanepropertiesdialog.h:74
The UndoStack class holds UndoCommand objects and provides undo/redo commands.
Definition: undostack.h:106
The BI_Plane class.
Definition: bi_plane.h:52
The Project class represents a whole (opened) project with all its content.
Definition: project.h:71
UndoStack & mUndoStack
Definition: boardplanepropertiesdialog.h:77
BI_Plane & mPlane
Definition: boardplanepropertiesdialog.h:75
The LengthUnit class represents a length unit (millimeters, inches,...) and provides some useful meth...
Definition: lengthunit.h:60
The BoardPlanePropertiesDialog class.
Definition: boardplanepropertiesdialog.h:54
QScopedPointer< Ui::BoardPlanePropertiesDialog > mUi
Definition: boardplanepropertiesdialog.h:76