本文整理汇总了Python中gui.utils.Colors.color_to_hexa方法的典型用法代码示例。如果您正苦于以下问题:Python Colors.color_to_hexa方法的具体用法?Python Colors.color_to_hexa怎么用?Python Colors.color_to_hexa使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gui.utils.Colors
的用法示例。
在下文中一共展示了Colors.color_to_hexa方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from gui.utils import Colors [as 别名]
# 或者: from gui.utils.Colors import color_to_hexa [as 别名]
def __init__(self, *args):
BaseWidget.__init__(self, *args)
self.logger = logging.getLogger("GUI Alba Actuator")
self.logger.info("__init__()")
self.on_color = Colors.color_to_hexa(Colors.LIGHT_GREEN)
self.off_color = Colors.color_to_hexa(Colors.LIGHT_GRAY)
self.fault_color = Colors.color_to_hexa(Colors.LIGHT_RED)
self.unknown_color = Colors.color_to_hexa(
Colors.DARK_GRAY
)
# Hardware objects ----------------------------------------------------
self.light_ho = None
self.state = None
self.level = None
self.icons = None
self.level_limits = [None, None]
# Properties ----------------------------------------------------------
self.add_property("mnemonic", "string", "")
self.add_property("icons", "string", "")
# Graphic elements ----------------------------------------------------
self.widget = QtImport.load_ui_file("alba_lightcontrol.ui")
QtImport.QHBoxLayout(self)
self.layout().addWidget(self.widget)
self.layout().setContentsMargins(0, 0, 0, 0)
self.widget.layout().setContentsMargins(0, 0, 0, 0)
self.widget.horizontalLayout.setContentsMargins(0, 0, 0, 0)
self.widget.button.clicked.connect(self.do_switch)
self.widget.slider.valueChanged.connect(self.do_set_level)
# SizePolicies --------------------------------------------------------
self.setSizePolicy(
QtImport.QSizePolicy.Expanding, QtImport.QSizePolicy.MinimumExpanding
)
# Defaults
self.set_icons("BulbCheck,BulbDelete")
# Other ---------------------------------------------------------------
self.setToolTip("Control of light (set level and on/off switch.")
self.update()