7 static constexpr
auto QSpinBox_valueChanged_int()
9 return static_cast<void (QSpinBox::*)(
int)
>(&QSpinBox::valueChanged);
11 static constexpr
auto QDoubleSpinBox_valueChanged_double()
13 return static_cast<void (QDoubleSpinBox::*)(
double)
>(&QDoubleSpinBox::valueChanged);
15 static constexpr
auto QComboBox_currentIndexChanged_int()
17 return static_cast<void (QComboBox::*)(
int)
>(&QComboBox::currentIndexChanged);
19 static constexpr
auto QComboBox_activated_int()
21 return static_cast<void (QComboBox::*)(
int)
>(&QComboBox::activated);
24 template <
typename Spinbox_T>
25 static constexpr
auto SpinBox_valueChanged();
29 inline constexpr
auto SignalUtils::SpinBox_valueChanged<QSpinBox>()
31 return QSpinBox_valueChanged_int();
34 inline constexpr
auto SignalUtils::SpinBox_valueChanged<QDoubleSpinBox>()
36 return QDoubleSpinBox_valueChanged_double();
Definition: SignalUtils.hpp:6