8 static constexpr auto QCheckBox_checkStateChanged()
10#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
11 return &QCheckBox::checkStateChanged;
13 return &QCheckBox::stateChanged;
16 static constexpr auto QSpinBox_valueChanged_int()
18 return static_cast<void (QSpinBox::*)(
int)
>(&QSpinBox::valueChanged);
20 static constexpr auto QDoubleSpinBox_valueChanged_double()
22 return static_cast<void (QDoubleSpinBox::*)(
double)
>(&QDoubleSpinBox::valueChanged);
24 static constexpr auto QComboBox_currentIndexChanged_int()
26 return static_cast<void (QComboBox::*)(
int)
>(&QComboBox::currentIndexChanged);
28 static constexpr auto QComboBox_activated_int()
30 return static_cast<void (QComboBox::*)(
int)
>(&QComboBox::activated);
33 template <
typename Spinbox_T>
34 static constexpr auto SpinBox_valueChanged();