/**************************************************************************** * Copyright (C) 2018-2019 Maschell * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . ****************************************************************************/ #ifndef _WUPS_CONFIG_ITEM_INTEGER_RANGE_H_ #define _WUPS_CONFIG_ITEM_INTEGER_RANGE_H_ #include #include #include class WUPSConfigItemIntegerRange; typedef void (*IntegerRangeValueChangedCallback)(WUPSConfigItemIntegerRange *, int32_t); class WUPSConfigItemIntegerRange : public WUPSConfigItem { public: WUPSConfigItemIntegerRange(std::string configID, std::string displayName, int32_t defaultValue, int32_t minValue, int32_t maxValue, IntegerRangeValueChangedCallback callback); virtual ~WUPSConfigItemIntegerRange(); virtual std::string getCurrentValueDisplay(); virtual std::string getCurrentValueSelectedDisplay(); virtual void onSelected(bool isSelected); virtual void onButtonPressed(WUPSConfigButtons buttons); virtual bool isMovementAllowed(); virtual std::string persistValue(); virtual void loadValue(std::string persistedValue); virtual void restoreDefault(); virtual bool callCallback(); private: IntegerRangeValueChangedCallback callback = NULL; int32_t value; int32_t defaultValue; int32_t minValue; int32_t maxValue; }; #endif