2001-12-07 18:45:16 +00:00
|
|
|
|
|
|
|
from wxPython.wx import *
|
|
|
|
from wxPython.gizmos import *
|
|
|
|
|
|
|
|
import time
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
class TestPanel(wxPanel):
|
|
|
|
def __init__(self, parent, log):
|
|
|
|
wxPanel.__init__(self, parent, -1)
|
|
|
|
self.log = log
|
|
|
|
|
|
|
|
led = wxLEDNumberCtrl(self, -1, (25,25), (280, 50))
|
2001-12-10 21:20:48 +00:00
|
|
|
led.SetValue("01234")
|
2001-12-07 18:45:16 +00:00
|
|
|
|
|
|
|
led = wxLEDNumberCtrl(self, -1, (25,100), (280, 50))
|
2001-12-10 21:20:48 +00:00
|
|
|
led.SetValue("56789")
|
2001-12-07 18:45:16 +00:00
|
|
|
led.SetAlignment(wxLED_ALIGN_RIGHT)
|
|
|
|
led.SetDrawFaded(false)
|
|
|
|
|
|
|
|
led = wxLEDNumberCtrl(self, -1, (25,175), (280, 50),
|
|
|
|
wxLED_ALIGN_CENTER)# | wxLED_DRAW_FADED)
|
|
|
|
self.clock = led
|
|
|
|
self.OnTimer(None)
|
|
|
|
|
|
|
|
self.timer = wxTimer(self)
|
|
|
|
self.timer.Start(1000)
|
|
|
|
EVT_TIMER(self, -1, self.OnTimer)
|
|
|
|
|
|
|
|
|
|
|
|
def OnTimer(self, evt):
|
|
|
|
t = time.localtime(time.time())
|
|
|
|
st = time.strftime("%I-%M-%S", t)
|
|
|
|
self.clock.SetValue(st)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
def runTest(frame, nb, log):
|
|
|
|
win = TestPanel(nb, log)
|
|
|
|
return win
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
overview = """\
|
|
|
|
"""
|