Config-Model-TkUI
view release on metacpan or search on metacpan
lib/Config/Model/TkUI.pm view on Meta::CPAN
@$extra_menu,
[
command => 'debug ...',
-command => sub {
require Tk::ObjScanner;
Tk::ObjScanner::scan_object( $cw->{instance}->config_root );
}
],
[ command => 'quit (Ctrl-q)', -command => sub { $cw->quit } ],
];
$menubar->cascade( -label => 'File', -menuitems => $file_items );
$cw->add_help_menu($menubar);
$cw->bind( '<Control-s>', sub { $cw->save } );
$cw->bind( '<Control-q>', sub { $cw->quit } );
$cw->bind( '<Control-c>', sub { $cw->edit_copy } );
$cw->bind( '<Control-v>', sub { $cw->edit_paste } );
$cw->bind( '<Control-f>', sub { $cw->pack_find_widget } );
my $edit_items = [
# [ qw/command cut -command/, sub{ $cw->edit_cut }],
[ command => 'copy (Ctrl-c)', '-command', sub { $cw->edit_copy } ],
[ command => 'paste (Ctrl-v)', '-command', sub { $cw->edit_paste } ],
[ command => 'find (Ctrl-f)', '-command', sub { $cw->pack_find_widget; } ],
];
$menubar->cascade( -label => 'Edit', -menuitems => $edit_items );
my $option_menu = $menubar->cascade( -label => 'Options');
$option_menu->command( -label => 'Font', -command => sub { $cw->set_font(); });
# create 'hide empty values'
$cw->{hide_empty_values} = 0;
$option_menu->checkbutton(
-label => "Hide empty values",
-variable => \$cw->{hide_empty_values},
-command => sub { $cw->reload($cw->{location}) },
);
lib/Config/Model/TkUI.pm view on Meta::CPAN
-exitbutton => 0,
);
};
my $help_items = [
[ qw/command About -command/, $about_sub ],
[ qw/command Usage -command/, $help_sub ],
[ command => 'More info', -command => $info_sub ],
[ command => "$class help", -command => $man_sub ],
];
$menubar->cascade( -label => 'Help', -menuitems => $help_items );
}
# Note: this callback is called by Tk::Tree *before* changing the
# indicator. And the indicator is used by Tk::Tree to store the
# open/close/none mode. So we can't rely on getmode for path that are
# opening. Hence the parameter passed to the sub stored with each
# Tk::Tree item
sub open_item {
my ( $cw, $path ) = @_;
my $tktree = $cw->{tktree};
( run in 0.490 second using v1.01-cache-2.11-cpan-49f99fa48dc )