X-Git-Url: http://git.shiar.net/sheet.git/blobdiff_plain/3011a80c730f0a13b47453ccc3497596f0831c44..19cabf5a472cd83e67ad54b02cae39d353d1a050:/keyboard/altgr/msx.eng.inc.pl diff --git a/keyboard/altgr/msx.eng.inc.pl b/keyboard/altgr/msx.eng.inc.pl index 6ea44e2..d52a38d 100644 --- a/keyboard/altgr/msx.eng.inc.pl +++ b/keyboard/altgr/msx.eng.inc.pl @@ -1,7 +1,9 @@ use utf8; use strict; use warnings; -our %rows = ( +use Shiar_Sheet::KeyboardChars 'kbchars'; + +my %rows = ( '!' => '¡', '1' => 'ƒ', '@' => '₧', @@ -79,9 +81,22 @@ our %rows = ( '/' => 'º', ); +my %uc = ( + (map { (uc $_ => uc $rows{$_}) } grep { + !defined $rows{uc $_} + } keys %rows), + '|' => '€', + 'M' => 'Ú', + '+' => 'Ø', +); + +my $groups = kbchars({%rows, %uc}); +$groups->{def}{''}{$_} .= ' ext' for keys %uc; +$groups->{flag}{ext} = ['anachrone', 'expected uppercase variants if allowed by charset']; + +{ - %{ do 'keyboard/altgr/groups.inc.pl' }, - version => '1.0', + %{ $groups }, + version => '1.1', title => 'msx code', intro => join("\n", 'Resulting selection of equivalent Unicode characters', @@ -92,5 +107,6 @@ our %rows = ( "MSX keyboard layout table", "with the code modifier key.", ], - image => 'keyboard/altgr/msxcode.jpg', + image => 'data/keyboard/thumb/msxcode.jpg', + imagealt => 'Code key on a Toshiba HX10 with graph labels', }