mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
e1165e112f
* fix/refactor backlight stuff: - fix colors dont turn of when backlight 0 and black is set - add option to use not colored backlight - fix colored backlight not colored on very low color values - various code style tunings * apply needed change to wizard * backlight disabled on static color and efects * fix warnings * try fix udp compiler warnings
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <QtCore>
|
|
#include "ValidatorOption.h"
|
|
|
|
namespace commandline
|
|
{
|
|
|
|
class DoubleOption: public ValidatorOption
|
|
{
|
|
public:
|
|
DoubleOption(const QString &name,
|
|
const QString &description = QString(),
|
|
const QString &valueName = QString(),
|
|
const QString &defaultValue = QString(),
|
|
double minimum = -INFINITY, double maximum = INFINITY, int decimals = 1000)
|
|
: ValidatorOption(name, description, valueName, defaultValue)
|
|
{
|
|
setValidator(new QDoubleValidator(minimum, maximum, decimals));
|
|
}
|
|
|
|
DoubleOption(const QStringList &names,
|
|
const QString &description = QString(),
|
|
const QString &valueName = QString(),
|
|
const QString &defaultValue = QString(),
|
|
double minimum = -INFINITY, double maximum = INFINITY, int decimals = 1000)
|
|
: ValidatorOption(names, description, valueName, defaultValue)
|
|
{
|
|
setValidator(new QDoubleValidator(minimum, maximum, decimals));
|
|
}
|
|
|
|
DoubleOption(const QCommandLineOption &other, double minimum = -INFINITY, double maximum = INFINITY, int decimals = 1000)
|
|
: ValidatorOption(other)
|
|
{
|
|
setValidator(new QDoubleValidator(minimum, maximum, decimals));
|
|
}
|
|
|
|
double getDouble(Parser &parser, bool *ok = 0);
|
|
double *getDoublePtr(Parser &parser, bool *ok = 0);
|
|
|
|
protected:
|
|
double _double;
|
|
};
|
|
|
|
}
|