2016-08-28 15:10:43 +02:00
|
|
|
#ifndef HYPERION_COLOROPTION_H
|
|
|
|
#define HYPERION_COLOROPTION_H
|
|
|
|
|
|
|
|
#include "Option.h"
|
|
|
|
#include <QColor>
|
|
|
|
#include <QCommandLineParser>
|
|
|
|
|
|
|
|
namespace commandline
|
|
|
|
{
|
|
|
|
|
|
|
|
class ColorOption: public Option
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
QColor _color;
|
2020-08-08 23:12:43 +02:00
|
|
|
|
2016-08-28 15:10:43 +02:00
|
|
|
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)
|
|
|
|
{}
|
|
|
|
|
2020-08-08 23:12:43 +02:00
|
|
|
bool validate(Parser & parser, QString & value) override;
|
|
|
|
QColor getColor(Parser &parser) const { return _color; }
|
2016-08-28 15:10:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //HYPERION_COLOROPTION_H
|