From 95ae927dfc8cbb0b1b8a60edb5af7c448cbc9a9e Mon Sep 17 00:00:00 2001 From: Liming An Date: Wed, 5 Sep 2012 19:13:48 +0800 Subject: bitbake: Hob: change view of 'recipes' and 'packages' tables as ui design changed the order of task tables, cancel the 'description' column, add the binb total number indicator, and so on [YOCTO 2195] (Bitbake rev: 6dc3263d60a6d35f9eebfcdbc2665201ee40b953) Signed-off-by: Liming An Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/hoblistmodel.py | 9 ++++- bitbake/lib/bb/ui/crumbs/hobwidget.py | 7 +++- bitbake/lib/bb/ui/crumbs/packageselectionpage.py | 48 ++++++------------------ bitbake/lib/bb/ui/crumbs/recipeselectionpage.py | 37 ++++++++---------- 4 files changed, 41 insertions(+), 60 deletions(-) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py index 3de9e5bb56..10b7c55251 100644 --- a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py @@ -521,17 +521,24 @@ class RecipeListModel(gtk.ListStore): val2 = model.get_value(iter2, RecipeListModel.COL_INC) return ((val1 == True) and (val2 == False)) + def include_item_sort_func(self, model, iter1, iter2): + val1 = model.get_value(iter1, RecipeListModel.COL_INC) + val2 = model.get_value(iter2, RecipeListModel.COL_INC) + return ((val1 == False) and (val2 == True)) + """ Create, if required, and return a filtered gtk.TreeModelSort containing only the items which are items specified by filter """ - def tree_model(self, filter, excluded_items_ahead=False): + def tree_model(self, filter, excluded_items_ahead=False, included_items_ahead=True): model = self.filter_new() model.set_visible_func(self.tree_model_filter, filter) sort = gtk.TreeModelSort(model) if excluded_items_ahead: sort.set_default_sort_func(self.exclude_item_sort_func) + elif included_items_ahead: + sort.set_default_sort_func(self.include_item_sort_func) else: sort.set_sort_column_id(RecipeListModel.COL_NAME, gtk.SORT_ASCENDING) sort.set_default_sort_func(None) diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py index 3ab30a6fce..28dc375da5 100644 --- a/bitbake/lib/bb/ui/crumbs/hobwidget.py +++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py @@ -153,7 +153,12 @@ class HobViewTable (gtk.VBox): # Just display the first item if binb: bin = binb.split(', ') - cell.set_property('text', bin[0]) + total_no = len(bin) + if total_no > 1 and bin[0] == "User Selected": + present_binb = bin[1] + ' (+' + str(total_no) + ')' + else: + present_binb = bin[0] + ' (+' + str(total_no) + ')' + cell.set_property('text', present_binb) else: cell.set_property('text', "") return True diff --git a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py index 9eec0e0043..c73697bb33 100755 --- a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py +++ b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py @@ -34,39 +34,34 @@ class PackageSelectionPage (HobPage): pages = [ { - 'name' : 'Included', + 'name' : 'Included packages', 'tooltip' : 'The packages currently included for your image', 'filter' : { PackageListModel.COL_INC : [True] }, 'columns' : [{ 'col_name' : 'Package name', 'col_id' : PackageListModel.COL_NAME, - 'col_t_id' : PackageListModel.COL_FONT, 'col_style': 'text', 'col_min' : 100, 'col_max' : 300, 'expand' : 'True' - }, { - 'col_name' : 'Brought in by', - 'col_id' : PackageListModel.COL_BINB, - 'col_t_id' : PackageListModel.COL_FONT, - 'col_style': 'binb', - 'col_min' : 100, - 'col_max' : 350, - 'expand' : 'True' }, { 'col_name' : 'Size', 'col_id' : PackageListModel.COL_SIZE, - 'col_t_id' : PackageListModel.COL_FONT, 'col_style': 'text', 'col_min' : 100, 'col_max' : 300, 'expand' : 'True' + }, { + 'col_name' : 'Brought in by', + 'col_id' : PackageListModel.COL_BINB, + 'col_style': 'binb', + 'col_min' : 100, + 'col_max' : 350, + 'expand' : 'True' }, { 'col_name' : 'Included', 'col_id' : PackageListModel.COL_INC, - 'col_t_id' : PackageListModel.COL_FONT, 'col_style': 'check toggle', - 'col_group': 'tree store group', 'col_min' : 100, 'col_max' : 100 }] @@ -77,7 +72,6 @@ class PackageSelectionPage (HobPage): 'columns' : [{ 'col_name' : 'Package name', 'col_id' : PackageListModel.COL_NAME, - 'col_t_id' : PackageListModel.COL_FONT, 'col_style': 'text', 'col_min' : 100, 'col_max' : 400, @@ -85,7 +79,6 @@ class PackageSelectionPage (HobPage): }, { 'col_name' : 'Size', 'col_id' : PackageListModel.COL_SIZE, - 'col_t_id' : PackageListModel.COL_FONT, 'col_style': 'text', 'col_min' : 100, 'col_max' : 500, @@ -94,7 +87,6 @@ class PackageSelectionPage (HobPage): 'col_name' : 'Included', 'col_id' : PackageListModel.COL_INC, 'col_style': 'check toggle', - 'col_group': 'tree store group', 'col_min' : 100, 'col_max' : 100 }] @@ -133,8 +125,7 @@ class PackageSelectionPage (HobPage): filter = page['filter'] tab.set_model(self.package_model.tree_model(filter)) tab.connect("toggled", self.table_toggled_cb, page['name']) - tab.connect_group_selection(self.table_selected_cb) - if page['name'] == "Included": + if page['name'] == "Included packages": tab.connect("button-release-event", self.button_click_cb) tab.connect("cell-fadeinout-stopped", self.after_fadeout_checkin_include) self.ins.append_page(tab, page['name'], page['tooltip']) @@ -228,13 +219,13 @@ class PackageSelectionPage (HobPage): self.label.set_label("Packages included: %s\nSelected packages size: %s\nTotal image size: %s" % (selected_packages_num, selected_packages_size_str, image_total_size_str)) - self.ins.show_indicator_icon("Included", selected_packages_num) + self.ins.show_indicator_icon("Included packages", selected_packages_num) def toggle_item_idle_cb(self, path, view_tree, cell, pagename): if not self.package_model.path_included(path): self.package_model.include_item(item_path=path, binb="User Selected") else: - if pagename == "Included": + if pagename == "Included packages": self.pre_fadeout_checkout_include(view_tree) self.package_model.exclude_item(item_path=path) self.render_fadeout(view_tree, cell) @@ -291,21 +282,6 @@ class PackageSelectionPage (HobPage): tree.set_model(self.package_model.tree_model(self.pages[0]['filter'])) tree.expand_all() - def foreach_cell_change_font(self, model, path, iter, paths=None): - # Changed the font for a group cells - if path and iter and path[0] == paths[0]: - self.package_model.set(iter, self.package_model.COL_FONT, "bold") - else: - if iter and model.iter_parent(iter) == None: - self.package_model.set(iter, self.package_model.COL_FONT, '11') - else: - self.package_model.set(iter, self.package_model.COL_FONT, '10') - - def table_selected_cb(self, selection): - model, paths = selection.get_selected_rows() - if paths: - child_path = self.package_model.convert_vpath_to_path(model, paths[0]) - self.package_model.foreach(self.foreach_cell_change_font, child_path) - def set_packages_curr_tab(self, curr_page): self.ins.set_current_page(curr_page) + diff --git a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py index 18690077f5..693a449bcf 100755 --- a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py +++ b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py @@ -33,7 +33,7 @@ from bb.ui.crumbs.hobpages import HobPage class RecipeSelectionPage (HobPage): pages = [ { - 'name' : 'Included', + 'name' : 'Included recipes', 'tooltip' : 'The recipes currently included for your image', 'filter' : { RecipeListModel.COL_INC : [True], RecipeListModel.COL_TYPE : ['recipe', 'task'] }, @@ -44,13 +44,6 @@ class RecipeSelectionPage (HobPage): 'col_min' : 100, 'col_max' : 400, 'expand' : 'True' - }, { - 'col_name' : 'Brought in by', - 'col_id' : RecipeListModel.COL_BINB, - 'col_style': 'binb', - 'col_min' : 100, - 'col_max' : 500, - 'expand' : 'True' }, { 'col_name' : 'Group', 'col_id' : RecipeListModel.COL_GROUP, @@ -58,6 +51,13 @@ class RecipeSelectionPage (HobPage): 'col_min' : 100, 'col_max' : 300, 'expand' : 'True' + }, { + 'col_name' : 'Brought in by', + 'col_id' : RecipeListModel.COL_BINB, + 'col_style': 'binb', + 'col_min' : 100, + 'col_max' : 500, + 'expand' : 'True' }, { 'col_name' : 'Included', 'col_id' : RecipeListModel.COL_INC, @@ -77,15 +77,15 @@ class RecipeSelectionPage (HobPage): 'col_max' : 400, 'expand' : 'True' }, { - 'col_name' : 'License', - 'col_id' : RecipeListModel.COL_LIC, + 'col_name' : 'Group', + 'col_id' : RecipeListModel.COL_GROUP, 'col_style': 'text', 'col_min' : 100, 'col_max' : 400, 'expand' : 'True' }, { - 'col_name' : 'Group', - 'col_id' : RecipeListModel.COL_GROUP, + 'col_name' : 'License', + 'col_id' : RecipeListModel.COL_LIC, 'col_style': 'text', 'col_min' : 100, 'col_max' : 400, @@ -108,13 +108,6 @@ class RecipeSelectionPage (HobPage): 'col_min' : 100, 'col_max' : 400, 'expand' : 'True' - }, { - 'col_name' : 'Description', - 'col_id' : RecipeListModel.COL_DESC, - 'col_style': 'text', - 'col_min' : 100, - 'col_max' : 400, - 'expand' : 'True' }, { 'col_name' : 'Included', 'col_id' : RecipeListModel.COL_INC, @@ -156,7 +149,7 @@ class RecipeSelectionPage (HobPage): filter = page['filter'] tab.set_model(self.recipe_model.tree_model(filter)) tab.connect("toggled", self.table_toggled_cb, page['name']) - if page['name'] == "Included": + if page['name'] == "Included recipes": tab.connect("button-release-event", self.button_click_cb) tab.connect("cell-fadeinout-stopped", self.after_fadeout_checkin_include) self.ins.append_page(tab, page['name'], page['tooltip']) @@ -205,13 +198,13 @@ class RecipeSelectionPage (HobPage): def refresh_selection(self): self.builder.configuration.selected_image = self.recipe_model.get_selected_image() _, self.builder.configuration.selected_recipes = self.recipe_model.get_selected_recipes() - self.ins.show_indicator_icon("Included", len(self.builder.configuration.selected_recipes)) + self.ins.show_indicator_icon("Included recipes", len(self.builder.configuration.selected_recipes)) def toggle_item_idle_cb(self, path, view_tree, cell, pagename): if not self.recipe_model.path_included(path): self.recipe_model.include_item(item_path=path, binb="User Selected", image_contents=False) else: - if pagename == "Included": + if pagename == "Included recipes": self.pre_fadeout_checkout_include(view_tree) self.recipe_model.exclude_item(item_path=path) self.render_fadeout(view_tree, cell) -- cgit v1.2.3-54-g00ecf