File: progressbar.py

package info (click to toggle)
python2.1 2.1.3dfsg-1sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 38,028 kB
  • ctags: 64,228
  • sloc: python: 186,023; ansic: 184,754; xml: 43,435; sh: 12,381; makefile: 3,523; perl: 3,108; lisp: 2,460; cpp: 106; sed: 2
file content (25 lines) | stat: -rw-r--r-- 470 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Progress dialog

from Dlg import GetNewDialog, ModalDialog, SetDialogItemText

count = 0

def filter(d, e):
	r = 1
	print "Filter(%s, %s) -> %s" % (`d`, `e`, `r`)
	return r

def main():
	d = GetNewDialog(256, -1)
	tp, h, rect = d.GetDialogItem(2)
	SetDialogItemText(h, "Progress...")
	for i in range(100):
		if i%10 == 0:
			str = "Progress...%d" % i
			SetDialogItemText(h, str)
			ModalDialog(filter)
		for j in range(100): pass

if __name__ == '__main__':
	main()