Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > f810b6f290c4f2e554d2854b85d84a44 > files > 5

perl-yui-1.0.4-0.git20140418.10.mga5.x86_64.rpm

#!/usr/bin/perl
#
# Trivial libyui example
#
use lib '../../../build/swig/perl';

use yui;

my $factory = yui::YUI::widgetFactory;
my $dialog = $factory->createPopupDialog;

my $vbox = $factory->createVBox( $dialog );
$factory->createLabel( $vbox, "Hello, World!" );
$factory->createPushButton( $vbox, "&OK" );
my $event = $dialog->waitForEvent();
$dialog->destroy();