#!/usr/bin/perl -w
use strict;
use blib;
use Qt;
my $a = Qt::Application(\@ARGV);
my $box = Qt::VBox;
$box->resize(200, 120);
my $quit = Qt::PushButton("Quit", $box);
$quit->setFont(Qt::Font("Times", 18, &Qt::Font::Bold));
$a->connect($quit, SIGNAL('clicked()'), SLOT('quit()'));
$a->setMainWidget($box);
$box->show;
exit $a->exec;
|
The use of a camel image
with the topic of Perl is a trademark of
O'Reilly & Associates, Inc. Used with
permission.
The Qt logo (TM) is a registered trademark of Trolltech (TM) AS,
Norway.