Missing widgets/windows

Please add your name if you are trying to upgrade a widget/window.

Existing Widgets/Windows

ProgressBox

The easy widgets first ;)

Example :

from gui import ProgressBox
import time
#some other code
pop = ProgressBox(text=_('Do something...'), 10)
pop.show() 
for i in xrange(10):
    time.sleep(1)
    pop.tick()                                          
pop.destroy()

SourceDoc/GUI/Widgets (last edited 2008-03-21 15:22:39 by localhost)