Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > cfb92380391a8832fa0a37b83c1b454b > files > 11

python3-yui-1.1.2-6.mga7.armv7hl.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()