summaryrefslogtreecommitdiffstats
path: root/PerlQt/examples/dclock
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-01-01 18:29:30 -0600
committerTimothy Pearson <[email protected]>2012-01-01 18:29:30 -0600
commitb2af005db21bd8fd068cb79b2ae700953128af2c (patch)
treeabd0ed633726bf0bbecb57d30e92836c31e02695 /PerlQt/examples/dclock
parentc1b9383f2032d82db5eb8918dca885e37a901dde (diff)
downloadlibtqt-perl-b2af005db21bd8fd068cb79b2ae700953128af2c.tar.gz
libtqt-perl-b2af005db21bd8fd068cb79b2ae700953128af2c.zip
Move PerlQt
Diffstat (limited to 'PerlQt/examples/dclock')
-rw-r--r--PerlQt/examples/dclock/DigitalClock.pm88
-rw-r--r--PerlQt/examples/dclock/dclock.pl12
2 files changed, 0 insertions, 100 deletions
diff --git a/PerlQt/examples/dclock/DigitalClock.pm b/PerlQt/examples/dclock/DigitalClock.pm
deleted file mode 100644
index 2d25428..0000000
--- a/PerlQt/examples/dclock/DigitalClock.pm
+++ /dev/null
@@ -1,88 +0,0 @@
-package DigitalClock;
-use strict;
-use TQt;
-use TQt::isa qw(TQt::LCDNumber);
-use TQt::slots
- stopDate => [],
- showTime => [];
-use TQt::attributes qw(
- showingColon
- normalTimer
- showDateTimer
-);
-
-#
-# Constructs a DigitalClock widget
-#
-
-sub NEW {
- shift->SUPER::NEW(@_);
- showingColon = 0;
- setFrameStyle(&Panel | &Raised);
- setLineWidth(2);
- showTime();
- normalTimer = startTimer(500);
- showDateTimer = -1;
-}
-
-#
-# Handles timer events and the digital clock widget.
-# There are two different timers; one timer for updating the clock
-# and another one for switching back from date mode to time mode
-#
-
-sub timerEvent {
- my $e = shift;
- if($e->timerId == showDateTimer) { # stop showing date
- stopDate();
- } elsif(showDateTimer == -1) { # normal timer
- showTime();
- }
-}
-
-#
-# Enters date mode when the left mouse button is pressed
-#
-
-sub mousePressEvent {
- my $e = shift;
- showDate() if $e->button == &LeftButton;
-}
-
-#
-# Shows the durrent date in the internal lcd widget.
-# Fires a timer to stop showing the date.
-#
-
-sub showDate {
- return if showDateTimer != -1; # already showing date
- my $date = TQt::Date::currentDate();
- my $s = sprintf("%2d %2d", $date->month, $date->day);
- display($s); # sets the LCD number/text
- showDateTimer = startTimer(2000); # keep this state for 2 secs
-}
-
-#
-# Stops showing the date.
-#
-
-sub stopDate {
- killTimer(showDateTimer);
- showDateTimer = -1;
- showTime();
-}
-
-#
-# Shows the current time in the internal lcd widget.
-#
-
-sub showTime {
- showingColon = !showingColon;
- my $s = substr(TQt::Time::currentTime()->toString, 0, 5);
- $s =~ s/^0/ /;
- $s =~ s/:/ / unless showingColon;
- display($s);
-}
-
-1;
-
diff --git a/PerlQt/examples/dclock/dclock.pl b/PerlQt/examples/dclock/dclock.pl
deleted file mode 100644
index 57c02bd..0000000
--- a/PerlQt/examples/dclock/dclock.pl
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/perl -w
-use strict;
-use TQt;
-use DigitalClock;
-
-my $a = TQt::Application(\@ARGV);
-my $clock = DigitalClock;
-$clock->resize(170, 80);
-$a->setMainWidget($clock);
-$clock->setCaption("PerlTQt Example - Digital Clock");
-$clock->show;
-exit $a->exec;