From b2af005db21bd8fd068cb79b2ae700953128af2c Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 1 Jan 2012 18:29:30 -0600 Subject: Move PerlQt --- PerlQt/tutorials/t8/t8.pl | 49 ----------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 PerlQt/tutorials/t8/t8.pl (limited to 'PerlQt/tutorials/t8/t8.pl') diff --git a/PerlQt/tutorials/t8/t8.pl b/PerlQt/tutorials/t8/t8.pl deleted file mode 100644 index 620f912..0000000 --- a/PerlQt/tutorials/t8/t8.pl +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/perl -w -use strict; -use blib; - -package MyWidget; -use strict; -use TQt; -use TQt::isa qw(TQt::Widget); - -use LCDRange; -use CannonField; - -sub NEW { - shift->SUPER::NEW(@_); - - my $quit = TQt::PushButton("Quit", this, "quit"); - $quit->setFont(TQt::Font("Times", 18, &TQt::Font::Bold)); - - TQt::app->connect($quit, TQT_SIGNAL('clicked()'), TQT_SLOT('quit()')); - - my $angle = LCDRange(this, "angle"); - $angle->setRange(5, 70); - - my $cannonField = CannonField(this, "cannonField"); - - $cannonField->connect($angle, TQT_SIGNAL('valueChanged(int)'), TQT_SLOT('setAngle(int)')); - $angle->connect($cannonField, TQT_SIGNAL('angleChanged(int)'), TQT_SLOT('setValue(int)')); - - my $grid = TQt::GridLayout(this, 2, 2, 10); - $grid->addWidget($quit, 0, 0); - $grid->addWidget($angle, 1, 0, &AlignTop); - $grid->addWidget($cannonField, 1, 1); - $grid->setColStretch(1, 10); - - $angle->setValue(60); - $angle->setFocus(); -} - -package main; -use TQt; -use MyWidget; - -my $a = TQt::Application(\@ARGV); - -my $w = MyWidget; -$w->setGeometry(100, 100, 500, 355); -$a->setMainWidget($w); -$w->show; -exit $a->exec; -- cgit v1.2.3