Lines Matching refs:pbar
262 pbar = activetasks[t].get("progressbar", None)
264 if not pbar or pbar.bouncing != (progress < 0):
266 …pbar = BBProgress("0: %s" % msg, 100, widgets=[' ', progressbar.BouncingSlider(), ''], extrapos=3,…
267 pbar.bouncing = True
269 …pbar = BBProgress("0: %s" % msg, 100, widgets=[' ', progressbar.Percentage(), ' ', progressbar.Bar…
270 pbar.bouncing = False
271 activetasks[t]["progressbar"] = pbar
272 tasks.append((pbar, msg, progress, rate, start_time))
311 pbar, msg, progress, rate, start_time = task
312 if not pbar.start_time:
313 pbar.start(False)
315 pbar.start_time = start_time
316 pbar.setmessage('%s: %s' % (tasknum, msg))
317 pbar.setextra(rate)
319 content = pbar.update(progress)
321 content = pbar.update(1)