aboutsummaryrefslogtreecommitdiffstats
path: root/ext/tk/sample/binding_sample.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/tk/sample/binding_sample.rb')
-rw-r--r--ext/tk/sample/binding_sample.rb36
1 files changed, 18 insertions, 18 deletions
diff --git a/ext/tk/sample/binding_sample.rb b/ext/tk/sample/binding_sample.rb
index b98cd66a2e..693cc7de2f 100644
--- a/ext/tk/sample/binding_sample.rb
+++ b/ext/tk/sample/binding_sample.rb
@@ -24,17 +24,17 @@ class Button_clone < TkLabel
self.bind('Enter', proc{self.background(self.activebackground)})
self.bind('Leave', proc{
- @press = false
- self.background(self.highlightbackground)
- self.relief('raised')
- })
+ @press = false
+ self.background(self.highlightbackground)
+ self.relief('raised')
+ })
self.bind('ButtonPress-1', proc{@press = true; self.relief('sunken')})
self.bind('ButtonRelease-1', proc{
- self.relief('raised')
- @command.call if @press && @command
- @press = false
- })
+ self.relief('raised')
+ @command.call if @press && @command
+ @press = false
+ })
end
def command(cmd = Proc.new)
@@ -67,20 +67,20 @@ TkFrame.new{|f|
}.pack
TkButton.new(:text=>'normal Button widget',
- :command=>proc{
- puts 'button is clicked!!'
- lbl.text 'button is clicked!!'
- v.numeric += 1
- }){
+ :command=>proc{
+ puts 'button is clicked!!'
+ lbl.text 'button is clicked!!'
+ v.numeric += 1
+ }){
pack(:fill=>:x, :expand=>true)
}
Button_clone.new(:text=>'Label with Button binding',
- :command=>proc{
- puts 'label is clicked!!'
- lbl.text 'label is clicked!!'
- v.numeric += 1
- }){
+ :command=>proc{
+ puts 'label is clicked!!'
+ lbl.text 'label is clicked!!'
+ v.numeric += 1
+ }){
pack(:fill=>:x, :expand=>true)
}