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 121
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 125
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 129
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 138
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 142
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 146
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 113
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, sample code, 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.

blog comments powered by Disqus