For an entry widget in Tk, I used the following validate command to only allow negative and positive integers. This would give an immediate error if a letter or other character was entered. In Tkx, I do not get an error when the entry is invalid. Is there a different way to do this in Tkx?
#! perl
use strict;
use warnings;
use Tk;
my $value;
my $mw = new MainWindow;
my $ent = $mw->Entry(-textvariable => \$value,
-validate => 'key',
-validatecommand => sub { $_[0] =~ /^(?:|-|\d+|-\
+d+)$/ },
-invalidcommand => \&lam_num_error)->pack();
my $print_button = $mw->Button(-text => "Print",
-command => \&printx,
-font => "ansi 10 bold")->pack();
my $reset_frm = $mw->Frame();
$reset_frm->pack(-fill => 'both');
my $reset_button = $reset_frm->Button(-text => "Reset",
-command => \&do_reset,
-font => "ansi 10 bold")->pac
+k();
MainLoop;
sub printx
{
print $value unless $value eq '-';
}
sub do_reset
{
$ent->delete(0, 'end');
}
sub lam_num_error
{
$mw->messageBox(-message => "The input must be an integer.");
}
__END__
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|