我有一个 QSpinBox,它应该只接受一组离散值(比如 2、5、10)。我可以 setMinimum(2)setMaximum(10) ,但我不能 setSingleStep 因为我有 3 步和 5 步之一。

是否有我可以使用的不同小部件,但它具有与 QSpinBox 相同的 UI?

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

最佳答案

使用 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;
};

关于带有一组预定义值的 Qt QSpinBox,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55666234/

10-12 18:34