本文整理汇总了Python中kiwi.ui.views.BaseView.add_proxy方法的典型用法代码示例。如果您正苦于以下问题:Python BaseView.add_proxy方法的具体用法?Python BaseView.add_proxy怎么用?Python BaseView.add_proxy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kiwi.ui.views.BaseView
的用法示例。
在下文中一共展示了BaseView.add_proxy方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: NewsItem
# 需要导入模块: from kiwi.ui.views import BaseView [as 别名]
# 或者: from kiwi.ui.views.BaseView import add_proxy [as 别名]
#!/usr/bin/env python
import gtk
from kiwi.ui.gadgets import quit_if_last
from kiwi.ui.views import BaseView
class NewsItem:
"""An instance representing an item of news.
Attributes: title, author, url, size"""
title = ''
url = ''
author = ''
size = 0
item = NewsItem()
my_widgets = ["title", "author", "url", "size"]
view = BaseView(gladefile="newsform", widgets=my_widgets,
delete_handler=quit_if_last)
view.add_proxy(item, my_widgets)
view.focus_topmost()
view.show()
gtk.main() # runs till window is closed as per delete_handler
print 'Item: "%s" (%s) %s %d' % (item.title, item.author, item.url, item.size)
示例2: Person
# 需要导入模块: from kiwi.ui.views import BaseView [as 别名]
# 或者: from kiwi.ui.views.BaseView import add_proxy [as 别名]
#!/usr/bin/env python
import gtk
from kiwi.model import PickledModel
from kiwi.ui.views import BaseView
from kiwi.ui.gadgets import quit_if_last
# define the class that holds our application data
class Person(PickledModel):
name = ""
address = ""
phone = ""
person = Person.unpickle() # load person instance
view = BaseView(delete_handler=quit_if_last, widgets=("name", "address", "phone"), gladefile="person")
# create and run a proxy interface attached to person
view.add_proxy(person, ("name", "address", "phone"))
view.focus_topmost()
view.show_all()
# Enter main lopp, where GTK will handle events
gtk.main()
# save changes done to theinstance
person.save()