LibrePCB Developers Documentation
unsignedlengthedit.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_UNSIGNEDLENGTHEDIT_H
21 #define LIBREPCB_EDITOR_UNSIGNEDLENGTHEDIT_H
22 
23 /*******************************************************************************
24  * Includes
25  ******************************************************************************/
26 #include "lengtheditbase.h"
27 
28 /*******************************************************************************
29  * Namespace / Forward Declarations
30  ******************************************************************************/
31 namespace librepcb {
32 namespace editor {
33 
34 /*******************************************************************************
35  * Class UnsignedLengthEdit
36  ******************************************************************************/
37 
42 class UnsignedLengthEdit final : public LengthEditBase {
43  Q_OBJECT
44 
45 public:
46  // Constructors / Destructor
47  explicit UnsignedLengthEdit(QWidget* parent = nullptr) noexcept;
48  UnsignedLengthEdit(const UnsignedLengthEdit& other) = delete;
49  virtual ~UnsignedLengthEdit() noexcept;
50 
51  // Getters
52  UnsignedLength getValue() const noexcept;
53 
54  // Setters
55  void setValue(const UnsignedLength& value) noexcept;
56  void clipToMinimum(const UnsignedLength& value) noexcept;
57  void clipToMaximum(const UnsignedLength& value) noexcept;
58 
59  // Operator Overloadings
60  UnsignedLengthEdit& operator=(const UnsignedLengthEdit& rhs) = delete;
61 
62 signals:
63  // Note: Full namespace librepcb::UnsignedLength is required for the MOC!
64  void valueChanged(const librepcb::UnsignedLength& value,
65  const librepcb::Length& diff);
66 
67 private:
68  virtual void valueChangedImpl(const Length& diff) noexcept override;
69 };
70 
71 /*******************************************************************************
72  * End of File
73  ******************************************************************************/
74 
75 } // namespace editor
76 } // namespace librepcb
77 
78 #endif
void valueChanged(const librepcb::UnsignedLength &value, const librepcb::Length &diff)
The UnsignedLengthEdit class is a widget to view/edit librepcb::UnsignedLength values.
Definition: unsignedlengthedit.h:42
Definition: occmodel.cpp:77
UnsignedLengthEdit(QWidget *parent=nullptr) noexcept
Definition: unsignedlengthedit.cpp:37
virtual void valueChangedImpl(const Length &diff) noexcept override
Definition: unsignedlengthedit.cpp:80
void clipToMaximum(const UnsignedLength &value) noexcept
Definition: unsignedlengthedit.cpp:70
void clipToMinimum(const UnsignedLength &value) noexcept
Definition: unsignedlengthedit.cpp:64
The LengthEditBase class.
Definition: lengtheditbase.h:47
UnsignedLengthEdit & operator=(const UnsignedLengthEdit &rhs)=delete
The Length class is used to represent a length (for example 12.75 millimeters)
Definition: length.h:83
UnsignedLength getValue() const noexcept
Definition: unsignedlengthedit.cpp:48
void setValue(const UnsignedLength &value) noexcept
Definition: unsignedlengthedit.cpp:60
type_safe::constrained_type< Length, UnsignedLengthConstraint, UnsignedLengthVerifier > UnsignedLength
Definition: length.h:696
virtual ~UnsignedLengthEdit() noexcept
Definition: unsignedlengthedit.cpp:41