The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w

use Qt 2.0;
import Qt::app;
use Preferences;

my $mw = Preferences->new;
$app->setMainWidget($mw);
$mw->setCaption('Preferences Output');
$mw->show();
exit $app->exec();