* [PATCH] hob: The title of the packages screen depends on the screen you arrive from
@ 2012-09-21 10:28 Constantin Musca
2012-09-24 11:14 ` Richard Purdie
0 siblings, 1 reply; 2+ messages in thread
From: Constantin Musca @ 2012-09-21 10:28 UTC (permalink / raw)
To: bitbake-devel; +Cc: Constantin Musca
- If you arrive to the packages screen from the recipes screen, the title
should say: 'Step 2 of 2: Edit packages'
- If you arrive to the packages screen from the image details screen, the
title should say: 'Edit packages'
- The title of the recipes screen should say 'Step 1 of 2: Edit recipes'
[YOCTO #2982]
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
---
bitbake/lib/bb/ui/crumbs/builder.py | 2 ++
bitbake/lib/bb/ui/crumbs/hobpages.py | 9 ++++++---
bitbake/lib/bb/ui/crumbs/recipeselectionpage.py | 2 +-
3 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py
index 9e9d040..0a551ff 100755
--- a/bitbake/lib/bb/ui/crumbs/builder.py
+++ b/bitbake/lib/bb/ui/crumbs/builder.py
@@ -653,6 +653,7 @@ class Builder(gtk.Window):
elif next_step == self.PACKAGE_SELECTION:
self.configuration.initial_selected_packages = self.configuration.selected_packages
+ self.package_details_page.set_title("Edit packages")
if self.recipe_model.get_selected_image() == self.recipe_model.__custom_image__:
self.package_details_page.set_packages_curr_tab(self.package_details_page.ALL)
else:
@@ -665,6 +666,7 @@ class Builder(gtk.Window):
self.build_details_page.show_page(next_step)
elif next_step == self.PACKAGE_GENERATED:
+ self.package_details_page.set_title("Step 2 of 2: Edit packages")
if self.recipe_model.get_selected_image() == self.recipe_model.__custom_image__:
self.package_details_page.set_packages_curr_tab(self.package_details_page.ALL)
else:
diff --git a/bitbake/lib/bb/ui/crumbs/hobpages.py b/bitbake/lib/bb/ui/crumbs/hobpages.py
index 5045ea2..5b49764 100755
--- a/bitbake/lib/bb/ui/crumbs/hobpages.py
+++ b/bitbake/lib/bb/ui/crumbs/hobpages.py
@@ -38,6 +38,7 @@ class HobPage (gtk.VBox):
self.title = "Hob -- Image Creator"
else:
self.title = title
+ self.title_label = gtk.Label()
self.box_group_area = gtk.VBox(False, 12)
self.box_group_area.set_size_request(self.builder_width - 73 - 73, self.builder_height - 88 - 15 - 15)
@@ -46,6 +47,9 @@ class HobPage (gtk.VBox):
self.group_align.add(self.box_group_area)
self.box_group_area.set_homogeneous(False)
+ def set_title(self, title):
+ self.title = title
+ self.title_label.set_markup("<span size='x-large'>%s</span>" % self.title)
def add_onto_top_bar(self, widget = None, padding = 0):
# the top button occupies 1/7 of the page height
@@ -58,9 +62,8 @@ class HobPage (gtk.VBox):
hbox = gtk.HBox()
- label = gtk.Label()
- label.set_markup("<span size='x-large'>%s</span>" % self.title)
- hbox.pack_start(label, expand=False, fill=False, padding=20)
+ self.title_label.set_markup("<span size='x-large'>%s</span>" % self.title)
+ hbox.pack_start(self.title_label, expand=False, fill=False, padding=20)
if widget:
# add the widget in the event box
diff --git a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
index 0b159bb..f252202 100755
--- a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
+++ b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
@@ -123,7 +123,7 @@ class RecipeSelectionPage (HobPage):
TASKS) = range(3)
def __init__(self, builder = None):
- super(RecipeSelectionPage, self).__init__(builder, "Edit recipes")
+ super(RecipeSelectionPage, self).__init__(builder, "Step 1 of 2: Edit recipes")
# set invisible members
self.recipe_model = self.builder.recipe_model
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] hob: The title of the packages screen depends on the screen you arrive from
2012-09-21 10:28 [PATCH] hob: The title of the packages screen depends on the screen you arrive from Constantin Musca
@ 2012-09-24 11:14 ` Richard Purdie
0 siblings, 0 replies; 2+ messages in thread
From: Richard Purdie @ 2012-09-24 11:14 UTC (permalink / raw)
To: Constantin Musca; +Cc: bitbake-devel
On Fri, 2012-09-21 at 13:28 +0300, Constantin Musca wrote:
> - If you arrive to the packages screen from the recipes screen, the title
> should say: 'Step 2 of 2: Edit packages'
> - If you arrive to the packages screen from the image details screen, the
> title should say: 'Edit packages'
> - The title of the recipes screen should say 'Step 1 of 2: Edit recipes'
>
> [YOCTO #2982]
>
> Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
> ---
> bitbake/lib/bb/ui/crumbs/builder.py | 2 ++
> bitbake/lib/bb/ui/crumbs/hobpages.py | 9 ++++++---
> bitbake/lib/bb/ui/crumbs/recipeselectionpage.py | 2 +-
> 3 files changed, 9 insertions(+), 4 deletions(-)
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-09-24 11:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-21 10:28 [PATCH] hob: The title of the packages screen depends on the screen you arrive from Constantin Musca
2012-09-24 11:14 ` Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.