36 lines
738 B
Perl
36 lines
738 B
Perl
|
|
#!/usr/bin/perl
|
||
|
|
#
|
||
|
|
# DW::Setting::ShortcutsNext
|
||
|
|
#
|
||
|
|
# LJ::Setting module which controls the keyboard shortcut for next item
|
||
|
|
#
|
||
|
|
# Authors:
|
||
|
|
# Allen Petersen <allen@suberic.net>
|
||
|
|
#
|
||
|
|
# Copyright (c) 2017 by Dreamwidth Studios, LLC.
|
||
|
|
#
|
||
|
|
# This program is free software; you may redistribute it and/or modify it under
|
||
|
|
# the same terms as Perl itself. For a copy of the license, please reference
|
||
|
|
# 'perldoc perlartistic' or 'perldoc perlgpl'.
|
||
|
|
#
|
||
|
|
|
||
|
|
package DW::Setting::ShortcutsNext;
|
||
|
|
use base 'DW::Setting::ShortcutsKeypress';
|
||
|
|
use strict;
|
||
|
|
use warnings;
|
||
|
|
|
||
|
|
sub prop_name {
|
||
|
|
return "opt_shortcuts_next";
|
||
|
|
}
|
||
|
|
|
||
|
|
sub label {
|
||
|
|
my $class = shift;
|
||
|
|
return $class->ml('setting.shortcuts.next.label');
|
||
|
|
}
|
||
|
|
|
||
|
|
sub prop_key {
|
||
|
|
return "shortcuts_next";
|
||
|
|
}
|
||
|
|
|
||
|
|
1;
|