In Files

  • tk/lib/tk/console.rb

Class/Module Index [+]

Quicksearch

TkConsole

Constants

TkCommandNames

Public Class Methods

create() click to toggle source
 
               # File tk/lib/tk/console.rb, line 12
def self.create
  TkCore::INTERP._create_console
end
            
eval(tcl_script) click to toggle source
 
               # File tk/lib/tk/console.rb, line 26
def self.eval(tcl_script)
  #
  # supports a Tcl script only
  # I have no idea to support a Ruby script seamlessly.
  #
  _fromUTF8(tk_call_without_enc('console', 'eval', 
                                _get_eval_enc_str(tcl_script)))
end
            
hide() click to toggle source
 
               # File tk/lib/tk/console.rb, line 20
def self.hide
  tk_call_without_enc('console', 'hide')
end
            
maininterp_eval(tcl_script) click to toggle source
 
               # File tk/lib/tk/console.rb, line 34
def self.maininterp_eval(tcl_script)
  #
  # supports a Tcl script only
  # I have no idea to support a Ruby script seamlessly.
  #
  _fromUTF8(tk_call_without_enc('consoleinterp', 'eval', 
                                _get_eval_enc_str(tcl_script)))

end
            
maininterp_record(tcl_script) click to toggle source
 
               # File tk/lib/tk/console.rb, line 43
def self.maininterp_record(tcl_script)
  #
  # supports a Tcl script only
  # I have no idea to support a Ruby script seamlessly.
  #
  _fromUTF8(tk_call_without_enc('consoleinterp', 'record', 
                                _get_eval_enc_str(tcl_script)))

end
            
show() click to toggle source
 
               # File tk/lib/tk/console.rb, line 23
def self.show
  tk_call_without_enc('console', 'show')
end
            
title(str=None) click to toggle source
 
               # File tk/lib/tk/console.rb, line 17
def self.title(str=None)
  tk_call 'console', str
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.

blog comments powered by Disqus