X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/fe3830a0e28e28ea18335cc81af2faac447fc69a..25c42c7d1649e85339b165f205e620b8eadf6e7b:/keyboard.plp diff --git a/keyboard.plp b/keyboard.plp index 36ccaca..7689af5 100644 --- a/keyboard.plp +++ b/keyboard.plp @@ -1,11 +1,27 @@ <(common.inc.plp)><: -my $mode = lc($Request || 'keyboard'); +my $mode = lc($Request || 'altgr'); my $include = "$mode.eng"; my $info = eval { Data($include) } || {}; +warn "error in $include: ", @{$@} if ref $@; $mode = $info->{title} // $mode; +my $showkeys //= !exists $get{keys} ? undef : + ($get{keys} ne '0' && ($get{keys} || 'always')); +my @keystyle = ( + '', + '', + !$showkeys ? '' : + $showkeys eq 'ghost' ? '' : (), + '', +); +if ($include =~ /^altgr/ and open my $cssinc, '<', 'keyboard-altgr.css') { + local $/; + my $data = readline $cssinc; + push @keystyle, ""; +} + Html({ title => "\L$mode\E keyboard cheat sheet", version => $info->{version} || '0.1', @@ -15,8 +31,8 @@ Html({ sheet cheat reference overview keyboard control commands shortkey '], stylesheet => [qw( light dark circus mono red )], - keys => 1, data => ["$include.inc.pl"], + raw => \@keystyle, }); %{$info} or Abort( @@ -32,6 +48,34 @@ say "

", $info->{mode}->{''}, " (default)

" use Shiar_Sheet::Keyboard 2.08; my $keys = Shiar_Sheet::Keyboard->new($info); $keys->map($get{map}) or undef $get{map}; -$keys->print_rows($get{rows}, $info->{rows}); -$keys->print_legends(\%get); +$keys->print_rows($get{rows} || $info->{moderows}, $info->{rows}); + +{ + say "
\n"; + say '
'; + + use List::MoreUtils qw( part ); + my @gflags = part {/^g\d/} sort keys %{ $keys->{flag} }; + + say "\t", '
'; + $keys->print_legend('legend-types', $gflags[1]); + say "\t
\n"; + + say "\t", '
'; + $keys->print_legend('legend-options', $gflags[0]); + say ''; + + say "\t\t", '"; + say "\t
\n"; + say "
\n"; +}