1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
#------------------------------------------------------------------------------
# Copyright (c) 2005, Enthought, Inc.
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in enthought/LICENSE.txt and may be redistributed only
# under the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
# Thanks for using Enthought open source!
#
# Author: Enthought, Inc.
# Description: <Enthought util package component>
#------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
#
# Provides a simple function for scheduling some code to run at some time in
# the future (assumes application is wxPython based).
#
# Written by: David C. Morrill
#
# Date: 05/18/2005
#
# (c) Copyright 2005 by Enthought, Inc.
#
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Imports:
#-------------------------------------------------------------------------------
import wx
#-------------------------------------------------------------------------------
# Does something 100 milliseconds from now:
#-------------------------------------------------------------------------------
def do_later ( callable, *args, **kw_args ):
""" Does something 50 milliseconds from now.
"""
DoLaterTimer( 50, callable, args, kw_args )
#-------------------------------------------------------------------------------
# Does something after some specified time interval:
#-------------------------------------------------------------------------------
def do_after ( interval, callable, *args, **kw_args ):
""" Does something after some specified time interval.
"""
DoLaterTimer( interval, callable, args, kw_args )
#-------------------------------------------------------------------------------
# 'DoLaterTimer' class:
#-------------------------------------------------------------------------------
class DoLaterTimer ( wx.Timer ):
# List of currently active timers:
active_timers = []
#---------------------------------------------------------------------------
# Initializes the object:
#---------------------------------------------------------------------------
def __init__ ( self, interval, callable, args, kw_args ):
global active_timers
wx.Timer.__init__( self )
for timer in self.active_timers:
if ((timer.callable == callable) and
(timer.args == args) and
(timer.kw_args == kw_args)):
timer.Start( interval, True )
return
self.active_timers.append( self )
self.callable = callable
self.args = args
self.kw_args = kw_args
self.Start( interval, True )
#---------------------------------------------------------------------------
# Handles the timer pop event:
#---------------------------------------------------------------------------
def Notify ( self ):
global active_timers
self.active_timers.remove( self )
self.callable( *self.args, **self.kw_args )
|