[linux-audio-user] a live performance timer

New Message Reply About this list Date view Thread view Subject view Author view Other groups

Subject: [linux-audio-user] a live performance timer
From: Dave Griffiths (dave_AT_pawfal.org)
Date: Wed Oct 20 2004 - 16:47:02 EEST


Hi all,

A timer in a window that counts up in seconds, clicking on it resets the time
back to 0. for seeing how much time you've got left during a live gig...

Requires python,tkinter

cheers,

dave

--->8---

#! /usr/bin/env python
from Tkinter import *
from time import *

class clock:
        def __init__(self,master):
                self.starttime=0
        
self.widget=Button(master,text="0:0",font=("Courier",50,"bold"),relief=FLAT,command=self.reset)
                self.widget.pack()

        def idle(self):
                thistime = int(time()-self.starttime)
                self.widget.config(text=str(thistime/60)+":"+str(thistime%60))
                self.widget.after(1000, self.idle)

        def reset(self):
                if not self.starttime:
                        self.widget.after_idle(self.idle)
                self.starttime=time()

win = Tk()
win.title("ticktock")
slider = clock(win)
win.mainloop()


New Message Reply About this list Date view Thread view Subject view Author view Other groups

This archive was generated by hypermail 2b28 : Wed Oct 20 2004 - 16:49:03 EEST