2018-11-16 20:35:59 +01:00
|
|
|
__all__ = ["PropertyType", "Property"]
|
|
|
|
|
2018-11-01 19:50:04 +01:00
|
|
|
class PropertyType(object):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class Property(object):
|
|
|
|
class Select(PropertyType):
|
2018-11-29 21:59:08 +01:00
|
|
|
|
2018-11-01 19:50:04 +01:00
|
|
|
def __init__(self, label, options, description=""):
|
2018-11-29 21:59:08 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
:param label:
|
|
|
|
:param options:
|
|
|
|
:param description:
|
|
|
|
'''
|
2018-11-01 19:50:04 +01:00
|
|
|
PropertyType.__init__(self)
|
|
|
|
self.label = label
|
|
|
|
self.options = options
|
|
|
|
self.description = description
|
|
|
|
|
|
|
|
class Number(PropertyType):
|
|
|
|
def __init__(self, label, configurable=False, default_value=None, unit="", description=""):
|
2018-11-29 21:59:08 +01:00
|
|
|
'''
|
|
|
|
Test
|
|
|
|
|
|
|
|
|
|
|
|
:param label:
|
|
|
|
:param configurable:
|
|
|
|
:param default_value:
|
|
|
|
:param unit:
|
|
|
|
:param description:
|
|
|
|
'''
|
2018-11-01 19:50:04 +01:00
|
|
|
PropertyType.__init__(self)
|
|
|
|
self.label = label
|
|
|
|
self.configurable = configurable
|
|
|
|
self.default_value = default_value
|
|
|
|
self.description = description
|
|
|
|
|
|
|
|
class Text(PropertyType):
|
|
|
|
def __init__(self, label, configurable=False, default_value="", description=""):
|
2018-11-29 21:59:08 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
:param label:
|
|
|
|
:param configurable:
|
|
|
|
:param default_value:
|
|
|
|
:param description:
|
|
|
|
'''
|
2018-11-01 19:50:04 +01:00
|
|
|
PropertyType.__init__(self)
|
|
|
|
self.label = label
|
|
|
|
self.configurable = configurable
|
|
|
|
self.default_value = default_value
|
|
|
|
self.description = description
|
|
|
|
|
|
|
|
class Actor(PropertyType):
|
|
|
|
def __init__(self, label, description=""):
|
2018-11-29 21:59:08 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
:param label:
|
|
|
|
:param description:
|
|
|
|
'''
|
2018-11-01 19:50:04 +01:00
|
|
|
PropertyType.__init__(self)
|
|
|
|
self.label = label
|
|
|
|
self.configurable = True
|
|
|
|
self.description = description
|
|
|
|
|
|
|
|
class Sensor(PropertyType):
|
|
|
|
def __init__(self, label, description=""):
|
2018-11-29 21:59:08 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
:param label:
|
|
|
|
:param description:
|
|
|
|
'''
|
2018-11-01 19:50:04 +01:00
|
|
|
PropertyType.__init__(self)
|
|
|
|
self.label = label
|
|
|
|
self.configurable = True
|
|
|
|
self.description = description
|
|
|
|
|
|
|
|
class Kettle(PropertyType):
|
|
|
|
def __init__(self, label, description=""):
|
2018-11-29 21:59:08 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
:param label:
|
|
|
|
:param description:
|
|
|
|
'''
|
|
|
|
|
2018-11-01 19:50:04 +01:00
|
|
|
PropertyType.__init__(self)
|
|
|
|
self.label = label
|
|
|
|
self.configurable = True
|
|
|
|
self.description = description
|