summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorLiming An <limingx.l.an@intel.com>2012-05-30 20:01:11 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-30 17:23:30 +0100
commitc8d78b21863d4fee0a0f330f835f4561dc2d5021 (patch)
treedeb798ff32cd59aeedf6d5f325e9f6f63dcdd1ab /bitbake
parent6609a813bbfa3fe5a0681c4ec7b17f18b846efc7 (diff)
downloadpoky-c8d78b21863d4fee0a0f330f835f4561dc2d5021.tar.gz
Hob: add the 'build new' be as the primary action for 'Image detail' page
As ui design, we should set at least one primary action for 'My Image' and 'Image detail' screen as the differnt selected image. if no 'run image' or no 'save as template' or no 'deploy image' we should set 'build new image' [YOCTO #2326] (Bitbake rev: d848af637e9a14b627533bee65bf16f680dff854) Signed-off-by: Liming An <limingx.l.an@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/imagedetailspage.py19
1 files changed, 8 insertions, 11 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
index 9d57dc05c8..deb053c4c9 100755
--- a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
+++ b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
@@ -431,23 +431,20 @@ class ImageDetailsPage (HobPage):
431 self.details_bottom_buttons.pack_end(save_button, expand=False, fill=False) 431 self.details_bottom_buttons.pack_end(save_button, expand=False, fill=False)
432 create = True 432 create = True
433 433
434 if not packed:
435 box = gtk.HBox(False, 6)
436 box.show()
437 subbox = gtk.HBox(False, 0)
438 subbox.set_size_request(205, 49)
439 subbox.show()
440 box.add(subbox)
441 self.details_bottom_buttons.pack_end(box, False, False)
442
443 name = "Build new image" 434 name = "Build new image"
444 if name in buttonlist: 435 if name in buttonlist:
445 # create button "Build new image" 436 # create button "Build new image"
446 build_new_button = HobAltButton("Build new image") 437 if packed:
438 build_new_button = HobAltButton("Build new image")
439 self.details_bottom_buttons.pack_start(build_new_button, expand=False, fill=False)
440 else:
441 build_new_button = HobButton("Build new image")
442 build_new_button.set_size_request(205, 49)
443 build_new_button.set_flags(gtk.CAN_DEFAULT)
444 self.details_bottom_buttons.pack_end(build_new_button, expand=False, fill=False)
447 build_new_button.set_tooltip_text("Create a new image from scratch") 445 build_new_button.set_tooltip_text("Create a new image from scratch")
448 button_id = build_new_button.connect("clicked", self.build_new_button_clicked_cb) 446 button_id = build_new_button.connect("clicked", self.build_new_button_clicked_cb)
449 self.button_ids[button_id] = build_new_button 447 self.button_ids[button_id] = build_new_button
450 self.details_bottom_buttons.pack_start(build_new_button, expand=False, fill=False)
451 448
452 def get_kernel_file_name(self, image_name): 449 def get_kernel_file_name(self, image_name):
453 name_list = [] 450 name_list = []