2016-08-28 15:10:43 +02:00
|
|
|
#ifndef HYPERION_COLORSOPTION_H
|
|
|
|
#define HYPERION_COLORSOPTION_H
|
|
|
|
|
|
|
|
#include "Option.h"
|
|
|
|
#include <QColor>
|
|
|
|
#include <QCommandLineParser>
|
|
|
|
|
|
|
|
namespace commandline
|
|
|
|
{
|
|
|
|
|
|
|
|
class ColorsOption: public Option
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
QList<QColor> _colors;
|
2020-08-08 23:12:43 +02:00
|
|
|
|
2016-08-28 15:10:43 +02:00
|
|
|
public:
|
|
|
|
ColorsOption(const QString &name,
|
|
|
|
const QString &description = QString(),
|
|
|
|
const QString &valueName = QString(),
|
|
|
|
const QString &defaultValue = QString()
|
|
|
|
)
|
|
|
|
: Option(name, description, valueName, defaultValue)
|
|
|
|
{}
|
2020-08-08 23:12:43 +02:00
|
|
|
|
2016-08-28 15:10:43 +02:00
|
|
|
ColorsOption(const QStringList &names,
|
|
|
|
const QString &description = QString(),
|
|
|
|
const QString &valueName = QString(),
|
|
|
|
const QString &defaultValue = QString()
|
|
|
|
)
|
|
|
|
: Option(names, description, valueName, defaultValue)
|
|
|
|
{}
|
2020-08-08 23:12:43 +02:00
|
|
|
|
2016-08-28 15:10:43 +02:00
|
|
|
ColorsOption(const QCommandLineOption &other)
|
|
|
|
: Option(other)
|
|
|
|
{}
|
|
|
|
|
|
|
|
virtual bool validate(Parser & parser, QString & value) override;
|
2020-08-08 23:12:43 +02:00
|
|
|
QList<QColor> getColors(Parser &parser) const { return _colors; }
|
2016-08-28 15:10:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //HYPERION_COLOROPTION_H
|