具有一组预定义值的Qt QSpinBox

时间:2019-04-13 13:53:24

标签: qt qspinbox

我有一个QSpinBox,它只应接受一组离散值(假设为2、5、10)。我可以setMinimum(2)setMaximum(10),但是我不能setSingleStep,因为我的步长为3,步长为5。

是否可以使用其他小部件,但其UI与QSpinBox相同?

如果没有,我应该覆盖什么才能达到预期的效果?

1 个答案:

答案 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;
};