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  ******************************************************************************/
34 namespace librepcb {
35 
36 class LengthUnit;
37 class Package;
38 
39 namespace editor {
40 
41 class EditableTableWidget;
42 class FootprintListModel;
43 class LengthDelegate;
44 class UndoStack;
45 
46 /*******************************************************************************
47  * Class FootprintListEditorWidget
48  ******************************************************************************/
49 
53 class FootprintListEditorWidget final : public QWidget {
54  Q_OBJECT
55 
56 public:
57  // Constructors / Destructor
58  explicit FootprintListEditorWidget(QWidget* parent = nullptr) noexcept;
60  ~FootprintListEditorWidget() 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 
73 signals:
74  void currentFootprintChanged(int index);
75 
76 private:
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
void setFrameStyle(int style) noexcept
Definition: footprintlisteditorwidget.cpp:112
void setCurrentIndex(int index) noexcept
Definition: footprintlisteditorwidget.cpp:132
QScopedPointer< EditableTableWidget > mView
Definition: footprintlisteditorwidget.h:78
FootprintListEditorWidget & operator=(const FootprintListEditorWidget &rhs)=delete
Definition: occmodel.cpp:77
LengthDelegate * mLengthDelegateZ
Definition: footprintlisteditorwidget.h:81
The Package class represents a package of a component (including footprint and 3D model) ...
Definition: package.h:59
LengthDelegate * mLengthDelegateY
Definition: footprintlisteditorwidget.h:80
~FootprintListEditorWidget() noexcept
Definition: footprintlisteditorwidget.cpp:105
The UndoStack class holds UndoCommand objects and provides undo/redo commands.
Definition: undostack.h:106
FootprintListEditorWidget(QWidget *parent=nullptr) noexcept
Definition: footprintlisteditorwidget.cpp:43
void setReadOnly(bool readOnly) noexcept
Definition: footprintlisteditorwidget.cpp:116
The FootprintListEditorWidget class.
Definition: footprintlisteditorwidget.h:53
void setReferences(Package *package, UndoStack *stack) noexcept
Definition: footprintlisteditorwidget.cpp:120
QScopedPointer< FootprintListModel > mModel
Definition: footprintlisteditorwidget.h:77
LengthDelegate * mLengthDelegateX
Definition: footprintlisteditorwidget.h:79
Subclass of QStyledItemDelegate to display/edit librepcb::Length values.
Definition: lengthdelegate.h:45
The LengthUnit class represents a length unit (millimeters, inches,...) and provides some useful meth...
Definition: lengthunit.h:60
void setLengthUnit(const LengthUnit &unit) noexcept
Definition: footprintlisteditorwidget.cpp:126