LibrePCB Developers Documentation
footprintlisteditorwidget.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_FOOTPRINTLISTEDITORWIDGET_H
21#define LIBREPCB_EDITOR_FOOTPRINTLISTEDITORWIDGET_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
27
28#include <QtCore>
29#include <QtWidgets>
30
31/*******************************************************************************
32 * Namespace / Forward Declarations
33 ******************************************************************************/
34namespace librepcb {
35
36class LengthUnit;
37class Package;
38
39namespace editor {
40
41class EditableTableWidget;
42class FootprintListModel;
43class LengthDelegate;
44class UndoStack;
45
46/*******************************************************************************
47 * Class FootprintListEditorWidget
48 ******************************************************************************/
49
53class FootprintListEditorWidget final : public QWidget {
54 Q_OBJECT
55
56public:
57 // Constructors / Destructor
58 explicit FootprintListEditorWidget(QWidget* parent = nullptr) noexcept;
61
62 // Setters
63 void setFrameStyle(int style) noexcept;
64 void setReadOnly(bool readOnly) noexcept;
65 void setReferences(Package* package, UndoStack* stack) noexcept;
66 void setLengthUnit(const LengthUnit& unit) noexcept;
67 void setCurrentIndex(int index) noexcept;
68
69 // Operator Overloadings
71 delete;
72
73signals:
74 void currentFootprintChanged(int index);
75
76private:
77 QScopedPointer<FootprintListModel> mModel;
78 QScopedPointer<EditableTableWidget> mView;
82};
83
84/*******************************************************************************
85 * End of File
86 ******************************************************************************/
87
88} // namespace editor
89} // namespace librepcb
90
91#endif
The LengthUnit class represents a length unit (millimeters, inches,...) and provides some useful meth...
Definition: lengthunit.h:60
The Package class represents a package of a component (including footprint and 3D model)
Definition: package.h:59
A QTableView subclass which adds buttons to edit the underlying model.
Definition: editabletablewidget.h:42
The FootprintListEditorWidget class.
Definition: footprintlisteditorwidget.h:53
LengthDelegate * mLengthDelegateZ
Definition: footprintlisteditorwidget.h:81
void setReferences(Package *package, UndoStack *stack) noexcept
Definition: footprintlisteditorwidget.cpp:120
void setReadOnly(bool readOnly) noexcept
Definition: footprintlisteditorwidget.cpp:116
~FootprintListEditorWidget() noexcept
Definition: footprintlisteditorwidget.cpp:105
void setCurrentIndex(int index) noexcept
Definition: footprintlisteditorwidget.cpp:132
void setLengthUnit(const LengthUnit &unit) noexcept
Definition: footprintlisteditorwidget.cpp:126
LengthDelegate * mLengthDelegateY
Definition: footprintlisteditorwidget.h:80
QScopedPointer< FootprintListModel > mModel
Definition: footprintlisteditorwidget.h:77
QScopedPointer< EditableTableWidget > mView
Definition: footprintlisteditorwidget.h:78
LengthDelegate * mLengthDelegateX
Definition: footprintlisteditorwidget.h:79
void setFrameStyle(int style) noexcept
Definition: footprintlisteditorwidget.cpp:112
FootprintListEditorWidget(const FootprintListEditorWidget &other)=delete
FootprintListEditorWidget(QWidget *parent=nullptr) noexcept
Definition: footprintlisteditorwidget.cpp:43
The FootprintListModel class.
Definition: footprintlistmodel.h:49
Subclass of QStyledItemDelegate to display/edit librepcb::Length values.
Definition: lengthdelegate.h:45
The UndoStack class holds UndoCommand objects and provides undo/redo commands.
Definition: undostack.h:106
Definition: occmodel.cpp:77