in a typical graphical application, menu entries are often also available in toolbars or other widgets. and sometimes, you want to enable or disable a given action, and this means having to update all those entries and widgets everywhere this action is allowed / forbidden.
this is not fun.
therefore, i wrote tk::action, a module to help managing actions in a tk gui: just create a new object, associate some widgets and bindings with add_widget()
/ add_binding()
and then de/activate the whole action at once with enable()
or disable()
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
my $action = Tk::Action->new( | |
window => $mw, | |
callback => \&jfdi, | |
); | |
$action->add_widget( $menu_entry ); | |
$action->add_widget( $button ); | |
$action->add_binding( '<Control-F>' ); | |
$action->enable; | |
... | |
$action->disable; |
I see what you did. ;-)
ReplyDelete