summaryrefslogtreecommitdiff
path: root/trunk/ext/tk/lib/tk/button.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/ext/tk/lib/tk/button.rb')
-rw-r--r--trunk/ext/tk/lib/tk/button.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/trunk/ext/tk/lib/tk/button.rb b/trunk/ext/tk/lib/tk/button.rb
deleted file mode 100644
index 770a5785bb..0000000000
--- a/trunk/ext/tk/lib/tk/button.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-#
-# tk/button.rb : treat button widget
-#
-require 'tk'
-require 'tk/label'
-
-class Tk::Button<Tk::Label
- TkCommandNames = ['button'.freeze].freeze
- WidgetClassName = 'Button'.freeze
- WidgetClassNames[WidgetClassName] = self
- #def create_self(keys)
- # if keys and keys != None
- # tk_call_without_enc('button', @path, *hash_kv(keys, true))
- # else
- # tk_call_without_enc('button', @path)
- # end
- #end
- #private :create_self
-
- def invoke
- _fromUTF8(tk_send_without_enc('invoke'))
- end
- def flash
- tk_send_without_enc('flash')
- self
- end
-end
-
-#TkButton = Tk::Button unless Object.const_defined? :TkButton
-Tk.__set_toplevel_aliases__(:Tk, Tk::Button, :TkButton)