本文整理汇总了Python中base.SingleWindow.focus方法的典型用法代码示例。如果您正苦于以下问题:Python SingleWindow.focus方法的具体用法?Python SingleWindow.focus怎么用?Python SingleWindow.focus使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类base.SingleWindow
的用法示例。
在下文中一共展示了SingleWindow.focus方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: focus
# 需要导入模块: from base import SingleWindow [as 别名]
# 或者: from base.SingleWindow import focus [as 别名]
def focus(self, win):
old = self.lastfocus
if old and self.property_name:
old.window.set_property(self.property_name,
self.property_small, "STRING", format=8)
SingleWindow.focus(self, win)
if self.property_name:
win = self.clients[0]
win.window.set_property(self.property_name,
self.property_big, "STRING", format=8)
self.lastfocus = win
示例2: focus
# 需要导入模块: from base import SingleWindow [as 别名]
# 或者: from base.SingleWindow import focus [as 别名]
def focus(self, win):
if self.focused and self.property_name:
self.focused.window.set_property(
self.property_name,
self.property_small,
"STRING",
format=8
)
SingleWindow.focus(self, win)
if self.property_name:
self.focused = win
win.window.set_property(
self.property_name,
self.property_big,
"STRING",
format=8
)