本文整理汇总了Python中sugar3.graphics.icon.Icon.set_property方法的典型用法代码示例。如果您正苦于以下问题:Python Icon.set_property方法的具体用法?Python Icon.set_property怎么用?Python Icon.set_property使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sugar3.graphics.icon.Icon
的用法示例。
在下文中一共展示了Icon.set_property方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: fill_list
# 需要导入模块: from sugar3.graphics.icon import Icon [as 别名]
# 或者: from sugar3.graphics.icon.Icon import set_property [as 别名]
def fill_list(self, icons):
client = GConf.Client.get_default()
path = '/desktop/sugar/user/color'
color = client.get_string(path)
global xocolor
xocolor = XoColor(color)
current = get_current_icon()
if not self.is_default:
icons.append("computer-xo-default")
for icon_name in icons:
icon = Icon(icon_name=icon_name, xo_color=xocolor,
pixel_size=style.MEDIUM_ICON_SIZE)
icon_box = Gtk.EventBox()
icon_box.add(icon)
icon_box.connect('button-press-event', self.update)
size = style.MEDIUM_ICON_SIZE + 20
icon_box.set_size_request(size, size)
icon_fixed = Icon(icon_name=icon_name, xo_color=xocolor,
pixel_size=style.XLARGE_ICON_SIZE)
icon_fixed.set_tooltip_text(icon_name)
icon_fixed.set_property('has-tooltip', False)
icon_box.set_tooltip_text(icon_name)
icon_box.set_property('has-tooltip', False)
self.pack_start(icon_box, False, False, 0)
self.pack_start(Gtk.VSeparator(), False, False, 3)
if icon_name == current:
self.icon = icon_fixed
self.icon_real = icon_box
icon_box.set_sensitive(False)
self.icons[icon_box] = icon_fixed