home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual Thematic 7: Programming
/
CDAT7.iso
/
Share
/
Editores
/
Perl5
/
perl
/
lib
/
site
/
auto
/
Tk
/
Radiobutton
/
ClassInit.al
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-08-10
|
337 b
|
15 lines
# NOTE: Derived from blib\lib\Tk\Radiobutton.pm. Changes made here will be lost.
package Tk::Radiobutton;
sub ClassInit
{
my ($class,$mw) = @_;
$mw->bind($class,"<Enter>", "Enter");
$mw->bind($class,"<Leave>", "Leave");
$mw->bind($class,"<1>", "Invoke");
$mw->bind($class,"<space>", "Invoke");
return $class;
}
1;