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 ******************************************************************************/
32namespace librepcb {
33
34class BI_Plane;
35class LengthUnit;
36class Project;
37
38namespace editor {
39
40class UndoCommand;
41class UndoStack;
42
43namespace Ui {
44class BoardPlanePropertiesDialog;
45}
46
47/*******************************************************************************
48 * Class BoardPlanePropertiesDialog
49 ******************************************************************************/
50
54class BoardPlanePropertiesDialog final : public QDialog {
55 Q_OBJECT
56
57public:
58 // Constructors / Destructor
62 UndoStack& undoStack, const LengthUnit& lengthUnit,
63 const QString& settingsPrefix,
64 QWidget* parent) noexcept;
66
67private: // GUI Events
68 void buttonBoxClicked(QAbstractButton* button) noexcept;
69
70private: // 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
The BI_Plane class.
Definition: bi_plane.h:52
The LengthUnit class represents a length unit (millimeters, inches,...) and provides some useful meth...
Definition: lengthunit.h:60
The Project class represents a whole (opened) project with all its content.
Definition: project.h:71
The BoardPlanePropertiesDialog class.
Definition: boardplanepropertiesdialog.h:54
BI_Plane & mPlane
Definition: boardplanepropertiesdialog.h:75
UndoStack & mUndoStack
Definition: boardplanepropertiesdialog.h:77
QScopedPointer< Ui::BoardPlanePropertiesDialog > mUi
Definition: boardplanepropertiesdialog.h:76
Project & mProject
Definition: boardplanepropertiesdialog.h:74
~BoardPlanePropertiesDialog() noexcept
Definition: boardplanepropertiesdialog.cpp:144
bool applyChanges() noexcept
Definition: boardplanepropertiesdialog.cpp:172
BoardPlanePropertiesDialog(const BoardPlanePropertiesDialog &other)=delete
void buttonBoxClicked(QAbstractButton *button) noexcept
Definition: boardplanepropertiesdialog.cpp:152
The UndoStack class holds UndoCommand objects and provides undo/redo commands.
Definition: undostack.h:106
Definition: occmodel.cpp:77