File: numentry

package info (click to toggle)
libtk-gbarr-perl 2.08-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 284 kB
  • sloc: perl: 1,875; makefile: 19
file content (30 lines) | stat: -rw-r--r-- 553 bytes parent folder | download | duplicates (7)
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
# Entry for entering numeric values.
#!/usr/local/bin/perl -w
use strict;
use Tk;
use Tk::NumEntry;
use strict;

my $mw = Tk::MainWindow->new;

my $nume = $mw->NumEntry( -command => sub { print "Value = ",@_,"\n" });

$nume->pack(-side => 'top', -fill => 'x');

$nume = $mw->NumEntry(
		-minvalue => 10,
		-maxvalue => 100,
		-defaultvalue => -2,
		-command => sub { print "Value = ",@_,"\n" }
);

$nume->pack(-side => 'top', -fill => 'x');

$nume = $mw->NumEntry(
		-readonly => 1,
);

$nume->pack(-side => 'top', -fill => 'x');

Tk::MainLoop;
__END__