From: Joshua Lock <josh@linux.intel.com>
To: bitbake-devel@lists.openembedded.org
Subject: Re: [PATCH 05/11] Hob: Remove the reset button in recipe/package selection page
Date: Wed, 14 Mar 2012 12:37:44 -0700 [thread overview]
Message-ID: <4F60F388.4020301@linux.intel.com> (raw)
In-Reply-To: <c86fa48517606d647dea901f803d3b22ff334c9f.1331716896.git.dongxiao.xu@intel.com>
On 14/03/12 02:26, Dongxiao Xu wrote:
> Signed-off-by: Dongxiao Xu<dongxiao.xu@intel.com>
Signed-off-by: Joshua Lock <josh@linux.intel.com>
> ---
> lib/bb/ui/crumbs/builder.py | 6 ------
> lib/bb/ui/crumbs/packageselectionpage.py | 11 -----------
> lib/bb/ui/crumbs/recipeselectionpage.py | 9 ---------
> 3 files changed, 0 insertions(+), 26 deletions(-)
>
> diff --git a/lib/bb/ui/crumbs/builder.py b/lib/bb/ui/crumbs/builder.py
> index a905030..f9844de 100755
> --- a/lib/bb/ui/crumbs/builder.py
> +++ b/lib/bb/ui/crumbs/builder.py
> @@ -361,12 +361,6 @@ class Builder(gtk.Window):
> self.handler.set_extra_config(self.configuration.extra_setting)
> self.handler.set_extra_inherit("packageinfo")
>
> - def reset_recipe_model(self):
> - self.recipe_model.reset()
> -
> - def reset_package_model(self):
> - self.package_model.reset()
> -
> def update_recipe_model(self, selected_image, selected_recipes):
> self.recipe_model.set_selected_image(selected_image)
> self.recipe_model.set_selected_recipes(selected_recipes)
> diff --git a/lib/bb/ui/crumbs/packageselectionpage.py b/lib/bb/ui/crumbs/packageselectionpage.py
> index a8628ac..0427fe2 100755
> --- a/lib/bb/ui/crumbs/packageselectionpage.py
> +++ b/lib/bb/ui/crumbs/packageselectionpage.py
> @@ -118,12 +118,6 @@ class PackageSelectionPage (HobPage):
> if self.pages[i]['name'] == "Included":
> tab.connect("row-activated", self.tree_row_activated_cb)
>
> - reset_button = gtk.Button("Reset")
> - reset_button.connect("clicked", self.reset_clicked_cb)
> - hbox = gtk.HBox(False, 5)
> - hbox.pack_end(reset_button, expand=False, fill=False)
> - tab.pack_start(hbox, expand=False, fill=False)
> -
> label = gtk.Label(self.pages[i]['name'])
> self.ins.append_page(tab, label)
> self.tables.append(tab)
> @@ -206,11 +200,6 @@ class PackageSelectionPage (HobPage):
> size_str = str(size) + ' KB'
> return size_str
>
> - # Callback functions
> - def reset_clicked_cb(self, button):
> - self.package_model.reset()
> - self.builder.reset_package_model()
> -
> def toggle_item_idle_cb(self, path):
> if not self.package_model.path_included(path):
> self.package_model.include_item(item_path=path, binb="User Selected")
> diff --git a/lib/bb/ui/crumbs/recipeselectionpage.py b/lib/bb/ui/crumbs/recipeselectionpage.py
> index aea9c0c..234734c 100755
> --- a/lib/bb/ui/crumbs/recipeselectionpage.py
> +++ b/lib/bb/ui/crumbs/recipeselectionpage.py
> @@ -141,11 +141,6 @@ class RecipeSelectionPage (HobPage):
> tab.connect("toggled", self.table_toggled_cb)
> if self.pages[i]['name'] == "Included":
> tab.connect("row-activated", self.tree_row_activated_cb)
> - reset_button = gtk.Button("Reset")
> - reset_button.connect("clicked", self.reset_clicked_cb)
> - hbox = gtk.HBox(False, 5)
> - hbox.pack_end(reset_button, expand=False, fill=False)
> - tab.pack_start(hbox, expand=False, fill=False)
>
> label = gtk.Label(self.pages[i]['name'])
> self.ins.append_page(tab, label)
> @@ -201,10 +196,6 @@ class RecipeSelectionPage (HobPage):
> self.label.set_text("Recipes included: %s" % len(self.builder.configuration.selected_recipes))
> self.ins.show_indicator_icon("Included", len(self.builder.configuration.selected_recipes))
>
> - # Callback functions
> - def reset_clicked_cb(self, button):
> - self.builder.reset_recipe_model()
> -
> def toggle_item_idle_cb(self, path):
> if not self.recipe_model.path_included(path):
> self.recipe_model.include_item(item_path=path, binb="User Selected", image_contents=False)
--
Joshua '贾詡' Lock
Yocto Project "Johannes factotum"
Intel Open Source Technology Centre
next prev parent reply other threads:[~2012-03-14 19:47 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-14 9:26 [PATCH 00/11][PULL] Hob: Functionality and GUI fixes Dongxiao Xu
2012-03-14 9:26 ` [PATCH 01/11] Hob: add "Close" button to "BinbDialog" Dongxiao Xu
2012-03-14 19:38 ` Joshua Lock
2012-03-14 9:26 ` [PATCH 02/11] Hob: Disable the handling of "NoProvider" event Dongxiao Xu
2012-03-14 19:37 ` Joshua Lock
2012-03-15 8:31 ` Xu, Dongxiao
2012-03-15 22:35 ` Joshua Lock
2012-03-14 9:26 ` [PATCH 03/11] cooker: add package rdepends and rrecommends info Dongxiao Xu
2012-03-14 19:37 ` Joshua Lock
2012-03-14 9:26 ` [PATCH 04/11] Hob: Fix the image installation dependency Dongxiao Xu
2012-03-14 19:37 ` Joshua Lock
2012-03-15 6:02 ` Xu, Dongxiao
2012-03-15 17:47 ` Joshua Lock
2012-03-14 9:26 ` [PATCH 05/11] Hob: Remove the reset button in recipe/package selection page Dongxiao Xu
2012-03-14 19:37 ` Joshua Lock [this message]
2012-03-14 9:26 ` [PATCH 06/11] Hob: Remove the indication in machine/base image combobox Dongxiao Xu
2012-03-14 19:37 ` Joshua Lock
2012-03-14 9:26 ` [PATCH 07/11] Hob: Remove the recipe/package populated signal Dongxiao Xu
2012-03-14 19:37 ` Joshua Lock
2012-03-14 9:26 ` [PATCH 08/11] Hob: Show recipe/package editing button after base image is selected Dongxiao Xu
2012-03-14 19:37 ` Joshua Lock
2012-03-14 9:26 ` [PATCH 09/11] Hob: Emit command-failed signal even if error msg is None Dongxiao Xu
2012-03-14 19:37 ` Joshua Lock
2012-03-14 9:26 ` [PATCH 10/11] Hob: Add stop button for parsing progress Dongxiao Xu
2012-03-14 19:37 ` Joshua Lock
2012-03-15 0:44 ` Xu, Dongxiao
2012-03-14 9:26 ` [PATCH 11/11] Hob: improve recipe/package selection performance Dongxiao Xu
2012-03-14 19:37 ` Joshua Lock
2012-03-14 23:54 ` Xu, Dongxiao
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4F60F388.4020301@linux.intel.com \
--to=josh@linux.intel.com \
--cc=bitbake-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox