forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
group.h
83 lines (75 loc) · 1.99 KB
/
group.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
* Copyright (c) 2016 dresden elektronik ingenieurtechnik gmbh.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
*/
#ifndef GROUP_H
#define GROUP_H
#include <stdint.h>
#include <QString>
#include <QTime>
#include <vector>
#include "resource.h"
#include "scene.h"
/*! \class Group
Represents the group state of lights.
*/
class Group : public Resource
{
public:
enum State
{
StateNormal,
StateDeleted,
StateDeleteFromDB
};
Group();
uint16_t address() const;
void setAddress(uint16_t address);
const QString &id() const;
const QString &name() const;
void setName(const QString &name);
State state() const;
void setState(State state);
bool isOn() const;
void setIsOn(bool on);
void setColorLoopActive(bool colorLoopActive);
bool isColorLoopActive() const;
const QString midsToString() const;
void setMidsFromString(const QString &mids);
const QString dmToString() const;
void setDmFromString(const QString &deviceIds);
const QString lightsequenceToString() const;
void setLightsequenceFromString(const QString &deviceIds);
Scene *getScene(quint8 sceneId);
bool addDeviceMembership(const QString &id);
bool removeDeviceMembership(const QString &id);
bool deviceIsMember(const QString &id) const;
bool hasDeviceMembers() const;
uint16_t colorX;
uint16_t colorY;
uint16_t hue;
qreal hueReal;
uint16_t sat;
uint16_t level;
uint16_t colorTemperature;
QString etag;
QString colormode;
std::vector<Scene> scenes;
QTime sendTime;
bool hidden;
std::vector<QString> m_multiDeviceIds;
std::vector<QString> m_lightsequence;
std::vector<QString> m_deviceMemberships;
private:
State m_state;
uint16_t m_addr;
QString m_id;
bool m_on;
bool m_colorLoopActive;
};
#endif // GROUP_H