summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2011-08-03 18:12:32 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-04 15:06:39 +0100
commitcf4ab5363ff9396447f7a04ec8fd21945d315aa6 (patch)
treebd5d4e7c2df0a4496ded7ae9687f8f653c589fa5 /bitbake/lib
parent1c1e27a7796c31aecd04484d35786c3632156ec5 (diff)
downloadast2050-yocto-poky-cf4ab5363ff9396447f7a04ec8fd21945d315aa6.zip
ast2050-yocto-poky-cf4ab5363ff9396447f7a04ec8fd21945d315aa6.tar.gz
bb/ui/hob: be clear that the image contents are an estimate
Partially addresses [YOCTO #1263] (Bitbake rev: 5f079f11ca626a4a11ad728c56bde21009ddd7c8) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/ui/hob.py22
1 files changed, 19 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/hob.py b/bitbake/lib/bb/ui/hob.py
index 5a4ac78..a38868f 100644
--- a/bitbake/lib/bb/ui/hob.py
+++ b/bitbake/lib/bb/ui/hob.py
@@ -804,6 +804,14 @@ class MainWindow (gtk.Window):
menubar.show_all()
return menubar
+
+ def info_button_clicked_cb(self, button):
+ info = "We cannot accurately predict the image contents before they are built so instead a best"
+ info = info + " attempt at estimating what the image will contain is listed."
+ dialog = CrumbsDialog(self, info, gtk.STOCK_DIALOG_INFO)
+ dialog.add_buttons(gtk.STOCK_CLOSE, gtk.RESPONSE_OK)
+ resp = dialog.run()
+ dialog.destroy()
def create_build_gui(self):
vbox = gtk.VBox(False, 12)
@@ -847,11 +855,19 @@ class MainWindow (gtk.Window):
ins.set_current_page(0)
ins.show_all()
- label = gtk.Label("Image contents:")
+ hbox = gtk.HBox(False, 1)
+ hbox.show()
+ label = gtk.Label("Estimated image contents:")
self.model.connect("contents-changed", self.update_package_count_cb, label)
label.set_property("xalign", 0.00)
label.show()
- vbox.pack_start(label, expand=False, fill=False, padding=6)
+ hbox.pack_start(label, expand=False, fill=False, padding=6)
+ info = gtk.Button("?")
+ info.set_tooltip_text("What does this mean?")
+ info.show()
+ info.connect("clicked", self.info_button_clicked_cb)
+ hbox.pack_start(info, expand=False, fill=False, padding=6)
+ vbox.pack_start(hbox, expand=False, fill=False, padding=6)
con = self.contents()
con.show()
vbox.pack_start(con, expand=True, fill=True)
@@ -873,7 +889,7 @@ class MainWindow (gtk.Window):
return vbox
def update_package_count_cb(self, model, count, label):
- lbl = "Image contents (%s packages):" % count
+ lbl = "Estimated image contents (%s packages):" % count
label.set_text(lbl)
def contents(self):
OpenPOWER on IntegriCloud