mirror of https://github.com/nymea/nymea.git
89 lines
3.2 KiB
C++
89 lines
3.2 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 TRIGGERTYPE_H
|
|
#define TRIGGERTYPE_H
|
|
|
|
#include "libnymea.h"
|
|
#include "typeutils.h"
|
|
#include "paramtype.h"
|
|
|
|
#include <QVariantMap>
|
|
|
|
class LIBNYMEA_EXPORT EventType
|
|
{
|
|
Q_GADGET
|
|
Q_PROPERTY(QUuid id READ id)
|
|
Q_PROPERTY(QString name READ name WRITE setName)
|
|
Q_PROPERTY(QString displayName READ displayName WRITE setDisplayName)
|
|
Q_PROPERTY(int index READ index)
|
|
Q_PROPERTY(ParamTypes paramTypes READ paramTypes WRITE setParamTypes)
|
|
|
|
public:
|
|
EventType();
|
|
EventType(const EventTypeId &id);
|
|
|
|
EventTypeId id() const;
|
|
|
|
QString name() const;
|
|
void setName(const QString &name);
|
|
|
|
QString displayName() const;
|
|
void setDisplayName(const QString &displayName);
|
|
|
|
int index() const;
|
|
void setIndex(const int &index);
|
|
|
|
ParamTypes paramTypes() const;
|
|
void setParamTypes(const ParamTypes ¶mTypes);
|
|
|
|
bool isValid() const;
|
|
|
|
static QStringList typeProperties();
|
|
static QStringList mandatoryTypeProperties();
|
|
|
|
private:
|
|
EventTypeId m_id;
|
|
QString m_name;
|
|
QString m_displayName;
|
|
int m_index;
|
|
QList<ParamType> m_paramTypes;
|
|
};
|
|
Q_DECLARE_METATYPE(EventType)
|
|
|
|
class EventTypes: public QList<EventType>
|
|
{
|
|
Q_GADGET
|
|
Q_PROPERTY(int count READ count)
|
|
public:
|
|
EventTypes() = default;
|
|
EventTypes(const QList<EventType> &other);
|
|
Q_INVOKABLE QVariant get(int index) const;
|
|
Q_INVOKABLE void put(const QVariant &variant);
|
|
EventType findByName(const QString &name);
|
|
EventType findById(const EventTypeId &id);
|
|
};
|
|
Q_DECLARE_METATYPE(EventTypes)
|
|
|
|
#endif // TRIGGERTYPE_H
|