我有一个QSpinBox
,它只应接受一组离散值(假设为2、5、10)。我可以setMinimum(2)
和setMaximum(10)
,但是我不能setSingleStep
,因为我的步长为3,步长为5。
是否可以使用其他小部件,但其UI与QSpinBox
相同?
如果没有,我应该覆盖什么才能达到预期的效果?
答案 0 :(得分:3)
使用QSpinBox::stepsBy()
处理值。
例如:
class Spinbox: public QSpinBox
{
public:
Spinbox(): QSpinBox()
{
acceptedValues << 0 << 3 << 5 << 10; // We want only 0, 3, 5, and 10
setRange(acceptedValues.first(), acceptedValues.last());
}
virtual void stepBy(int steps) override
{
int const index = std::max(0, (acceptedValues.indexOf(value()) + steps) % acceptedValues.length()); // Bounds the index between 0 and length
setValue(acceptedValues.value(index));
}
private:
QList<int> acceptedValues;
};