Loading...
Searching...
No Matches
DoubleSpinBox.hpp
1#pragma once
2#include <QDoubleSpinBox>
3#include <QSpinBox>
4
5#include <score_lib_base_export.h>
6namespace score
7{
8struct SCORE_LIB_BASE_EXPORT SpinboxWithEnter final : public QSpinBox
9{
10public:
11 using QSpinBox::QSpinBox;
12
13private:
14 bool event(QEvent* event) override;
15};
16struct SCORE_LIB_BASE_EXPORT DoubleSpinboxWithEnter final : public QDoubleSpinBox
17{
18public:
19 using QDoubleSpinBox::QDoubleSpinBox;
20
21private:
22 bool event(QEvent* event) override;
23};
24
25}
Base toolkit upon which the software is built.
Definition Application.cpp:90
Definition DoubleSpinBox.hpp:17
Definition DoubleSpinBox.hpp:9