You can experiment with the following code. It might need some tweaking on MSWin or Mac:
#!/usr/bin/perl
use warnings;
use strict;
use Tk qw{ MainLoop Ev };
my $mw = 'MainWindow'->new;
$mw->Label(-text => 'Press any key')->pack;
$mw->Entry(-textvariable => \ my $text, -state => 'readonly')->pack;
$mw->bind('<KeyPress>', [sub { $text = $_[1] }, Ev('K')]);
my @mods = ("", qw( Alt Shift Control Mod4 ));
for my $p1 (0 .. $#mods) {
for my $p2 (0 .. $#mods) {
next if $p2 == 0 && $p1 != 0
|| $p2 && $p1 >= $p2;
for my $p3 (1 .. $#mods) {
next if $p3 <= $p2;
my $prefix = join '-', grep length, @mods[$p1, $p2, $p3];
$mw->bind("<$prefix-KeyPress>", [sub { $text = "$_[1] + $_
+[2]" },
"$prefix", Ev('K')]);
}
}
}
$mw->bind("<Alt-Shift-Control-Mod4-KeyPress>",
[sub { $text = "$_[1] + $_[2]" },
'Alt-Shift-Control-Meta', Ev('K')]);
MainLoop();
map{substr$_->[0],$_->[1]||0,1}[\*||{},3],[[]],[ref qr-1,-,-1],[{}],[sub{}^*ARGV,3]
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
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.