LibrePCB Developers Documentation
attributeunitcombobox.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_ATTRIBUTEUNITCOMBOBOX_H
21#define LIBREPCB_EDITOR_ATTRIBUTEUNITCOMBOBOX_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include <QtCore>
27#include <QtWidgets>
28
29/*******************************************************************************
30 * Namespace / Forward Declarations
31 ******************************************************************************/
32namespace librepcb {
33
34class AttributeType;
35class AttributeUnit;
36
37namespace editor {
38
39/*******************************************************************************
40 * Class AttributeUnitComboBox
41 ******************************************************************************/
42
46class AttributeUnitComboBox final : public QWidget {
47 Q_OBJECT
48
49public:
50 // Constructors / Destructor
51 explicit AttributeUnitComboBox(QWidget* parent = nullptr) noexcept;
53 ~AttributeUnitComboBox() noexcept;
54
55 // Getters
56 const AttributeUnit* getCurrentItem() const noexcept;
57
58 // Setters
59 void setAttributeType(const AttributeType& type) noexcept;
60 void setCurrentItem(const AttributeUnit* unit) noexcept;
61
62 // Operator Overloadings
63 AttributeUnitComboBox& operator=(const AttributeUnitComboBox& rhs) = delete;
64
65signals:
67
68private: // Methods
69 void currentIndexChanged(int index) noexcept;
70
71private: // Data
72 QComboBox* mComboBox;
74};
75
76/*******************************************************************************
77 * End of File
78 ******************************************************************************/
79
80} // namespace editor
81} // namespace librepcb
82
83#endif
The AttributeType class.
Definition: attributetype.h:42
The AttributeUnit class.
Definition: attributeunit.h:40
The AttributeUnitComboBox class.
Definition: attributeunitcombobox.h:46
void currentItemChanged(const AttributeUnit *unit)
const AttributeUnit * getCurrentItem() const noexcept
Definition: attributeunitcombobox.cpp:66
const AttributeType * mAttributeType
Definition: attributeunitcombobox.h:73
AttributeUnitComboBox(QWidget *parent=nullptr) noexcept
Definition: attributeunitcombobox.cpp:42
~AttributeUnitComboBox() noexcept
Definition: attributeunitcombobox.cpp:59
void currentIndexChanged(int index) noexcept
Definition: attributeunitcombobox.cpp:113
void setCurrentItem(const AttributeUnit *unit) noexcept
Definition: attributeunitcombobox.cpp:101
void setAttributeType(const AttributeType &type) noexcept
Definition: attributeunitcombobox.cpp:77
QComboBox * mComboBox
Definition: attributeunitcombobox.h:72
AttributeUnitComboBox(const AttributeUnitComboBox &other)=delete
Definition: occmodel.cpp:77