summaryrefslogtreecommitdiffstats
path: root/PerlTQt/tutorials/t2/t2.pl
blob: d75ce3854e5d901da4f2ced53050cd94bb9c1f19 (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 TQt;

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

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

$a->connect($quit, TQ_SIGNAL('clicked()'), TQ_SLOT('quit()'));

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