本文整理汇总了Python中stage.Stage.queue_refresh_stage方法的典型用法代码示例。如果您正苦于以下问题:Python Stage.queue_refresh_stage方法的具体用法?Python Stage.queue_refresh_stage怎么用?Python Stage.queue_refresh_stage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类stage.Stage
的用法示例。
在下文中一共展示了Stage.queue_refresh_stage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: ScreensaverManager
# 需要导入模块: from stage import Stage [as 别名]
# 或者: from stage.Stage import queue_refresh_stage [as 别名]
#.........这里部分代码省略.........
self.emit("active-changed", False)
self.cancel_timers()
self.stage.destroy_stage()
self.stage = None
# Ideal time to check for leaking connections that might prevent GC by python and gobject
if trackers.DEBUG_SIGNALS:
trackers.con_tracker_get().dump_connections_list()
if trackers.DEBUG_TIMERS:
trackers.timer_tracker_get().dump_timer_list()
def grab_stage(self):
"""
Makes a hard grab on the Stage window, all keyboard and mouse events are dispatched or eaten
by us now.
"""
self.grab_helper.move_to_window(self.stage.get_window(), True)
def update_stage(self):
"""
Tells the stage to check its canvas size and make sure its windows are up-to-date. This is called
when our login manager tells us its "Active" property has changed. We are always connected to the
login manager, so we first check if we have a stage.
"""
if self.stage == None:
return
if status.Debug:
print("manager: queuing stage refresh (login manager reported active?")
self.stage.queue_refresh_stage()
def start_timers(self):
"""
Stamps our current time starts our lock delay timer (the elapsed time to allow after
activation, to lock the computer.)
"""
self.activated_timestamp = time.time()
self.start_lock_delay()
def cancel_timers(self):
"""
Zeros out our activated timestamp and cancels our lock delay timer.
"""
self.activated_timestamp = 0
self.stop_lock_delay()
def cancel_unlock_widget(self):
"""
Return to sleep (not Awake) - hides the pointer and the unlock widget.
"""
self.grab_stage()
self.stage.cancel_unlocking();
def on_lock_delay_timeout(self):
"""
Updates the lock status when our timer has hit its limit
"""
if status.Debug:
print("manager: locking after delay ('lock-delay')")
status.Locked = True