mirror of https://github.com/nymea/nymea.git
53 lines
2.0 KiB
C++
53 lines
2.0 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* This file is part of guh. *
|
|
* *
|
|
* Guh 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, version 2 of the License. *
|
|
* *
|
|
* Guh 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 guh. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef PARAMTYPE_H
|
|
#define PARAMTYPE_H
|
|
|
|
#include <QVariant>
|
|
|
|
class ParamType
|
|
{
|
|
public:
|
|
ParamType(const QString &name, const QVariant::Type type, const QVariant &defaultValue = QVariant());
|
|
|
|
QString name() const;
|
|
void setName(const QString &name);
|
|
|
|
QVariant::Type type() const;
|
|
void setType(QVariant::Type type);
|
|
|
|
QVariant defaultValue() const;
|
|
void setDefaultValue(const QVariant &defaultValue);
|
|
|
|
QVariant minValue() const;
|
|
void setMinValue(const QVariant &minValue);
|
|
|
|
QVariant maxValue() const;
|
|
void setMaxValue(const QVariant &maxValue);
|
|
|
|
private:
|
|
QString m_name;
|
|
QVariant::Type m_type;
|
|
QVariant m_defaultValue;
|
|
QVariant m_minValue;
|
|
QVariant m_maxValue;
|
|
};
|
|
|
|
#endif // PARAMTYPE_H
|