[bitbake-devel] [PATCH] taskexp: add focused search bar

Tobias Olausson TOl at hms.se
Thu Oct 11 13:50:25 UTC 2018


>From 4f5f83161fcb7bd4e3d6b46ac13fa10ba5d50091 Mon Sep 17 00:00:00 2001
From: Tobias Olausson <tol at hms.se>
Date: Thu, 11 Oct 2018 15:29:49 +0200
Subject: [PATCH] taskexp: add focused search bar

Searching in the task explorer requires one to focus the task list. A
readily visible and focused search bar makes searching intuitive.

Signed-off-by: Tobias Olausson <tol at hms.se>
---
 lib/bb/ui/taskexp.py | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/lib/bb/ui/taskexp.py b/lib/bb/ui/taskexp.py
index 0e8e9d4c..8305d70f 100644
--- a/lib/bb/ui/taskexp.py
+++ b/lib/bb/ui/taskexp.py
@@ -103,9 +103,16 @@ class DepExplorer(Gtk.Window):
         self.pkg_treeview.get_selection().connect("changed", self.on_cursor_changed)
         column = Gtk.TreeViewColumn("Package", Gtk.CellRendererText(), text=COL_PKG_NAME)
         self.pkg_treeview.append_column(column)
-        pane.add1(scrolled)
         scrolled.add(self.pkg_treeview)
 
+        self.search_entry = Gtk.SearchEntry.new()
+        self.pkg_treeview.set_search_entry(self.search_entry)
+
+        left_panel = Gtk.VPaned()
+        left_panel.add(self.search_entry)
+        left_panel.add(scrolled)
+        pane.add1(left_panel)
+
         box = Gtk.VBox(homogeneous=True, spacing=4)
 
         # Task Depends
@@ -129,6 +136,7 @@ class DepExplorer(Gtk.Window):
         pane.add2(box)
 
         self.show_all()
+        self.search_entry.grab_focus()
 
     def on_package_activated(self, treeview, path, column, data_col):
         model = treeview.get_model()
-- 
2.17.1



More information about the bitbake-devel mailing list