summaryrefslogtreecommitdiffstats
path: root/PerlTQt/tutorials/t2/t2.pl
blob: c7b76e495cd9f54e60836ed1d42678702c66c650 (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, TQT_SIGNAL('clicked()'), TQT_SLOT('quit()'));

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