本文整理汇总了Python中propitem.PropItem.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python PropItem.__init__方法的具体用法?Python PropItem.__init__怎么用?Python PropItem.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类propitem.PropItem
的用法示例。
在下文中一共展示了PropItem.__init__方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from propitem import PropItem [as 别名]
# 或者: from propitem.PropItem import __init__ [as 别名]
def __init__(self, prop):
gtk.Menu.__init__(self)
PropItem.__init__(self, prop)
self.set_take_focus(False)
self.__create_items(self._prop.sub_props)
self.show_all()
self.set_sensitive(prop.sensitive)
示例2: __init__
# 需要导入模块: from propitem import PropItem [as 别名]
# 或者: from propitem.PropItem import __init__ [as 别名]
def __init__(self, prop):
gtk.ImageMenuItem.__init__(self, label=prop.label.text)
PropItem.__init__(self, prop)
if self._prop.icon:
size = gtk.icon_size_lookup(gtk.ICON_SIZE_MENU)
self.set_image(icon.IconWidget(prop.icon, size[0]))
if self._prop.visible:
self.set_no_show_all(False)
self.show_all()
else:
self.set_no_show_all(True)
self.hide_all()
示例3: __init__
# 需要导入模块: from propitem import PropItem [as 别名]
# 或者: from propitem.PropItem import __init__ [as 别名]
def __init__(self, prop):
gtk.ToggleToolButton.__init__(self)
self.set_homogeneous(False)
PropItem.__init__(self, prop)
self.property_changed()