summaryrefslogtreecommitdiffstats
path: root/lib/bb/ui/crumbs/progress.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bb/ui/crumbs/progress.py')
-rw-r--r--lib/bb/ui/crumbs/progress.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/bb/ui/crumbs/progress.py b/lib/bb/ui/crumbs/progress.py
new file mode 100644
index 000000000..8bd87108e
--- /dev/null
+++ b/lib/bb/ui/crumbs/progress.py
@@ -0,0 +1,17 @@
+import gtk
+
+class ProgressBar(gtk.Dialog):
+ def __init__(self, parent):
+
+ gtk.Dialog.__init__(self)
+ self.set_title("Parsing metadata, please wait...")
+ self.set_default_size(500, 0)
+ self.set_transient_for(parent)
+ self.set_destroy_with_parent(True)
+ self.progress = gtk.ProgressBar()
+ self.vbox.pack_start(self.progress)
+ self.show_all()
+
+ def update(self, x, y):
+ self.progress.set_fraction(float(x)/float(y))
+ self.progress.set_text("%d/%d (%2d %%)" % (x, y, x*100/y))