summaryrefslogtreecommitdiffstats
path: root/PerlTQt/examples/aclock/aclock.pl
diff options
context:
space:
mode:
Diffstat (limited to 'PerlTQt/examples/aclock/aclock.pl')
-rw-r--r--PerlTQt/examples/aclock/aclock.pl13
1 files changed, 13 insertions, 0 deletions
diff --git a/PerlTQt/examples/aclock/aclock.pl b/PerlTQt/examples/aclock/aclock.pl
new file mode 100644
index 0000000..b4ae659
--- /dev/null
+++ b/PerlTQt/examples/aclock/aclock.pl
@@ -0,0 +1,13 @@
+#!/usr/bin/perl -w
+use strict;
+use TQt;
+use AnalogClock;
+
+my $a = TQt::Application(\@ARGV);
+my $clock = AnalogClock;
+$clock->setAutoMask(1) if @ARGV and $ARGV[0] eq '-transparent';
+$clock->resize(100, 100);
+$a->setMainWidget($clock);
+$clock->setCaption("PerlTQt example - Analog Clock");
+$clock->show;
+exit $a->exec;