// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #ifndef ICONSIZESPINBOX_H #define ICONSIZESPINBOX_H #include //! [0] class IconSizeSpinBox : public QSpinBox { Q_OBJECT public: explicit IconSizeSpinBox(QWidget *parent = nullptr); int valueFromText(const QString &text) const override; QString textFromValue(int value) const override; }; //! [0] #endif