mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
Hob: Change recipe selection tab order
In the recipe screen, change the tab order to be: "Included", "All recipes", and "Tasks". Also change some description name in tab. This fixes [YOCTO #2110] (From Poky rev: 400b1092f1bad578b26d1e41aeb87dcb852aa4e3) (Bitbake rev: f7168e891ce4af5234d53896a7f51489a7c84a6f) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Shane Wang <shane.wang@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
ec6272396f
commit
8cc7b246f3
@@ -33,10 +33,33 @@ from bb.ui.crumbs.hobpages import HobPage
|
|||||||
class RecipeSelectionPage (HobPage):
|
class RecipeSelectionPage (HobPage):
|
||||||
pages = [
|
pages = [
|
||||||
{
|
{
|
||||||
'name' : 'Recipe',
|
'name' : 'Included',
|
||||||
|
'filter' : { RecipeListModel.COL_INC : [True],
|
||||||
|
RecipeListModel.COL_TYPE : ['recipe', 'task'] },
|
||||||
|
'columns' : [{
|
||||||
|
'col_name' : 'Recipe Name',
|
||||||
|
'col_id' : RecipeListModel.COL_NAME,
|
||||||
|
'col_style': 'text',
|
||||||
|
'col_min' : 100,
|
||||||
|
'col_max' : 400
|
||||||
|
}, {
|
||||||
|
'col_name' : 'Brought in by',
|
||||||
|
'col_id' : RecipeListModel.COL_BINB,
|
||||||
|
'col_style': 'text',
|
||||||
|
'col_min' : 100,
|
||||||
|
'col_max' : 500
|
||||||
|
}, {
|
||||||
|
'col_name' : 'Included',
|
||||||
|
'col_id' : RecipeListModel.COL_INC,
|
||||||
|
'col_style': 'check toggle',
|
||||||
|
'col_min' : 50,
|
||||||
|
'col_max' : 50
|
||||||
|
}]
|
||||||
|
}, {
|
||||||
|
'name' : 'All recipes',
|
||||||
'filter' : { RecipeListModel.COL_TYPE : ['recipe'] },
|
'filter' : { RecipeListModel.COL_TYPE : ['recipe'] },
|
||||||
'columns' : [{
|
'columns' : [{
|
||||||
'col_name' : 'Recipe',
|
'col_name' : 'Recipe Name',
|
||||||
'col_id' : RecipeListModel.COL_NAME,
|
'col_id' : RecipeListModel.COL_NAME,
|
||||||
'col_style': 'text',
|
'col_style': 'text',
|
||||||
'col_min' : 100,
|
'col_min' : 100,
|
||||||
@@ -61,10 +84,10 @@ class RecipeSelectionPage (HobPage):
|
|||||||
'col_max' : 50
|
'col_max' : 50
|
||||||
}]
|
}]
|
||||||
}, {
|
}, {
|
||||||
'name' : 'Recipe Collection',
|
'name' : 'Tasks',
|
||||||
'filter' : { RecipeListModel.COL_TYPE : ['task'] },
|
'filter' : { RecipeListModel.COL_TYPE : ['task'] },
|
||||||
'columns' : [{
|
'columns' : [{
|
||||||
'col_name' : 'Recipe Collection',
|
'col_name' : 'Task Name',
|
||||||
'col_id' : RecipeListModel.COL_NAME,
|
'col_id' : RecipeListModel.COL_NAME,
|
||||||
'col_style': 'text',
|
'col_style': 'text',
|
||||||
'col_min' : 100,
|
'col_min' : 100,
|
||||||
@@ -82,29 +105,6 @@ class RecipeSelectionPage (HobPage):
|
|||||||
'col_min' : 50,
|
'col_min' : 50,
|
||||||
'col_max' : 50
|
'col_max' : 50
|
||||||
}]
|
}]
|
||||||
}, {
|
|
||||||
'name' : 'Included',
|
|
||||||
'filter' : { RecipeListModel.COL_INC : [True],
|
|
||||||
RecipeListModel.COL_TYPE : ['recipe', 'task'] },
|
|
||||||
'columns' : [{
|
|
||||||
'col_name' : 'Recipe',
|
|
||||||
'col_id' : RecipeListModel.COL_NAME,
|
|
||||||
'col_style': 'text',
|
|
||||||
'col_min' : 100,
|
|
||||||
'col_max' : 400
|
|
||||||
}, {
|
|
||||||
'col_name' : 'Brought by',
|
|
||||||
'col_id' : RecipeListModel.COL_BINB,
|
|
||||||
'col_style': 'text',
|
|
||||||
'col_min' : 100,
|
|
||||||
'col_max' : 500
|
|
||||||
}, {
|
|
||||||
'col_name' : 'Included',
|
|
||||||
'col_id' : RecipeListModel.COL_INC,
|
|
||||||
'col_style': 'check toggle',
|
|
||||||
'col_min' : 50,
|
|
||||||
'col_max' : 50
|
|
||||||
}]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user