mirror of https://github.com/nymea/nymea.git
79 lines
3.0 KiB
C++
79 lines
3.0 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2015 Simon Stürz <simon.stuerz@guh.io> *
|
|
* Copyright (C) 2014 Michael Zanetti <michael_zanetti@gmx.net> *
|
|
* *
|
|
* This file is part of nymea. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Lesser General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2.1 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library 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 *
|
|
* Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
* License along with this library; If not, see *
|
|
* <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef PARAM_H
|
|
#define PARAM_H
|
|
|
|
#include "libnymea.h"
|
|
#include "typeutils.h"
|
|
|
|
#include <QString>
|
|
#include <QVariant>
|
|
|
|
class LIBNYMEA_EXPORT Param
|
|
{
|
|
Q_GADGET
|
|
Q_PROPERTY(QUuid paramTypeId READ paramTypeId WRITE setParamTypeId USER true)
|
|
Q_PROPERTY(QVariant value READ value WRITE setValue)
|
|
public:
|
|
Param(const ParamTypeId ¶mTypeId = ParamTypeId(), const QVariant &value = QVariant());
|
|
|
|
ParamTypeId paramTypeId() const;
|
|
void setParamTypeId(const ParamTypeId ¶mTypeId);
|
|
|
|
QVariant value() const;
|
|
void setValue(const QVariant &value);
|
|
|
|
bool isValid() const;
|
|
|
|
private:
|
|
ParamTypeId m_paramTypeId;
|
|
QVariant m_value;
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(Param)
|
|
QDebug operator<<(QDebug dbg, const Param ¶m);
|
|
|
|
class LIBNYMEA_EXPORT ParamList: public QList<Param>
|
|
{
|
|
Q_GADGET
|
|
Q_PROPERTY(int count READ count)
|
|
public:
|
|
ParamList();
|
|
ParamList(const QList<Param> &other);
|
|
Q_INVOKABLE QVariant get(int index);
|
|
Q_INVOKABLE void put(const QVariant &variant);
|
|
bool hasParam(const ParamTypeId ¶mTypeId) const;
|
|
QVariant paramValue(const ParamTypeId ¶mTypeId) const;
|
|
bool setParamValue(const ParamTypeId ¶mTypeId, const QVariant &value);
|
|
ParamList operator<<(const Param ¶m);
|
|
|
|
private:
|
|
QList<ParamTypeId> m_ids;
|
|
|
|
};
|
|
Q_DECLARE_METATYPE(ParamList)
|
|
QDebug operator<<(QDebug dbg, const ParamList ¶ms);
|
|
|
|
#endif // PARAM_H
|