Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > ce6a8d16fab519256a9ce81dd3c3550a > files > 11

python-yui-1.0.2-9.fc18.i686.rpm

#
# Trivial libyui example
#

import sys
sys.path.insert(0,'../../../build/swig/python')
import yui

factory = yui.YUI.widgetFactory()
dialog = factory.createPopupDialog()

vbox = factory.createVBox( dialog )
factory.createLabel( vbox, "Hello, World!" )
factory.createPushButton( vbox, "&OK" )
event = dialog.waitForEvent()
dialog.destroy()