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  ******************************************************************************/
32 namespace librepcb {
33 
34 class AttributeType;
35 class AttributeUnit;
36 
37 namespace editor {
38 
39 /*******************************************************************************
40  * Class AttributeUnitComboBox
41  ******************************************************************************/
42 
46 class AttributeUnitComboBox final : public QWidget {
47  Q_OBJECT
48 
49 public:
50  // Constructors / Destructor
51  explicit AttributeUnitComboBox(QWidget* parent = nullptr) noexcept;
52  AttributeUnitComboBox(const AttributeUnitComboBox& other) = delete;
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
64 
65 signals:
66  void currentItemChanged(const AttributeUnit* unit);
67 
68 private: // Methods
69  void currentIndexChanged(int index) noexcept;
70 
71 private: // Data
72  QComboBox* mComboBox;
74 };
75 
76 /*******************************************************************************
77  * End of File
78  ******************************************************************************/
79 
80 } // namespace editor
81 } // namespace librepcb
82 
83 #endif
void currentItemChanged(const AttributeUnit *unit)
~AttributeUnitComboBox() noexcept
Definition: attributeunitcombobox.cpp:59
void setAttributeType(const AttributeType &type) noexcept
Definition: attributeunitcombobox.cpp:77
Definition: occmodel.cpp:77
void setCurrentItem(const AttributeUnit *unit) noexcept
Definition: attributeunitcombobox.cpp:101
const AttributeUnit * getCurrentItem() const noexcept
Definition: attributeunitcombobox.cpp:66
The AttributeUnitComboBox class.
Definition: attributeunitcombobox.h:46
AttributeUnitComboBox & operator=(const AttributeUnitComboBox &rhs)=delete
The AttributeUnit class.
Definition: attributeunit.h:40
const AttributeType * mAttributeType
Definition: attributeunitcombobox.h:73
void currentIndexChanged(int index) noexcept
Definition: attributeunitcombobox.cpp:113
AttributeUnitComboBox(QWidget *parent=nullptr) noexcept
Definition: attributeunitcombobox.cpp:42
QComboBox * mComboBox
Definition: attributeunitcombobox.h:72
The AttributeType class.
Definition: attributetype.h:42