summaryrefslogtreecommitdiffstats
path: root/PerlQt/tutorials/t2/t2.pl
blob: 970ccb491e238f66a2dff1299989f3ec68efec55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl -w
use strict;
use blib;
use Qt;

my $a = Qt::Application(\@ARGV);

my $quit = Qt::PushButton("Quit", undef);
$quit->resize(75, 30);
$quit->setFont(Qt::Font("Times", 18, &Qt::Font::Bold));

$a->connect($quit, SIGNAL('clicked()'), SLOT('quit()'));

$a->setMainWidget($quit);
$quit->show;
exit $a->exec;