mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
42 lines
1.0 KiB
C
42 lines
1.0 KiB
C
|
#ifndef HYPERION_COLOROPTION_H
|
||
|
#define HYPERION_COLOROPTION_H
|
||
|
|
||
|
#include "Option.h"
|
||
|
#include <QColor>
|
||
|
#include <QCommandLineParser>
|
||
|
|
||
|
namespace commandline
|
||
|
{
|
||
|
|
||
|
class ColorOption: public Option
|
||
|
{
|
||
|
protected:
|
||
|
QColor _color;
|
||
|
public:
|
||
|
ColorOption(const QString &name,
|
||
|
const QString &description = QString(),
|
||
|
const QString &valueName = QString(),
|
||
|
const QString &defaultValue = QString()
|
||
|
)
|
||
|
: Option(name, description, valueName, defaultValue)
|
||
|
{}
|
||
|
ColorOption(const QStringList &names,
|
||
|
const QString &description = QString(),
|
||
|
const QString &valueName = QString(),
|
||
|
const QString &defaultValue = QString()
|
||
|
)
|
||
|
: Option(names, description, valueName, defaultValue)
|
||
|
{}
|
||
|
ColorOption(const QCommandLineOption &other)
|
||
|
: Option(other)
|
||
|
{}
|
||
|
|
||
|
virtual bool validate(Parser & parser, QString & value) override;
|
||
|
QColor getColor(Parser &parser)
|
||
|
{ return _color; }
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif //HYPERION_COLOROPTION_H
|