diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-01 16:09:54 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-01 16:09:54 +0000 |
| commit | 72e35a71aa4b38d661ee20895fc1e39a1ec6905c (patch) | |
| tree | dfeb96c4772df8caba4e01e749c8f3e1262f8fe0 /ext/tk/lib/tkconsole.rb | |
| parent | 2045cc0e0b4391ed856ce8bcb885e80668e07842 (diff) | |
| download | ruby-72e35a71aa4b38d661ee20895fc1e39a1ec6905c.tar.gz ruby-72e35a71aa4b38d661ee20895fc1e39a1ec6905c.tar.xz ruby-72e35a71aa4b38d661ee20895fc1e39a1ec6905c.zip | |
* renewal Ruby/Tk
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6237 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib/tkconsole.rb')
| -rw-r--r-- | ext/tk/lib/tkconsole.rb | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/ext/tk/lib/tkconsole.rb b/ext/tk/lib/tkconsole.rb index d97df159f..9960ddb8a 100644 --- a/ext/tk/lib/tkconsole.rb +++ b/ext/tk/lib/tkconsole.rb @@ -1,28 +1,4 @@ # -# tkconsole.rb : control the console on system without a real console +# tkconsole.rb - load tk/console.rb # -require 'tk' - -module TkConsole - include Tk - extend Tk - - TkCommandNames = ['console'.freeze].freeze - - def self.title(str=None) - tk_call 'console', str - end - def self.hide - tk_call 'console', 'hide' - end - def self.show - tk_call 'console', 'show' - end - def self.eval(tcl_script) - # - # supports a Tcl script only - # I have no idea to support a Ruby script seamlessly. - # - tk_call 'console', 'eval', tcl_script - end -end +require 'tk/console' |
