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