termcol: rename scumm preset to dosbox
[sheet.git] / keyboard.plp
index 2fe9c073bf656fc2db61df1a262b468d05343b56..f4ede94171db59de4c6ee80f2cdfbb585af74cb3 100644 (file)
@@ -2,7 +2,11 @@
 
 Html({
        title => 'keyboard cheat sheet',
-       version => '1.0',
+       version => '1.2',
+       description => [
+               "Windows US international keyboard layout table",
+               "with the AltGr modifier key.",
+       ],
        stylesheet => [qw( light dark circus mono red )],
        keys => 1,
 });
@@ -10,6 +14,9 @@ Html({
 :>
 <h1>keyboard cheat sheet</h1>
 
+<p>Special <a href="/unicode">characters</a> returned with the AltGr modifier
+for the Windows US international layout.</p>
+
 <h2>normal mode (default)</h2>
 
 <:
@@ -38,10 +45,10 @@ my $keys = Shiar_Sheet::Keyboard->new({
                                my @row = @{$_};
                                my $class = (
                                          !defined $row[2] || $row[0] eq $row[2] ? 1 # identical
+                                       : $row[2] =~ /\A\p{Mn}+\z/ ? 8 # combining accent
                                        : NFKD($row[2]) =~ $row[0] ? 2 # decomposed equivalent
                                        : $row[2] =~ /^\p{Latin}/ ? 4 # latin script
                                        : unidecode($row[2]) =~ /^\W*\Q$row[0]/ ? 5 # transliterated
-                                       : $row[2] =~ /^\p{Mn}/ ? 8 # combining accent
                                        : 7
                                );
                                $row[0] => "g$class"
@@ -54,11 +61,12 @@ my $keys = Shiar_Sheet::Keyboard->new({
                } @usint
        },
        flag => {
-               g1 => ['unaltered'],
-               g2 => ['accented'],
-               g4 => ['latin'],
-               g7 => ['other'],
-               g8 => ['combining'],
+               g1 => ['unaltered', "same results as without modifier"],
+               g2 => ['accented', "decomposes to the original letter with a combining accent"],
+               g4 => ['latin', "a different (accented) latin letter"],
+               g5 => ['similar', "transliterates (mostly) into the unmodified letter"],
+               g7 => ['other', "symbol not directly deducible from key"],
+               g8 => ['combining', "diacritical mark to be combined with a following character"],
        },
 });
 $keys->map($get{map}) or undef $get{map};