Tk-EntryCheck
view release on metacpan or search on metacpan
Revision history for Perl extension Tk::EntryCheck.
0.01 Thu May 6 12:39:17 2004
- original version; created by h2xs 1.23 with options
-A -X -b 5.5.0 -n Tk::EntryCheck
0.02 Thu Oct 21 14:18:17 2004
- changed to inherit from Tk::Entry by Tk::Derived
0.03 Sun Sep 4 10:27:00 2005
- removed uninitialized value warning if used exactly as Tk::Entry
0.04 Tue May 9 23:51:31 2006
- pattern and maxlength can now be accessed by ->configure (bugfix)
lib/Tk/EntryCheck.pm view on Meta::CPAN
package Tk::EntryCheck;
use warnings; # removed to be backward compatible with perl5.005_03
use strict;
use 5.005;
use Carp;
use vars qw( $VERSION );
$VERSION = '0.04';
use base qw( Tk::Derived Tk::Entry );
Construct Tk::Widget 'EntryCheck';
# ------------------------------------------------------------
sub ClassInit {
my( $class, $parent ) = @_;
# class bindings here
$class->SUPER::ClassInit( $parent );
} # ClassInit
# ------------------------------------------------------------
( run in 0.463 second using v1.01-cache-2.11-cpan-d7a12ab2c7f )