File: marquee

package info (click to toggle)
libcdk-perl 20130816-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,284 kB
  • ctags: 430
  • sloc: perl: 6,151; sh: 2,997; makefile: 24
file content (30 lines) | stat: -rwxr-xr-x 515 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/perl -w
# $Id: marquee,v 1.3 2013/07/14 21:28:19 tom Exp $

#
# Purpose:
#	To demonstrate the Perl5 Cdk Marquee Widget.

use strict;

#
# Initialize Cdk.
#
use Cdk;
Cdk::init();

# Create the message to scroll.
my $message = "</5>Hello there</K>!!!<!K> How are you today?<!5> ";

# Create the marquee object.
my $marquee = new Cdk::Marquee( 'Width' => 20 );

# Activate the marquee object.
$marquee->activate(
    'Message' => $message,
    'Delay'   => 3,
    'Repeat'  => 3
);

# Exit Cdk.
Cdk::end();