Missing widgets/windows
Please add your name if you are trying to upgrade a widget/window.
- Selection list
InputBox (There is a minimal inputbox in freevo CVS now made by eborn)
- more? add them here.
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()
