Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: TK: button update

by davidj (Priest)
on Sep 12, 2004 at 09:36 UTC ( [id://390388]=note: print w/replies, xml ) Need Help??


in reply to TK: button update

Another way to do it is to use the -textvariable attribute of the Button widget. What that does is bind the button text to a variable and whenever the variable changes, the button text will automatically change.

A modification of the code above:

#!/usr/bin/perl use strict; use Tk; my $FILTER_IS_ON = 0; my $tv = $FILTER_IS_ON ? 'turn off' : 'turn on'; my $top = new MainWindow(); my $b = $top->Button(-textvariable=> \$tv, -command => \&turn)->pack(); MainLoop(); sub turn { $FILTER_IS_ON = $FILTER_IS_ON ? 0 : 1; $tv = $FILTER_IS_ON ? 'turn off' : 'turn on'; }
The benefit of doing it this way is that you don't have to worry about explicitly updating the widget yourself. It happens automatically whenever the value of the bounded variable changes.

hope this helps,
davidj

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://390388]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (7)
As of 2024-04-18 17:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found