summaryrefslogtreecommitdiffstats
path: root/PerlQt/tutorials/t9
diff options
context:
space:
mode:
Diffstat (limited to 'PerlQt/tutorials/t9')
-rw-r--r--PerlQt/tutorials/t9/CannonField.pm48
-rw-r--r--PerlQt/tutorials/t9/LCDRange.pm43
-rw-r--r--PerlQt/tutorials/t9/t9.pl50
3 files changed, 0 insertions, 141 deletions
diff --git a/PerlQt/tutorials/t9/CannonField.pm b/PerlQt/tutorials/t9/CannonField.pm
deleted file mode 100644
index 1500480..0000000
--- a/PerlQt/tutorials/t9/CannonField.pm
+++ /dev/null
@@ -1,48 +0,0 @@
-package CannonField;
-use strict;
-use TQt;
-use TQt::isa qw(TQt::Widget);
-use TQt::signals
- angleChanged => ['int'];
-use TQt::slots
- setAngle => ['int'];
-use TQt::attributes qw(
- ang
-);
-use POSIX qw(atan);
-
-sub angle () { ang }
-
-sub NEW {
- shift->SUPER::NEW(@_);
-
- ang = 45;
- setPalette(TQt::Palette(TQt::Color(250, 250, 200)));
-}
-
-sub setAngle {
- my $degrees = shift;
- $degrees = 5 if $degrees < 5;
- $degrees = 70 if $degrees > 70;
- return if ang == $degrees;
- ang = $degrees;
- repaint();
- emit angleChanged(ang);
-}
-
-sub paintEvent {
- my $p = TQt::Painter(this);
- $p->setBrush(&blue);
- $p->setPen(&NoPen);
-
- $p->translate(0, rect()->bottom);
- $p->drawPie(TQt::Rect(-35, -35, 70, 70), 0, 90*16);
- $p->rotate(- ang);
- $p->drawRect(TQt::Rect(33, -4, 15, 8));
-}
-
-sub sizePolicy {
- TQt::SizePolicy(&TQt::SizePolicy::Expanding, &TQt::SizePolicy::Expanding);
-}
-
-1;
diff --git a/PerlQt/tutorials/t9/LCDRange.pm b/PerlQt/tutorials/t9/LCDRange.pm
deleted file mode 100644
index ab63af0..0000000
--- a/PerlQt/tutorials/t9/LCDRange.pm
+++ /dev/null
@@ -1,43 +0,0 @@
-package LCDRange;
-use strict;
-use TQt;
-use TQt::isa qw(TQt::VBox);
-use TQt::slots
- setValue => ['int'],
- setRange => ['int', 'int'];
-use TQt::signals
- valueChanged => ['int'];
-use TQt::attributes qw(
- slider
-);
-
-sub NEW {
- shift->SUPER::NEW(@_);
-
- my $lcd = TQt::LCDNumber(2, this, "lcd");
-
- slider = TQt::Slider(&Horizontal, this, "slider");
- slider->setRange(0, 99);
- slider->setValue(0);
- $lcd->connect(slider, TQT_SIGNAL('valueChanged(int)'), TQT_SLOT('display(int)'));
- this->connect(slider, TQT_SIGNAL('valueChanged(int)'), TQT_SIGNAL('valueChanged(int)'));
-
- setFocusProxy(slider);
-}
-
-sub value { slider->value }
-
-sub setValue { slider->setValue(shift) }
-
-sub setRange {
- my($minVal, $maxVal) = @_;
- if($minVal < 0 || $maxVal > 99 || $minVal > $maxVal) {
- warn "LCDRange::setRange($minVal,$maxVal)\n" .
- "\tRange must be 0..99\n" .
- "\tand minVal must not be greater than maxVal\n";
- return;
- }
- slider->setRange($minVal, $maxVal);
-}
-
-1;
diff --git a/PerlQt/tutorials/t9/t9.pl b/PerlQt/tutorials/t9/t9.pl
deleted file mode 100644
index 779d859..0000000
--- a/PerlQt/tutorials/t9/t9.pl
+++ /dev/null
@@ -1,50 +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;
-
-TQt::Application::setColorSpec(&TQt::Application::CustomColor);
-my $a = TQt::Application(\@ARGV);
-
-my $w = MyWidget;
-$w->setGeometry(100, 100, 500, 355);
-$a->setMainWidget($w);
-$w->show;
-exit $a->exec;