In Files

  • tk/lib/tk/winpkg.rb

Class/Module Index [+]

Quicksearch

Tk::WinRegistry

Constants

TkCommandNames

Public Class Methods

delete(keynam, valnam=None) click to toggle source
 
               # File tk/lib/tk/winpkg.rb, line 118
def delete(keynam, valnam=None)
  tk_call('registry', 'delete', keynam, valnam)
end
            
get(keynam, valnam) click to toggle source
 
               # File tk/lib/tk/winpkg.rb, line 122
def get(keynam, valnam)
  tk_call('registry', 'get', keynam, valnam)
end
            
keys(keynam, pattern=nil) click to toggle source
 
               # File tk/lib/tk/winpkg.rb, line 126
def keys(keynam, pattern=nil)
  lst = tk_split_simplelist(tk_call('registry', 'keys', keynam))
  if pattern
    lst.find_all{|key| key =~ pattern}
  else
    lst
  end
end
            
set(keynam, valnam=None, data=None, dattype=None) click to toggle source
 
               # File tk/lib/tk/winpkg.rb, line 135
def set(keynam, valnam=None, data=None, dattype=None)
  tk_call('registry', 'set', keynam, valnam, data, dattype)
end
            
type(keynam, valnam) click to toggle source
 
               # File tk/lib/tk/winpkg.rb, line 139
def type(keynam, valnam)
  tk_call('registry', 'type', keynam, valnam)
end
            
values(keynam, pattern=nil) click to toggle source
 
               # File tk/lib/tk/winpkg.rb, line 143
def values(keynam, pattern=nil)
  lst = tk_split_simplelist(tk_call('registry', 'values', keynam))
  if pattern
    lst.find_all{|val| val =~ pattern}
  else
    lst
  end
end
            

Public Instance Methods

broadcast(keynam, timeout=nil) click to toggle source
 
               # File tk/lib/tk/winpkg.rb, line 110
def broadcast(keynam, timeout=nil)
  if timeout
    tk_call('registry', 'broadcast', keynam, '-timeout', timeout)
  else
    tk_call('registry', 'broadcast', keynam)
  end
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