summaryrefslogtreecommitdiffstats
path: root/PerlTQt/tutorials/t13/t13.pl
diff options
context:
space:
mode:
Diffstat (limited to 'PerlTQt/tutorials/t13/t13.pl')
-rw-r--r--PerlTQt/tutorials/t13/t13.pl14
1 files changed, 14 insertions, 0 deletions
diff --git a/PerlTQt/tutorials/t13/t13.pl b/PerlTQt/tutorials/t13/t13.pl
new file mode 100644
index 0000000..ef412ab
--- /dev/null
+++ b/PerlTQt/tutorials/t13/t13.pl
@@ -0,0 +1,14 @@
+#!/usr/bin/perl -w
+use strict;
+use blib;
+use TQt;
+use GameBoard;
+
+TQt::Application::setColorSpec(&TQt::Application::CustomColor);
+my $a = TQt::Application(\@ARGV);
+
+my $gb = GameBoard;
+$gb->setGeometry(100, 100, 500, 355);
+$a->setMainWidget($gb);
+$gb->show;
+exit $a->exec;