* Re: [PATCH 00/11] [V4]Hob Notebook Implementation and Others
2012-03-20 14:40 [PATCH 00/11] [V4]Hob Notebook Implementation and Others Shane Wang
@ 2012-03-20 14:31 ` Richard Purdie
2012-03-20 14:34 ` Wang, Shane
2012-03-20 14:41 ` [PATCH 01/11] Hob: implement a self-defined notebook visual component for Hob Shane Wang
` (10 subsequent siblings)
11 siblings, 1 reply; 14+ messages in thread
From: Richard Purdie @ 2012-03-20 14:31 UTC (permalink / raw)
To: Shane Wang; +Cc: bitbake-devel
On Tue, 2012-03-20 at 22:40 +0800, Shane Wang wrote:
> This patchset is
> - to implement Hob self-defined notebook, and use it in the build details page.
> - to clean up the code per the comments from the community.
> (In order to make it readable, we did them in separate patches)
>
> Compared with V3 version, this version temporarily removed the patches for
> - to improve the build log with the animation of the refresh icon.
> - to add proxy support in the Settings dialog.
>
> Because the updated patches are not ready so far per the comments from the community.
Merged to master, thanks!
Richard
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 00/11] [V4]Hob Notebook Implementation and Others
2012-03-20 14:31 ` Richard Purdie
@ 2012-03-20 14:34 ` Wang, Shane
0 siblings, 0 replies; 14+ messages in thread
From: Wang, Shane @ 2012-03-20 14:34 UTC (permalink / raw)
To: Richard Purdie; +Cc: bitbake-devel@lists.openembedded.org
See them. Thanks.
--
Shane
Richard Purdie wrote on 2012-03-20:
> On Tue, 2012-03-20 at 22:40 +0800, Shane Wang wrote:
>> This patchset is
>> - to implement Hob self-defined notebook, and use it in the build
>> details page. - to clean up the code per the comments from the
>> community.
>> (In order to make it readable, we did them in separate patches)
>> Compared with V3 version, this version temporarily removed the patches
> for
>> - to improve the build log with the animation of the refresh icon.
>> - to add proxy support in the Settings dialog.
>> Because the updated patches are not ready so far per the comments from
> the community.
>
> Merged to master, thanks!
>
> Richard
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 00/11] [V4]Hob Notebook Implementation and Others
@ 2012-03-20 14:40 Shane Wang
2012-03-20 14:31 ` Richard Purdie
` (11 more replies)
0 siblings, 12 replies; 14+ messages in thread
From: Shane Wang @ 2012-03-20 14:40 UTC (permalink / raw)
To: bitbake-devel
This patchset is
- to implement Hob self-defined notebook, and use it in the build details page.
- to clean up the code per the comments from the community.
(In order to make it readable, we did them in separate patches)
Compared with V3 version, this version temporarily removed the patches for
- to improve the build log with the animation of the refresh icon.
- to add proxy support in the Settings dialog.
Because the updated patches are not ready so far per the comments from the community.
The following changes since commit fd3514f35adc938c2c405aae0e283a9df1395c9b:
blktrace: update to version 1.0.5 (2012-03-19 20:28:48 +0000)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib shane/hob2-v0.70
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=shane/hob2-v0.70
Liming An (6):
Hob: remove the invalid code in hobwidget.py
Hob: Fixed the hobwidget code and make it like a pythonista
Hob: add auto adjust background area function for long issue text
Hob: change HobNoteBook tab edge color from green to gray
Hob: fix static variable "self.search" to parameter "search" in
signal callback function
Hob: fixed the tabbar search entry retaining focus when user has
clicked off it issue
Shane Wang (5):
Hob: implement a self-defined notebook visual component for Hob
Hob: use HobNotebook to implement a notebook in build details page
Hob: show indicators on the tabs of the Hob notebook
Hob: change the code style to enumerate a list in a for-loop
Hob: fix '!= None' and '== None' in the code
bitbake/lib/bb/ui/crumbs/builddetailspage.py | 40 ++-
bitbake/lib/bb/ui/crumbs/builder.py | 5 +
bitbake/lib/bb/ui/crumbs/hobcolor.py | 3 +
bitbake/lib/bb/ui/crumbs/hobeventhandler.py | 4 +-
bitbake/lib/bb/ui/crumbs/hoblistmodel.py | 2 +-
bitbake/lib/bb/ui/crumbs/hobpages.py | 4 +-
bitbake/lib/bb/ui/crumbs/hobwidget.py | 528 ++++++++++++++++++----
bitbake/lib/bb/ui/crumbs/imagedetailspage.py | 12 +-
bitbake/lib/bb/ui/crumbs/packageselectionpage.py | 27 +-
bitbake/lib/bb/ui/crumbs/recipeselectionpage.py | 29 +-
bitbake/lib/bb/ui/crumbs/runningbuild.py | 69 +++
11 files changed, 571 insertions(+), 152 deletions(-)
--
1.7.6
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 01/11] Hob: implement a self-defined notebook visual component for Hob
2012-03-20 14:40 [PATCH 00/11] [V4]Hob Notebook Implementation and Others Shane Wang
2012-03-20 14:31 ` Richard Purdie
@ 2012-03-20 14:41 ` Shane Wang
2012-03-20 14:41 ` [PATCH 02/11] Hob: use HobNotebook to implement a notebook in build details page Shane Wang
` (9 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Shane Wang @ 2012-03-20 14:41 UTC (permalink / raw)
To: bitbake-devel
In recipe selection page, package selection page, and build details page, etc, there is a notebook component which is not gtk.Notebook in the design video.
We implement the visual component with a drawing area, and use it to replace the old notebook in recipe selection page and package selection page. The reasons why we do it are:
1) General speaking, gtk.Notebook doesn't look like the designer worked out. (see https://wiki.yoctoproject.org/wiki/File:Hob1.2-screencast2.mov)
2) And the designer version looks better, for example, there is an indicator to show how many recipes or packages are included, and how many issues happened when building? Very straightforward.
But technically, gtk.Notebook can't implement that, as far as we know.
3) Moreover, there is an entry for "search recipes", and "search packages". How to make it horizontal to the tabs is a problem to us.
Regarding those, we give up gtk.Notebook and use our own.
Signed-off-by: Liming An <limingx.l.an@intel.com>
Signed-off-by: Shane Wang <shane.wang@intel.com>
---
bitbake/lib/bb/ui/crumbs/hobcolor.py | 1 +
bitbake/lib/bb/ui/crumbs/hobwidget.py | 468 ++++++++++++++++++----
bitbake/lib/bb/ui/crumbs/packageselectionpage.py | 17 +-
bitbake/lib/bb/ui/crumbs/recipeselectionpage.py | 19 +-
4 files changed, 394 insertions(+), 111 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/hobcolor.py b/bitbake/lib/bb/ui/crumbs/hobcolor.py
index 9d67d5c..402f022 100644
--- a/bitbake/lib/bb/ui/crumbs/hobcolor.py
+++ b/bitbake/lib/bb/ui/crumbs/hobcolor.py
@@ -28,6 +28,7 @@ class HobColors:
DARK = "#3c3b37"
BLACK = "#000000"
LIGHT_ORANGE = "#f7a787"
+ YELLOW = "#ffff00"
OK = WHITE
RUNNING = PALE_GREEN
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py
index f4ff1dc..8fa663c 100644
--- a/bitbake/lib/bb/ui/crumbs/hobwidget.py
+++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py
@@ -17,11 +17,14 @@
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
import gtk
import gobject
import os
import os.path
+import sys
+import pango, pangocairo
+import math
+
from bb.ui.crumbs.hobcolor import HobColors
from bb.ui.crumbs.persistenttooltip import PersistentTooltip
@@ -168,90 +171,6 @@ class HobViewTable (gtk.VBox):
if not view_column.get_title() in self.toggle_columns:
self.emit("row-activated", tree.get_model(), path)
-class HobViewBar (gtk.EventBox):
- """
- A EventBox with the specified gray background color is associated with a notebook.
- And the toolbar to simulate the tabs.
- """
-
- def __init__(self, notebook):
- if not notebook:
- return
- self.notebook = notebook
-
- # setup an event box
- gtk.EventBox.__init__(self)
- self.set_border_width(2)
- style = self.get_style().copy()
- style.bg[gtk.STATE_NORMAL] = self.get_colormap().alloc_color (HobColors.GRAY, False, False)
- self.set_style(style)
-
- hbox = gtk.HBox()
- self.add(hbox)
-
- # setup a tool bar in the event box
- self.toolbar = gtk.Toolbar()
- self.toolbar.set_orientation(gtk.ORIENTATION_HORIZONTAL)
- self.toolbar.set_style(gtk.TOOLBAR_TEXT)
- self.toolbar.set_border_width(5)
-
- self.toolbuttons = []
- for index in range(self.notebook.get_n_pages()):
- child = self.notebook.get_nth_page(index)
- label = self.notebook.get_tab_label_text(child)
- tip_text = 'switch to ' + label + ' page'
- toolbutton = self.toolbar.append_element(gtk.TOOLBAR_CHILD_RADIOBUTTON, None,
- label, tip_text, "Private text", None,
- self.toolbutton_cb, index)
- toolbutton.set_size_request(200, 100)
- self.toolbuttons.append(toolbutton)
-
- # set the default current page
- self.modify_toolbuttons_bg(0)
- self.notebook.set_current_page(0)
-
- self.toolbar.append_space()
-
- # add the tool bar into the event box
- hbox.pack_start(self.toolbar, expand=False, fill=False)
-
- self.search = gtk.Entry()
- self.align = gtk.Alignment(xalign=0.5, yalign=0.5)
- self.align.add(self.search)
- hbox.pack_end(self.align, expand=False, fill=False)
-
- self.label = gtk.Label(" Search: ")
- self.label.set_alignment(0.5, 0.5)
- hbox.pack_end(self.label, expand=False, fill=False)
-
- def toolbutton_cb(self, widget, index):
- if index >= self.notebook.get_n_pages():
- return
- self.notebook.set_current_page(index)
- self.modify_toolbuttons_bg(index)
-
- def modify_toolbuttons_bg(self, index):
- if index >= len(self.toolbuttons):
- return
- for i in range(0, len(self.toolbuttons)):
- toolbutton = self.toolbuttons[i]
- if i == index:
- self.modify_toolbutton_bg(toolbutton, True)
- else:
- self.modify_toolbutton_bg(toolbutton)
-
- def modify_toolbutton_bg(self, toolbutton, active=False):
- if active:
- toolbutton.modify_bg(gtk.STATE_NORMAL, gtk.gdk.Color(HobColors.WHITE))
- toolbutton.modify_bg(gtk.STATE_ACTIVE, gtk.gdk.Color(HobColors.WHITE))
- toolbutton.modify_bg(gtk.STATE_SELECTED, gtk.gdk.Color(HobColors.WHITE))
- toolbutton.modify_bg(gtk.STATE_PRELIGHT, gtk.gdk.Color(HobColors.WHITE))
- else:
- toolbutton.modify_bg(gtk.STATE_NORMAL, gtk.gdk.Color(HobColors.GRAY))
- toolbutton.modify_bg(gtk.STATE_ACTIVE, gtk.gdk.Color(HobColors.GRAY))
- toolbutton.modify_bg(gtk.STATE_SELECTED, gtk.gdk.Color(HobColors.GRAY))
- toolbutton.modify_bg(gtk.STATE_PRELIGHT, gtk.gdk.Color(HobColors.GRAY))
-
class HobXpmLabelButtonBox(gtk.EventBox):
""" label: name of buttonbox
description: the simple description
@@ -360,3 +279,382 @@ class HobInfoButton(gtk.EventBox):
"""
def mouse_out_cb(self, widget, event):
self.image.set_from_file(hic.ICON_INFO_DISPLAY_FILE)
+
+class HobTabBar(gtk.DrawingArea):
+ __gsignals__ = {
+ "blank-area-changed" : (gobject.SIGNAL_RUN_LAST,
+ gobject.TYPE_NONE,
+ (gobject.TYPE_INT,
+ gobject.TYPE_INT,
+ gobject.TYPE_INT,
+ gobject.TYPE_INT,)),
+
+ "tab-switched" : (gobject.SIGNAL_RUN_LAST,
+ gobject.TYPE_NONE,
+ (gobject.TYPE_INT,)),
+ }
+
+ def __init__(self):
+ gtk.DrawingArea.__init__(self)
+ self.children = []
+
+ self.tab_width = 140
+ self.tab_height = 52
+ self.tab_x = 10
+ self.tab_y = 0
+
+ self.width = 500
+ self.height = 53
+ self.tab_w_ratio = 140 * 1.0/500
+ self.tab_h_ratio = 52 * 1.0/53
+ self.set_size_request(self.width, self.height)
+
+ self.current_child = 0
+ self.font = self.get_style().font_desc
+ self.font.set_size(pango.SCALE * 13)
+ self.update_children_text_layout_and_bg_color()
+
+ self.blank_rectangle = None
+ self.tab_pressed = False
+
+ self.set_property('can-focus', True)
+ self.set_events(gtk.gdk.EXPOSURE_MASK | gtk.gdk.POINTER_MOTION_MASK |
+ gtk.gdk.BUTTON1_MOTION_MASK | gtk.gdk.BUTTON_PRESS_MASK |
+ gtk.gdk.BUTTON_RELEASE_MASK)
+
+ self.connect("expose-event", self.on_draw)
+ self.connect("button-press-event", self.button_pressed_cb)
+ self.connect("button-release-event", self.button_released_cb)
+ self.show_all()
+
+ def button_released_cb(self, widget, event):
+ self.tab_pressed = False
+ self.queue_draw()
+
+ def button_pressed_cb(self, widget, event):
+ if event.type == gtk.gdk._2BUTTON_PRESS:
+ return
+
+ result = False
+ if self.is_focus() or event.type == gtk.gdk.BUTTON_PRESS:
+ x, y = event.get_coords()
+ # check which tab be clicked
+ for i, child in enumerate(self.children):
+ if (child["x"] < x) and (x < child["x"] + self.tab_width) \
+ and (child["y"] < y) and (y < child["y"] + self.tab_height):
+ self.current_child = i
+ result = True
+ break
+
+ # check the blank area is focus in or not
+ if (self.blank_rectangle) and (self.blank_rectangle.x > 0) and (self.blank_rectangle.y > 0):
+ if (self.blank_rectangle.x < x) and (x < self.blank_rectangle.x + self.blank_rectangle.width) \
+ and (self.blank_rectangle.y < y) and (y < self.blank_rectangle.y + self.blank_rectangle.height):
+ self.grab_focus()
+
+ if result == True:
+ page = self.children[self.current_child]["toggled_page"]
+ self.emit("tab-switched", page)
+ self.tab_pressed = True
+ self.queue_draw()
+
+ def update_children_size(self):
+ # calculate the size of tabs
+ self.tab_width = int(self.width * self.tab_w_ratio)
+ self.tab_height = int(self.height * self.tab_h_ratio)
+ for i, child in enumerate(self.children):
+ child["x"] = self.tab_x + i * self.tab_width
+ child["y"] = self.tab_y
+
+ if self.blank_rectangle != None:
+ self.resize_blank_rectangle()
+
+ def resize_blank_rectangle(self):
+ width = self.width - self.tab_width * len(self.children) - self.tab_x
+ x = self.tab_x + self.tab_width * len(self.children)
+ hpadding = vpadding = 5
+ self.blank_rectangle = self.set_blank_size(x + hpadding, self.tab_y + vpadding,
+ width - 2 * hpadding, self.tab_height - 2 * vpadding)
+
+ def update_children_text_layout_and_bg_color(self):
+ style = self.get_style().copy()
+ color = style.base[gtk.STATE_NORMAL]
+ for child in self.children:
+ pangolayout = self.create_pango_layout(child["title"])
+ pangolayout.set_font_description(self.font)
+ child["title_layout"] = pangolayout
+ child[i]["r"] = color.red
+ child[i]["g"] = color.green
+ child[i]["b"] = color.blue
+
+ def append_tab_child(self, title, page):
+ num = len(self.children) + 1
+ self.tab_width = self.tab_width * len(self.children) / num
+
+ i = 0
+ for child in self.children:
+ child["x"] = self.tab_x + i * self.tab_width
+ i += 1
+
+ x = self.tab_x + i * self.tab_width
+ y = self.tab_y
+ pangolayout = self.create_pango_layout(title)
+ pangolayout.set_font_description(self.font)
+ color = self.style.base[gtk.STATE_NORMAL]
+ new_one = {
+ "x" : x,
+ "y" : y,
+ "r" : color.red,
+ "g" : color.green,
+ "b" : color.blue,
+ "title_layout" : pangolayout,
+ "toggled_page" : page,
+ "title" : title,
+ "indicator_show" : False,
+ "indicator_number" : 0,
+ }
+ self.children.append(new_one)
+
+ def on_draw(self, widget, event):
+ cr = widget.window.cairo_create()
+
+ self.width = self.allocation.width
+ self.height = self.allocation.height
+
+ self.update_children_size()
+
+ self.draw_background(cr)
+ self.draw_toggled_tab(cr)
+ self.draw_tab_text(cr)
+
+ for i, child in enumerate(self.children):
+ if child["indicator_show"] == True:
+ self.draw_indicator(cr, i)
+
+ def draw_background(self, cr):
+ style = self.get_style()
+
+ if self.is_focus():
+ cr.set_source_color(style.base[gtk.STATE_SELECTED])
+ else:
+ cr.set_source_color(style.base[gtk.STATE_NORMAL])
+
+ y = 6
+ h = self.height - 6 - 1
+ gap = 1
+
+ w = self.children[0]["x"]
+ cr.set_source_color(gtk.gdk.color_parse(HobColors.GRAY))
+ cr.rectangle(0, y, w - gap, h) # start rectangle
+ cr.fill()
+
+ cr.set_source_color(style.base[gtk.STATE_NORMAL])
+ cr.rectangle(w - gap, y, w, h) #first gap
+ cr.fill()
+
+ w = self.tab_width
+ for child in self.children:
+ x = child["x"]
+ cr.set_source_color(gtk.gdk.color_parse(HobColors.GRAY))
+ cr.rectangle(x, y, w - gap, h) # tab rectangle
+ cr.fill()
+ cr.set_source_color(style.base[gtk.STATE_NORMAL])
+ cr.rectangle(x + w - gap, y, w, h) # gap
+ cr.fill()
+
+ cr.set_source_color(gtk.gdk.color_parse(HobColors.GRAY))
+ cr.rectangle(x + w, y, self.width - x - w, h) # last rectangle
+ cr.fill()
+
+ def draw_tab_text(self, cr):
+ style = self.get_style()
+
+ for child in self.children:
+ pangolayout = child["title_layout"]
+ if pangolayout:
+ fontw, fonth = pangolayout.get_pixel_size()
+ # center pos
+ off_x = (self.tab_width - fontw) / 2
+ off_y = (self.tab_height - fonth) / 2
+ x = child[i]["x"] + off_x
+ y = child[i]["y"] + off_y
+ self.window.draw_layout(self.style.fg_gc[gtk.STATE_NORMAL], int(x), int(y), pangolayout)
+
+ def draw_toggled_tab(self, cr):
+ i = self.current_child
+ x = self.children[i]["x"]
+ y = self.children[i]["y"]
+ width = self.tab_width
+ height = self.tab_height
+ style = self.get_style()
+ color = style.base[gtk.STATE_NORMAL]
+
+ r = height / 10
+ if self.tab_pressed == True:
+ for xoff, yoff in [(1, 0), (2, 0)]:
+ cr.set_source_color(gtk.gdk.color_parse(HobColors.PALE_GREEN))
+ cr.move_to(x + r + xoff, y + yoff)
+ cr.line_to(x + width - r + xoff, y + yoff)
+ cr.arc(x + width - r+ xoff, y + r + yoff, r, 1.5*math.pi, 2*math.pi)
+ cr.move_to(x + width + xoff, r + yoff)
+ cr.line_to(x + width + xoff, y + height + yoff)
+ cr.line_to(x + xoff, y + height + yoff)
+ cr.line_to(x + xoff, r + yoff)
+ cr.arc(x + r + xoff, y + r + yoff, r, math.pi, 1.5*math.pi)
+ cr.stroke()
+ x = x + 2
+ y = y + 2
+ cr.set_source_rgba(color.red, color.green, color.blue, 1)
+ cr.move_to(x + r, y)
+ cr.line_to(x + width - r , y)
+ cr.arc(x + width - r, y + r, r, 1.5*math.pi, 2*math.pi)
+ cr.move_to(x + width, r)
+ cr.line_to(x + width, y + height)
+ cr.line_to(x, y + height)
+ cr.line_to(x, r)
+ cr.arc(x + r, y + r, r, math.pi, 1.5*math.pi)
+ cr.fill()
+
+ def draw_indicator(self, cr, i):
+ style = self.get_style()
+ tab_x = self.children[i]["x"]
+ tab_y = self.children[i]["y"]
+ number = self.children[i]["indicator_number"]
+ dest_w = int(32 * self.tab_w_ratio)
+ dest_h = int(32 * self.tab_h_ratio)
+ if dest_h < self.tab_height:
+ dest_w = dest_h
+
+ # x position is offset(tab_width*3/4 - icon_width/2) + start_pos(tab_x)
+ x = tab_x + self.tab_width * 3/4 - dest_w/2
+ y = tab_y + self.tab_height/2 - dest_h/2
+ cr.move_to(tab_x, tab_y)
+ r = min(dest_w, dest_h)/2
+ color = cr.set_source_color(gtk.gdk.color_parse(HobColors.ORANGE))
+ cr.arc(x + r, y + r, r, 0, 2*math.pi)
+ cr.fill()
+
+ text = ("%d" % number)
+ layout = self.create_pango_layout(text)
+ layout.set_font_description(self.font)
+ textw, texth = layout.get_pixel_size()
+ x = x + (dest_w/2)-(textw/2)
+ y = y + (dest_h/2) - (texth/2)
+ cr.move_to(x, y)
+ self.window.draw_layout(self.style.fg_gc[gtk.STATE_NORMAL], int(x), int(y), layout)
+
+ def show_indicator_icon(self, i, number):
+ self.children[i]["indicator_show"] = True
+ self.children[i]["indicator_number"] = number
+ self.queue_draw()
+
+ def hide_indicator_icon(self, i):
+ self.children[i]["indicator_show"] = False
+ self.queue_draw()
+
+ def set_blank_size(self, x, y, w, h):
+ if self.blank_rectangle == None or self.blank_rectangle.x != x or self.blank_rectangle.width != w:
+ self.emit("blank-area-changed", x, y, w, h)
+
+ return gtk.gdk.Rectangle(x, y, w, h)
+
+class HobNotebook(gtk.VBox):
+
+ def __init__(self):
+ gtk.VBox.__init__(self, False, 0)
+
+ self.notebook = gtk.Notebook()
+ self.notebook.set_property('homogeneous', True)
+ self.notebook.set_property('show-tabs', False)
+
+ self.tabbar = HobTabBar()
+ self.tabbar.connect("tab-switched", self.tab_switched_cb)
+ self.notebook.connect("page-added", self.page_added_cb)
+ self.notebook.connect("page-removed", self.page_removed_cb)
+
+ self.search = None
+ self.search_name = ""
+
+ self.tb = gtk.Table(1, 100, False)
+ self.hbox= gtk.HBox(False, 0)
+ self.hbox.pack_start(self.tabbar, True, True)
+ self.tb.attach(self.hbox, 0, 100, 0, 1)
+
+ self.pack_start(self.tb, False, False)
+ self.pack_start(self.notebook)
+
+ self.show_all()
+
+ def append_page(self, child, tab_label):
+ self.notebook.set_current_page(self.notebook.append_page(child, tab_label))
+
+ def set_entry(self, name="Search:"):
+ for child in self.tb.get_children():
+ if child:
+ self.tb.remove(child)
+
+ hbox_entry = gtk.HBox(False, 0)
+ hbox_entry.show()
+
+ self.search = gtk.Entry()
+ self.search_name = name
+ style = self.search.get_style()
+ style.text[gtk.STATE_NORMAL] = self.get_colormap().alloc_color(HobColors.GRAY, False, False)
+ self.search.set_style(style)
+ self.search.set_text(name)
+ self.search.set_editable(False)
+ self.search.show()
+ self.align = gtk.Alignment(xalign=1.0, yalign=0.7)
+ self.align.add(self.search)
+ self.align.show()
+ hbox_entry.pack_end(self.align, False, False)
+ self.tabbar.resize_blank_rectangle()
+
+ self.tb.attach(hbox_entry, 75, 100, 0, 1, xpadding=5)
+ self.tb.attach(self.hbox, 0, 100, 0, 1)
+
+ self.tabbar.connect("blank-area-changed", self.blank_area_resize_cb)
+ self.search.connect("focus-in-event", self.set_search_entry_editable_cb)
+ self.search.connect("focus-out-event", self.set_search_entry_reset_cb)
+
+ self.tb.show()
+
+ def tab_switched_cb(self, widget, page):
+ self.notebook.set_current_page(page)
+
+ def page_added_cb(self, notebook, notebook_child, page):
+ if not notebook:
+ return
+ title = notebook.get_tab_label_text(notebook_child)
+ if title == None:
+ return
+ for child in self.tabbar.children:
+ if child["title"] == title:
+ child["toggled_page"] = page
+ return
+ self.tabbar.append_tab_child(title, page)
+
+ def page_removed_cb(self, notebook, notebook_child, page, title=""):
+ for child in self.tabbar.children:
+ if child["title"] == title:
+ child["toggled_page"] = -1
+
+ def blank_area_resize_cb(self, widget, request_x, request_y, request_width, request_height):
+ self.search.set_size_request(request_width, request_height)
+ widget.modify_bg(gtk.STATE_SELECTED, gtk.gdk.color_parse(HobColors.YELLOW))
+
+ def set_search_entry_editable_cb(self, widget, event):
+ if self.search:
+ self.search.set_editable(True)
+ self.search.set_text("")
+ style = self.search.get_style()
+ style.text[gtk.STATE_NORMAL] = self.get_colormap().alloc_color(HobColors.BLACK, False, False)
+ self.search.set_style(style)
+
+ def set_search_entry_reset_cb(self, widget, event):
+ if self.search:
+ style = self.search.get_style()
+ style.text[gtk.STATE_NORMAL] = self.get_colormap().alloc_color(HobColors.GRAY, False, False)
+ self.search.set_style(style)
+ self.search.set_text(self.search_name)
+ self.search.set_editable(False)
diff --git a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
index 1c335ac..3cd1c5e 100755
--- a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
+++ b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
@@ -23,7 +23,7 @@
import gtk
import glib
from bb.ui.crumbs.hobcolor import HobColors
-from bb.ui.crumbs.hobwidget import HobViewBar, HobViewTable
+from bb.ui.crumbs.hobwidget import HobViewTable, HobNotebook
from bb.ui.crumbs.hoblistmodel import PackageListModel
from bb.ui.crumbs.hobpages import HobPage
@@ -102,11 +102,7 @@ class PackageSelectionPage (HobPage):
self.pack_start(self.group_align, expand=True, fill=True)
# set visiable members
- self.grid = gtk.Table(10, 1, True)
- self.grid.set_col_spacings(3)
-
- self.ins = gtk.Notebook()
- self.ins.set_show_tabs(False)
+ self.ins = HobNotebook()
self.tables = [] # we need to modify table when the dialog is shown
# append the tab
for i in range(len(self.pages)):
@@ -122,16 +118,13 @@ class PackageSelectionPage (HobPage):
self.ins.append_page(tab, label)
self.tables.append(tab)
- self.grid.attach(self.ins, 0, 1, 1, 10, gtk.FILL | gtk.EXPAND, gtk.FILL | gtk.EXPAND, 1, 1)
- # a black bar associated with the notebook
- self.topbar = HobViewBar(self.ins)
- self.grid.attach(self.topbar, 0, 1, 0, 1, gtk.FILL | gtk.EXPAND, gtk.FILL | gtk.EXPAND, 1, 1)
+ self.ins.set_entry("Search packages:")
# set the search entry for each table
for tab in self.tables:
- tab.set_search_entry(0, self.topbar.search)
+ tab.set_search_entry(0, self.ins.search)
# add all into the dialog
- self.box_group_area.add(self.grid)
+ self.box_group_area.pack_start(self.ins, expand=True, fill=True)
button_box = gtk.HBox(False, 6)
self.box_group_area.pack_start(button_box, expand=False, fill=False)
diff --git a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
index d615ef1..db873b6 100755
--- a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
+++ b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
@@ -23,7 +23,7 @@
import gtk
import glib
from bb.ui.crumbs.hobcolor import HobColors
-from bb.ui.crumbs.hobwidget import HobViewBar, HobViewTable
+from bb.ui.crumbs.hobwidget import HobViewTable, HobNotebook
from bb.ui.crumbs.hoblistmodel import RecipeListModel
from bb.ui.crumbs.hobpages import HobPage
@@ -124,13 +124,7 @@ class RecipeSelectionPage (HobPage):
self.pack_start(self.group_align, expand=True, fill=True)
# set visiable members
- self.grid = gtk.Table(10, 1, True)
- self.grid.set_col_spacings(3)
-
- # draw the left part of the window
- # a notebook
- self.ins = gtk.Notebook()
- self.ins.set_show_tabs(False)
+ self.ins = HobNotebook()
self.tables = [] # we need modify table when the dialog is shown
# append the tabs in order
for i in range(len(self.pages)):
@@ -146,16 +140,13 @@ class RecipeSelectionPage (HobPage):
self.ins.append_page(tab, label)
self.tables.append(tab)
- self.grid.attach(self.ins, 0, 1, 1, 10, gtk.FILL | gtk.EXPAND, gtk.FILL | gtk.EXPAND)
- # a black bar associated with the notebook
- self.topbar = HobViewBar(self.ins)
- self.grid.attach(self.topbar, 0, 1, 0, 1, gtk.FILL | gtk.EXPAND, gtk.FILL | gtk.EXPAND)
+ self.ins.set_entry("Search recipes:")
# set the search entry for each table
for tab in self.tables:
- tab.set_search_entry(0, self.topbar.search)
+ tab.set_search_entry(0, self.ins.search)
# add all into the window
- self.box_group_area.add(self.grid)
+ self.box_group_area.pack_start(self.ins, expand=True, fill=True)
button_box = gtk.HBox(False, 6)
self.box_group_area.pack_end(button_box, expand=False, fill=False)
--
1.7.6
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 02/11] Hob: use HobNotebook to implement a notebook in build details page
2012-03-20 14:40 [PATCH 00/11] [V4]Hob Notebook Implementation and Others Shane Wang
2012-03-20 14:31 ` Richard Purdie
2012-03-20 14:41 ` [PATCH 01/11] Hob: implement a self-defined notebook visual component for Hob Shane Wang
@ 2012-03-20 14:41 ` Shane Wang
2012-03-20 14:41 ` [PATCH 03/11] Hob: show indicators on the tabs of the Hob notebook Shane Wang
` (8 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Shane Wang @ 2012-03-20 14:41 UTC (permalink / raw)
To: bitbake-devel
This patch is to use HobNotebook we defined to implement the notebook in the build details page.
Signed-off-by: Liming An <limingx.l.an@intel.com>
Signed-off-by: Shane Wang <shane.wang@intel.com>
---
bitbake/lib/bb/ui/crumbs/builddetailspage.py | 30 ++++++++++--
bitbake/lib/bb/ui/crumbs/runningbuild.py | 65 ++++++++++++++++++++++++++
2 files changed, 90 insertions(+), 5 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/builddetailspage.py b/bitbake/lib/bb/ui/crumbs/builddetailspage.py
index 8b75ca0..63d2c7b 100755
--- a/bitbake/lib/bb/ui/crumbs/builddetailspage.py
+++ b/bitbake/lib/bb/ui/crumbs/builddetailspage.py
@@ -22,8 +22,10 @@
import gtk
from bb.ui.crumbs.progressbar import HobProgressBar
-from bb.ui.crumbs.hobwidget import hic
+from bb.ui.crumbs.hobwidget import hic, HobNotebook
from bb.ui.crumbs.runningbuild import RunningBuildTreeView
+from bb.ui.crumbs.runningbuild import BuildConfigurationTreeView
+from bb.ui.crumbs.runningbuild import BuildFailureTreeView
from bb.ui.crumbs.hobpages import HobPage
#
@@ -49,11 +51,29 @@ class BuildDetailsPage (HobPage):
self.stop_button.connect("clicked", self.stop_button_clicked_cb)
self.progress_box.pack_end(self.stop_button, expand=False, fill=False)
+ self.notebook = HobNotebook()
+ self.config_tv = BuildConfigurationTreeView()
+ self.config_model = self.builder.handler.build.model.config_model()
+ self.config_tv.set_model(self.config_model)
+ self.scrolled_view_config = gtk.ScrolledWindow ()
+ self.scrolled_view_config.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
+ self.scrolled_view_config.add(self.config_tv)
+ self.notebook.append_page(self.scrolled_view_config, gtk.Label("Build Configuration"))
+
+ self.failure_tv = BuildFailureTreeView()
+ self.failure_model = self.builder.handler.build.model.failure_model()
+ self.failure_tv.set_model(self.failure_model)
+ self.scrolled_view_failure = gtk.ScrolledWindow ()
+ self.scrolled_view_failure.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
+ self.scrolled_view_failure.add(self.failure_tv)
+ self.notebook.append_page(self.scrolled_view_failure, gtk.Label("Issues"))
+
self.build_tv = RunningBuildTreeView(readonly=True)
self.build_tv.set_model(self.builder.handler.build.model)
- self.scrolled_view = gtk.ScrolledWindow ()
- self.scrolled_view.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
- self.scrolled_view.add(self.build_tv)
+ self.scrolled_view_build = gtk.ScrolledWindow ()
+ self.scrolled_view_build.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
+ self.scrolled_view_build.add(self.build_tv)
+ self.notebook.append_page(self.scrolled_view_build, gtk.Label("Log"))
self.button_box = gtk.HBox(False, 6)
self.back_button = gtk.LinkButton("Go back to Image Configuration screen", "<< Back to image configuration")
@@ -86,7 +106,7 @@ class BuildDetailsPage (HobPage):
self.progress_bar.reset()
self.vbox.pack_start(self.progress_box, expand=False, fill=False)
- self.vbox.pack_start(self.scrolled_view, expand=True, fill=True)
+ self.vbox.pack_start(self.notebook, expand=True, fill=True)
self.box_group_area.pack_end(self.button_box, expand=False, fill=False)
self.show_all()
diff --git a/bitbake/lib/bb/ui/crumbs/runningbuild.py b/bitbake/lib/bb/ui/crumbs/runningbuild.py
index 718f692..eedd8d9 100644
--- a/bitbake/lib/bb/ui/crumbs/runningbuild.py
+++ b/bitbake/lib/bb/ui/crumbs/runningbuild.py
@@ -25,6 +25,7 @@ import logging
import time
import urllib
import urllib2
+import pango
from bb.ui.crumbs.hobcolor import HobColors
class RunningBuildModel (gtk.TreeStore):
@@ -40,6 +41,32 @@ class RunningBuildModel (gtk.TreeStore):
gobject.TYPE_STRING,
gobject.TYPE_INT)
+ def config_model_filter(self, model, it):
+ msg = model.get(it, self.COL_MESSAGE)[0]
+ if msg == None or type(msg) != str:
+ return False
+ if msg.startswith("\nOE Build Configuration:\n"):
+ return True
+ return False
+
+ def failure_model_filter(self, model, it):
+ color = model.get(it, self.COL_COLOR)[0]
+ if color == None:
+ return False
+ if color == HobColors.ERROR:
+ return True
+ return False
+
+ def config_model(self):
+ model = self.filter_new()
+ model.set_visible_func(self.config_model_filter)
+ return model
+
+ def failure_model(self):
+ model = self.filter_new()
+ model.set_visible_func(self.failure_model_filter)
+ return model
+
class RunningBuild (gobject.GObject):
__gsignals__ = {
'build-started' : (gobject.SIGNAL_RUN_LAST,
@@ -376,3 +403,41 @@ class RunningBuildTreeView (gtk.TreeView):
message = model.get(it, model.COL_MESSAGE)[0]
self._add_to_clipboard(message)
+
+
+class BuildConfigurationTreeView(gtk.TreeView):
+
+ def __init__ (self):
+ gtk.TreeView.__init__(self)
+ self.set_rules_hint(False)
+ self.set_headers_visible(False)
+ self.set_property("hover-expand", True)
+ self.get_selection().set_mode(gtk.SELECTION_SINGLE)
+
+ # The message of the build.
+ self.message_renderer = gtk.CellRendererText ()
+ self.message_column = gtk.TreeViewColumn ("Message", self.message_renderer, text=RunningBuildModel.COL_MESSAGE, background=RunningBuildModel.COL_COLOR)
+ font = self.get_style().font_desc
+ font.set_size(pango.SCALE * 13)
+ self.message_renderer.set_property('font-desc', font)
+ self.append_column (self.message_column)
+
+
+class BuildFailureTreeView(gtk.TreeView):
+
+ def __init__ (self):
+ gtk.TreeView.__init__(self)
+ self.set_rules_hint(False)
+ self.set_headers_visible(False)
+ self.get_selection().set_mode(gtk.SELECTION_SINGLE)
+
+ # The icon that indicates whether we're building or failed.
+ renderer = gtk.CellRendererPixbuf ()
+ col = gtk.TreeViewColumn ("Status", renderer)
+ col.add_attribute (renderer, "icon-name", RunningBuildModel.COL_ICON)
+ self.append_column (col)
+
+ # The message of the build.
+ self.message_renderer = gtk.CellRendererText ()
+ self.message_column = gtk.TreeViewColumn ("Message", self.message_renderer, text=RunningBuildModel.COL_MESSAGE, background=RunningBuildModel.COL_COLOR)
+ self.append_column (self.message_column)
--
1.7.6
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 03/11] Hob: show indicators on the tabs of the Hob notebook
2012-03-20 14:40 [PATCH 00/11] [V4]Hob Notebook Implementation and Others Shane Wang
` (2 preceding siblings ...)
2012-03-20 14:41 ` [PATCH 02/11] Hob: use HobNotebook to implement a notebook in build details page Shane Wang
@ 2012-03-20 14:41 ` Shane Wang
2012-03-20 14:41 ` [PATCH 04/11] Hob: change the code style to enumerate a list in a for-loop Shane Wang
` (7 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Shane Wang @ 2012-03-20 14:41 UTC (permalink / raw)
To: bitbake-devel
This patch is to show the indicators (e.g., the number of the issues) in the build details page to highlight.
Signed-off-by: Liming An <limingx.l.an@intel.com>
Signed-off-by: Shane Wang <shane.wang@intel.com>
---
bitbake/lib/bb/ui/crumbs/builddetailspage.py | 10 ++++++++++
bitbake/lib/bb/ui/crumbs/builder.py | 5 +++++
bitbake/lib/bb/ui/crumbs/hobwidget.py | 14 ++++++++++++++
bitbake/lib/bb/ui/crumbs/runningbuild.py | 4 ++++
4 files changed, 33 insertions(+), 0 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/builddetailspage.py b/bitbake/lib/bb/ui/crumbs/builddetailspage.py
index 63d2c7b..7a5cfe6 100755
--- a/bitbake/lib/bb/ui/crumbs/builddetailspage.py
+++ b/bitbake/lib/bb/ui/crumbs/builddetailspage.py
@@ -37,6 +37,8 @@ class BuildDetailsPage (HobPage):
def __init__(self, builder):
super(BuildDetailsPage, self).__init__(builder, "Building ...")
+ self.num_of_issues = 0
+
# create visual elements
self.create_visual_elements()
@@ -80,6 +82,14 @@ class BuildDetailsPage (HobPage):
self.back_button.connect("clicked", self.back_button_clicked_cb)
self.button_box.pack_start(self.back_button, expand=False, fill=False)
+ def show_issues(self):
+ self.num_of_issues += 1
+ self.notebook.show_indicator_icon("Issues", self.num_of_issues)
+
+ def reset_issues(self):
+ self.num_of_issues = 0
+ self.notebook.hide_indicator_icon("Issues")
+
def _remove_all_widget(self):
children = self.vbox.get_children() or []
for child in children:
diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py
index 1d255ac..318bcbf 100755
--- a/bitbake/lib/bb/ui/crumbs/builder.py
+++ b/bitbake/lib/bb/ui/crumbs/builder.py
@@ -212,6 +212,7 @@ class Builder(gtk.Window):
self.handler.build.connect("build-succeeded", self.handler_build_succeeded_cb)
self.handler.build.connect("build-failed", self.handler_build_failed_cb)
self.handler.build.connect("task-started", self.handler_task_started_cb)
+ self.handler.build.connect("log-error", self.handler_build_failure_cb)
self.handler.connect("generating-data", self.handler_generating_data_cb)
self.handler.connect("data-generated", self.handler_data_generated_cb)
self.handler.connect("command-succeeded", self.handler_command_succeeded_cb)
@@ -533,6 +534,7 @@ class Builder(gtk.Window):
elif self.current_step == self.PACKAGE_GENERATING:
fraction = 0
self.build_details_page.update_progress_bar("Build Started: ", fraction)
+ self.build_details_page.reset_issues()
def build_succeeded(self):
if self.current_step == self.FAST_IMAGE_GENERATING:
@@ -600,6 +602,9 @@ class Builder(gtk.Window):
fraction = 0.2 + 0.8 * fraction
self.build_details_page.update_progress_bar(title + ": ", fraction)
+ def handler_build_failure_cb(self, running_build):
+ self.build_details_page.show_issues()
+
def destroy_window_cb(self, widget, event):
lbl = "<b>Do you really want to exit the Hob image creator?</b>"
dialog = CrumbsMessageDialog(self, lbl, gtk.STOCK_DIALOG_INFO)
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py
index 8fa663c..2c3d831 100644
--- a/bitbake/lib/bb/ui/crumbs/hobwidget.py
+++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py
@@ -619,6 +619,20 @@ class HobNotebook(gtk.VBox):
self.tb.show()
+ def show_indicator_icon(self, title, number):
+ for i, child in enumerate(self.tabbar.children):
+ if child["toggled_page"] == -1:
+ continue
+ if child["title"] == title:
+ self.tabbar.show_indicator_icon(i, number)
+
+ def hide_indicator_icon(self, title):
+ for i, child in enumerate(self.tabbar.children):
+ if child["toggled_page"] == -1:
+ continue
+ if child["title"] == title:
+ self.tabbar.hide_indicator_icon(i)
+
def tab_switched_cb(self, widget, page):
self.notebook.set_current_page(page)
diff --git a/bitbake/lib/bb/ui/crumbs/runningbuild.py b/bitbake/lib/bb/ui/crumbs/runningbuild.py
index eedd8d9..ddac232 100644
--- a/bitbake/lib/bb/ui/crumbs/runningbuild.py
+++ b/bitbake/lib/bb/ui/crumbs/runningbuild.py
@@ -84,6 +84,9 @@ class RunningBuild (gobject.GObject):
'task-started' : (gobject.SIGNAL_RUN_LAST,
gobject.TYPE_NONE,
(gobject.TYPE_PYOBJECT,)),
+ 'log-error' : (gobject.SIGNAL_RUN_LAST,
+ gobject.TYPE_NONE,
+ ()),
}
pids_to_task = {}
tasks_to_iter = {}
@@ -134,6 +137,7 @@ class RunningBuild (gobject.GObject):
if event.levelno >= logging.ERROR:
icon = "dialog-error"
color = HobColors.ERROR
+ self.emit("log-error")
elif event.levelno >= logging.WARNING:
icon = "dialog-warning"
color = HobColors.WARNING
--
1.7.6
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 04/11] Hob: change the code style to enumerate a list in a for-loop
2012-03-20 14:40 [PATCH 00/11] [V4]Hob Notebook Implementation and Others Shane Wang
` (3 preceding siblings ...)
2012-03-20 14:41 ` [PATCH 03/11] Hob: show indicators on the tabs of the Hob notebook Shane Wang
@ 2012-03-20 14:41 ` Shane Wang
2012-03-20 14:41 ` [PATCH 05/11] Hob: fix '!= None' and '== None' in the code Shane Wang
` (6 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Shane Wang @ 2012-03-20 14:41 UTC (permalink / raw)
To: bitbake-devel
We use the more common style to enumerate a list in a for-loop
(http://docs.python.org/library/functions.html#enumerate), that is:
try to use
for item in mylist,
and try to use
for i, item in enumerate(list)
rather than
for i in range(len(mylist))
Signed-off-by: Shane Wang <shane.wang@intel.com>
---
bitbake/lib/bb/ui/crumbs/hobwidget.py | 30 +++++++++++-----------
bitbake/lib/bb/ui/crumbs/packageselectionpage.py | 10 +++---
bitbake/lib/bb/ui/crumbs/recipeselectionpage.py | 10 +++---
3 files changed, 25 insertions(+), 25 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py
index 2c3d831..247bbd1 100644
--- a/bitbake/lib/bb/ui/crumbs/hobwidget.py
+++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py
@@ -109,38 +109,38 @@ class HobViewTable (gtk.VBox):
self.toggle_columns = []
self.table_tree.connect("row-activated", self.row_activated_cb)
- for i in range(len(columns)):
- col = gtk.TreeViewColumn(columns[i]['col_name'])
+ for i, column in enumerate(columns):
+ col = gtk.TreeViewColumn(column['col_name'])
col.set_clickable(True)
col.set_resizable(True)
- col.set_sort_column_id(columns[i]['col_id'])
- if 'col_min' in columns[i].keys():
- col.set_min_width(columns[i]['col_min'])
- if 'col_max' in columns[i].keys():
- col.set_max_width(columns[i]['col_max'])
+ col.set_sort_column_id(column['col_id'])
+ if 'col_min' in column.keys():
+ col.set_min_width(column['col_min'])
+ if 'col_max' in column.keys():
+ col.set_max_width(column['col_max'])
self.table_tree.append_column(col)
- if (not 'col_style' in columns[i].keys()) or columns[i]['col_style'] == 'text':
+ if (not 'col_style' in column.keys()) or column['col_style'] == 'text':
cell = gtk.CellRendererText()
col.pack_start(cell, True)
- col.set_attributes(cell, text=columns[i]['col_id'])
- elif columns[i]['col_style'] == 'check toggle':
+ col.set_attributes(cell, text=column['col_id'])
+ elif column['col_style'] == 'check toggle':
cell = gtk.CellRendererToggle()
cell.set_property('activatable', True)
cell.connect("toggled", self.toggled_cb, i, self.table_tree)
self.toggle_id = i
col.pack_end(cell, True)
- col.set_attributes(cell, active=columns[i]['col_id'])
- self.toggle_columns.append(columns[i]['col_name'])
- elif columns[i]['col_style'] == 'radio toggle':
+ col.set_attributes(cell, active=column['col_id'])
+ self.toggle_columns.append(column['col_name'])
+ elif column['col_style'] == 'radio toggle':
cell = gtk.CellRendererToggle()
cell.set_property('activatable', True)
cell.set_radio(True)
cell.connect("toggled", self.toggled_cb, i, self.table_tree)
self.toggle_id = i
col.pack_end(cell, True)
- col.set_attributes(cell, active=columns[i]['col_id'])
- self.toggle_columns.append(columns[i]['col_name'])
+ col.set_attributes(cell, active=column['col_id'])
+ self.toggle_columns.append(column['col_name'])
scroll = gtk.ScrolledWindow()
scroll.set_policy(gtk.POLICY_NEVER, gtk.POLICY_ALWAYS)
diff --git a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
index 3cd1c5e..23e460c 100755
--- a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
+++ b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
@@ -105,16 +105,16 @@ class PackageSelectionPage (HobPage):
self.ins = HobNotebook()
self.tables = [] # we need to modify table when the dialog is shown
# append the tab
- for i in range(len(self.pages)):
- columns = self.pages[i]['columns']
+ for page in self.pages:
+ columns = page['columns']
tab = HobViewTable(columns)
- filter = self.pages[i]['filter']
+ filter = page['filter']
tab.set_model(self.package_model.tree_model(filter))
tab.connect("toggled", self.table_toggled_cb)
- if self.pages[i]['name'] == "Included":
+ if page['name'] == "Included":
tab.connect("row-activated", self.tree_row_activated_cb)
- label = gtk.Label(self.pages[i]['name'])
+ label = gtk.Label(page['name'])
self.ins.append_page(tab, label)
self.tables.append(tab)
diff --git a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
index db873b6..6dd7c1e 100755
--- a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
+++ b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
@@ -127,16 +127,16 @@ class RecipeSelectionPage (HobPage):
self.ins = HobNotebook()
self.tables = [] # we need modify table when the dialog is shown
# append the tabs in order
- for i in range(len(self.pages)):
- columns = self.pages[i]['columns']
+ for page in self.pages:
+ columns = page['columns']
tab = HobViewTable(columns)
- filter = self.pages[i]['filter']
+ filter = page['filter']
tab.set_model(self.recipe_model.tree_model(filter))
tab.connect("toggled", self.table_toggled_cb)
- if self.pages[i]['name'] == "Included":
+ if page['name'] == "Included":
tab.connect("row-activated", self.tree_row_activated_cb)
- label = gtk.Label(self.pages[i]['name'])
+ label = gtk.Label(page['name'])
self.ins.append_page(tab, label)
self.tables.append(tab)
--
1.7.6
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 05/11] Hob: fix '!= None' and '== None' in the code
2012-03-20 14:40 [PATCH 00/11] [V4]Hob Notebook Implementation and Others Shane Wang
` (4 preceding siblings ...)
2012-03-20 14:41 ` [PATCH 04/11] Hob: change the code style to enumerate a list in a for-loop Shane Wang
@ 2012-03-20 14:41 ` Shane Wang
2012-03-20 14:41 ` [PATCH 06/11] Hob: remove the invalid code in hobwidget.py Shane Wang
` (5 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Shane Wang @ 2012-03-20 14:41 UTC (permalink / raw)
To: bitbake-devel
This patch is to fix the following:
if foo != None -----> if foo
if foo == None -----> if not foo
Signed-off-by: Shane Wang <shane.wang@intel.com>
---
bitbake/lib/bb/ui/crumbs/hobeventhandler.py | 4 ++--
bitbake/lib/bb/ui/crumbs/hoblistmodel.py | 2 +-
bitbake/lib/bb/ui/crumbs/hobpages.py | 4 ++--
bitbake/lib/bb/ui/crumbs/hobwidget.py | 6 +++---
bitbake/lib/bb/ui/crumbs/imagedetailspage.py | 12 ++++++------
bitbake/lib/bb/ui/crumbs/runningbuild.py | 4 ++--
6 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index 790e2ef..1e1151e 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -119,7 +119,7 @@ class HobHandler(gobject.GObject):
self.generating = False
def run_next_command(self, initcmd=None):
- if initcmd != None:
+ if initcmd:
self.initcmd = initcmd
if self.commands_async:
@@ -127,7 +127,7 @@ class HobHandler(gobject.GObject):
next_command = self.commands_async.pop(0)
else:
self.clear_busy()
- if self.initcmd != None:
+ if self.initcmd:
self.emit("command-succeeded", self.initcmd)
return
diff --git a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
index caf31bc..69e13cf 100644
--- a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
+++ b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
@@ -713,7 +713,7 @@ class RecipeListModel(gtk.ListStore):
return None
def set_selected_image(self, img):
- if img == None:
+ if not img:
return
path = self.find_path_for_item(img)
self.include_item(item_path=path,
diff --git a/bitbake/lib/bb/ui/crumbs/hobpages.py b/bitbake/lib/bb/ui/crumbs/hobpages.py
index bd4b292..63ee3dd 100755
--- a/bitbake/lib/bb/ui/crumbs/hobpages.py
+++ b/bitbake/lib/bb/ui/crumbs/hobpages.py
@@ -34,7 +34,7 @@ class HobPage (gtk.VBox):
self.builder = builder
self.builder_width, self.builder_height = self.builder.size_request()
- if title == None:
+ if not title:
self.title = "HOB -- Image Creator"
else:
self.title = title
@@ -62,7 +62,7 @@ class HobPage (gtk.VBox):
label.set_markup("<span font_desc=\'14\'>%s</span>" % self.title)
hbox.pack_start(label, expand=False, fill=False, padding=20)
- if widget != None:
+ if widget:
# add the widget in the event box
hbox.pack_end(widget, expand=False, fill=False, padding=padding)
eventbox.add(hbox)
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py
index 247bbd1..f0d9cbc 100644
--- a/bitbake/lib/bb/ui/crumbs/hobwidget.py
+++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py
@@ -366,7 +366,7 @@ class HobTabBar(gtk.DrawingArea):
child["x"] = self.tab_x + i * self.tab_width
child["y"] = self.tab_y
- if self.blank_rectangle != None:
+ if self.blank_rectangle:
self.resize_blank_rectangle()
def resize_blank_rectangle(self):
@@ -553,7 +553,7 @@ class HobTabBar(gtk.DrawingArea):
self.queue_draw()
def set_blank_size(self, x, y, w, h):
- if self.blank_rectangle == None or self.blank_rectangle.x != x or self.blank_rectangle.width != w:
+ if not self.blank_rectangle or self.blank_rectangle.x != x or self.blank_rectangle.width != w:
self.emit("blank-area-changed", x, y, w, h)
return gtk.gdk.Rectangle(x, y, w, h)
@@ -640,7 +640,7 @@ class HobNotebook(gtk.VBox):
if not notebook:
return
title = notebook.get_tab_label_text(notebook_child)
- if title == None:
+ if not title:
return
for child in self.tabbar.children:
if child["title"] == title:
diff --git a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
index c063d74..30c25aa 100755
--- a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
+++ b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
@@ -64,9 +64,9 @@ class ImageDetailsPage (HobPage):
self.hbox.set_border_width(15)
self.add(self.hbox)
- if widget != None:
+ if widget:
row = 1
- elif varlist != None and vallist != None:
+ elif varlist and vallist:
# pack the icon and the text on the left
row = len(varlist)
self.table = gtk.Table(row, 20, True)
@@ -75,18 +75,18 @@ class ImageDetailsPage (HobPage):
colid = 0
self.line_widgets = {}
- if icon != None:
+ if icon:
self.table.attach(icon, colid, colid + 2, 0, 1)
colid = colid + 2
- if widget != None:
+ if widget:
self.table.attach(widget, colid, 20, 0, 1)
- elif varlist != None and vallist != None:
+ elif varlist and vallist:
for line in range(0, row):
self.line_widgets[varlist[line]] = self.text2label(varlist[line], vallist[line])
self.table.attach(self.line_widgets[varlist[line]], colid, 20, line, line + 1)
# pack the button on the right
- if button != None:
+ if button:
self.hbox.pack_end(button, expand=False, fill=False)
def update_line_widgets(self, variable, value):
diff --git a/bitbake/lib/bb/ui/crumbs/runningbuild.py b/bitbake/lib/bb/ui/crumbs/runningbuild.py
index ddac232..d8af55c 100644
--- a/bitbake/lib/bb/ui/crumbs/runningbuild.py
+++ b/bitbake/lib/bb/ui/crumbs/runningbuild.py
@@ -43,7 +43,7 @@ class RunningBuildModel (gtk.TreeStore):
def config_model_filter(self, model, it):
msg = model.get(it, self.COL_MESSAGE)[0]
- if msg == None or type(msg) != str:
+ if not msg or type(msg) != str:
return False
if msg.startswith("\nOE Build Configuration:\n"):
return True
@@ -51,7 +51,7 @@ class RunningBuildModel (gtk.TreeStore):
def failure_model_filter(self, model, it):
color = model.get(it, self.COL_COLOR)[0]
- if color == None:
+ if not color:
return False
if color == HobColors.ERROR:
return True
--
1.7.6
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 06/11] Hob: remove the invalid code in hobwidget.py
2012-03-20 14:40 [PATCH 00/11] [V4]Hob Notebook Implementation and Others Shane Wang
` (5 preceding siblings ...)
2012-03-20 14:41 ` [PATCH 05/11] Hob: fix '!= None' and '== None' in the code Shane Wang
@ 2012-03-20 14:41 ` Shane Wang
2012-03-20 14:41 ` [PATCH 07/11] Hob: Fixed the hobwidget code and make it like a pythonista Shane Wang
` (4 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Shane Wang @ 2012-03-20 14:41 UTC (permalink / raw)
To: bitbake-devel
From: Liming An <limingx.l.an@intel.com>
To delete some code which is not used
Signed-off-by: Liming An <limingx.l.an@intel.com>
Signed-off-by: Shane Wang <shane.wang@intel.com>
---
bitbake/lib/bb/ui/crumbs/hobwidget.py | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py
index f0d9cbc..71f0629 100644
--- a/bitbake/lib/bb/ui/crumbs/hobwidget.py
+++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py
@@ -516,7 +516,6 @@ class HobTabBar(gtk.DrawingArea):
cr.fill()
def draw_indicator(self, cr, i):
- style = self.get_style()
tab_x = self.children[i]["x"]
tab_y = self.children[i]["y"]
number = self.children[i]["indicator_number"]
@@ -528,7 +527,6 @@ class HobTabBar(gtk.DrawingArea):
# x position is offset(tab_width*3/4 - icon_width/2) + start_pos(tab_x)
x = tab_x + self.tab_width * 3/4 - dest_w/2
y = tab_y + self.tab_height/2 - dest_h/2
- cr.move_to(tab_x, tab_y)
r = min(dest_w, dest_h)/2
color = cr.set_source_color(gtk.gdk.color_parse(HobColors.ORANGE))
cr.arc(x + r, y + r, r, 0, 2*math.pi)
--
1.7.6
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 07/11] Hob: Fixed the hobwidget code and make it like a pythonista
2012-03-20 14:40 [PATCH 00/11] [V4]Hob Notebook Implementation and Others Shane Wang
` (6 preceding siblings ...)
2012-03-20 14:41 ` [PATCH 06/11] Hob: remove the invalid code in hobwidget.py Shane Wang
@ 2012-03-20 14:41 ` Shane Wang
2012-03-20 14:41 ` [PATCH 08/11] Hob: add auto adjust background area function for long issue text Shane Wang
` (3 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Shane Wang @ 2012-03-20 14:41 UTC (permalink / raw)
To: bitbake-devel
From: Liming An <limingx.l.an@intel.com>
fixed the 'for..in..' range dance code, and use the 'iterator' approach to replaced the index for quote the 'children' list
Signed-off-by: Liming An <limingx.l.an@intel.com>
Signed-off-by: Shane Wang <shane.wang@intel.com>
---
bitbake/lib/bb/ui/crumbs/hobwidget.py | 63 ++++++++++++++++++---------------
1 files changed, 34 insertions(+), 29 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py
index 71f0629..4c4b059 100644
--- a/bitbake/lib/bb/ui/crumbs/hobwidget.py
+++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py
@@ -309,7 +309,7 @@ class HobTabBar(gtk.DrawingArea):
self.tab_h_ratio = 52 * 1.0/53
self.set_size_request(self.width, self.height)
- self.current_child = 0
+ self.current_child = None
self.font = self.get_style().font_desc
self.font.set_size(pango.SCALE * 13)
self.update_children_text_layout_and_bg_color()
@@ -339,10 +339,10 @@ class HobTabBar(gtk.DrawingArea):
if self.is_focus() or event.type == gtk.gdk.BUTTON_PRESS:
x, y = event.get_coords()
# check which tab be clicked
- for i, child in enumerate(self.children):
+ for child in self.children:
if (child["x"] < x) and (x < child["x"] + self.tab_width) \
and (child["y"] < y) and (y < child["y"] + self.tab_height):
- self.current_child = i
+ self.current_child = child
result = True
break
@@ -353,7 +353,7 @@ class HobTabBar(gtk.DrawingArea):
self.grab_focus()
if result == True:
- page = self.children[self.current_child]["toggled_page"]
+ page = self.current_child["toggled_page"]
self.emit("tab-switched", page)
self.tab_pressed = True
self.queue_draw()
@@ -383,16 +383,16 @@ class HobTabBar(gtk.DrawingArea):
pangolayout = self.create_pango_layout(child["title"])
pangolayout.set_font_description(self.font)
child["title_layout"] = pangolayout
- child[i]["r"] = color.red
- child[i]["g"] = color.green
- child[i]["b"] = color.blue
+ child["r"] = color.red
+ child["g"] = color.green
+ child["b"] = color.blue
def append_tab_child(self, title, page):
num = len(self.children) + 1
self.tab_width = self.tab_width * len(self.children) / num
i = 0
- for child in self.children:
+ for i, child in enumerate(self.children):
child["x"] = self.tab_x + i * self.tab_width
i += 1
@@ -414,6 +414,9 @@ class HobTabBar(gtk.DrawingArea):
"indicator_number" : 0,
}
self.children.append(new_one)
+ # set the default current child
+ if not self.current_child:
+ self.current_child = new_one
def on_draw(self, widget, event):
cr = widget.window.cairo_create()
@@ -425,11 +428,12 @@ class HobTabBar(gtk.DrawingArea):
self.draw_background(cr)
self.draw_toggled_tab(cr)
- self.draw_tab_text(cr)
- for i, child in enumerate(self.children):
+ for child in self.children:
if child["indicator_show"] == True:
- self.draw_indicator(cr, i)
+ self.draw_indicator(cr, child)
+
+ self.draw_tab_text(cr)
def draw_background(self, cr):
style = self.get_style()
@@ -476,14 +480,15 @@ class HobTabBar(gtk.DrawingArea):
# center pos
off_x = (self.tab_width - fontw) / 2
off_y = (self.tab_height - fonth) / 2
- x = child[i]["x"] + off_x
- y = child[i]["y"] + off_y
+ x = child["x"] + off_x
+ y = child["y"] + off_y
self.window.draw_layout(self.style.fg_gc[gtk.STATE_NORMAL], int(x), int(y), pangolayout)
def draw_toggled_tab(self, cr):
- i = self.current_child
- x = self.children[i]["x"]
- y = self.children[i]["y"]
+ if not self.current_child:
+ return
+ x = self.current_child["x"]
+ y = self.current_child["y"]
width = self.tab_width
height = self.tab_height
style = self.get_style()
@@ -515,10 +520,10 @@ class HobTabBar(gtk.DrawingArea):
cr.arc(x + r, y + r, r, math.pi, 1.5*math.pi)
cr.fill()
- def draw_indicator(self, cr, i):
- tab_x = self.children[i]["x"]
- tab_y = self.children[i]["y"]
- number = self.children[i]["indicator_number"]
+ def draw_indicator(self, cr, child):
+ tab_x = child["x"]
+ tab_y = child["y"]
+ number = child["indicator_number"]
dest_w = int(32 * self.tab_w_ratio)
dest_h = int(32 * self.tab_h_ratio)
if dest_h < self.tab_height:
@@ -541,13 +546,13 @@ class HobTabBar(gtk.DrawingArea):
cr.move_to(x, y)
self.window.draw_layout(self.style.fg_gc[gtk.STATE_NORMAL], int(x), int(y), layout)
- def show_indicator_icon(self, i, number):
- self.children[i]["indicator_show"] = True
- self.children[i]["indicator_number"] = number
+ def show_indicator_icon(self, child, number):
+ child["indicator_show"] = True
+ child["indicator_number"] = number
self.queue_draw()
- def hide_indicator_icon(self, i):
- self.children[i]["indicator_show"] = False
+ def hide_indicator_icon(self, child):
+ child["indicator_show"] = False
self.queue_draw()
def set_blank_size(self, x, y, w, h):
@@ -618,18 +623,18 @@ class HobNotebook(gtk.VBox):
self.tb.show()
def show_indicator_icon(self, title, number):
- for i, child in enumerate(self.tabbar.children):
+ for child in self.tabbar.children:
if child["toggled_page"] == -1:
continue
if child["title"] == title:
- self.tabbar.show_indicator_icon(i, number)
+ self.tabbar.show_indicator_icon(child, number)
def hide_indicator_icon(self, title):
- for i, child in enumerate(self.tabbar.children):
+ for child in self.tabbar.children:
if child["toggled_page"] == -1:
continue
if child["title"] == title:
- self.tabbar.hide_indicator_icon(i)
+ self.tabbar.hide_indicator_icon(child)
def tab_switched_cb(self, widget, page):
self.notebook.set_current_page(page)
--
1.7.6
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 08/11] Hob: add auto adjust background area function for long issue text
2012-03-20 14:40 [PATCH 00/11] [V4]Hob Notebook Implementation and Others Shane Wang
` (7 preceding siblings ...)
2012-03-20 14:41 ` [PATCH 07/11] Hob: Fixed the hobwidget code and make it like a pythonista Shane Wang
@ 2012-03-20 14:41 ` Shane Wang
2012-03-20 14:41 ` [PATCH 09/11] Hob: change HobNoteBook tab edge color from green to gray Shane Wang
` (2 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Shane Wang @ 2012-03-20 14:41 UTC (permalink / raw)
To: bitbake-devel
From: Liming An <limingx.l.an@intel.com>
To add auto expand the background area function for long issue text input.
Signed-off-by: Liming An <limingx.l.an@intel.com>
Signed-off-by: Shane Wang <shane.wang@intel.com>
---
bitbake/lib/bb/ui/crumbs/hobwidget.py | 30 +++++++++++++++++++++---------
1 files changed, 21 insertions(+), 9 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py
index 4c4b059..bc27cd1 100644
--- a/bitbake/lib/bb/ui/crumbs/hobwidget.py
+++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py
@@ -521,26 +521,38 @@ class HobTabBar(gtk.DrawingArea):
cr.fill()
def draw_indicator(self, cr, child):
+ text = ("%d" % child["indicator_number"])
+ layout = self.create_pango_layout(text)
+ layout.set_font_description(self.font)
+ textw, texth = layout.get_pixel_size()
+ # draw the back round area
tab_x = child["x"]
tab_y = child["y"]
- number = child["indicator_number"]
dest_w = int(32 * self.tab_w_ratio)
dest_h = int(32 * self.tab_h_ratio)
if dest_h < self.tab_height:
dest_w = dest_h
-
# x position is offset(tab_width*3/4 - icon_width/2) + start_pos(tab_x)
x = tab_x + self.tab_width * 3/4 - dest_w/2
y = tab_y + self.tab_height/2 - dest_h/2
+
r = min(dest_w, dest_h)/2
color = cr.set_source_color(gtk.gdk.color_parse(HobColors.ORANGE))
- cr.arc(x + r, y + r, r, 0, 2*math.pi)
- cr.fill()
-
- text = ("%d" % number)
- layout = self.create_pango_layout(text)
- layout.set_font_description(self.font)
- textw, texth = layout.get_pixel_size()
+ # check round back area can contain the text or not
+ back_round_can_contain_width = float(2 * r * 0.707)
+ if float(textw) > back_round_can_contain_width:
+ xoff = (textw - int(back_round_can_contain_width)) / 2
+ cr.move_to(x + r - xoff, y + r + r)
+ cr.arc((x + r - xoff), (y + r), r, 0.5*math.pi, 1.5*math.pi)
+ cr.fill() # left half round
+ cr.rectangle((x + r - xoff), y, 2 * xoff, 2 * r)
+ cr.fill() # center rectangle
+ cr.arc((x + r + xoff), (y + r), r, 1.5*math.pi, 0.5*math.pi)
+ cr.fill() # right half round
+ else:
+ cr.arc((x + r), (y + r), r, 0, 2*math.pi)
+ cr.fill()
+ # draw the number text
x = x + (dest_w/2)-(textw/2)
y = y + (dest_h/2) - (texth/2)
cr.move_to(x, y)
--
1.7.6
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 09/11] Hob: change HobNoteBook tab edge color from green to gray
2012-03-20 14:40 [PATCH 00/11] [V4]Hob Notebook Implementation and Others Shane Wang
` (8 preceding siblings ...)
2012-03-20 14:41 ` [PATCH 08/11] Hob: add auto adjust background area function for long issue text Shane Wang
@ 2012-03-20 14:41 ` Shane Wang
2012-03-20 14:41 ` [PATCH 10/11] Hob: fix static variable "self.search" to parameter "search" in signal callback function Shane Wang
2012-03-20 14:41 ` [PATCH 11/11] Hob: fixed the tabbar search entry retaining focus when user has clicked off it issue Shane Wang
11 siblings, 0 replies; 14+ messages in thread
From: Shane Wang @ 2012-03-20 14:41 UTC (permalink / raw)
To: bitbake-devel
From: Liming An <limingx.l.an@intel.com>
To change the notebook tab pressed edge color from green to gray.
Signed-off-by: Liming An <limingx.l.an@intel.com>
Signed-off-by: Shane Wang <shane.wang@intel.com>
---
bitbake/lib/bb/ui/crumbs/hobcolor.py | 2 ++
bitbake/lib/bb/ui/crumbs/hobwidget.py | 13 ++++++++-----
2 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/hobcolor.py b/bitbake/lib/bb/ui/crumbs/hobcolor.py
index 402f022..f767d22 100644
--- a/bitbake/lib/bb/ui/crumbs/hobcolor.py
+++ b/bitbake/lib/bb/ui/crumbs/hobcolor.py
@@ -25,6 +25,8 @@ class HobColors:
PALE_RED = "#ffaaaa"
GRAY = "#aaaaaa"
LIGHT_GRAY = "#dddddd"
+ DEEP_GRAY = "#7c7c77"
+ SLIGHT_DARK = "#5f5f5f"
DARK = "#3c3b37"
BLACK = "#000000"
LIGHT_ORANGE = "#f7a787"
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py
index bc27cd1..a5c52f7 100644
--- a/bitbake/lib/bb/ui/crumbs/hobwidget.py
+++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py
@@ -496,16 +496,19 @@ class HobTabBar(gtk.DrawingArea):
r = height / 10
if self.tab_pressed == True:
- for xoff, yoff in [(1, 0), (2, 0)]:
- cr.set_source_color(gtk.gdk.color_parse(HobColors.PALE_GREEN))
+ for xoff, yoff, c1, c2 in [(1, 0, HobColors.SLIGHT_DARK, HobColors.DARK), (2, 0, HobColors.GRAY, HobColors.LIGHT_GRAY)]:
+ cr.set_source_color(gtk.gdk.color_parse(c1))
+ cr.move_to(x + xoff, y + height + yoff)
+ cr.line_to(x + xoff, r + yoff)
+ cr.arc(x + r + xoff, y + r + yoff, r, math.pi, 1.5*math.pi)
cr.move_to(x + r + xoff, y + yoff)
cr.line_to(x + width - r + xoff, y + yoff)
- cr.arc(x + width - r+ xoff, y + r + yoff, r, 1.5*math.pi, 2*math.pi)
+ cr.arc(x + width - r + xoff, y + r + yoff, r, 1.5*math.pi, 2*math.pi)
+ cr.stroke()
+ cr.set_source_color(gtk.gdk.color_parse(c2))
cr.move_to(x + width + xoff, r + yoff)
cr.line_to(x + width + xoff, y + height + yoff)
cr.line_to(x + xoff, y + height + yoff)
- cr.line_to(x + xoff, r + yoff)
- cr.arc(x + r + xoff, y + r + yoff, r, math.pi, 1.5*math.pi)
cr.stroke()
x = x + 2
y = y + 2
--
1.7.6
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 10/11] Hob: fix static variable "self.search" to parameter "search" in signal callback function
2012-03-20 14:40 [PATCH 00/11] [V4]Hob Notebook Implementation and Others Shane Wang
` (9 preceding siblings ...)
2012-03-20 14:41 ` [PATCH 09/11] Hob: change HobNoteBook tab edge color from green to gray Shane Wang
@ 2012-03-20 14:41 ` Shane Wang
2012-03-20 14:41 ` [PATCH 11/11] Hob: fixed the tabbar search entry retaining focus when user has clicked off it issue Shane Wang
11 siblings, 0 replies; 14+ messages in thread
From: Shane Wang @ 2012-03-20 14:41 UTC (permalink / raw)
To: bitbake-devel
From: Liming An <limingx.l.an@intel.com>
To fix the signal callback function code, and make the temp parameter to replaced the static global variable, as required.
Signed-off-by: Liming An <limingx.l.an@intel.com>
Signed-off-by: Shane Wang <shane.wang@intel.com>
---
bitbake/lib/bb/ui/crumbs/hobwidget.py | 31 ++++++++++++++-----------------
1 files changed, 14 insertions(+), 17 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py
index a5c52f7..0bb83d7 100644
--- a/bitbake/lib/bb/ui/crumbs/hobwidget.py
+++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py
@@ -673,20 +673,17 @@ class HobNotebook(gtk.VBox):
def blank_area_resize_cb(self, widget, request_x, request_y, request_width, request_height):
self.search.set_size_request(request_width, request_height)
- widget.modify_bg(gtk.STATE_SELECTED, gtk.gdk.color_parse(HobColors.YELLOW))
-
- def set_search_entry_editable_cb(self, widget, event):
- if self.search:
- self.search.set_editable(True)
- self.search.set_text("")
- style = self.search.get_style()
- style.text[gtk.STATE_NORMAL] = self.get_colormap().alloc_color(HobColors.BLACK, False, False)
- self.search.set_style(style)
-
- def set_search_entry_reset_cb(self, widget, event):
- if self.search:
- style = self.search.get_style()
- style.text[gtk.STATE_NORMAL] = self.get_colormap().alloc_color(HobColors.GRAY, False, False)
- self.search.set_style(style)
- self.search.set_text(self.search_name)
- self.search.set_editable(False)
+
+ def set_search_entry_editable_cb(self, search, event):
+ search.set_editable(True)
+ search.set_text("")
+ style = self.search.get_style()
+ style.text[gtk.STATE_NORMAL] = self.get_colormap().alloc_color(HobColors.BLACK, False, False)
+ search.set_style(style)
+
+ def set_search_entry_reset_cb(self, search, event):
+ style = search.get_style()
+ style.text[gtk.STATE_NORMAL] = self.get_colormap().alloc_color(HobColors.GRAY, False, False)
+ search.set_style(style)
+ search.set_text(self.search_name)
+ search.set_editable(False)
--
1.7.6
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 11/11] Hob: fixed the tabbar search entry retaining focus when user has clicked off it issue
2012-03-20 14:40 [PATCH 00/11] [V4]Hob Notebook Implementation and Others Shane Wang
` (10 preceding siblings ...)
2012-03-20 14:41 ` [PATCH 10/11] Hob: fix static variable "self.search" to parameter "search" in signal callback function Shane Wang
@ 2012-03-20 14:41 ` Shane Wang
11 siblings, 0 replies; 14+ messages in thread
From: Shane Wang @ 2012-03-20 14:41 UTC (permalink / raw)
To: bitbake-devel
From: Liming An <limingx.l.an@intel.com>
Add reset focus code to fixed the search entry retaining focus issue
Signed-off-by: Liming An <limingx.l.an@intel.com>
Signed-off-by: Shane Wang <shane.wang@intel.com>
---
bitbake/lib/bb/ui/crumbs/hobwidget.py | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py
index 0bb83d7..4b0a0cf 100644
--- a/bitbake/lib/bb/ui/crumbs/hobwidget.py
+++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py
@@ -344,6 +344,7 @@ class HobTabBar(gtk.DrawingArea):
and (child["y"] < y) and (y < child["y"] + self.tab_height):
self.current_child = child
result = True
+ self.grab_focus()
break
# check the blank area is focus in or not
--
1.7.6
^ permalink raw reply related [flat|nested] 14+ messages in thread
end of thread, other threads:[~2012-03-20 14:45 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-20 14:40 [PATCH 00/11] [V4]Hob Notebook Implementation and Others Shane Wang
2012-03-20 14:31 ` Richard Purdie
2012-03-20 14:34 ` Wang, Shane
2012-03-20 14:41 ` [PATCH 01/11] Hob: implement a self-defined notebook visual component for Hob Shane Wang
2012-03-20 14:41 ` [PATCH 02/11] Hob: use HobNotebook to implement a notebook in build details page Shane Wang
2012-03-20 14:41 ` [PATCH 03/11] Hob: show indicators on the tabs of the Hob notebook Shane Wang
2012-03-20 14:41 ` [PATCH 04/11] Hob: change the code style to enumerate a list in a for-loop Shane Wang
2012-03-20 14:41 ` [PATCH 05/11] Hob: fix '!= None' and '== None' in the code Shane Wang
2012-03-20 14:41 ` [PATCH 06/11] Hob: remove the invalid code in hobwidget.py Shane Wang
2012-03-20 14:41 ` [PATCH 07/11] Hob: Fixed the hobwidget code and make it like a pythonista Shane Wang
2012-03-20 14:41 ` [PATCH 08/11] Hob: add auto adjust background area function for long issue text Shane Wang
2012-03-20 14:41 ` [PATCH 09/11] Hob: change HobNoteBook tab edge color from green to gray Shane Wang
2012-03-20 14:41 ` [PATCH 10/11] Hob: fix static variable "self.search" to parameter "search" in signal callback function Shane Wang
2012-03-20 14:41 ` [PATCH 11/11] Hob: fixed the tabbar search entry retaining focus when user has clicked off it issue Shane Wang
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.