Home | History | Annotate | Download | only in plat-mac

Lines Matching defs:label

11 bar = Progress(label, maxvalue) -- Display a progress bar
14 bar.label( *newlabel ) -- get or set text label.
255 def __init__(self, title="Working...", maxval=0, label="", id=263):
261 self.label(label)
280 def label(self, *newstr):
281 """label(text) - Set text in progress box"""
384 label = item[0]
386 label = item
387 if label[-1] == '=' or label[-1] == ':':
388 label = label[:-1]
389 menu.AppendMenu(label)
416 label = option[0]
418 label = option
419 if label[-1] == '=' or label[-1] == ':':
817 bar = ProgressBar("Progress, progress...", 0, label="Ramping up...")
829 bar.label(text[(i/10) % 4])
830 bar.label("Done.")