本文整理汇总了Python中scc.osd.OSDWindow._apply_css方法的典型用法代码示例。如果您正苦于以下问题:Python OSDWindow._apply_css方法的具体用法?Python OSDWindow._apply_css怎么用?Python OSDWindow._apply_css使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类scc.osd.OSDWindow
的用法示例。
在下文中一共展示了OSDWindow._apply_css方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from scc.osd import OSDWindow [as 别名]
# 或者: from scc.osd.OSDWindow import _apply_css [as 别名]
def __init__(self):
self.exit_code = -1
self.mainloop = GLib.MainLoop()
self.config = None
self._window = None
self._registered = False
self._last_profile_change = 0
self._recent_profiles_undo = None
OSDWindow._apply_css()
示例2: _check_colorconfig_change
# 需要导入模块: from scc.osd import OSDWindow [as 别名]
# 或者: from scc.osd.OSDWindow import _apply_css [as 别名]
def _check_colorconfig_change(self):
"""
Checks if OSD color configuration is changed and re-applies CSS
if needed.
"""
h = sum([ hash(self.config['osd_colors'][x]) for x in self.config['osd_colors'] ])
h += sum([ hash(self.config['osk_colors'][x]) for x in self.config['osk_colors'] ])
if self._hash_of_colors != h:
self._hash_of_colors = h
OSDWindow._apply_css(self.config)
if self._window and isinstance(self._window, Keyboard):
self._window.recolor()
self._window.update_labels()
self._window.redraw_background()
示例3: __init__
# 需要导入模块: from scc.osd import OSDWindow [as 别名]
# 或者: from scc.osd.OSDWindow import _apply_css [as 别名]
def __init__(self):
self.exit_code = -1
self.mainloop = GLib.MainLoop()
self._window = None
self._registered = False
OSDWindow._apply_css()